diff --git a/Makefile b/Makefile index 93ae2ce8..18e997d2 100644 --- a/Makefile +++ b/Makefile @@ -120,35 +120,32 @@ endif go-mod-cache build interchaintest get-heighliner local-image \ ############################################################################### -### Protobuf ### +### Protobuf ### ############################################################################### -containerProtoVer=v0.2 -containerProtoImage=tendermintdev/sdk-proto-gen:$(containerProtoVer) -containerProtoGen=cosmos-sdk-proto-gen-$(containerProtoVer) -containerProtoGenSwagger=cosmos-sdk-proto-gen-swagger-$(containerProtoVer) -containerProtoFmt=cosmos-sdk-proto-fmt-$(containerProtoVer) -proto-all: proto-format proto-lint proto-gen +BUF_VERSION=1.27.2 -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) \ - sh ./scripts/protocgen.sh; fi +proto-all: proto-format proto-lint proto-gen proto-format: - @echo "Formatting Protobuf files" - @if docker ps -a --format '{{.Names}}' | grep -Eq "^${containerProtoFmt}$$"; then docker start -a $(containerProtoFmt); else docker run --name $(containerProtoFmt) -v $(CURDIR):/workspace --workdir /workspace tendermintdev/docker-build-proto \ - find ./ -not -path "./third_party/*" -name "*.proto" -exec clang-format -i {} \; ; fi + @echo "🤖 Running protobuf formatter..." + @docker run --rm --volume "$(PWD)":/workspace --workdir /workspace \ + bufbuild/buf:$(BUF_VERSION) format --diff --write + @echo "✅ Completed protobuf formatting!" -proto-swagger-gen: - @echo "Generating Protobuf Swagger" - @if docker ps -a --format '{{.Names}}' | grep -Eq "^${containerProtoGenSwagger}$$"; then docker start -a $(containerProtoGenSwagger); else docker run --name $(containerProtoGenSwagger) -v $(CURDIR):/workspace --workdir /workspace $(containerProtoImage) \ - sh ./scripts/protoc-swagger-gen.sh; fi +proto-gen: + @echo "🤖 Generating code from protobuf..." + @docker run --rm --volume "$(PWD)":/workspace --workdir /workspace \ + noble-proto sh ./proto/generate.sh + @echo "✅ Completed code generation!" proto-lint: - @$(DOCKER_BUF) lint --error-format=json - -proto-check-breaking: - @$(DOCKER_BUF) breaking --against $(HTTPS_GIT)#branch=main - -.PHONY: proto-all proto-gen proto-format proto-swagger-gen proto-lint proto-check-breaking \ No newline at end of file + @echo "🤖 Running protobuf linter..." + @docker run --rm --volume "$(PWD)":/workspace --workdir /workspace \ + bufbuild/buf:$(BUF_VERSION) lint + @echo "✅ Completed protobuf linting!" + +proto-setup: + @echo "🤖 Setting up protobuf environment..." + @docker build --rm --tag noble-proto:latest --file proto/Dockerfile . + @echo "✅ Setup protobuf environment!" diff --git a/app/ante.go b/app/ante.go index badc9920..fd5e711a 100644 --- a/app/ante.go +++ b/app/ante.go @@ -4,8 +4,8 @@ import ( fiattokenfactory "github.com/circlefin/noble-fiattokenfactory/x/fiattokenfactory/keeper" fiattokenfactorytypes "github.com/circlefin/noble-fiattokenfactory/x/fiattokenfactory/types" "github.com/cosmos/cosmos-sdk/types/bech32" - tokenfactory "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - tokenfactorytypes "github.com/strangelove-ventures/noble/x/tokenfactory/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" @@ -16,7 +16,7 @@ import ( ibcante "github.com/cosmos/ibc-go/v4/modules/core/ante" ibckeeper "github.com/cosmos/ibc-go/v4/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 { diff --git a/app/app.go b/app/app.go index ee77250a..d9c03b2d 100644 --- a/app/app.go +++ b/app/app.go @@ -93,21 +93,21 @@ 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" - "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" + "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" diff --git a/app/simulation_test.go b/app/simulation_test.go index a9113b60..41b5284c 100644 --- a/app/simulation_test.go +++ b/app/simulation_test.go @@ -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" diff --git a/app/upgrades/radon/store.go b/app/upgrades/radon/store.go index 8bc7ce2a..6f1e0d27 100644 --- a/app/upgrades/radon/store.go +++ b/app/upgrades/radon/store.go @@ -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" ) diff --git a/app/upgrades/radon/upgrade.go b/app/upgrades/radon/upgrade.go index 15855dd7..76763d7e 100644 --- a/app/upgrades/radon/upgrade.go +++ b/app/upgrades/radon/upgrade.go @@ -8,9 +8,9 @@ import ( fiattokenfactorykeeper "github.com/circlefin/noble-fiattokenfactory/x/fiattokenfactory/keeper" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - globalfeetypes "github.com/strangelove-ventures/noble/x/globalfee/types" + 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( diff --git a/buf.yaml b/buf.work.yaml similarity index 61% rename from buf.yaml rename to buf.work.yaml index 494296bf..1878b341 100644 --- a/buf.yaml +++ b/buf.work.yaml @@ -1,4 +1,3 @@ version: v1 directories: - proto - - third_party/proto diff --git a/cmd/nobled/main.go b/cmd/nobled/main.go index e4883a2c..eb8d9572 100644 --- a/cmd/nobled/main.go +++ b/cmd/nobled/main.go @@ -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() { diff --git a/go.mod b/go.mod index 8469df9a..e6b2ae8f 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/strangelove-ventures/noble +module github.com/strangelove-ventures/noble/v4 go 1.21 diff --git a/interchaintest/cctp_deposit_for_burn_test.go b/interchaintest/cctp_deposit_for_burn_test.go index a0357fee..3aee5baf 100644 --- a/interchaintest/cctp_deposit_for_burn_test.go +++ b/interchaintest/cctp_deposit_for_burn_test.go @@ -17,7 +17,7 @@ import ( "github.com/strangelove-ventures/interchaintest/v4" "github.com/strangelove-ventures/interchaintest/v4/chain/cosmos" "github.com/strangelove-ventures/interchaintest/v4/testreporter" - "github.com/strangelove-ventures/noble/cmd" + "github.com/strangelove-ventures/noble/v4/cmd" "github.com/stretchr/testify/require" "go.uber.org/zap/zaptest" ) diff --git a/interchaintest/cctp_deposit_for_burn_with_caller_test.go b/interchaintest/cctp_deposit_for_burn_with_caller_test.go index 22cf4a18..e81012e8 100644 --- a/interchaintest/cctp_deposit_for_burn_with_caller_test.go +++ b/interchaintest/cctp_deposit_for_burn_with_caller_test.go @@ -17,7 +17,7 @@ import ( "github.com/strangelove-ventures/interchaintest/v4" "github.com/strangelove-ventures/interchaintest/v4/chain/cosmos" "github.com/strangelove-ventures/interchaintest/v4/testreporter" - "github.com/strangelove-ventures/noble/cmd" + "github.com/strangelove-ventures/noble/v4/cmd" "github.com/stretchr/testify/require" "go.uber.org/zap/zaptest" ) diff --git a/interchaintest/cctp_receive_message_test.go b/interchaintest/cctp_receive_message_test.go index f9adb2cf..a7af3aa2 100644 --- a/interchaintest/cctp_receive_message_test.go +++ b/interchaintest/cctp_receive_message_test.go @@ -22,7 +22,7 @@ import ( "github.com/strangelove-ventures/interchaintest/v4" "github.com/strangelove-ventures/interchaintest/v4/chain/cosmos" "github.com/strangelove-ventures/interchaintest/v4/testreporter" - "github.com/strangelove-ventures/noble/cmd" + "github.com/strangelove-ventures/noble/v4/cmd" "github.com/stretchr/testify/require" "go.uber.org/zap/zaptest" ) diff --git a/interchaintest/cctp_receive_message_with_caller_test.go b/interchaintest/cctp_receive_message_with_caller_test.go index fa974b41..daa9db5b 100644 --- a/interchaintest/cctp_receive_message_with_caller_test.go +++ b/interchaintest/cctp_receive_message_with_caller_test.go @@ -22,7 +22,7 @@ import ( "github.com/strangelove-ventures/interchaintest/v4" "github.com/strangelove-ventures/interchaintest/v4/chain/cosmos" "github.com/strangelove-ventures/interchaintest/v4/testreporter" - "github.com/strangelove-ventures/noble/cmd" + "github.com/strangelove-ventures/noble/v4/cmd" "github.com/stretchr/testify/require" "go.uber.org/zap/zaptest" ) diff --git a/interchaintest/cctp_replace_deposit_for_burn_test.go b/interchaintest/cctp_replace_deposit_for_burn_test.go index 5077fe12..ef5ca02d 100644 --- a/interchaintest/cctp_replace_deposit_for_burn_test.go +++ b/interchaintest/cctp_replace_deposit_for_burn_test.go @@ -23,7 +23,7 @@ import ( "github.com/strangelove-ventures/interchaintest/v4" "github.com/strangelove-ventures/interchaintest/v4/chain/cosmos" "github.com/strangelove-ventures/interchaintest/v4/testreporter" - "github.com/strangelove-ventures/noble/cmd" + "github.com/strangelove-ventures/noble/v4/cmd" "github.com/stretchr/testify/require" "go.uber.org/zap/zaptest" ) diff --git a/interchaintest/cctp_roles_test.go b/interchaintest/cctp_roles_test.go index 91d47267..fa482f1f 100644 --- a/interchaintest/cctp_roles_test.go +++ b/interchaintest/cctp_roles_test.go @@ -9,7 +9,7 @@ import ( "github.com/strangelove-ventures/interchaintest/v4" "github.com/strangelove-ventures/interchaintest/v4/chain/cosmos" "github.com/strangelove-ventures/interchaintest/v4/testreporter" - "github.com/strangelove-ventures/noble/cmd" + "github.com/strangelove-ventures/noble/v4/cmd" "github.com/stretchr/testify/require" "go.uber.org/zap/zaptest" ) diff --git a/interchaintest/genesis_test.go b/interchaintest/genesis_test.go index 34d960d3..720c8c66 100644 --- a/interchaintest/genesis_test.go +++ b/interchaintest/genesis_test.go @@ -13,7 +13,7 @@ import ( "github.com/strangelove-ventures/interchaintest/v4/ibc" "github.com/strangelove-ventures/interchaintest/v4/relayer" "github.com/strangelove-ventures/interchaintest/v4/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" ) diff --git a/interchaintest/globalfee_test.go b/interchaintest/globalfee_test.go index 86927ba1..43721485 100644 --- a/interchaintest/globalfee_test.go +++ b/interchaintest/globalfee_test.go @@ -9,7 +9,7 @@ import ( "github.com/strangelove-ventures/interchaintest/v4" "github.com/strangelove-ventures/interchaintest/v4/chain/cosmos" "github.com/strangelove-ventures/interchaintest/v4/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" diff --git a/interchaintest/go.mod b/interchaintest/go.mod index 7b408c82..e6ab68ee 100644 --- a/interchaintest/go.mod +++ b/interchaintest/go.mod @@ -12,7 +12,7 @@ require ( github.com/gogo/protobuf v1.3.3 github.com/icza/dyno v0.0.0-20220812133438-f0b6f8a18845 github.com/strangelove-ventures/interchaintest/v4 v4.0.0-20231020192006-848acaeab959 - github.com/strangelove-ventures/noble v1.0.1-0.20230717234609-400609f26a31 + github.com/strangelove-ventures/noble/v4 v4.0.0 github.com/strangelove-ventures/paramauthority v1.1.0 github.com/stretchr/testify v1.8.4 go.uber.org/zap v1.24.0 @@ -190,7 +190,7 @@ replace ( github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 // use local version of noble - github.com/strangelove-ventures/noble => ./.. + github.com/strangelove-ventures/noble/v4 => ./.. // use cosmos compatible syndtr/goleveldb github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 diff --git a/interchaintest/noble_test.go b/interchaintest/noble_test.go index c1f4875b..12fc1a5f 100644 --- a/interchaintest/noble_test.go +++ b/interchaintest/noble_test.go @@ -9,7 +9,7 @@ import ( "github.com/strangelove-ventures/interchaintest/v4/chain/cosmos" "github.com/strangelove-ventures/interchaintest/v4/ibc" "github.com/strangelove-ventures/interchaintest/v4/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" ) diff --git a/interchaintest/paramauthority_test.go b/interchaintest/paramauthority_test.go index d779790a..6fd9ce6f 100644 --- a/interchaintest/paramauthority_test.go +++ b/interchaintest/paramauthority_test.go @@ -12,7 +12,7 @@ import ( "github.com/strangelove-ventures/interchaintest/v4/chain/cosmos" "github.com/strangelove-ventures/interchaintest/v4/ibc" "github.com/strangelove-ventures/interchaintest/v4/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" diff --git a/interchaintest/upgrade_radon_test.go b/interchaintest/upgrade_radon_test.go index 03f72afa..87171a6f 100644 --- a/interchaintest/upgrade_radon_test.go +++ b/interchaintest/upgrade_radon_test.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/strangelove-ventures/interchaintest/v4/chain/cosmos" "github.com/strangelove-ventures/interchaintest/v4/ibc" - globalfeetypes "github.com/strangelove-ventures/noble/x/globalfee/types" + globalfeetypes "github.com/strangelove-ventures/noble/v4/x/globalfee/types" "github.com/stretchr/testify/require" ) diff --git a/interchaintest/upgrade_test.go b/interchaintest/upgrade_test.go index 2a455f41..25de643d 100644 --- a/interchaintest/upgrade_test.go +++ b/interchaintest/upgrade_test.go @@ -13,7 +13,7 @@ import ( "github.com/strangelove-ventures/interchaintest/v4/ibc" "github.com/strangelove-ventures/interchaintest/v4/testreporter" "github.com/strangelove-ventures/interchaintest/v4/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" diff --git a/proto/Dockerfile b/proto/Dockerfile new file mode 100644 index 00000000..567a424f --- /dev/null +++ b/proto/Dockerfile @@ -0,0 +1,23 @@ +FROM bufbuild/buf:1.27.2 as BUILDER +FROM golang:1.21-alpine + +RUN apk add --no-cache \ + nodejs \ + npm \ + git \ + make + +RUN go install github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway@latest + +RUN git clone https://github.com/regen-network/protobuf.git; \ + cd protobuf; \ + go mod download; \ + make install; \ + cd .. + +RUN git clone https://github.com/regen-network/cosmos-proto.git; \ + cd cosmos-proto/protoc-gen-gocosmos; \ + go install .; \ + cd .. + +COPY --from=BUILDER /usr/local/bin /usr/local/bin diff --git a/proto/buf.gen.yaml b/proto/buf.gen.yaml new file mode 100644 index 00000000..eab53cd6 --- /dev/null +++ b/proto/buf.gen.yaml @@ -0,0 +1,8 @@ +version: v1 +plugins: + - name: gocosmos + out: .. + opt: + - plugins=grpc + - name: grpc-gateway + out: .. diff --git a/proto/buf.lock b/proto/buf.lock new file mode 100644 index 00000000..bc3f9cf6 --- /dev/null +++ b/proto/buf.lock @@ -0,0 +1,8 @@ +# Generated by buf. DO NOT EDIT. +version: v1 +deps: + - remote: buf.build + owner: noble + repository: cosmos-sdk + commit: b18b492ea3364d5fa88fe3ead0b57a95 + digest: shake256:ce3896962b4241dbaa0776fa00e661184b8bdba629722b9f38bc7e221e04d379b3ad18531f33e2552ba675cca39381dcf0df693ec146c14db719741510c24852 diff --git a/proto/buf.yaml b/proto/buf.yaml new file mode 100644 index 00000000..26497ea0 --- /dev/null +++ b/proto/buf.yaml @@ -0,0 +1,17 @@ +version: v1 +deps: + - buf.build/noble/cosmos-sdk:v0.45.16 +breaking: + use: + - FILE +lint: + use: + - DEFAULT + except: + - SERVICE_SUFFIX + - RPC_REQUEST_STANDARD_NAME + - RPC_RESPONSE_STANDARD_NAME + # TODO: Remove the following exceptions later! + - FIELD_LOWER_SNAKE_CASE + - PACKAGE_DIRECTORY_MATCH + - PACKAGE_VERSION_SUFFIX diff --git a/proto/generate.sh b/proto/generate.sh new file mode 100644 index 00000000..2d09df6b --- /dev/null +++ b/proto/generate.sh @@ -0,0 +1,6 @@ +cd proto +buf generate +cd .. + +cp -r github.com/strangelove-ventures/noble/v4/* ./ +rm -rf github.com diff --git a/proto/globalfee/genesis.proto b/proto/globalfee/genesis.proto index 0945ee5e..c788da55 100644 --- a/proto/globalfee/genesis.proto +++ b/proto/globalfee/genesis.proto @@ -1,10 +1,10 @@ syntax = "proto3"; package noble.globalfee; -import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; +import "gogoproto/gogo.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 { diff --git a/proto/globalfee/query.proto b/proto/globalfee/query.proto index 55e8f85c..85780e10 100644 --- a/proto/globalfee/query.proto +++ b/proto/globalfee/query.proto @@ -1,19 +1,23 @@ syntax = "proto3"; package noble.globalfee; +import "globalfee/genesis.proto"; import "gogoproto/gogo.proto"; 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 { - rpc Params(QueryParamsRequest) returns (Params) { + rpc Params(QueryParamsRequest) returns (QueryParamsResponse) { option (google.api.http).get = "/noble/globalfee/v1beta1/params"; } } // QueryParamsRequest is the request type for the Query/Params RPC method. -message QueryParamsRequest {} \ No newline at end of file +message QueryParamsRequest {} + +// QueryParamsResponse is the response type for the Query/Params RPC method. +message QueryParamsResponse { + Params params = 1 [(gogoproto.nullable) = false]; +} diff --git a/proto/tariff/genesis.proto b/proto/tariff/genesis.proto index 9aff23a5..385dfc6a 100644 --- a/proto/tariff/genesis.proto +++ b/proto/tariff/genesis.proto @@ -4,9 +4,9 @@ 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 { - Params params = 1 [ (gogoproto.nullable) = false ]; + Params params = 1 [(gogoproto.nullable) = false]; } diff --git a/proto/tariff/params.proto b/proto/tariff/params.proto index 550ee6d1..4a50780a 100644 --- a/proto/tariff/params.proto +++ b/proto/tariff/params.proto @@ -1,53 +1,49 @@ syntax = "proto3"; package noble.tariff; -option go_package = "github.com/strangelove-ventures/noble/x/tariff/types"; -option (gogoproto.equal_all) = true; - import "gogoproto/gogo.proto"; -import "cosmos/base/v1beta1/coin.proto"; + +option go_package = "github.com/strangelove-ventures/noble/v4/x/tariff/types"; +option (gogoproto.equal_all) = true; // Params defines the set of params for the distribution module. message Params { option (gogoproto.goproto_stringer) = false; - // share is % of tx fees or rewards allocated to distribution_entities + // share is % of tx fees or rewards allocated to distribution_entities string share = 1 [ - (gogoproto.moretags) = "yaml:\"share\"", + (gogoproto.moretags) = "yaml:\"share\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", - (gogoproto.nullable) = false + (gogoproto.nullable) = false ]; - + // % of tx fees or rewards allocated to a set of global distribution entities // these shares must add up to 1 repeated DistributionEntity distribution_entities = 2 [ - (gogoproto.moretags) = "yaml:\"distribution_entities\"", - (gogoproto.nullable) = false + (gogoproto.moretags) = "yaml:\"distribution_entities\"", + (gogoproto.nullable) = false ]; string transfer_fee_bps = 3 [ - (gogoproto.moretags) = "yaml:\"transfer_fee_bps\"", + (gogoproto.moretags) = "yaml:\"transfer_fee_bps\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", - (gogoproto.nullable) = false + (gogoproto.nullable) = false ]; string transfer_fee_max = 4 [ - (gogoproto.moretags) = "yaml:\"transfer_fee_max\"", + (gogoproto.moretags) = "yaml:\"transfer_fee_max\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", - (gogoproto.nullable) = false + (gogoproto.nullable) = false ]; - string transfer_fee_denom = 5 [ - (gogoproto.moretags) = "yaml:\"transfer_fee_denom\"" - ]; + string transfer_fee_denom = 5 [(gogoproto.moretags) = "yaml:\"transfer_fee_denom\""]; } // DistributionEntity defines a distribution entity message DistributionEntity { string address = 1; string share = 2 [ - (gogoproto.moretags) = "yaml:\"share\"", + (gogoproto.moretags) = "yaml:\"share\"", (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Dec", - (gogoproto.nullable) = false + (gogoproto.nullable) = false ]; } - diff --git a/proto/tokenfactory/blacklisted.proto b/proto/tokenfactory/blacklisted.proto index a269ef51..6120e30b 100644 --- a/proto/tokenfactory/blacklisted.proto +++ b/proto/tokenfactory/blacklisted.proto @@ -1,6 +1,8 @@ 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; } +message Blacklisted { + bytes addressBz = 1; +} diff --git a/proto/tokenfactory/blacklister.proto b/proto/tokenfactory/blacklister.proto index 78efb100..89890d95 100644 --- a/proto/tokenfactory/blacklister.proto +++ b/proto/tokenfactory/blacklister.proto @@ -1,6 +1,8 @@ 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; } +message Blacklister { + string address = 1; +} diff --git a/proto/tokenfactory/genesis.proto b/proto/tokenfactory/genesis.proto index 0fcc675d..32f49f22 100644 --- a/proto/tokenfactory/genesis.proto +++ b/proto/tokenfactory/genesis.proto @@ -2,32 +2,31 @@ syntax = "proto3"; package noble.tokenfactory; import "gogoproto/gogo.proto"; -import "tokenfactory/params.proto"; import "tokenfactory/blacklisted.proto"; -import "tokenfactory/paused.proto"; -import "tokenfactory/master_minter.proto"; -import "tokenfactory/minters.proto"; -import "tokenfactory/pauser.proto"; import "tokenfactory/blacklister.proto"; -import "tokenfactory/owner.proto"; +import "tokenfactory/master_minter.proto"; import "tokenfactory/minter_controller.proto"; +import "tokenfactory/minters.proto"; import "tokenfactory/minting_denom.proto"; +import "tokenfactory/owner.proto"; +import "tokenfactory/params.proto"; +import "tokenfactory/paused.proto"; +import "tokenfactory/pauser.proto"; // this line is used by starport scaffolding # genesis/proto/import -option go_package = "github.com/strangelove-ventures/noble/x/tokenfactory/types"; +option go_package = "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types"; // GenesisState defines the tokenfactory module's genesis state. message GenesisState { - Params params = 1 [ (gogoproto.nullable) = false ]; - repeated Blacklisted blacklistedList = 2 [ (gogoproto.nullable) = false ]; + Params params = 1 [(gogoproto.nullable) = false]; + repeated Blacklisted blacklistedList = 2 [(gogoproto.nullable) = false]; Paused paused = 3; MasterMinter masterMinter = 4; - repeated Minters mintersList = 5 [ (gogoproto.nullable) = false ]; + repeated Minters mintersList = 5 [(gogoproto.nullable) = false]; Pauser pauser = 6; Blacklister blacklister = 7; Owner owner = 8; - repeated MinterController minterControllerList = 9 - [ (gogoproto.nullable) = false ]; + repeated MinterController minterControllerList = 9 [(gogoproto.nullable) = false]; MintingDenom mintingDenom = 10; // this line is used by starport scaffolding # genesis/proto/state } diff --git a/proto/tokenfactory/master_minter.proto b/proto/tokenfactory/master_minter.proto index 569c6f9c..3b4691bd 100644 --- a/proto/tokenfactory/master_minter.proto +++ b/proto/tokenfactory/master_minter.proto @@ -1,6 +1,8 @@ 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 MasterMinter { string address = 1; } +message MasterMinter { + string address = 1; +} diff --git a/proto/tokenfactory/minter_controller.proto b/proto/tokenfactory/minter_controller.proto index af291040..2e77e78b 100644 --- a/proto/tokenfactory/minter_controller.proto +++ b/proto/tokenfactory/minter_controller.proto @@ -1,7 +1,7 @@ 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 MinterController { string minter = 1; diff --git a/proto/tokenfactory/minters.proto b/proto/tokenfactory/minters.proto index 6bdf07ae..2d3d3c1f 100644 --- a/proto/tokenfactory/minters.proto +++ b/proto/tokenfactory/minters.proto @@ -1,11 +1,12 @@ syntax = "proto3"; package noble.tokenfactory; -option go_package = "github.com/strangelove-ventures/noble/x/tokenfactory/types"; -import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; +import "gogoproto/gogo.proto"; + +option go_package = "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types"; message Minters { string address = 1; - cosmos.base.v1beta1.Coin allowance = 2 [ (gogoproto.nullable) = false ]; + cosmos.base.v1beta1.Coin allowance = 2 [(gogoproto.nullable) = false]; } diff --git a/proto/tokenfactory/minting_denom.proto b/proto/tokenfactory/minting_denom.proto index a511756d..e3f1f464 100644 --- a/proto/tokenfactory/minting_denom.proto +++ b/proto/tokenfactory/minting_denom.proto @@ -1,6 +1,8 @@ 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 MintingDenom { string denom = 1; } +message MintingDenom { + string denom = 1; +} diff --git a/proto/tokenfactory/owner.proto b/proto/tokenfactory/owner.proto index 894e3bdb..6002c034 100644 --- a/proto/tokenfactory/owner.proto +++ b/proto/tokenfactory/owner.proto @@ -1,6 +1,8 @@ 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 Owner { string address = 1; } +message Owner { + string address = 1; +} diff --git a/proto/tokenfactory/params.proto b/proto/tokenfactory/params.proto index 0fa84122..b28d24df 100644 --- a/proto/tokenfactory/params.proto +++ b/proto/tokenfactory/params.proto @@ -3,7 +3,9 @@ package noble.tokenfactory; import "gogoproto/gogo.proto"; -option go_package = "github.com/strangelove-ventures/noble/x/tokenfactory/types"; +option go_package = "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types"; // Params defines the parameters for the module. -message Params { option (gogoproto.goproto_stringer) = false; } +message Params { + option (gogoproto.goproto_stringer) = false; +} diff --git a/proto/tokenfactory/paused.proto b/proto/tokenfactory/paused.proto index 67629ffb..1876b61f 100644 --- a/proto/tokenfactory/paused.proto +++ b/proto/tokenfactory/paused.proto @@ -1,6 +1,8 @@ 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 Paused { bool paused = 1; } +message Paused { + bool paused = 1; +} diff --git a/proto/tokenfactory/pauser.proto b/proto/tokenfactory/pauser.proto index bdda1231..84d26f3e 100644 --- a/proto/tokenfactory/pauser.proto +++ b/proto/tokenfactory/pauser.proto @@ -1,6 +1,8 @@ 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 Pauser { string address = 1; } +message Pauser { + string address = 1; +} diff --git a/proto/tokenfactory/query.proto b/proto/tokenfactory/query.proto index cddfdb8c..da8427da 100644 --- a/proto/tokenfactory/query.proto +++ b/proto/tokenfactory/query.proto @@ -1,23 +1,22 @@ syntax = "proto3"; package noble.tokenfactory; -import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "tokenfactory/params.proto"; +// this line is used by starport scaffolding # 1 +import "gogoproto/gogo.proto"; +import "google/api/annotations.proto"; import "tokenfactory/blacklisted.proto"; -import "tokenfactory/paused.proto"; -import "tokenfactory/master_minter.proto"; -import "tokenfactory/minters.proto"; -import "tokenfactory/pauser.proto"; import "tokenfactory/blacklister.proto"; -import "tokenfactory/owner.proto"; +import "tokenfactory/master_minter.proto"; import "tokenfactory/minter_controller.proto"; +import "tokenfactory/minters.proto"; import "tokenfactory/minting_denom.proto"; -// this line is used by starport scaffolding # 1 -import "cosmos/base/v1beta1/coin.proto"; -import "gogoproto/gogo.proto"; +import "tokenfactory/owner.proto"; +import "tokenfactory/params.proto"; +import "tokenfactory/paused.proto"; +import "tokenfactory/pauser.proto"; -option go_package = "github.com/strangelove-ventures/noble/x/tokenfactory/types"; +option go_package = "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types"; // Query defines the gRPC querier service. service Query { @@ -26,14 +25,12 @@ service Query { option (google.api.http).get = "/noble/tokenfactory/params"; } // Queries a Blacklisted by index. - rpc Blacklisted(QueryGetBlacklistedRequest) - returns (QueryGetBlacklistedResponse) { + rpc Blacklisted(QueryGetBlacklistedRequest) returns (QueryGetBlacklistedResponse) { option (google.api.http).get = "/noble/tokenfactory/blacklisted/{address}"; } // Queries a list of Blacklisted items. - rpc BlacklistedAll(QueryAllBlacklistedRequest) - returns (QueryAllBlacklistedResponse) { + rpc BlacklistedAll(QueryAllBlacklistedRequest) returns (QueryAllBlacklistedResponse) { option (google.api.http).get = "/noble/tokenfactory/blacklisted"; } @@ -42,8 +39,7 @@ service Query { option (google.api.http).get = "/noble/tokenfactory/paused"; } // Queries a MasterMinter by index. - rpc MasterMinter(QueryGetMasterMinterRequest) - returns (QueryGetMasterMinterResponse) { + rpc MasterMinter(QueryGetMasterMinterRequest) returns (QueryGetMasterMinterResponse) { option (google.api.http).get = "/noble/tokenfactory/master_minter"; } // Queries a Minters by index. @@ -61,8 +57,7 @@ service Query { option (google.api.http).get = "/noble/tokenfactory/pauser"; } // Queries a Blacklister by index. - rpc Blacklister(QueryGetBlacklisterRequest) - returns (QueryGetBlacklisterResponse) { + rpc Blacklister(QueryGetBlacklisterRequest) returns (QueryGetBlacklisterResponse) { option (google.api.http).get = "/noble/tokenfactory/blacklister"; } // Queries a Owner by index. @@ -70,21 +65,17 @@ service Query { option (google.api.http).get = "/noble/tokenfactory/owner"; } // Queries a MinterController by index. - rpc MinterController(QueryGetMinterControllerRequest) - returns (QueryGetMinterControllerResponse) { - option (google.api.http).get = - "/noble/tokenfactory/minter_controller/{controllerAddress}"; + rpc MinterController(QueryGetMinterControllerRequest) returns (QueryGetMinterControllerResponse) { + option (google.api.http).get = "/noble/tokenfactory/minter_controller/{controllerAddress}"; } // Queries a list of MinterController items. - rpc MinterControllerAll(QueryAllMinterControllerRequest) - returns (QueryAllMinterControllerResponse) { + rpc MinterControllerAll(QueryAllMinterControllerRequest) returns (QueryAllMinterControllerResponse) { option (google.api.http).get = "/noble/tokenfactory/minter_controller"; } // Queries a MintingDenom by index. - rpc MintingDenom(QueryGetMintingDenomRequest) - returns (QueryGetMintingDenomResponse) { + rpc MintingDenom(QueryGetMintingDenomRequest) returns (QueryGetMintingDenomResponse) { option (google.api.http).get = "/noble/tokenfactory/minting_denom"; } // this line is used by starport scaffolding # 2 @@ -96,13 +87,15 @@ message QueryParamsRequest {} // QueryParamsResponse is response type for the Query/Params RPC method. message QueryParamsResponse { // params holds all the parameters of this module. - Params params = 1 [ (gogoproto.nullable) = false ]; + Params params = 1 [(gogoproto.nullable) = false]; } -message QueryGetBlacklistedRequest { string address = 1; } +message QueryGetBlacklistedRequest { + string address = 1; +} message QueryGetBlacklistedResponse { - Blacklisted blacklisted = 1 [ (gogoproto.nullable) = false ]; + Blacklisted blacklisted = 1 [(gogoproto.nullable) = false]; } message QueryAllBlacklistedRequest { @@ -110,24 +103,26 @@ message QueryAllBlacklistedRequest { } message QueryAllBlacklistedResponse { - repeated Blacklisted blacklisted = 1 [ (gogoproto.nullable) = false ]; + repeated Blacklisted blacklisted = 1 [(gogoproto.nullable) = false]; cosmos.base.query.v1beta1.PageResponse pagination = 2; } message QueryGetPausedRequest {} message QueryGetPausedResponse { - Paused paused = 1 [ (gogoproto.nullable) = false ]; + Paused paused = 1 [(gogoproto.nullable) = false]; } message QueryGetMasterMinterRequest {} message QueryGetMasterMinterResponse { - MasterMinter masterMinter = 1 [ (gogoproto.nullable) = false ]; + MasterMinter masterMinter = 1 [(gogoproto.nullable) = false]; +} +message QueryGetMintersRequest { + string address = 1; } -message QueryGetMintersRequest { string address = 1; } message QueryGetMintersResponse { - Minters minters = 1 [ (gogoproto.nullable) = false ]; + Minters minters = 1 [(gogoproto.nullable) = false]; } message QueryAllMintersRequest { @@ -135,30 +130,32 @@ message QueryAllMintersRequest { } message QueryAllMintersResponse { - repeated Minters minters = 1 [ (gogoproto.nullable) = false ]; + repeated Minters minters = 1 [(gogoproto.nullable) = false]; cosmos.base.query.v1beta1.PageResponse pagination = 2; } message QueryGetPauserRequest {} message QueryGetPauserResponse { - Pauser pauser = 1 [ (gogoproto.nullable) = false ]; + Pauser pauser = 1 [(gogoproto.nullable) = false]; } message QueryGetBlacklisterRequest {} message QueryGetBlacklisterResponse { - Blacklister blacklister = 1 [ (gogoproto.nullable) = false ]; + Blacklister blacklister = 1 [(gogoproto.nullable) = false]; } message QueryGetOwnerRequest {} message QueryGetOwnerResponse { - Owner owner = 1 [ (gogoproto.nullable) = false ]; + Owner owner = 1 [(gogoproto.nullable) = false]; } -message QueryGetMinterControllerRequest { string controllerAddress = 1; } +message QueryGetMinterControllerRequest { + string controllerAddress = 1; +} message QueryGetMinterControllerResponse { - MinterController minterController = 1 [ (gogoproto.nullable) = false ]; + MinterController minterController = 1 [(gogoproto.nullable) = false]; } message QueryAllMinterControllerRequest { @@ -166,14 +163,13 @@ message QueryAllMinterControllerRequest { } message QueryAllMinterControllerResponse { - repeated MinterController minterController = 1 - [ (gogoproto.nullable) = false ]; + repeated MinterController minterController = 1 [(gogoproto.nullable) = false]; cosmos.base.query.v1beta1.PageResponse pagination = 2; } message QueryGetMintingDenomRequest {} message QueryGetMintingDenomResponse { - MintingDenom mintingDenom = 1 [ (gogoproto.nullable) = false ]; + MintingDenom mintingDenom = 1 [(gogoproto.nullable) = false]; } // this line is used by starport scaffolding # 3 diff --git a/proto/tokenfactory/tx.proto b/proto/tokenfactory/tx.proto index 1f00f2ae..36ea140b 100644 --- a/proto/tokenfactory/tx.proto +++ b/proto/tokenfactory/tx.proto @@ -5,15 +5,13 @@ package noble.tokenfactory; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/strangelove-ventures/noble/x/tokenfactory/types"; +option go_package = "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types"; // Msg defines the Msg service. service Msg { - rpc UpdateMasterMinter(MsgUpdateMasterMinter) - returns (MsgUpdateMasterMinterResponse); + rpc UpdateMasterMinter(MsgUpdateMasterMinter) returns (MsgUpdateMasterMinterResponse); rpc UpdatePauser(MsgUpdatePauser) returns (MsgUpdatePauserResponse); - rpc UpdateBlacklister(MsgUpdateBlacklister) - returns (MsgUpdateBlacklisterResponse); + rpc UpdateBlacklister(MsgUpdateBlacklister) returns (MsgUpdateBlacklisterResponse); rpc UpdateOwner(MsgUpdateOwner) returns (MsgUpdateOwnerResponse); rpc AcceptOwner(MsgAcceptOwner) returns (MsgAcceptOwnerResponse); rpc ConfigureMinter(MsgConfigureMinter) returns (MsgConfigureMinterResponse); @@ -24,10 +22,8 @@ service Msg { rpc Unblacklist(MsgUnblacklist) returns (MsgUnblacklistResponse); rpc Pause(MsgPause) returns (MsgPauseResponse); rpc Unpause(MsgUnpause) returns (MsgUnpauseResponse); - rpc ConfigureMinterController(MsgConfigureMinterController) - returns (MsgConfigureMinterControllerResponse); - rpc RemoveMinterController(MsgRemoveMinterController) - returns (MsgRemoveMinterControllerResponse); + rpc ConfigureMinterController(MsgConfigureMinterController) returns (MsgConfigureMinterControllerResponse); + rpc RemoveMinterController(MsgRemoveMinterController) returns (MsgRemoveMinterControllerResponse); // this line is used by starport scaffolding # proto/tx/rpc } @@ -59,14 +55,16 @@ message MsgUpdateOwner { message MsgUpdateOwnerResponse {} -message MsgAcceptOwner { string from = 1; } +message MsgAcceptOwner { + string from = 1; +} message MsgAcceptOwnerResponse {} message MsgConfigureMinter { string from = 1; string address = 2; - cosmos.base.v1beta1.Coin allowance = 3 [ (gogoproto.nullable) = false ]; + cosmos.base.v1beta1.Coin allowance = 3 [(gogoproto.nullable) = false]; } message MsgConfigureMinterResponse {} @@ -81,14 +79,14 @@ message MsgRemoveMinterResponse {} message MsgMint { string from = 1; string address = 2; - cosmos.base.v1beta1.Coin amount = 3 [ (gogoproto.nullable) = false ]; + cosmos.base.v1beta1.Coin amount = 3 [(gogoproto.nullable) = false]; } message MsgMintResponse {} message MsgBurn { string from = 1; - cosmos.base.v1beta1.Coin amount = 2 [ (gogoproto.nullable) = false ]; + cosmos.base.v1beta1.Coin amount = 2 [(gogoproto.nullable) = false]; } message MsgBurnResponse {} @@ -107,11 +105,15 @@ message MsgUnblacklist { message MsgUnblacklistResponse {} -message MsgPause { string from = 1; } +message MsgPause { + string from = 1; +} message MsgPauseResponse {} -message MsgUnpause { string from = 1; } +message MsgUnpause { + string from = 1; +} message MsgUnpauseResponse {} diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh deleted file mode 100644 index 71c8b16a..00000000 --- a/scripts/protocgen.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/usr/bin/env bash - -set -eo pipefail - -protoc_gen_gocosmos() { - if ! grep "github.com/gogo/protobuf => github.com/regen-network/protobuf" go.mod &>/dev/null ; then - echo -e "\tPlease run this command from somewhere inside the noble directory." - return 1 - fi - - go get github.com/regen-network/cosmos-proto/protoc-gen-gocosmos@latest 2>/dev/null -} - -protoc_gen_gocosmos - -proto_dirs=$(find ./proto -path -prune -o -name '*.proto' -print0 | xargs -0 -n1 dirname | sort | uniq) -for dir in $proto_dirs; do - buf protoc \ - -I "proto" \ - -I "third_party/proto" \ - --gocosmos_out=plugins=interfacetype+grpc,\ -Mgoogle/protobuf/any.proto=github.com/cosmos/cosmos-sdk/codec/types:. \ - --grpc-gateway_out=logtostderr=true:. \ - $(find "${dir}" -maxdepth 1 -name '*.proto') - -done - -# move proto files to the right places -cp -r github.com/strangelove-ventures/noble/* ./ -rm -rf github.com \ No newline at end of file diff --git a/testutil/keeper/tokenfactory.go b/testutil/keeper/tokenfactory.go index 87f75dba..2999cb79 100644 --- a/testutil/keeper/tokenfactory.go +++ b/testutil/keeper/tokenfactory.go @@ -9,8 +9,8 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" typesparams "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "github.com/stretchr/testify/require" "github.com/tendermint/tendermint/libs/log" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" diff --git a/testutil/network/network.go b/testutil/network/network.go index 7100bd9e..fd37c406 100644 --- a/testutil/network/network.go +++ b/testutil/network/network.go @@ -24,9 +24,9 @@ import ( paramstypes "github.com/cosmos/cosmos-sdk/x/params/types/proposal" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/strangelove-ventures/noble/app" - "github.com/strangelove-ventures/noble/cmd" - "github.com/strangelove-ventures/noble/testutil/sample" + "github.com/strangelove-ventures/noble/v4/app" + "github.com/strangelove-ventures/noble/v4/cmd" + "github.com/strangelove-ventures/noble/v4/testutil/sample" paramauthoritytypes "github.com/strangelove-ventures/paramauthority/x/params/types/proposal" paramauthorityupgradetypes "github.com/strangelove-ventures/paramauthority/x/upgrade/types" ) diff --git a/third_party/proto/amino/amino.proto b/third_party/proto/amino/amino.proto deleted file mode 100644 index d01f1752..00000000 --- a/third_party/proto/amino/amino.proto +++ /dev/null @@ -1,79 +0,0 @@ -syntax = "proto3"; - -package amino; - -import "google/protobuf/descriptor.proto"; - -// TODO(fdymylja): once we fully migrate to protov2 the go_package needs to be updated. -// We need this right now because gogoproto codegen needs to import the extension. -option go_package = "github.com/cosmos/cosmos-sdk/types/tx/amino"; - -extend google.protobuf.MessageOptions { - // name is the string used when registering a concrete - // type into the Amino type registry, via the Amino codec's - // `RegisterConcrete()` method. This string MUST be at most 39 - // characters long, or else the message will be rejected by the - // Ledger hardware device. - string name = 11110001; - - // encoding describes the encoding format used by Amino for the given - // message. The field type is chosen to be a string for - // flexibility, but it should ideally be short and expected to be - // machine-readable, for example "base64" or "utf8_json". We - // highly recommend to use underscores for word separation instead of spaces. - // - // If left empty, then the Amino encoding is expected to be the same as the - // Protobuf one. - // - // This annotation should not be confused with the `encoding` - // one which operates on the field level. - string message_encoding = 11110002; -} - -extend google.protobuf.FieldOptions { - // encoding describes the encoding format used by Amino for - // the given field. The field type is chosen to be a string for - // flexibility, but it should ideally be short and expected to be - // machine-readable, for example "base64" or "utf8_json". We - // highly recommend to use underscores for word separation instead of spaces. - // - // If left empty, then the Amino encoding is expected to be the same as the - // Protobuf one. - // - // This annotation should not be confused with the - // `message_encoding` one which operates on the message level. - string encoding = 11110003; - - // field_name sets a different field name (i.e. key name) in - // the amino JSON object for the given field. - // - // Example: - // - // message Foo { - // string bar = 1 [(amino.field_name) = "baz"]; - // } - // - // Then the Amino encoding of Foo will be: - // `{"baz":"some value"}` - string field_name = 11110004; - - // dont_omitempty sets the field in the JSON object even if - // its value is empty, i.e. equal to the Golang zero value. To learn what - // the zero values are, see https://go.dev/ref/spec#The_zero_value. - // - // Fields default to `omitempty`, which is the default behavior when this - // annotation is unset. When set to true, then the field value in the - // JSON object will be set, i.e. not `undefined`. - // - // Example: - // - // message Foo { - // string bar = 1; - // string baz = 2 [(amino.dont_omitempty) = true]; - // } - // - // f := Foo{}; - // out := AminoJSONEncoder(&f); - // out == {"baz":""} - bool dont_omitempty = 11110005; -} \ No newline at end of file diff --git a/third_party/proto/buf.yaml b/third_party/proto/buf.yaml deleted file mode 100644 index 387503d4..00000000 --- a/third_party/proto/buf.yaml +++ /dev/null @@ -1,9 +0,0 @@ -version: v1 -lint: - ignore: - - tendermint - - gogoproto - - cosmos_proto - - amino - - cosmos - - google \ No newline at end of file diff --git a/third_party/proto/cosmos/base/query/v1beta1/pagination.proto b/third_party/proto/cosmos/base/query/v1beta1/pagination.proto deleted file mode 100644 index b61756a8..00000000 --- a/third_party/proto/cosmos/base/query/v1beta1/pagination.proto +++ /dev/null @@ -1,56 +0,0 @@ -syntax = "proto3"; -package cosmos.base.query.v1beta1; - -option go_package = "github.com/cosmos/cosmos-sdk/types/query"; - -// PageRequest is to be embedded in gRPC request messages for efficient -// pagination. Ex: -// -// message SomeRequest { -// Foo some_parameter = 1; -// PageRequest pagination = 2; -// } -message PageRequest { - // key is a value returned in PageResponse.next_key to begin - // querying the next page most efficiently. Only one of offset or key - // should be set. - bytes key = 1; - - // offset is a numeric offset that can be used when key is unavailable. - // It is less efficient than using key. Only one of offset or key should - // be set. - uint64 offset = 2; - - // limit is the total number of results to be returned in the result page. - // If left empty it will default to a value to be set by each app. - uint64 limit = 3; - - // count_total is set to true to indicate that the result set should include - // a count of the total number of items available for pagination in UIs. - // count_total is only respected when offset is used. It is ignored when key - // is set. - bool count_total = 4; - - // reverse is set to true if results are to be returned in the descending order. - // - // Since: cosmos-sdk 0.43 - bool reverse = 5; -} - -// PageResponse is to be embedded in gRPC response messages where the -// corresponding request message has used PageRequest. -// -// message SomeResponse { -// repeated Bar results = 1; -// PageResponse page = 2; -// } -message PageResponse { - // next_key is the key to be passed to PageRequest.key to - // query the next page most efficiently. It will be empty if - // there are no more results. - bytes next_key = 1; - - // total is total number of results available if PageRequest.count_total - // was set, its value is undefined otherwise - uint64 total = 2; -} \ No newline at end of file diff --git a/third_party/proto/cosmos/base/v1beta1/coin.proto b/third_party/proto/cosmos/base/v1beta1/coin.proto deleted file mode 100644 index fab75284..00000000 --- a/third_party/proto/cosmos/base/v1beta1/coin.proto +++ /dev/null @@ -1,40 +0,0 @@ -syntax = "proto3"; -package cosmos.base.v1beta1; - -import "gogoproto/gogo.proto"; - -option go_package = "github.com/cosmos/cosmos-sdk/types"; -option (gogoproto.goproto_stringer_all) = false; -option (gogoproto.stringer_all) = false; - -// Coin defines a token with a denomination and an amount. -// -// NOTE: The amount field is an Int which implements the custom method -// signatures required by gogoproto. -message Coin { - option (gogoproto.equal) = true; - - string denom = 1; - string amount = 2 [(gogoproto.customtype) = "Int", (gogoproto.nullable) = false]; -} - -// DecCoin defines a token with a denomination and a decimal amount. -// -// NOTE: The amount field is an Dec which implements the custom method -// signatures required by gogoproto. -message DecCoin { - option (gogoproto.equal) = true; - - string denom = 1; - string amount = 2 [(gogoproto.customtype) = "Dec", (gogoproto.nullable) = false]; -} - -// IntProto defines a Protobuf wrapper around an Int object. -message IntProto { - string int = 1 [(gogoproto.customtype) = "Int", (gogoproto.nullable) = false]; -} - -// DecProto defines a Protobuf wrapper around a Dec object. -message DecProto { - string dec = 1 [(gogoproto.customtype) = "Dec", (gogoproto.nullable) = false]; -} diff --git a/third_party/proto/cosmos_proto/cosmos.proto b/third_party/proto/cosmos_proto/cosmos.proto deleted file mode 100644 index 167b1707..00000000 --- a/third_party/proto/cosmos_proto/cosmos.proto +++ /dev/null @@ -1,16 +0,0 @@ -syntax = "proto3"; -package cosmos_proto; - -import "google/protobuf/descriptor.proto"; - -option go_package = "github.com/regen-network/cosmos-proto"; - -extend google.protobuf.MessageOptions { - string interface_type = 93001; - - string implements_interface = 93002; -} - -extend google.protobuf.FieldOptions { - string accepts_interface = 93001; -} diff --git a/third_party/proto/gogoproto/gogo.proto b/third_party/proto/gogoproto/gogo.proto deleted file mode 100644 index bf975466..00000000 --- a/third_party/proto/gogoproto/gogo.proto +++ /dev/null @@ -1,145 +0,0 @@ -// Protocol Buffers for Go with Gadgets -// -// Copyright (c) 2013, The GoGo Authors. All rights reserved. -// http://github.com/gogo/protobuf -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -syntax = "proto2"; -package gogoproto; - -import "google/protobuf/descriptor.proto"; - -option java_package = "com.google.protobuf"; -option java_outer_classname = "GoGoProtos"; -option go_package = "github.com/gogo/protobuf/gogoproto"; - -extend google.protobuf.EnumOptions { - optional bool goproto_enum_prefix = 62001; - optional bool goproto_enum_stringer = 62021; - optional bool enum_stringer = 62022; - optional string enum_customname = 62023; - optional bool enumdecl = 62024; -} - -extend google.protobuf.EnumValueOptions { - optional string enumvalue_customname = 66001; -} - -extend google.protobuf.FileOptions { - optional bool goproto_getters_all = 63001; - optional bool goproto_enum_prefix_all = 63002; - optional bool goproto_stringer_all = 63003; - optional bool verbose_equal_all = 63004; - optional bool face_all = 63005; - optional bool gostring_all = 63006; - optional bool populate_all = 63007; - optional bool stringer_all = 63008; - optional bool onlyone_all = 63009; - - optional bool equal_all = 63013; - optional bool description_all = 63014; - optional bool testgen_all = 63015; - optional bool benchgen_all = 63016; - optional bool marshaler_all = 63017; - optional bool unmarshaler_all = 63018; - optional bool stable_marshaler_all = 63019; - - optional bool sizer_all = 63020; - - optional bool goproto_enum_stringer_all = 63021; - optional bool enum_stringer_all = 63022; - - optional bool unsafe_marshaler_all = 63023; - optional bool unsafe_unmarshaler_all = 63024; - - optional bool goproto_extensions_map_all = 63025; - optional bool goproto_unrecognized_all = 63026; - optional bool gogoproto_import = 63027; - optional bool protosizer_all = 63028; - optional bool compare_all = 63029; - optional bool typedecl_all = 63030; - optional bool enumdecl_all = 63031; - - optional bool goproto_registration = 63032; - optional bool messagename_all = 63033; - - optional bool goproto_sizecache_all = 63034; - optional bool goproto_unkeyed_all = 63035; -} - -extend google.protobuf.MessageOptions { - optional bool goproto_getters = 64001; - optional bool goproto_stringer = 64003; - optional bool verbose_equal = 64004; - optional bool face = 64005; - optional bool gostring = 64006; - optional bool populate = 64007; - optional bool stringer = 67008; - optional bool onlyone = 64009; - - optional bool equal = 64013; - optional bool description = 64014; - optional bool testgen = 64015; - optional bool benchgen = 64016; - optional bool marshaler = 64017; - optional bool unmarshaler = 64018; - optional bool stable_marshaler = 64019; - - optional bool sizer = 64020; - - optional bool unsafe_marshaler = 64023; - optional bool unsafe_unmarshaler = 64024; - - optional bool goproto_extensions_map = 64025; - optional bool goproto_unrecognized = 64026; - - optional bool protosizer = 64028; - optional bool compare = 64029; - - optional bool typedecl = 64030; - - optional bool messagename = 64033; - - optional bool goproto_sizecache = 64034; - optional bool goproto_unkeyed = 64035; -} - -extend google.protobuf.FieldOptions { - optional bool nullable = 65001; - optional bool embed = 65002; - optional string customtype = 65003; - optional string customname = 65004; - optional string jsontag = 65005; - optional string moretags = 65006; - optional string casttype = 65007; - optional string castkey = 65008; - optional string castvalue = 65009; - - optional bool stdtime = 65010; - optional bool stdduration = 65011; - optional bool wktpointer = 65012; - - optional string castrepeated = 65013; -} \ No newline at end of file diff --git a/third_party/proto/google/api/annotations.proto b/third_party/proto/google/api/annotations.proto deleted file mode 100644 index 18dcf209..00000000 --- a/third_party/proto/google/api/annotations.proto +++ /dev/null @@ -1,31 +0,0 @@ -// Copyright (c) 2015, Google Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -syntax = "proto3"; - -package google.api; - -import "google/api/http.proto"; -import "google/protobuf/descriptor.proto"; - -option go_package = "google.golang.org/genproto/googleapis/api/annotations;annotations"; -option java_multiple_files = true; -option java_outer_classname = "AnnotationsProto"; -option java_package = "com.google.api"; -option objc_class_prefix = "GAPI"; - -extend google.protobuf.MethodOptions { - // See `HttpRule`. - HttpRule http = 72295728; -} \ No newline at end of file diff --git a/third_party/proto/google/api/http.proto b/third_party/proto/google/api/http.proto deleted file mode 100644 index 61168c33..00000000 --- a/third_party/proto/google/api/http.proto +++ /dev/null @@ -1,318 +0,0 @@ -// Copyright 2018 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -syntax = "proto3"; - -package google.api; - -option cc_enable_arenas = true; -option go_package = "google.golang.org/genproto/googleapis/api/annotations;annotations"; -option java_multiple_files = true; -option java_outer_classname = "HttpProto"; -option java_package = "com.google.api"; -option objc_class_prefix = "GAPI"; - - -// Defines the HTTP configuration for an API service. It contains a list of -// [HttpRule][google.api.HttpRule], each specifying the mapping of an RPC method -// to one or more HTTP REST API methods. -message Http { - // A list of HTTP configuration rules that apply to individual API methods. - // - // **NOTE:** All service configuration rules follow "last one wins" order. - repeated HttpRule rules = 1; - - // When set to true, URL path parmeters will be fully URI-decoded except in - // cases of single segment matches in reserved expansion, where "%2F" will be - // left encoded. - // - // The default behavior is to not decode RFC 6570 reserved characters in multi - // segment matches. - bool fully_decode_reserved_expansion = 2; -} - -// `HttpRule` defines the mapping of an RPC method to one or more HTTP -// REST API methods. The mapping specifies how different portions of the RPC -// request message are mapped to URL path, URL query parameters, and -// HTTP request body. The mapping is typically specified as an -// `google.api.http` annotation on the RPC method, -// see "google/api/annotations.proto" for details. -// -// The mapping consists of a field specifying the path template and -// method kind. The path template can refer to fields in the request -// message, as in the example below which describes a REST GET -// operation on a resource collection of messages: -// -// -// service Messaging { -// rpc GetMessage(GetMessageRequest) returns (Message) { -// option (google.api.http).get = "/v1/messages/{message_id}/{sub.subfield}"; -// } -// } -// message GetMessageRequest { -// message SubMessage { -// string subfield = 1; -// } -// string message_id = 1; // mapped to the URL -// SubMessage sub = 2; // `sub.subfield` is url-mapped -// } -// message Message { -// string text = 1; // content of the resource -// } -// -// The same http annotation can alternatively be expressed inside the -// `GRPC API Configuration` YAML file. -// -// http: -// rules: -// - selector: .Messaging.GetMessage -// get: /v1/messages/{message_id}/{sub.subfield} -// -// This definition enables an automatic, bidrectional mapping of HTTP -// JSON to RPC. Example: -// -// HTTP | RPC -// -----|----- -// `GET /v1/messages/123456/foo` | `GetMessage(message_id: "123456" sub: SubMessage(subfield: "foo"))` -// -// In general, not only fields but also field paths can be referenced -// from a path pattern. Fields mapped to the path pattern cannot be -// repeated and must have a primitive (non-message) type. -// -// Any fields in the request message which are not bound by the path -// pattern automatically become (optional) HTTP query -// parameters. Assume the following definition of the request message: -// -// -// service Messaging { -// rpc GetMessage(GetMessageRequest) returns (Message) { -// option (google.api.http).get = "/v1/messages/{message_id}"; -// } -// } -// message GetMessageRequest { -// message SubMessage { -// string subfield = 1; -// } -// string message_id = 1; // mapped to the URL -// int64 revision = 2; // becomes a parameter -// SubMessage sub = 3; // `sub.subfield` becomes a parameter -// } -// -// -// This enables a HTTP JSON to RPC mapping as below: -// -// HTTP | RPC -// -----|----- -// `GET /v1/messages/123456?revision=2&sub.subfield=foo` | `GetMessage(message_id: "123456" revision: 2 sub: SubMessage(subfield: "foo"))` -// -// Note that fields which are mapped to HTTP parameters must have a -// primitive type or a repeated primitive type. Message types are not -// allowed. In the case of a repeated type, the parameter can be -// repeated in the URL, as in `...?param=A¶m=B`. -// -// For HTTP method kinds which allow a request body, the `body` field -// specifies the mapping. Consider a REST update method on the -// message resource collection: -// -// -// service Messaging { -// rpc UpdateMessage(UpdateMessageRequest) returns (Message) { -// option (google.api.http) = { -// put: "/v1/messages/{message_id}" -// body: "message" -// }; -// } -// } -// message UpdateMessageRequest { -// string message_id = 1; // mapped to the URL -// Message message = 2; // mapped to the body -// } -// -// -// The following HTTP JSON to RPC mapping is enabled, where the -// representation of the JSON in the request body is determined by -// protos JSON encoding: -// -// HTTP | RPC -// -----|----- -// `PUT /v1/messages/123456 { "text": "Hi!" }` | `UpdateMessage(message_id: "123456" message { text: "Hi!" })` -// -// The special name `*` can be used in the body mapping to define that -// every field not bound by the path template should be mapped to the -// request body. This enables the following alternative definition of -// the update method: -// -// service Messaging { -// rpc UpdateMessage(Message) returns (Message) { -// option (google.api.http) = { -// put: "/v1/messages/{message_id}" -// body: "*" -// }; -// } -// } -// message Message { -// string message_id = 1; -// string text = 2; -// } -// -// -// The following HTTP JSON to RPC mapping is enabled: -// -// HTTP | RPC -// -----|----- -// `PUT /v1/messages/123456 { "text": "Hi!" }` | `UpdateMessage(message_id: "123456" text: "Hi!")` -// -// Note that when using `*` in the body mapping, it is not possible to -// have HTTP parameters, as all fields not bound by the path end in -// the body. This makes this option more rarely used in practice of -// defining REST APIs. The common usage of `*` is in custom methods -// which don't use the URL at all for transferring data. -// -// It is possible to define multiple HTTP methods for one RPC by using -// the `additional_bindings` option. Example: -// -// service Messaging { -// rpc GetMessage(GetMessageRequest) returns (Message) { -// option (google.api.http) = { -// get: "/v1/messages/{message_id}" -// additional_bindings { -// get: "/v1/users/{user_id}/messages/{message_id}" -// } -// }; -// } -// } -// message GetMessageRequest { -// string message_id = 1; -// string user_id = 2; -// } -// -// -// This enables the following two alternative HTTP JSON to RPC -// mappings: -// -// HTTP | RPC -// -----|----- -// `GET /v1/messages/123456` | `GetMessage(message_id: "123456")` -// `GET /v1/users/me/messages/123456` | `GetMessage(user_id: "me" message_id: "123456")` -// -// # Rules for HTTP mapping -// -// The rules for mapping HTTP path, query parameters, and body fields -// to the request message are as follows: -// -// 1. The `body` field specifies either `*` or a field path, or is -// omitted. If omitted, it indicates there is no HTTP request body. -// 2. Leaf fields (recursive expansion of nested messages in the -// request) can be classified into three types: -// (a) Matched in the URL template. -// (b) Covered by body (if body is `*`, everything except (a) fields; -// else everything under the body field) -// (c) All other fields. -// 3. URL query parameters found in the HTTP request are mapped to (c) fields. -// 4. Any body sent with an HTTP request can contain only (b) fields. -// -// The syntax of the path template is as follows: -// -// Template = "/" Segments [ Verb ] ; -// Segments = Segment { "/" Segment } ; -// Segment = "*" | "**" | LITERAL | Variable ; -// Variable = "{" FieldPath [ "=" Segments ] "}" ; -// FieldPath = IDENT { "." IDENT } ; -// Verb = ":" LITERAL ; -// -// The syntax `*` matches a single path segment. The syntax `**` matches zero -// or more path segments, which must be the last part of the path except the -// `Verb`. The syntax `LITERAL` matches literal text in the path. -// -// The syntax `Variable` matches part of the URL path as specified by its -// template. A variable template must not contain other variables. If a variable -// matches a single path segment, its template may be omitted, e.g. `{var}` -// is equivalent to `{var=*}`. -// -// If a variable contains exactly one path segment, such as `"{var}"` or -// `"{var=*}"`, when such a variable is expanded into a URL path, all characters -// except `[-_.~0-9a-zA-Z]` are percent-encoded. Such variables show up in the -// Discovery Document as `{var}`. -// -// If a variable contains one or more path segments, such as `"{var=foo/*}"` -// or `"{var=**}"`, when such a variable is expanded into a URL path, all -// characters except `[-_.~/0-9a-zA-Z]` are percent-encoded. Such variables -// show up in the Discovery Document as `{+var}`. -// -// NOTE: While the single segment variable matches the semantics of -// [RFC 6570](https://tools.ietf.org/html/rfc6570) Section 3.2.2 -// Simple String Expansion, the multi segment variable **does not** match -// RFC 6570 Reserved Expansion. The reason is that the Reserved Expansion -// does not expand special characters like `?` and `#`, which would lead -// to invalid URLs. -// -// NOTE: the field paths in variables and in the `body` must not refer to -// repeated fields or map fields. -message HttpRule { - // Selects methods to which this rule applies. - // - // Refer to [selector][google.api.DocumentationRule.selector] for syntax details. - string selector = 1; - - // Determines the URL pattern is matched by this rules. This pattern can be - // used with any of the {get|put|post|delete|patch} methods. A custom method - // can be defined using the 'custom' field. - oneof pattern { - // Used for listing and getting information about resources. - string get = 2; - - // Used for updating a resource. - string put = 3; - - // Used for creating a resource. - string post = 4; - - // Used for deleting a resource. - string delete = 5; - - // Used for updating a resource. - string patch = 6; - - // The custom pattern is used for specifying an HTTP method that is not - // included in the `pattern` field, such as HEAD, or "*" to leave the - // HTTP method unspecified for this rule. The wild-card rule is useful - // for services that provide content to Web (HTML) clients. - CustomHttpPattern custom = 8; - } - - // The name of the request field whose value is mapped to the HTTP body, or - // `*` for mapping all fields not captured by the path pattern to the HTTP - // body. NOTE: the referred field must not be a repeated field and must be - // present at the top-level of request message type. - string body = 7; - - // Optional. The name of the response field whose value is mapped to the HTTP - // body of response. Other response fields are ignored. When - // not set, the response message will be used as HTTP body of response. - string response_body = 12; - - // Additional HTTP bindings for the selector. Nested bindings must - // not contain an `additional_bindings` field themselves (that is, - // the nesting may only be one level deep). - repeated HttpRule additional_bindings = 11; -} - -// A custom pattern is used for defining custom HTTP verb. -message CustomHttpPattern { - // The name of this custom HTTP verb. - string kind = 1; - - // The path matched by this custom verb. - string path = 2; -} \ No newline at end of file diff --git a/third_party/proto/tendermint/crypto/proof.proto b/third_party/proto/tendermint/crypto/proof.proto deleted file mode 100644 index 7727ee7b..00000000 --- a/third_party/proto/tendermint/crypto/proof.proto +++ /dev/null @@ -1,41 +0,0 @@ -syntax = "proto3"; - -// buf:lint:ignore PACKAGE_VERSION_SUFFIX -package tendermint.crypto; - -option go_package = "github.com/tendermint/tendermint/proto/tendermint/crypto"; - -import "gogoproto/gogo.proto"; - -message Proof { - int64 total = 1; - int64 index = 2; - bytes leaf_hash = 3; - repeated bytes aunts = 4; -} - -message ValueOp { - // Encoded in ProofOp.Key. - bytes key = 1; - - // To encode in ProofOp.Data - Proof proof = 2; -} - -message DominoOp { - string key = 1; - string input = 2; - string output = 3; -} - -// ProofOp defines an operation used for calculating Merkle root -// The data could be arbitrary format, providing nessecary data -// for example neighbouring node hash -message ProofOp { - string type = 1; - bytes key = 2; - bytes data = 3; -} - -// ProofOps is Merkle proof defined by the list of ProofOps -message ProofOps { repeated ProofOp ops = 1 [ (gogoproto.nullable) = false ]; } \ No newline at end of file diff --git a/x/blockibc/blockibc.go b/x/blockibc/blockibc.go index 746b0c14..02e5551b 100644 --- a/x/blockibc/blockibc.go +++ b/x/blockibc/blockibc.go @@ -11,8 +11,8 @@ import ( channeltypes "github.com/cosmos/ibc-go/v4/modules/core/04-channel/types" porttypes "github.com/cosmos/ibc-go/v4/modules/core/05-port/types" ibcexported "github.com/cosmos/ibc-go/v4/modules/core/exported" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) var _ porttypes.IBCModule = &IBCMiddleware{} diff --git a/x/globalfee/alias.go b/x/globalfee/alias.go index 980b72e9..9de1305e 100644 --- a/x/globalfee/alias.go +++ b/x/globalfee/alias.go @@ -1,7 +1,7 @@ package globalfee import ( - "github.com/strangelove-ventures/noble/x/globalfee/types" + "github.com/strangelove-ventures/noble/v4/x/globalfee/types" ) const ( diff --git a/x/globalfee/ante/antetest/fee_utils_test.go b/x/globalfee/ante/antetest/fee_utils_test.go index a75c6861..eb412a9e 100644 --- a/x/globalfee/ante/antetest/fee_utils_test.go +++ b/x/globalfee/ante/antetest/fee_utils_test.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" - "github.com/strangelove-ventures/noble/x/globalfee/ante" + "github.com/strangelove-ventures/noble/v4/x/globalfee/ante" ) type feeUtilsTestSuite struct { diff --git a/x/globalfee/ante/fee.go b/x/globalfee/ante/fee.go index 68c36e94..6b3eece0 100644 --- a/x/globalfee/ante/fee.go +++ b/x/globalfee/ante/fee.go @@ -7,9 +7,9 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/strangelove-ventures/noble/x/globalfee/types" + "github.com/strangelove-ventures/noble/v4/x/globalfee/types" - "github.com/strangelove-ventures/noble/x/globalfee" + "github.com/strangelove-ventures/noble/v4/x/globalfee" ) // FeeWithBypassDecorator will check if the transaction's fee is at least as large diff --git a/x/globalfee/ante/fee_utils.go b/x/globalfee/ante/fee_utils.go index de6aba35..4186319e 100644 --- a/x/globalfee/ante/fee_utils.go +++ b/x/globalfee/ante/fee_utils.go @@ -4,7 +4,7 @@ import ( "math" sdk "github.com/cosmos/cosmos-sdk/types" - globalfeetypes "github.com/strangelove-ventures/noble/x/globalfee/types" + globalfeetypes "github.com/strangelove-ventures/noble/v4/x/globalfee/types" tmstrings "github.com/tendermint/tendermint/libs/strings" ) diff --git a/x/globalfee/client/cli/query.go b/x/globalfee/client/cli/query.go index 1c3d6bf2..a16b27b5 100644 --- a/x/globalfee/client/cli/query.go +++ b/x/globalfee/client/cli/query.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/globalfee/types" + "github.com/strangelove-ventures/noble/v4/x/globalfee/types" ) func GetQueryCmd() *cobra.Command { diff --git a/x/globalfee/genesis_test.go b/x/globalfee/genesis_test.go index 16f7e03e..119eab87 100644 --- a/x/globalfee/genesis_test.go +++ b/x/globalfee/genesis_test.go @@ -17,7 +17,7 @@ import ( tmproto "github.com/tendermint/tendermint/proto/tendermint/types" dbm "github.com/tendermint/tm-db" - "github.com/strangelove-ventures/noble/x/globalfee/types" + "github.com/strangelove-ventures/noble/v4/x/globalfee/types" ) func TestValidateGenesis(t *testing.T) { diff --git a/x/globalfee/module.go b/x/globalfee/module.go index 5404e97d..1f0a2e1e 100644 --- a/x/globalfee/module.go +++ b/x/globalfee/module.go @@ -16,8 +16,8 @@ import ( "github.com/spf13/cobra" abci "github.com/tendermint/tendermint/abci/types" - "github.com/strangelove-ventures/noble/x/globalfee/client/cli" - "github.com/strangelove-ventures/noble/x/globalfee/types" + "github.com/strangelove-ventures/noble/v4/x/globalfee/client/cli" + "github.com/strangelove-ventures/noble/v4/x/globalfee/types" ) var ( diff --git a/x/globalfee/querier.go b/x/globalfee/querier.go index a16d3968..efe073c9 100644 --- a/x/globalfee/querier.go +++ b/x/globalfee/querier.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/strangelove-ventures/noble/x/globalfee/types" + "github.com/strangelove-ventures/noble/v4/x/globalfee/types" ) var _ types.QueryServer = &GrpcQuerier{} @@ -25,7 +25,7 @@ func NewGrpcQuerier(paramSource ParamSource) GrpcQuerier { } // Params returns the total set of global fee parameters. -func (g GrpcQuerier) Params(stdCtx context.Context, _ *types.QueryParamsRequest) (*types.Params, error) { +func (g GrpcQuerier) Params(stdCtx context.Context, _ *types.QueryParamsRequest) (*types.QueryParamsResponse, error) { var ( minGasPrices sdk.DecCoins bypassMinFeeMsgTypes []string @@ -37,8 +37,10 @@ func (g GrpcQuerier) Params(stdCtx context.Context, _ *types.QueryParamsRequest) if g.paramSource.Has(ctx, types.ParamStoreKeyBypassMinFeeMsgTypes) { g.paramSource.Get(ctx, types.ParamStoreKeyBypassMinFeeMsgTypes, &bypassMinFeeMsgTypes) } - return &types.Params{ - MinimumGasPrices: minGasPrices, - BypassMinFeeMsgTypes: bypassMinFeeMsgTypes, + return &types.QueryParamsResponse{ + Params: types.Params{ + MinimumGasPrices: minGasPrices, + BypassMinFeeMsgTypes: bypassMinFeeMsgTypes, + }, }, nil } diff --git a/x/globalfee/querier_test.go b/x/globalfee/querier_test.go index 5553b1b6..77f6482e 100644 --- a/x/globalfee/querier_test.go +++ b/x/globalfee/querier_test.go @@ -9,7 +9,7 @@ package globalfee // "github.com/stretchr/testify/assert" // "github.com/stretchr/testify/require" -// "github.com/strangelove-ventures/noble/x/globalfee/types" +// "github.com/strangelove-ventures/noble/v4/x/globalfee/types" // ) // func TestQueryMinimumGasPrices(t *testing.T) { diff --git a/x/globalfee/types/genesis.pb.go b/x/globalfee/types/genesis.pb.go index b0e4dec7..50abab12 100644 --- a/x/globalfee/types/genesis.pb.go +++ b/x/globalfee/types/genesis.pb.go @@ -138,32 +138,32 @@ func init() { proto.RegisterFile("globalfee/genesis.proto", fileDescriptor_735b0 var fileDescriptor_735b05141d90e180 = []byte{ // 405 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0xc1, 0x8a, 0xd3, 0x40, - 0x18, 0xc7, 0x93, 0x5d, 0x28, 0x98, 0x15, 0x5c, 0xc2, 0xc2, 0xc6, 0x65, 0x49, 0x96, 0x9c, 0x0a, - 0xba, 0x33, 0xec, 0x7a, 0x10, 0x3c, 0x46, 0x71, 0xd9, 0x43, 0xa1, 0x56, 0x2f, 0x7a, 0x09, 0x93, - 0xf8, 0x75, 0x1c, 0xcc, 0xcc, 0x84, 0x7c, 0xd3, 0x62, 0x8e, 0xbe, 0x81, 0xcf, 0xe1, 0x33, 0xf8, - 0x00, 0x05, 0x2f, 0x3d, 0x7a, 0x8a, 0xd2, 0xde, 0x7a, 0xf4, 0x09, 0x24, 0x99, 0x68, 0xd5, 0xd2, - 0x53, 0x42, 0xfe, 0xff, 0xef, 0xff, 0xfb, 0x67, 0xe6, 0xf3, 0x4e, 0x79, 0xa1, 0x33, 0x56, 0x4c, - 0x01, 0x28, 0x07, 0x05, 0x28, 0x90, 0x94, 0x95, 0x36, 0xda, 0xbf, 0xa7, 0x74, 0x56, 0x00, 0xf9, - 0x23, 0x9f, 0x9d, 0x70, 0xcd, 0x75, 0xa7, 0xd1, 0xf6, 0xcd, 0xda, 0xce, 0xc2, 0x5c, 0xa3, 0xd4, - 0x48, 0x33, 0x86, 0x40, 0xe7, 0x57, 0x19, 0x18, 0x76, 0x45, 0x73, 0x2d, 0x94, 0xd5, 0xe3, 0xd7, - 0xde, 0xdd, 0x1b, 0x9b, 0xfb, 0xd2, 0x30, 0x03, 0xfe, 0xad, 0x37, 0x28, 0x59, 0xc5, 0x24, 0x06, - 0xee, 0x85, 0x3b, 0x3c, 0xba, 0x3e, 0x25, 0xff, 0x71, 0xc8, 0xb8, 0x93, 0x93, 0x60, 0xd1, 0x44, - 0xce, 0xa6, 0x89, 0x8e, 0xad, 0xfd, 0xa1, 0x96, 0xc2, 0x80, 0x2c, 0x4d, 0x3d, 0xe9, 0x03, 0xe2, - 0xaf, 0x07, 0xde, 0xc0, 0x9a, 0xfd, 0x2f, 0xae, 0xe7, 0x4b, 0xa1, 0x84, 0x9c, 0xc9, 0x94, 0x33, - 0x4c, 0xcb, 0x4a, 0xe4, 0xd0, 0x22, 0x0e, 0x87, 0x47, 0xd7, 0xe7, 0xc4, 0x76, 0x24, 0x6d, 0x47, - 0xd2, 0x77, 0x24, 0xcf, 0x20, 0x7f, 0xaa, 0x85, 0x4a, 0xca, 0x9e, 0x73, 0xbe, 0x3b, 0xbf, 0x65, - 0xfe, 0x6c, 0xa2, 0xfb, 0x35, 0x93, 0xc5, 0x93, 0x78, 0xd7, 0x15, 0x7f, 0xfe, 0x1e, 0x3d, 0xe0, - 0xc2, 0xbc, 0x9b, 0x65, 0x24, 0xd7, 0x92, 0xf6, 0x07, 0x62, 0x1f, 0x97, 0xf8, 0xf6, 0x3d, 0x35, - 0x75, 0x09, 0xf8, 0x1b, 0x88, 0x93, 0xe3, 0x3e, 0xe3, 0x86, 0xe1, 0xb8, 0x4b, 0xf0, 0x3f, 0xba, - 0x5e, 0x90, 0xd5, 0x25, 0x43, 0x4c, 0xa5, 0x50, 0xe9, 0x14, 0x20, 0x95, 0xc8, 0xd3, 0x6e, 0x2e, - 0x38, 0xb8, 0x38, 0x1c, 0xde, 0x49, 0x6e, 0x37, 0x4d, 0x14, 0xef, 0xf3, 0xfc, 0x53, 0x34, 0xb2, - 0x45, 0xf7, 0x79, 0xe3, 0xc9, 0x89, 0x95, 0x46, 0x42, 0x3d, 0x07, 0x18, 0x21, 0x7f, 0xd5, 0x7e, - 0x4e, 0x5e, 0x2c, 0x56, 0xa1, 0xbb, 0x5c, 0x85, 0xee, 0x8f, 0x55, 0xe8, 0x7e, 0x5a, 0x87, 0xce, - 0x72, 0x1d, 0x3a, 0xdf, 0xd6, 0xa1, 0xf3, 0xe6, 0xf1, 0x5f, 0x3f, 0x87, 0xa6, 0x62, 0x8a, 0x43, - 0xa1, 0xe7, 0x70, 0x39, 0x07, 0x65, 0x66, 0x15, 0x20, 0xed, 0x6e, 0x90, 0x7e, 0xa0, 0xdb, 0x55, - 0xea, 0x48, 0xd9, 0xa0, 0x5b, 0x81, 0x47, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x38, 0x6a, 0xa8, - 0xa6, 0x64, 0x02, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x52, 0x4f, 0x6b, 0xd4, 0x40, + 0x14, 0x4f, 0x5a, 0x58, 0x30, 0x15, 0x2c, 0xa1, 0xd0, 0x58, 0x4a, 0x52, 0x72, 0x5a, 0xd0, 0xce, + 0xd0, 0xea, 0xa9, 0xc7, 0x28, 0x96, 0x1e, 0x0a, 0x65, 0xed, 0x45, 0x2f, 0x61, 0x12, 0x5f, 0xc7, + 0xc1, 0xcc, 0x4c, 0xc8, 0x9b, 0x0d, 0xe6, 0xe8, 0x37, 0xf0, 0x73, 0xf8, 0x19, 0xfc, 0x00, 0x0b, + 0x5e, 0xf6, 0xe8, 0x29, 0xca, 0xee, 0x6d, 0x8f, 0x7e, 0x02, 0x49, 0x26, 0xba, 0xda, 0x65, 0x4f, + 0xf3, 0x78, 0xef, 0xf7, 0x6f, 0x66, 0x9e, 0x77, 0xc8, 0x0b, 0x9d, 0xb1, 0xe2, 0x0e, 0x80, 0x72, + 0x50, 0x80, 0x02, 0x49, 0x59, 0x69, 0xa3, 0xfd, 0x47, 0x4a, 0x67, 0x05, 0x90, 0xbf, 0xe3, 0xa3, + 0x30, 0xd7, 0x28, 0x35, 0xd2, 0x8c, 0x21, 0xd0, 0xfa, 0x2c, 0x03, 0xc3, 0xce, 0x68, 0xae, 0x85, + 0xb2, 0x84, 0xa3, 0x03, 0xae, 0xb9, 0xee, 0x4b, 0xda, 0x55, 0xb6, 0x1b, 0xbf, 0xf1, 0x1e, 0x5e, + 0x5a, 0xdd, 0xd7, 0x86, 0x19, 0xf0, 0xaf, 0xbc, 0x51, 0xc9, 0x2a, 0x26, 0x31, 0x70, 0x4f, 0xdc, + 0xf1, 0xde, 0xf9, 0x21, 0xb9, 0xe7, 0x43, 0x6e, 0xfa, 0x71, 0x12, 0xcc, 0xda, 0xc8, 0x59, 0xb5, + 0xd1, 0xbe, 0x85, 0x3f, 0xd5, 0x52, 0x18, 0x90, 0xa5, 0x69, 0x26, 0x83, 0x40, 0xfc, 0x6d, 0xc7, + 0x1b, 0x59, 0xb0, 0xff, 0xd5, 0xf5, 0x7c, 0x29, 0x94, 0x90, 0x53, 0x99, 0x72, 0x86, 0x69, 0x59, + 0x89, 0x1c, 0x3a, 0x8b, 0xdd, 0xf1, 0xde, 0xf9, 0x31, 0xb1, 0xc9, 0x49, 0x97, 0x9c, 0x0c, 0xc9, + 0xc9, 0x4b, 0xc8, 0x5f, 0x68, 0xa1, 0x92, 0x72, 0xf0, 0x39, 0xde, 0xe4, 0xaf, 0x3d, 0x7f, 0xb5, + 0xd1, 0xe3, 0x86, 0xc9, 0xe2, 0x22, 0xde, 0x44, 0xc5, 0x5f, 0x7e, 0x44, 0x4f, 0xb8, 0x30, 0xef, + 0xa7, 0x19, 0xc9, 0xb5, 0xa4, 0xc3, 0x33, 0xd9, 0xe3, 0x14, 0xdf, 0x7d, 0xa0, 0xa6, 0x29, 0x01, + 0xff, 0x18, 0xe2, 0x64, 0x7f, 0xd0, 0xb8, 0x64, 0x78, 0xd3, 0x2b, 0xf8, 0x9f, 0x5c, 0x2f, 0xc8, + 0x9a, 0x92, 0x21, 0xa6, 0x52, 0xa8, 0xf4, 0x0e, 0x20, 0x95, 0xc8, 0xd3, 0x9e, 0x17, 0xec, 0x9c, + 0xec, 0x8e, 0x1f, 0x24, 0x57, 0xab, 0x36, 0x8a, 0xb7, 0x61, 0xfe, 0x0b, 0x1a, 0xd9, 0xa0, 0xdb, + 0xb0, 0xf1, 0xe4, 0xc0, 0x8e, 0xae, 0x85, 0x7a, 0x05, 0x70, 0x8d, 0xfc, 0xb6, 0x6b, 0x27, 0xb7, + 0xb3, 0x45, 0xe8, 0xce, 0x17, 0xa1, 0xfb, 0x73, 0x11, 0xba, 0x9f, 0x97, 0xa1, 0x33, 0x5f, 0x86, + 0xce, 0xf7, 0x65, 0xe8, 0xbc, 0xbd, 0xf8, 0xe7, 0x72, 0x68, 0x2a, 0xa6, 0x38, 0x14, 0xba, 0x86, + 0xd3, 0x1a, 0x94, 0x99, 0x56, 0x80, 0xb4, 0xff, 0x41, 0x5a, 0x3f, 0xa7, 0x1f, 0xe9, 0x7a, 0x9b, + 0x7a, 0xb3, 0x6c, 0xd4, 0x6f, 0xc1, 0xb3, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xfe, 0xf8, 0x43, + 0x00, 0x67, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/globalfee/types/query.pb.go b/x/globalfee/types/query.pb.go index ce8aecb6..b1a484eb 100644 --- a/x/globalfee/types/query.pb.go +++ b/x/globalfee/types/query.pb.go @@ -6,7 +6,6 @@ package types import ( context "context" fmt "fmt" - _ "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" @@ -67,31 +66,79 @@ func (m *QueryParamsRequest) XXX_DiscardUnknown() { var xxx_messageInfo_QueryParamsRequest proto.InternalMessageInfo +// QueryParamsResponse is the response type for the Query/Params RPC method. +type QueryParamsResponse struct { + Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"` +} + +func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } +func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } +func (*QueryParamsResponse) ProtoMessage() {} +func (*QueryParamsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_387dd811257f4eeb, []int{1} +} +func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryParamsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryParamsResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *QueryParamsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryParamsResponse.Merge(m, src) +} +func (m *QueryParamsResponse) XXX_Size() int { + return m.Size() +} +func (m *QueryParamsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_QueryParamsResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryParamsResponse proto.InternalMessageInfo + +func (m *QueryParamsResponse) GetParams() Params { + if m != nil { + return m.Params + } + return Params{} +} + func init() { proto.RegisterType((*QueryParamsRequest)(nil), "noble.globalfee.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "noble.globalfee.QueryParamsResponse") } func init() { proto.RegisterFile("globalfee/query.proto", fileDescriptor_387dd811257f4eeb) } var fileDescriptor_387dd811257f4eeb = []byte{ - // 268 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x8f, 0xb1, 0x4e, 0xc3, 0x30, - 0x10, 0x40, 0x1b, 0x24, 0x3a, 0x64, 0x41, 0x8a, 0x8a, 0x2a, 0x45, 0xc8, 0x88, 0x32, 0x30, 0x91, - 0x53, 0x61, 0x60, 0xe7, 0x0b, 0x28, 0x23, 0x9b, 0x1d, 0x1d, 0x26, 0x92, 0xe3, 0x4b, 0x7d, 0x4e, - 0xd4, 0xae, 0x7c, 0x01, 0x12, 0x3f, 0xc5, 0x58, 0x89, 0x85, 0x11, 0x25, 0x7c, 0x08, 0xaa, 0x13, - 0x28, 0xa2, 0x9b, 0xe5, 0xf7, 0xee, 0xfc, 0x1c, 0x1f, 0x6b, 0x43, 0x4a, 0x9a, 0x47, 0x44, 0x58, - 0xd6, 0xe8, 0xd6, 0x59, 0xe5, 0xc8, 0x53, 0x72, 0x64, 0x49, 0x19, 0xcc, 0x7e, 0x61, 0x3a, 0xd1, - 0xa4, 0x29, 0x30, 0xd8, 0x9e, 0x7a, 0x2d, 0x3d, 0xd1, 0x44, 0xda, 0x20, 0xc8, 0xaa, 0x00, 0x69, - 0x2d, 0x79, 0xe9, 0x0b, 0xb2, 0x3c, 0x50, 0x91, 0x13, 0x97, 0xc4, 0xa0, 0x24, 0x23, 0x34, 0x73, - 0x85, 0x5e, 0xce, 0x21, 0xa7, 0xc2, 0x0e, 0x7c, 0xba, 0x7b, 0x5b, 0xa3, 0x45, 0x2e, 0x86, 0xc1, - 0xd9, 0x24, 0x4e, 0x16, 0xdb, 0x98, 0x3b, 0xe9, 0x64, 0xc9, 0xf7, 0xb8, 0xac, 0x91, 0xfd, 0xd5, - 0x2a, 0x3e, 0x0c, 0xb7, 0x09, 0xc5, 0xe3, 0x9e, 0x24, 0xe7, 0xd9, 0xbf, 0xce, 0x6c, 0x7f, 0x2e, - 0x9d, 0xee, 0x49, 0x3d, 0x9f, 0x5d, 0x3c, 0xbf, 0x7f, 0xbd, 0x1e, 0x9c, 0x25, 0xa7, 0x10, 0x04, - 0xd8, 0xe5, 0xfc, 0xc4, 0x56, 0x41, 0xbc, 0x5d, 0xbc, 0xb5, 0x22, 0xda, 0xb4, 0x22, 0xfa, 0x6c, - 0x45, 0xf4, 0xd2, 0x89, 0xd1, 0xa6, 0x13, 0xa3, 0x8f, 0x4e, 0x8c, 0x1e, 0x6e, 0x74, 0xe1, 0x9f, - 0x6a, 0x95, 0xe5, 0x54, 0x02, 0x7b, 0x27, 0xad, 0x46, 0x43, 0x0d, 0x5e, 0x36, 0x68, 0x7d, 0xed, - 0x90, 0x87, 0xcd, 0xab, 0x3f, 0xbb, 0xfd, 0xba, 0x42, 0x56, 0xe3, 0xf0, 0xd3, 0xeb, 0xef, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x5b, 0x5e, 0x29, 0xf2, 0x80, 0x01, 0x00, 0x00, + // 298 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x90, 0xb1, 0x4b, 0xc3, 0x40, + 0x18, 0xc5, 0x73, 0xa2, 0x19, 0xce, 0x41, 0x38, 0x2b, 0x95, 0x20, 0x57, 0x8d, 0x82, 0x2e, 0xe6, + 0x68, 0xd5, 0xc5, 0xb1, 0xb3, 0x83, 0x16, 0x27, 0xb7, 0x8b, 0x7c, 0x9e, 0x81, 0xf4, 0xbe, 0x34, + 0x77, 0x09, 0x16, 0x9c, 0x04, 0x77, 0xc1, 0x7f, 0xaa, 0x63, 0xc1, 0xc5, 0x49, 0x24, 0xf1, 0x0f, + 0x91, 0x26, 0xc1, 0xaa, 0x85, 0x6e, 0x1f, 0xef, 0x7e, 0xef, 0xdd, 0xe3, 0xd1, 0x2d, 0x15, 0x63, + 0x28, 0xe3, 0x3b, 0x00, 0x31, 0xca, 0x20, 0x1d, 0x07, 0x49, 0x8a, 0x16, 0xd9, 0x86, 0xc6, 0x30, + 0x86, 0xe0, 0xe7, 0xd1, 0x6b, 0xcf, 0x39, 0x05, 0x1a, 0x4c, 0x64, 0x6a, 0xd2, 0x6b, 0x29, 0x54, + 0x58, 0x9d, 0x62, 0x76, 0x35, 0xea, 0x8e, 0x42, 0x54, 0x31, 0x08, 0x99, 0x44, 0x42, 0x6a, 0x8d, + 0x56, 0xda, 0x08, 0x75, 0xe3, 0xf1, 0x5b, 0x94, 0x5d, 0xcd, 0x3e, 0xbb, 0x94, 0xa9, 0x1c, 0x9a, + 0x01, 0x8c, 0x32, 0x30, 0xd6, 0xbf, 0xa0, 0x9b, 0x7f, 0x54, 0x93, 0xa0, 0x36, 0xc0, 0xce, 0xa8, + 0x9b, 0x54, 0xca, 0x36, 0xd9, 0x25, 0x47, 0xeb, 0xbd, 0x76, 0xf0, 0xaf, 0x5b, 0x50, 0x1b, 0xfa, + 0xab, 0x93, 0x8f, 0x8e, 0x33, 0x68, 0xe0, 0xde, 0x33, 0xa1, 0x6b, 0x55, 0x1c, 0x7b, 0xa4, 0x6e, + 0x4d, 0xb0, 0xfd, 0x05, 0xeb, 0x62, 0x0d, 0xef, 0x60, 0x39, 0x54, 0xb7, 0xf2, 0x0f, 0x9f, 0xde, + 0xbe, 0x5e, 0x57, 0xf6, 0x58, 0x47, 0x54, 0xb4, 0x98, 0xcf, 0x93, 0x77, 0x43, 0xb0, 0xb2, 0x2b, + 0xea, 0x1e, 0xfd, 0xeb, 0x49, 0xc1, 0xc9, 0xb4, 0xe0, 0xe4, 0xb3, 0xe0, 0xe4, 0xa5, 0xe4, 0xce, + 0xb4, 0xe4, 0xce, 0x7b, 0xc9, 0x9d, 0x9b, 0x73, 0x15, 0xd9, 0xfb, 0x2c, 0x0c, 0x6e, 0x71, 0x28, + 0x8c, 0x4d, 0xa5, 0x56, 0x10, 0x63, 0x0e, 0xc7, 0x39, 0x68, 0x9b, 0xa5, 0x60, 0x9a, 0xe4, 0xfc, + 0x54, 0x3c, 0xfc, 0x8a, 0xb7, 0xe3, 0x04, 0x4c, 0xe8, 0x56, 0x43, 0x9e, 0x7c, 0x07, 0x00, 0x00, + 0xff, 0xff, 0x32, 0xe1, 0x30, 0x70, 0xbf, 0x01, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -106,7 +153,7 @@ const _ = grpc.SupportPackageIsVersion4 // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. type QueryClient interface { - Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*Params, error) + Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) } type queryClient struct { @@ -117,8 +164,8 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { return &queryClient{cc} } -func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*Params, error) { - out := new(Params) +func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { + out := new(QueryParamsResponse) err := c.cc.Invoke(ctx, "/noble.globalfee.Query/Params", in, out, opts...) if err != nil { return nil, err @@ -128,14 +175,14 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . // QueryServer is the server API for Query service. type QueryServer interface { - Params(context.Context, *QueryParamsRequest) (*Params, error) + Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error) } // UnimplementedQueryServer can be embedded to have forward compatible implementations. type UnimplementedQueryServer struct { } -func (*UnimplementedQueryServer) Params(ctx context.Context, req *QueryParamsRequest) (*Params, error) { +func (*UnimplementedQueryServer) Params(ctx context.Context, req *QueryParamsRequest) (*QueryParamsResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method Params not implemented") } @@ -197,6 +244,39 @@ func (m *QueryParamsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { return len(dAtA) - i, nil } +func (m *QueryParamsResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *QueryParamsResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryParamsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + { + size, err := m.Params.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + return len(dAtA) - i, nil +} + func encodeVarintQuery(dAtA []byte, offset int, v uint64) int { offset -= sovQuery(v) base := offset @@ -217,6 +297,17 @@ func (m *QueryParamsRequest) Size() (n int) { return n } +func (m *QueryParamsResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = m.Params.Size() + n += 1 + l + sovQuery(uint64(l)) + return n +} + func sovQuery(x uint64) (n int) { return (math_bits.Len64(x|1) + 6) / 7 } @@ -273,6 +364,89 @@ func (m *QueryParamsRequest) Unmarshal(dAtA []byte) error { } return nil } +func (m *QueryParamsResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryParamsResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryParamsResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Params", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if err := m.Params.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func skipQuery(dAtA []byte) (n int, err error) { l := len(dAtA) iNdEx := 0 diff --git a/x/globalfee/types/query.pb.gw.go b/x/globalfee/types/query.pb.gw.go index cadd0d11..33d43037 100644 --- a/x/globalfee/types/query.pb.gw.go +++ b/x/globalfee/types/query.pb.gw.go @@ -20,6 +20,7 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/codes" "google.golang.org/grpc/grpclog" + "google.golang.org/grpc/metadata" "google.golang.org/grpc/status" ) @@ -30,6 +31,7 @@ var _ status.Status var _ = runtime.String var _ = utilities.NewDoubleArray var _ = descriptor.ForMessage +var _ = metadata.Join func request_Query_Params_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { var protoReq QueryParamsRequest @@ -52,12 +54,14 @@ func local_request_Query_Params_0(ctx context.Context, marshaler runtime.Marshal // RegisterQueryHandlerServer registers the http handlers for service Query to "mux". // UnaryRPC :call QueryServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. -// Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterQueryHandlerFromEndpoint instead. +// Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterQueryHandlerFromEndpoint instead. func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error { mux.Handle("GET", pattern_Query_Params_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -65,6 +69,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv return } resp, md, err := local_request_Query_Params_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) diff --git a/x/tariff/abci.go b/x/tariff/abci.go index 989b2670..ab214fcd 100644 --- a/x/tariff/abci.go +++ b/x/tariff/abci.go @@ -2,7 +2,7 @@ package tariff import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/strangelove-ventures/noble/x/tariff/keeper" + "github.com/strangelove-ventures/noble/v4/x/tariff/keeper" ) // BeginBlocker sets the proposer for determining distribution during endblock diff --git a/x/tariff/genesis.go b/x/tariff/genesis.go index 4c7312bd..66d5b996 100644 --- a/x/tariff/genesis.go +++ b/x/tariff/genesis.go @@ -1,8 +1,8 @@ package tariff import ( - "github.com/strangelove-ventures/noble/x/tariff/keeper" - "github.com/strangelove-ventures/noble/x/tariff/types" + "github.com/strangelove-ventures/noble/v4/x/tariff/keeper" + "github.com/strangelove-ventures/noble/v4/x/tariff/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/tariff/keeper/keeper.go b/x/tariff/keeper/keeper.go index 137d2bcf..b9e96a90 100644 --- a/x/tariff/keeper/keeper.go +++ b/x/tariff/keeper/keeper.go @@ -10,7 +10,7 @@ import ( chantypes "github.com/cosmos/ibc-go/v4/modules/core/04-channel/types" porttypes "github.com/cosmos/ibc-go/v4/modules/core/05-port/types" "github.com/cosmos/ibc-go/v4/modules/core/exported" - "github.com/strangelove-ventures/noble/x/tariff/types" + "github.com/strangelove-ventures/noble/v4/x/tariff/types" ) var _ porttypes.ICS4Wrapper = Keeper{} diff --git a/x/tariff/keeper/params.go b/x/tariff/keeper/params.go index e2864136..6d11e863 100644 --- a/x/tariff/keeper/params.go +++ b/x/tariff/keeper/params.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/strangelove-ventures/noble/x/tariff/types" + "github.com/strangelove-ventures/noble/v4/x/tariff/types" ) // GetParams get all parameters as types.Params diff --git a/x/tariff/module.go b/x/tariff/module.go index 188f50ad..24b3fab6 100644 --- a/x/tariff/module.go +++ b/x/tariff/module.go @@ -15,8 +15,8 @@ import ( cdctypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/strangelove-ventures/noble/x/tariff/keeper" - "github.com/strangelove-ventures/noble/x/tariff/types" + "github.com/strangelove-ventures/noble/v4/x/tariff/keeper" + "github.com/strangelove-ventures/noble/v4/x/tariff/types" ) var ( diff --git a/x/tariff/module_simulation.go b/x/tariff/module_simulation.go index d4a7ea8d..a8808452 100644 --- a/x/tariff/module_simulation.go +++ b/x/tariff/module_simulation.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/strangelove-ventures/noble/x/tariff/types" + "github.com/strangelove-ventures/noble/v4/x/tariff/types" "math/rand" ) diff --git a/x/tariff/types/genesis.pb.go b/x/tariff/types/genesis.pb.go index 83c318e5..49ebc032 100644 --- a/x/tariff/types/genesis.pb.go +++ b/x/tariff/types/genesis.pb.go @@ -75,20 +75,20 @@ func init() { func init() { proto.RegisterFile("tariff/genesis.proto", fileDescriptor_4b81fe66a0cba126) } var fileDescriptor_4b81fe66a0cba126 = []byte{ - // 201 bytes of a gzipped FileDescriptorProto + // 204 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x29, 0x49, 0x2c, 0xca, 0x4c, 0x4b, 0xd3, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0xc9, 0xcb, 0x4f, 0xca, 0x49, 0xd5, 0x83, 0xc8, 0x49, 0x89, 0xa4, 0xe7, 0xa7, 0xe7, 0x83, 0x25, 0xf4, 0x41, 0x2c, 0x88, 0x1a, 0x29, 0x61, 0xa8, 0xce, 0x82, 0xc4, 0xa2, 0xc4, 0x5c, 0xa8, 0x46, 0x25, 0x27, 0x2e, 0x1e, 0x77, 0x88, 0x49, 0xc1, 0x25, 0x89, 0x25, 0xa9, 0x42, 0x46, 0x5c, 0x6c, 0x10, 0x79, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x11, 0x3d, 0x64, 0x93, 0xf5, - 0x02, 0xc0, 0x72, 0x4e, 0x2c, 0x27, 0xee, 0xc9, 0x33, 0x04, 0x41, 0x55, 0x3a, 0xf9, 0x9d, 0x78, + 0x02, 0xc0, 0x72, 0x4e, 0x2c, 0x27, 0xee, 0xc9, 0x33, 0x04, 0x41, 0x55, 0x3a, 0x05, 0x9e, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, - 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x49, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, + 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x79, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x71, 0x49, 0x51, 0x62, 0x5e, 0x7a, 0x6a, 0x4e, 0x7e, 0x59, 0xaa, - 0x6e, 0x59, 0x6a, 0x5e, 0x49, 0x69, 0x51, 0x6a, 0xb1, 0x3e, 0xd8, 0x70, 0xfd, 0x0a, 0x7d, 0xa8, - 0xd3, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x4e, 0x33, 0x06, 0x04, 0x00, 0x00, 0xff, - 0xff, 0x63, 0x4c, 0x46, 0x98, 0xeb, 0x00, 0x00, 0x00, + 0x6e, 0x59, 0x6a, 0x5e, 0x49, 0x69, 0x51, 0x6a, 0xb1, 0x3e, 0xd8, 0x70, 0xfd, 0x32, 0x13, 0xfd, + 0x0a, 0x7d, 0xa8, 0xeb, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xae, 0x33, 0x06, 0x04, + 0x00, 0x00, 0xff, 0xff, 0x3e, 0x19, 0xa8, 0xed, 0xee, 0x00, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/tariff/types/params.pb.go b/x/tariff/types/params.pb.go index 2a06ea88..dad17964 100644 --- a/x/tariff/types/params.pb.go +++ b/x/tariff/types/params.pb.go @@ -5,7 +5,6 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/cosmos-sdk/types" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" @@ -137,35 +136,34 @@ func init() { func init() { proto.RegisterFile("tariff/params.proto", fileDescriptor_8101061d71eef07f) } var fileDescriptor_8101061d71eef07f = []byte{ - // 441 bytes of a gzipped FileDescriptorProto + // 426 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0x4f, 0x6b, 0xd4, 0x40, - 0x18, 0xc6, 0x93, 0x76, 0x5b, 0x71, 0x2c, 0x52, 0xc6, 0x8a, 0xb1, 0xe8, 0x64, 0x09, 0x22, 0xbd, - 0x34, 0x43, 0xd5, 0x53, 0x0f, 0x1e, 0x96, 0x55, 0x28, 0x22, 0x48, 0xf0, 0xe4, 0x65, 0x99, 0x6c, - 0xde, 0xdd, 0x0e, 0x6e, 0x66, 0xc2, 0xbc, 0xb3, 0xcb, 0x2e, 0x5e, 0xfd, 0x00, 0x1e, 0x7b, 0xf4, - 0xe8, 0x47, 0xe9, 0xb1, 0x47, 0xf1, 0x10, 0x64, 0xf7, 0x1b, 0xec, 0x27, 0x90, 0xcc, 0xb4, 0xb8, - 0xfd, 0x73, 0x29, 0xf4, 0x94, 0xe4, 0x7d, 0x9f, 0xfc, 0x9e, 0x3c, 0xe4, 0x19, 0xf2, 0xc8, 0x0a, - 0x23, 0x07, 0x03, 0x5e, 0x09, 0x23, 0x4a, 0x4c, 0x2b, 0xa3, 0xad, 0xa6, 0x5b, 0x4a, 0xe7, 0x23, - 0x48, 0xfd, 0x6a, 0x77, 0x67, 0xa8, 0x87, 0xda, 0x2d, 0x78, 0x73, 0xe7, 0x35, 0xbb, 0xac, 0xaf, - 0xb1, 0xd4, 0xc8, 0x73, 0x81, 0xc0, 0x27, 0x07, 0x39, 0x58, 0x71, 0xc0, 0xfb, 0x5a, 0x2a, 0xbf, - 0x4f, 0x4e, 0x5a, 0x64, 0xf3, 0x93, 0x83, 0xd2, 0xcf, 0x64, 0x03, 0x8f, 0x85, 0x81, 0x28, 0x6c, - 0x87, 0x7b, 0xf7, 0x3b, 0x6f, 0x4f, 0xeb, 0x38, 0xf8, 0x53, 0xc7, 0x2f, 0x87, 0xd2, 0x1e, 0x8f, - 0xf3, 0xb4, 0xaf, 0x4b, 0x7e, 0x0e, 0xf3, 0x97, 0x7d, 0x2c, 0xbe, 0x72, 0x3b, 0xab, 0x00, 0xd3, - 0x2e, 0xf4, 0x97, 0x75, 0xbc, 0x35, 0x13, 0xe5, 0xe8, 0x30, 0x71, 0x90, 0x24, 0xf3, 0x30, 0xfa, - 0x8d, 0x3c, 0x2e, 0x24, 0x5a, 0x23, 0xf3, 0xb1, 0x95, 0x5a, 0xf5, 0x40, 0x59, 0x69, 0x25, 0x60, - 0xb4, 0xd6, 0x5e, 0xdf, 0x7b, 0xf0, 0xaa, 0x9d, 0xae, 0x86, 0x48, 0xbb, 0x2b, 0xd2, 0x77, 0x8d, - 0x72, 0xd6, 0x79, 0xd1, 0x7c, 0xc7, 0xb2, 0x8e, 0x9f, 0x79, 0xfa, 0x8d, 0xb0, 0x24, 0xdb, 0x29, - 0xae, 0xbe, 0x29, 0x01, 0x29, 0x92, 0x6d, 0x6b, 0x84, 0xc2, 0x01, 0x98, 0xde, 0x00, 0xa0, 0x97, - 0x57, 0x18, 0xad, 0xbb, 0x74, 0x47, 0xb7, 0x48, 0x77, 0xa4, 0xec, 0xb2, 0x8e, 0x9f, 0x78, 0xff, - 0xab, 0xbc, 0x24, 0x7b, 0x78, 0x31, 0x7a, 0x0f, 0xd0, 0xa9, 0xae, 0x9b, 0x96, 0x62, 0x1a, 0xb5, - 0xee, 0xd0, 0xb4, 0x14, 0xd3, 0xcb, 0xa6, 0x1f, 0xc5, 0x94, 0x7e, 0x20, 0xf4, 0x92, 0xa8, 0x00, - 0xa5, 0xcb, 0x68, 0xc3, 0xd9, 0x3e, 0x5f, 0xd6, 0xf1, 0xd3, 0x1b, 0x40, 0x4e, 0x93, 0x64, 0xdb, - 0x2b, 0xa8, 0x6e, 0x33, 0x3a, 0x6c, 0x9d, 0xfc, 0x8c, 0x83, 0xe4, 0x7b, 0x48, 0xe8, 0xf5, 0xff, - 0x41, 0x23, 0x72, 0x4f, 0x14, 0x85, 0x01, 0x44, 0x5f, 0x94, 0xec, 0xe2, 0xf1, 0x7f, 0x81, 0xd6, - 0xee, 0xb0, 0x40, 0x9d, 0xec, 0xd7, 0x9c, 0x85, 0xa7, 0x73, 0x16, 0x9e, 0xcd, 0x59, 0xf8, 0x77, - 0xce, 0xc2, 0x1f, 0x0b, 0x16, 0x9c, 0x2d, 0x58, 0xf0, 0x7b, 0xc1, 0x82, 0x2f, 0x6f, 0x56, 0xe0, - 0xd8, 0x04, 0x19, 0xc2, 0x48, 0x4f, 0x60, 0x7f, 0x02, 0xca, 0x8e, 0x0d, 0x20, 0x77, 0xf5, 0xe2, - 0x53, 0x7e, 0x7e, 0x80, 0x9c, 0x5d, 0xbe, 0xe9, 0xca, 0xff, 0xfa, 0x5f, 0x00, 0x00, 0x00, 0xff, - 0xff, 0xe8, 0x02, 0x5e, 0x82, 0x57, 0x03, 0x00, 0x00, + 0x18, 0xc6, 0x93, 0x76, 0x5b, 0x71, 0x2c, 0x52, 0xc6, 0x8a, 0x51, 0x34, 0x59, 0x82, 0x48, 0x2f, + 0xcd, 0x80, 0x0a, 0x42, 0x0f, 0x1e, 0x96, 0x55, 0x28, 0x22, 0x48, 0xd0, 0x8b, 0x97, 0x65, 0xb2, + 0x79, 0x93, 0x0e, 0x6e, 0x32, 0x61, 0xde, 0xd9, 0x25, 0x8b, 0x57, 0x3f, 0x80, 0xc7, 0x1e, 0x3d, + 0xfa, 0x51, 0x7a, 0xec, 0x51, 0x3c, 0x04, 0xc9, 0x7e, 0x83, 0x7c, 0x02, 0xc9, 0xa4, 0xc5, 0xf4, + 0xcf, 0x45, 0xd8, 0x53, 0x92, 0x79, 0x9f, 0xf7, 0xf7, 0xbc, 0x2f, 0x79, 0x86, 0xdc, 0xd3, 0x5c, + 0x89, 0x24, 0x61, 0x05, 0x57, 0x3c, 0xc3, 0xa0, 0x50, 0x52, 0x4b, 0xba, 0x93, 0xcb, 0x68, 0x06, + 0x41, 0x57, 0x7a, 0xb4, 0x97, 0xca, 0x54, 0x9a, 0x02, 0x6b, 0xdf, 0x3a, 0x8d, 0x7f, 0x32, 0x20, + 0xdb, 0x1f, 0x4c, 0x13, 0xfd, 0x48, 0xb6, 0xf0, 0x98, 0x2b, 0x70, 0xec, 0xa1, 0xbd, 0x7f, 0x7b, + 0xf4, 0xfa, 0xb4, 0xf2, 0xac, 0xdf, 0x95, 0xf7, 0x2c, 0x15, 0xfa, 0x78, 0x1e, 0x05, 0x53, 0x99, + 0xb1, 0xa9, 0xc4, 0x4c, 0xe2, 0xf9, 0xe3, 0x00, 0xe3, 0x2f, 0x4c, 0x2f, 0x0b, 0xc0, 0x60, 0x0c, + 0xd3, 0xa6, 0xf2, 0x76, 0x96, 0x3c, 0x9b, 0x1d, 0xfa, 0x06, 0xe2, 0x87, 0x1d, 0x8c, 0x7e, 0x25, + 0xf7, 0x63, 0x81, 0x5a, 0x89, 0x68, 0xae, 0x85, 0xcc, 0x27, 0x90, 0x6b, 0xa1, 0x05, 0xa0, 0xb3, + 0x31, 0xdc, 0xdc, 0xbf, 0xf3, 0x7c, 0x18, 0xf4, 0x87, 0x0c, 0xc6, 0x3d, 0xe9, 0x9b, 0x56, 0xb9, + 0x1c, 0x3d, 0x6d, 0xe7, 0x68, 0x2a, 0xef, 0x71, 0x47, 0xbf, 0x11, 0xe6, 0x87, 0x7b, 0xf1, 0xd5, + 0x4e, 0x01, 0x48, 0x91, 0xec, 0x6a, 0xc5, 0x73, 0x4c, 0x40, 0x4d, 0x12, 0x80, 0x49, 0x54, 0xa0, + 0xb3, 0x69, 0xb6, 0x3b, 0xfa, 0x8f, 0xed, 0x8e, 0x72, 0xdd, 0x54, 0xde, 0x83, 0xce, 0xff, 0x2a, + 0xcf, 0x0f, 0xef, 0x5e, 0x1c, 0xbd, 0x05, 0x18, 0x15, 0xd7, 0x4d, 0x33, 0x5e, 0x3a, 0x83, 0x35, + 0x9a, 0x66, 0xbc, 0xbc, 0x6c, 0xfa, 0x9e, 0x97, 0xf4, 0x1d, 0xa1, 0x97, 0x44, 0x31, 0xe4, 0x32, + 0x73, 0xb6, 0x8c, 0xed, 0x93, 0xa6, 0xf2, 0x1e, 0xde, 0x00, 0x32, 0x1a, 0x3f, 0xdc, 0xed, 0xa1, + 0xc6, 0xed, 0xd1, 0xe1, 0xe0, 0xe4, 0x87, 0x67, 0xf9, 0xdf, 0x6c, 0x42, 0xaf, 0xff, 0x0f, 0xea, + 0x90, 0x5b, 0x3c, 0x8e, 0x15, 0x20, 0x76, 0x41, 0x09, 0x2f, 0x3e, 0xff, 0x05, 0x68, 0x63, 0x8d, + 0x01, 0x1a, 0x7d, 0xfa, 0x59, 0xbb, 0xf6, 0x69, 0xed, 0xda, 0x67, 0xb5, 0x6b, 0xff, 0xa9, 0x5d, + 0xfb, 0xfb, 0xca, 0xb5, 0xce, 0x56, 0xae, 0xf5, 0x6b, 0xe5, 0x5a, 0x9f, 0x5f, 0xf5, 0xe0, 0xd8, + 0x2e, 0x92, 0xc2, 0x4c, 0x2e, 0xe0, 0x60, 0x01, 0xb9, 0x9e, 0x2b, 0x40, 0x66, 0xe2, 0xc5, 0x16, + 0x2f, 0x59, 0xc9, 0xce, 0xef, 0x88, 0x71, 0x8c, 0xb6, 0x4d, 0xfe, 0x5f, 0xfc, 0x0d, 0x00, 0x00, + 0xff, 0xff, 0x85, 0x81, 0x4c, 0x01, 0x3a, 0x03, 0x00, 0x00, } func (this *Params) Equal(that interface{}) bool { diff --git a/x/tokenfactory/client/cli/query.go b/x/tokenfactory/client/cli/query.go index c064c281..8232d4d9 100644 --- a/x/tokenfactory/client/cli/query.go +++ b/x/tokenfactory/client/cli/query.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/tokenfactory/client/cli/query_blacklisted.go b/x/tokenfactory/client/cli/query_blacklisted.go index ee302345..f0185243 100644 --- a/x/tokenfactory/client/cli/query_blacklisted.go +++ b/x/tokenfactory/client/cli/query_blacklisted.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func CmdListBlacklisted() *cobra.Command { diff --git a/x/tokenfactory/client/cli/query_blacklisted_test.go b/x/tokenfactory/client/cli/query_blacklisted_test.go index 08abdabe..e61cf057 100644 --- a/x/tokenfactory/client/cli/query_blacklisted_test.go +++ b/x/tokenfactory/client/cli/query_blacklisted_test.go @@ -7,16 +7,16 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" - "github.com/strangelove-ventures/noble/testutil/sample" + "github.com/strangelove-ventures/noble/v4/testutil/sample" "github.com/stretchr/testify/require" tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/strangelove-ventures/noble/testutil/network" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/client/cli" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/testutil/network" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/client/cli" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) // Prevent strconv unused error diff --git a/x/tokenfactory/client/cli/query_blacklister.go b/x/tokenfactory/client/cli/query_blacklister.go index 45f105a7..ba7986cf 100644 --- a/x/tokenfactory/client/cli/query_blacklister.go +++ b/x/tokenfactory/client/cli/query_blacklister.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func CmdShowBlacklister() *cobra.Command { diff --git a/x/tokenfactory/client/cli/query_blacklister_test.go b/x/tokenfactory/client/cli/query_blacklister_test.go index e5e745ba..ec8c357b 100644 --- a/x/tokenfactory/client/cli/query_blacklister_test.go +++ b/x/tokenfactory/client/cli/query_blacklister_test.go @@ -9,10 +9,10 @@ import ( tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/status" - "github.com/strangelove-ventures/noble/testutil/network" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/client/cli" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/testutil/network" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/client/cli" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func networkWithBlacklisterObjects(t *testing.T) (*network.Network, types.Blacklister) { diff --git a/x/tokenfactory/client/cli/query_master_minter.go b/x/tokenfactory/client/cli/query_master_minter.go index e8baa2a8..76a6d0bd 100644 --- a/x/tokenfactory/client/cli/query_master_minter.go +++ b/x/tokenfactory/client/cli/query_master_minter.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func CmdShowMasterMinter() *cobra.Command { diff --git a/x/tokenfactory/client/cli/query_master_minter_test.go b/x/tokenfactory/client/cli/query_master_minter_test.go index ad10d782..d655029e 100644 --- a/x/tokenfactory/client/cli/query_master_minter_test.go +++ b/x/tokenfactory/client/cli/query_master_minter_test.go @@ -9,10 +9,10 @@ import ( tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/status" - "github.com/strangelove-ventures/noble/testutil/network" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/client/cli" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/testutil/network" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/client/cli" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func networkWithMasterMinterObjects(t *testing.T) (*network.Network, types.MasterMinter) { diff --git a/x/tokenfactory/client/cli/query_minter_controller.go b/x/tokenfactory/client/cli/query_minter_controller.go index bd1c708d..e0822f4e 100644 --- a/x/tokenfactory/client/cli/query_minter_controller.go +++ b/x/tokenfactory/client/cli/query_minter_controller.go @@ -3,7 +3,7 @@ package cli import ( "context" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/tokenfactory/client/cli/query_minter_controller_test.go b/x/tokenfactory/client/cli/query_minter_controller_test.go index 95124004..5bd0355e 100644 --- a/x/tokenfactory/client/cli/query_minter_controller_test.go +++ b/x/tokenfactory/client/cli/query_minter_controller_test.go @@ -12,10 +12,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/strangelove-ventures/noble/testutil/network" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/client/cli" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/testutil/network" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/client/cli" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) // Prevent strconv unused error diff --git a/x/tokenfactory/client/cli/query_minters.go b/x/tokenfactory/client/cli/query_minters.go index 259ccde3..0a294edb 100644 --- a/x/tokenfactory/client/cli/query_minters.go +++ b/x/tokenfactory/client/cli/query_minters.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func CmdListMinters() *cobra.Command { diff --git a/x/tokenfactory/client/cli/query_minters_test.go b/x/tokenfactory/client/cli/query_minters_test.go index cc5650f0..d196a9c1 100644 --- a/x/tokenfactory/client/cli/query_minters_test.go +++ b/x/tokenfactory/client/cli/query_minters_test.go @@ -12,10 +12,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/strangelove-ventures/noble/testutil/network" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/client/cli" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/testutil/network" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/client/cli" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) // Prevent strconv unused error diff --git a/x/tokenfactory/client/cli/query_minting_denom.go b/x/tokenfactory/client/cli/query_minting_denom.go index a8a9a0d9..2fddd511 100644 --- a/x/tokenfactory/client/cli/query_minting_denom.go +++ b/x/tokenfactory/client/cli/query_minting_denom.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func CmdShowMintingDenom() *cobra.Command { diff --git a/x/tokenfactory/client/cli/query_minting_denom_test.go b/x/tokenfactory/client/cli/query_minting_denom_test.go index f675d1ec..82997e6b 100644 --- a/x/tokenfactory/client/cli/query_minting_denom_test.go +++ b/x/tokenfactory/client/cli/query_minting_denom_test.go @@ -10,10 +10,10 @@ import ( tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/status" - "github.com/strangelove-ventures/noble/testutil/network" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/client/cli" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/testutil/network" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/client/cli" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func networkWithMintingDenomObjects(t *testing.T) (*network.Network, types.MintingDenom) { diff --git a/x/tokenfactory/client/cli/query_owner.go b/x/tokenfactory/client/cli/query_owner.go index ccfebf6c..ebb7155d 100644 --- a/x/tokenfactory/client/cli/query_owner.go +++ b/x/tokenfactory/client/cli/query_owner.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func CmdShowOwner() *cobra.Command { diff --git a/x/tokenfactory/client/cli/query_owner_test.go b/x/tokenfactory/client/cli/query_owner_test.go index a422a939..c43d3de6 100644 --- a/x/tokenfactory/client/cli/query_owner_test.go +++ b/x/tokenfactory/client/cli/query_owner_test.go @@ -9,10 +9,10 @@ import ( tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/status" - "github.com/strangelove-ventures/noble/testutil/network" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/client/cli" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/testutil/network" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/client/cli" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func networkWithOwnerObjects(t *testing.T) (*network.Network, types.Owner) { diff --git a/x/tokenfactory/client/cli/query_params.go b/x/tokenfactory/client/cli/query_params.go index 053c77ee..8a97fa32 100644 --- a/x/tokenfactory/client/cli/query_params.go +++ b/x/tokenfactory/client/cli/query_params.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func CmdQueryParams() *cobra.Command { diff --git a/x/tokenfactory/client/cli/query_paused.go b/x/tokenfactory/client/cli/query_paused.go index 88242bc8..1c903d06 100644 --- a/x/tokenfactory/client/cli/query_paused.go +++ b/x/tokenfactory/client/cli/query_paused.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func CmdShowPaused() *cobra.Command { diff --git a/x/tokenfactory/client/cli/query_paused_test.go b/x/tokenfactory/client/cli/query_paused_test.go index e67850b6..600bce33 100644 --- a/x/tokenfactory/client/cli/query_paused_test.go +++ b/x/tokenfactory/client/cli/query_paused_test.go @@ -9,10 +9,10 @@ import ( tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/status" - "github.com/strangelove-ventures/noble/testutil/network" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/client/cli" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/testutil/network" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/client/cli" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func networkWithPausedObjects(t *testing.T) (*network.Network, types.Paused) { diff --git a/x/tokenfactory/client/cli/query_pauser.go b/x/tokenfactory/client/cli/query_pauser.go index 9e442f3c..7c0543d7 100644 --- a/x/tokenfactory/client/cli/query_pauser.go +++ b/x/tokenfactory/client/cli/query_pauser.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func CmdShowPauser() *cobra.Command { diff --git a/x/tokenfactory/client/cli/query_pauser_test.go b/x/tokenfactory/client/cli/query_pauser_test.go index 4c8f2388..bd14b906 100644 --- a/x/tokenfactory/client/cli/query_pauser_test.go +++ b/x/tokenfactory/client/cli/query_pauser_test.go @@ -9,10 +9,10 @@ import ( tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/status" - "github.com/strangelove-ventures/noble/testutil/network" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/client/cli" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/testutil/network" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/client/cli" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func networkWithPauserObjects(t *testing.T) (*network.Network, types.Pauser) { diff --git a/x/tokenfactory/client/cli/tx.go b/x/tokenfactory/client/cli/tx.go index c3ebef57..dab8caf0 100644 --- a/x/tokenfactory/client/cli/tx.go +++ b/x/tokenfactory/client/cli/tx.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) // GetTxCmd returns the transaction commands for this module diff --git a/x/tokenfactory/client/cli/tx_accept_owner.go b/x/tokenfactory/client/cli/tx_accept_owner.go index 64d0695f..29c7606a 100644 --- a/x/tokenfactory/client/cli/tx_accept_owner.go +++ b/x/tokenfactory/client/cli/tx_accept_owner.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) var _ = strconv.Itoa(0) diff --git a/x/tokenfactory/client/cli/tx_blacklist.go b/x/tokenfactory/client/cli/tx_blacklist.go index 7622963e..350ac873 100644 --- a/x/tokenfactory/client/cli/tx_blacklist.go +++ b/x/tokenfactory/client/cli/tx_blacklist.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) var _ = strconv.Itoa(0) diff --git a/x/tokenfactory/client/cli/tx_burn.go b/x/tokenfactory/client/cli/tx_burn.go index faccee73..b0265773 100644 --- a/x/tokenfactory/client/cli/tx_burn.go +++ b/x/tokenfactory/client/cli/tx_burn.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) var _ = strconv.Itoa(0) diff --git a/x/tokenfactory/client/cli/tx_configure_minter.go b/x/tokenfactory/client/cli/tx_configure_minter.go index 35334ffc..4ae7f685 100644 --- a/x/tokenfactory/client/cli/tx_configure_minter.go +++ b/x/tokenfactory/client/cli/tx_configure_minter.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) var _ = strconv.Itoa(0) diff --git a/x/tokenfactory/client/cli/tx_configure_minter_controller.go b/x/tokenfactory/client/cli/tx_configure_minter_controller.go index cab5bd27..3232c7aa 100644 --- a/x/tokenfactory/client/cli/tx_configure_minter_controller.go +++ b/x/tokenfactory/client/cli/tx_configure_minter_controller.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) var _ = strconv.Itoa(0) diff --git a/x/tokenfactory/client/cli/tx_mint.go b/x/tokenfactory/client/cli/tx_mint.go index 9fdc4a8a..0d30842c 100644 --- a/x/tokenfactory/client/cli/tx_mint.go +++ b/x/tokenfactory/client/cli/tx_mint.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) var _ = strconv.Itoa(0) diff --git a/x/tokenfactory/client/cli/tx_pause.go b/x/tokenfactory/client/cli/tx_pause.go index 1fa930a2..827311d4 100644 --- a/x/tokenfactory/client/cli/tx_pause.go +++ b/x/tokenfactory/client/cli/tx_pause.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) var _ = strconv.Itoa(0) diff --git a/x/tokenfactory/client/cli/tx_remove_minter.go b/x/tokenfactory/client/cli/tx_remove_minter.go index 22421371..79a74085 100644 --- a/x/tokenfactory/client/cli/tx_remove_minter.go +++ b/x/tokenfactory/client/cli/tx_remove_minter.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) var _ = strconv.Itoa(0) diff --git a/x/tokenfactory/client/cli/tx_remove_minter_controller.go b/x/tokenfactory/client/cli/tx_remove_minter_controller.go index 30ffcb27..8c5a2cbc 100644 --- a/x/tokenfactory/client/cli/tx_remove_minter_controller.go +++ b/x/tokenfactory/client/cli/tx_remove_minter_controller.go @@ -3,7 +3,7 @@ package cli import ( "strconv" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/tokenfactory/client/cli/tx_unblacklist.go b/x/tokenfactory/client/cli/tx_unblacklist.go index e1374d1a..52365a42 100644 --- a/x/tokenfactory/client/cli/tx_unblacklist.go +++ b/x/tokenfactory/client/cli/tx_unblacklist.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) var _ = strconv.Itoa(0) diff --git a/x/tokenfactory/client/cli/tx_unpause.go b/x/tokenfactory/client/cli/tx_unpause.go index 4e5fad20..a975e9b6 100644 --- a/x/tokenfactory/client/cli/tx_unpause.go +++ b/x/tokenfactory/client/cli/tx_unpause.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) var _ = strconv.Itoa(0) diff --git a/x/tokenfactory/client/cli/tx_update_blacklister.go b/x/tokenfactory/client/cli/tx_update_blacklister.go index 91f8063d..bf2ac0d6 100644 --- a/x/tokenfactory/client/cli/tx_update_blacklister.go +++ b/x/tokenfactory/client/cli/tx_update_blacklister.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) var _ = strconv.Itoa(0) diff --git a/x/tokenfactory/client/cli/tx_update_master_minter.go b/x/tokenfactory/client/cli/tx_update_master_minter.go index 8111c82f..feb942b8 100644 --- a/x/tokenfactory/client/cli/tx_update_master_minter.go +++ b/x/tokenfactory/client/cli/tx_update_master_minter.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) var _ = strconv.Itoa(0) diff --git a/x/tokenfactory/client/cli/tx_update_owner.go b/x/tokenfactory/client/cli/tx_update_owner.go index 8b5b9764..658d0835 100644 --- a/x/tokenfactory/client/cli/tx_update_owner.go +++ b/x/tokenfactory/client/cli/tx_update_owner.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) var _ = strconv.Itoa(0) diff --git a/x/tokenfactory/client/cli/tx_update_pauser.go b/x/tokenfactory/client/cli/tx_update_pauser.go index 2b2bdcf5..d6168138 100644 --- a/x/tokenfactory/client/cli/tx_update_pauser.go +++ b/x/tokenfactory/client/cli/tx_update_pauser.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) var _ = strconv.Itoa(0) diff --git a/x/tokenfactory/genesis.go b/x/tokenfactory/genesis.go index 1ae55ec6..a489bd9c 100644 --- a/x/tokenfactory/genesis.go +++ b/x/tokenfactory/genesis.go @@ -2,8 +2,8 @@ package tokenfactory import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/tokenfactory/genesis_test.go b/x/tokenfactory/genesis_test.go index aefe73fd..06c743d4 100644 --- a/x/tokenfactory/genesis_test.go +++ b/x/tokenfactory/genesis_test.go @@ -3,10 +3,10 @@ package tokenfactory_test import ( "testing" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/keeper/blacklisted.go b/x/tokenfactory/keeper/blacklisted.go index 2c94a6c7..2e030683 100644 --- a/x/tokenfactory/keeper/blacklisted.go +++ b/x/tokenfactory/keeper/blacklisted.go @@ -3,7 +3,7 @@ package keeper import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) // SetBlacklisted set a specific blacklisted in the store from its index diff --git a/x/tokenfactory/keeper/blacklisted_test.go b/x/tokenfactory/keeper/blacklisted_test.go index 1683525b..ec2f6118 100644 --- a/x/tokenfactory/keeper/blacklisted_test.go +++ b/x/tokenfactory/keeper/blacklisted_test.go @@ -5,11 +5,11 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/testutil/sample" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/testutil/sample" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/keeper/blacklister.go b/x/tokenfactory/keeper/blacklister.go index 6de66e72..7d71d853 100644 --- a/x/tokenfactory/keeper/blacklister.go +++ b/x/tokenfactory/keeper/blacklister.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/tokenfactory/keeper/blacklister_test.go b/x/tokenfactory/keeper/blacklister_test.go index 1ff3a45f..07c0ef9d 100644 --- a/x/tokenfactory/keeper/blacklister_test.go +++ b/x/tokenfactory/keeper/blacklister_test.go @@ -6,10 +6,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func createTestBlacklister(keeper *keeper.Keeper, ctx sdk.Context) types.Blacklister { diff --git a/x/tokenfactory/keeper/grpc_query.go b/x/tokenfactory/keeper/grpc_query.go index 6804963c..a88debfe 100644 --- a/x/tokenfactory/keeper/grpc_query.go +++ b/x/tokenfactory/keeper/grpc_query.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/tokenfactory/keeper/grpc_query_blacklisted.go b/x/tokenfactory/keeper/grpc_query_blacklisted.go index 314c1007..9fbebdcf 100644 --- a/x/tokenfactory/keeper/grpc_query_blacklisted.go +++ b/x/tokenfactory/keeper/grpc_query_blacklisted.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/bech32" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/x/tokenfactory/keeper/grpc_query_blacklisted_test.go b/x/tokenfactory/keeper/grpc_query_blacklisted_test.go index 0b5e941b..c54d178c 100644 --- a/x/tokenfactory/keeper/grpc_query_blacklisted_test.go +++ b/x/tokenfactory/keeper/grpc_query_blacklisted_test.go @@ -6,14 +6,14 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/strangelove-ventures/noble/testutil/sample" + "github.com/strangelove-ventures/noble/v4/testutil/sample" "github.com/stretchr/testify/require" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) // Prevent strconv unused error diff --git a/x/tokenfactory/keeper/grpc_query_blacklister.go b/x/tokenfactory/keeper/grpc_query_blacklister.go index 9c8c4290..647360a1 100644 --- a/x/tokenfactory/keeper/grpc_query_blacklister.go +++ b/x/tokenfactory/keeper/grpc_query_blacklister.go @@ -4,7 +4,7 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/x/tokenfactory/keeper/grpc_query_blacklister_test.go b/x/tokenfactory/keeper/grpc_query_blacklister_test.go index 44db7def..11ceb711 100644 --- a/x/tokenfactory/keeper/grpc_query_blacklister_test.go +++ b/x/tokenfactory/keeper/grpc_query_blacklister_test.go @@ -8,9 +8,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func TestBlacklisterQuery(t *testing.T) { diff --git a/x/tokenfactory/keeper/grpc_query_master_minter.go b/x/tokenfactory/keeper/grpc_query_master_minter.go index abbbb44a..bf020018 100644 --- a/x/tokenfactory/keeper/grpc_query_master_minter.go +++ b/x/tokenfactory/keeper/grpc_query_master_minter.go @@ -4,7 +4,7 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/x/tokenfactory/keeper/grpc_query_master_minter_test.go b/x/tokenfactory/keeper/grpc_query_master_minter_test.go index 2661585d..5654adaf 100644 --- a/x/tokenfactory/keeper/grpc_query_master_minter_test.go +++ b/x/tokenfactory/keeper/grpc_query_master_minter_test.go @@ -8,9 +8,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func TestMasterMinterQuery(t *testing.T) { diff --git a/x/tokenfactory/keeper/grpc_query_minter_controller.go b/x/tokenfactory/keeper/grpc_query_minter_controller.go index ea46c903..b435ecf2 100644 --- a/x/tokenfactory/keeper/grpc_query_minter_controller.go +++ b/x/tokenfactory/keeper/grpc_query_minter_controller.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/keeper/grpc_query_minter_controller_test.go b/x/tokenfactory/keeper/grpc_query_minter_controller_test.go index c4d769d4..831391af 100644 --- a/x/tokenfactory/keeper/grpc_query_minter_controller_test.go +++ b/x/tokenfactory/keeper/grpc_query_minter_controller_test.go @@ -10,9 +10,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) // Prevent strconv unused error diff --git a/x/tokenfactory/keeper/grpc_query_minters.go b/x/tokenfactory/keeper/grpc_query_minters.go index 463a87f7..4536e237 100644 --- a/x/tokenfactory/keeper/grpc_query_minters.go +++ b/x/tokenfactory/keeper/grpc_query_minters.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/x/tokenfactory/keeper/grpc_query_minters_test.go b/x/tokenfactory/keeper/grpc_query_minters_test.go index 0fbf0461..d72e0733 100644 --- a/x/tokenfactory/keeper/grpc_query_minters_test.go +++ b/x/tokenfactory/keeper/grpc_query_minters_test.go @@ -10,9 +10,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) // Prevent strconv unused error diff --git a/x/tokenfactory/keeper/grpc_query_minting_denom.go b/x/tokenfactory/keeper/grpc_query_minting_denom.go index 49fce3a4..752f39c0 100644 --- a/x/tokenfactory/keeper/grpc_query_minting_denom.go +++ b/x/tokenfactory/keeper/grpc_query_minting_denom.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdk "github.com/cosmos/cosmos-sdk/types" "google.golang.org/grpc/codes" diff --git a/x/tokenfactory/keeper/grpc_query_minting_denom_test.go b/x/tokenfactory/keeper/grpc_query_minting_denom_test.go index bd9cc979..53246ba8 100644 --- a/x/tokenfactory/keeper/grpc_query_minting_denom_test.go +++ b/x/tokenfactory/keeper/grpc_query_minting_denom_test.go @@ -8,9 +8,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func TestMintingDenomQuery(t *testing.T) { diff --git a/x/tokenfactory/keeper/grpc_query_owner.go b/x/tokenfactory/keeper/grpc_query_owner.go index dda60e31..e1e28e35 100644 --- a/x/tokenfactory/keeper/grpc_query_owner.go +++ b/x/tokenfactory/keeper/grpc_query_owner.go @@ -4,7 +4,7 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/x/tokenfactory/keeper/grpc_query_owner_test.go b/x/tokenfactory/keeper/grpc_query_owner_test.go index 7b2a4e43..77f96678 100644 --- a/x/tokenfactory/keeper/grpc_query_owner_test.go +++ b/x/tokenfactory/keeper/grpc_query_owner_test.go @@ -8,9 +8,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func TestOwnerQuery(t *testing.T) { diff --git a/x/tokenfactory/keeper/grpc_query_params.go b/x/tokenfactory/keeper/grpc_query_params.go index 66e2fa0d..49bb851c 100644 --- a/x/tokenfactory/keeper/grpc_query_params.go +++ b/x/tokenfactory/keeper/grpc_query_params.go @@ -4,7 +4,7 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/x/tokenfactory/keeper/grpc_query_params_test.go b/x/tokenfactory/keeper/grpc_query_params_test.go index fc55740a..d78827f4 100644 --- a/x/tokenfactory/keeper/grpc_query_params_test.go +++ b/x/tokenfactory/keeper/grpc_query_params_test.go @@ -4,8 +4,8 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - testkeeper "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + testkeeper "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/keeper/grpc_query_paused.go b/x/tokenfactory/keeper/grpc_query_paused.go index 5099204e..932d1c23 100644 --- a/x/tokenfactory/keeper/grpc_query_paused.go +++ b/x/tokenfactory/keeper/grpc_query_paused.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdk "github.com/cosmos/cosmos-sdk/types" "google.golang.org/grpc/codes" diff --git a/x/tokenfactory/keeper/grpc_query_paused_test.go b/x/tokenfactory/keeper/grpc_query_paused_test.go index 4f7191c7..23801273 100644 --- a/x/tokenfactory/keeper/grpc_query_paused_test.go +++ b/x/tokenfactory/keeper/grpc_query_paused_test.go @@ -8,9 +8,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func TestPausedQuery(t *testing.T) { diff --git a/x/tokenfactory/keeper/grpc_query_pauser.go b/x/tokenfactory/keeper/grpc_query_pauser.go index 71ab8ca7..8ca7725e 100644 --- a/x/tokenfactory/keeper/grpc_query_pauser.go +++ b/x/tokenfactory/keeper/grpc_query_pauser.go @@ -4,7 +4,7 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/x/tokenfactory/keeper/grpc_query_pauser_test.go b/x/tokenfactory/keeper/grpc_query_pauser_test.go index 927fa786..f9b39e7e 100644 --- a/x/tokenfactory/keeper/grpc_query_pauser_test.go +++ b/x/tokenfactory/keeper/grpc_query_pauser_test.go @@ -8,9 +8,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func TestPauserQuery(t *testing.T) { diff --git a/x/tokenfactory/keeper/keeper.go b/x/tokenfactory/keeper/keeper.go index 8fd740b1..b1056e5e 100644 --- a/x/tokenfactory/keeper/keeper.go +++ b/x/tokenfactory/keeper/keeper.go @@ -4,7 +4,7 @@ import ( "fmt" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" diff --git a/x/tokenfactory/keeper/master_minter.go b/x/tokenfactory/keeper/master_minter.go index bf041c78..e3842139 100644 --- a/x/tokenfactory/keeper/master_minter.go +++ b/x/tokenfactory/keeper/master_minter.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/tokenfactory/keeper/master_minter_test.go b/x/tokenfactory/keeper/master_minter_test.go index f2ae902a..de7f5c69 100644 --- a/x/tokenfactory/keeper/master_minter_test.go +++ b/x/tokenfactory/keeper/master_minter_test.go @@ -6,10 +6,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func createTestMasterMinter(keeper *keeper.Keeper, ctx sdk.Context) types.MasterMinter { diff --git a/x/tokenfactory/keeper/minter_controller.go b/x/tokenfactory/keeper/minter_controller.go index 3cb6abda..31a33a6d 100644 --- a/x/tokenfactory/keeper/minter_controller.go +++ b/x/tokenfactory/keeper/minter_controller.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/keeper/minter_controller_test.go b/x/tokenfactory/keeper/minter_controller_test.go index 969af4cd..6f9c0250 100644 --- a/x/tokenfactory/keeper/minter_controller_test.go +++ b/x/tokenfactory/keeper/minter_controller_test.go @@ -4,10 +4,10 @@ import ( "strconv" "testing" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" diff --git a/x/tokenfactory/keeper/minters.go b/x/tokenfactory/keeper/minters.go index d8572cbb..d21c62dd 100644 --- a/x/tokenfactory/keeper/minters.go +++ b/x/tokenfactory/keeper/minters.go @@ -3,7 +3,7 @@ package keeper import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) // SetMinters set a specific minters in the store from its index diff --git a/x/tokenfactory/keeper/minters_test.go b/x/tokenfactory/keeper/minters_test.go index 76fa7bc6..817a1664 100644 --- a/x/tokenfactory/keeper/minters_test.go +++ b/x/tokenfactory/keeper/minters_test.go @@ -5,10 +5,10 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/keeper/minting_denom.go b/x/tokenfactory/keeper/minting_denom.go index e8a14e16..493edb37 100644 --- a/x/tokenfactory/keeper/minting_denom.go +++ b/x/tokenfactory/keeper/minting_denom.go @@ -3,7 +3,7 @@ package keeper import ( "fmt" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/keeper/minting_denom_test.go b/x/tokenfactory/keeper/minting_denom_test.go index fc3bb6ef..3a1930a0 100644 --- a/x/tokenfactory/keeper/minting_denom_test.go +++ b/x/tokenfactory/keeper/minting_denom_test.go @@ -6,10 +6,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func createTestMintingDenom(keeper *keeper.Keeper, ctx sdk.Context) types.MintingDenom { diff --git a/x/tokenfactory/keeper/msg_server.go b/x/tokenfactory/keeper/msg_server.go index e1e1f324..89464797 100644 --- a/x/tokenfactory/keeper/msg_server.go +++ b/x/tokenfactory/keeper/msg_server.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) type msgServer struct { diff --git a/x/tokenfactory/keeper/msg_server_accept_owner.go b/x/tokenfactory/keeper/msg_server_accept_owner.go index cc34af2d..1c037727 100644 --- a/x/tokenfactory/keeper/msg_server_accept_owner.go +++ b/x/tokenfactory/keeper/msg_server_accept_owner.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/keeper/msg_server_blacklist.go b/x/tokenfactory/keeper/msg_server_blacklist.go index 1039094d..5972fe06 100644 --- a/x/tokenfactory/keeper/msg_server_blacklist.go +++ b/x/tokenfactory/keeper/msg_server_blacklist.go @@ -4,7 +4,7 @@ import ( "context" "github.com/cosmos/cosmos-sdk/types/bech32" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/keeper/msg_server_burn.go b/x/tokenfactory/keeper/msg_server_burn.go index 84f6f54b..b5b62ed4 100644 --- a/x/tokenfactory/keeper/msg_server_burn.go +++ b/x/tokenfactory/keeper/msg_server_burn.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/keeper/msg_server_configure_minter.go b/x/tokenfactory/keeper/msg_server_configure_minter.go index 0e1d7cbb..b41cd4c2 100644 --- a/x/tokenfactory/keeper/msg_server_configure_minter.go +++ b/x/tokenfactory/keeper/msg_server_configure_minter.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/keeper/msg_server_configure_minter_controller.go b/x/tokenfactory/keeper/msg_server_configure_minter_controller.go index 9faac8aa..f872961b 100644 --- a/x/tokenfactory/keeper/msg_server_configure_minter_controller.go +++ b/x/tokenfactory/keeper/msg_server_configure_minter_controller.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/keeper/msg_server_mint.go b/x/tokenfactory/keeper/msg_server_mint.go index d1db443e..747155af 100644 --- a/x/tokenfactory/keeper/msg_server_mint.go +++ b/x/tokenfactory/keeper/msg_server_mint.go @@ -4,7 +4,7 @@ import ( "context" "github.com/cosmos/cosmos-sdk/types/bech32" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdkerrors "cosmossdk.io/errors" diff --git a/x/tokenfactory/keeper/msg_server_pause.go b/x/tokenfactory/keeper/msg_server_pause.go index e2f74785..7fb3e512 100644 --- a/x/tokenfactory/keeper/msg_server_pause.go +++ b/x/tokenfactory/keeper/msg_server_pause.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/keeper/msg_server_remove_minter.go b/x/tokenfactory/keeper/msg_server_remove_minter.go index 7de296de..8ae07b2e 100644 --- a/x/tokenfactory/keeper/msg_server_remove_minter.go +++ b/x/tokenfactory/keeper/msg_server_remove_minter.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/keeper/msg_server_remove_minter_controller.go b/x/tokenfactory/keeper/msg_server_remove_minter_controller.go index 8841d411..509043d3 100644 --- a/x/tokenfactory/keeper/msg_server_remove_minter_controller.go +++ b/x/tokenfactory/keeper/msg_server_remove_minter_controller.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/keeper/msg_server_unblacklist.go b/x/tokenfactory/keeper/msg_server_unblacklist.go index 36016dc1..176eddc1 100644 --- a/x/tokenfactory/keeper/msg_server_unblacklist.go +++ b/x/tokenfactory/keeper/msg_server_unblacklist.go @@ -4,7 +4,7 @@ import ( "context" "github.com/cosmos/cosmos-sdk/types/bech32" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/keeper/msg_server_unpause.go b/x/tokenfactory/keeper/msg_server_unpause.go index 0ef94629..63d58ceb 100644 --- a/x/tokenfactory/keeper/msg_server_unpause.go +++ b/x/tokenfactory/keeper/msg_server_unpause.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/keeper/msg_server_update_blacklister.go b/x/tokenfactory/keeper/msg_server_update_blacklister.go index cc176e96..0688cb67 100644 --- a/x/tokenfactory/keeper/msg_server_update_blacklister.go +++ b/x/tokenfactory/keeper/msg_server_update_blacklister.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/keeper/msg_server_update_master_minter.go b/x/tokenfactory/keeper/msg_server_update_master_minter.go index 1175d087..f31df5f8 100644 --- a/x/tokenfactory/keeper/msg_server_update_master_minter.go +++ b/x/tokenfactory/keeper/msg_server_update_master_minter.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/keeper/msg_server_update_owner.go b/x/tokenfactory/keeper/msg_server_update_owner.go index b42c1e60..df62f6a9 100644 --- a/x/tokenfactory/keeper/msg_server_update_owner.go +++ b/x/tokenfactory/keeper/msg_server_update_owner.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/keeper/msg_server_update_pauser.go b/x/tokenfactory/keeper/msg_server_update_pauser.go index e0b703ee..c33dd19e 100644 --- a/x/tokenfactory/keeper/msg_server_update_pauser.go +++ b/x/tokenfactory/keeper/msg_server_update_pauser.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/keeper/owner.go b/x/tokenfactory/keeper/owner.go index a1f63a11..a8745747 100644 --- a/x/tokenfactory/keeper/owner.go +++ b/x/tokenfactory/keeper/owner.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/tokenfactory/keeper/owner_test.go b/x/tokenfactory/keeper/owner_test.go index 78fea332..4395f0e8 100644 --- a/x/tokenfactory/keeper/owner_test.go +++ b/x/tokenfactory/keeper/owner_test.go @@ -5,9 +5,9 @@ import ( "github.com/stretchr/testify/require" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func TestOwnerGet(t *testing.T) { diff --git a/x/tokenfactory/keeper/params.go b/x/tokenfactory/keeper/params.go index 317a6cda..8494253d 100644 --- a/x/tokenfactory/keeper/params.go +++ b/x/tokenfactory/keeper/params.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) // GetParams get all parameters as types.Params diff --git a/x/tokenfactory/keeper/params_test.go b/x/tokenfactory/keeper/params_test.go index 2d7859da..b367a8c2 100644 --- a/x/tokenfactory/keeper/params_test.go +++ b/x/tokenfactory/keeper/params_test.go @@ -3,8 +3,8 @@ package keeper_test import ( "testing" - testkeeper "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + testkeeper "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/keeper/paused.go b/x/tokenfactory/keeper/paused.go index 020bb9d6..9eef0491 100644 --- a/x/tokenfactory/keeper/paused.go +++ b/x/tokenfactory/keeper/paused.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/tokenfactory/keeper/paused_test.go b/x/tokenfactory/keeper/paused_test.go index 91e7a002..51fa9891 100644 --- a/x/tokenfactory/keeper/paused_test.go +++ b/x/tokenfactory/keeper/paused_test.go @@ -6,10 +6,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func createTestPaused(keeper *keeper.Keeper, ctx sdk.Context) types.Paused { diff --git a/x/tokenfactory/keeper/pauser.go b/x/tokenfactory/keeper/pauser.go index 6c732348..8db41987 100644 --- a/x/tokenfactory/keeper/pauser.go +++ b/x/tokenfactory/keeper/pauser.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/tokenfactory/keeper/pauser_test.go b/x/tokenfactory/keeper/pauser_test.go index 80ddf4d4..f93532f8 100644 --- a/x/tokenfactory/keeper/pauser_test.go +++ b/x/tokenfactory/keeper/pauser_test.go @@ -6,10 +6,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "github.com/strangelove-ventures/noble/testutil/keeper" - "github.com/strangelove-ventures/noble/testutil/nullify" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + keepertest "github.com/strangelove-ventures/noble/v4/testutil/keeper" + "github.com/strangelove-ventures/noble/v4/testutil/nullify" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func createTestPauser(keeper *keeper.Keeper, ctx sdk.Context) types.Pauser { diff --git a/x/tokenfactory/module.go b/x/tokenfactory/module.go index 59373293..c7386c60 100644 --- a/x/tokenfactory/module.go +++ b/x/tokenfactory/module.go @@ -16,9 +16,9 @@ import ( cdctypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/strangelove-ventures/noble/x/tokenfactory/client/cli" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/client/cli" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) var ( diff --git a/x/tokenfactory/module_simulation.go b/x/tokenfactory/module_simulation.go index dad09a17..11e75729 100644 --- a/x/tokenfactory/module_simulation.go +++ b/x/tokenfactory/module_simulation.go @@ -10,9 +10,9 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/strangelove-ventures/noble/testutil/sample" - tokenfactorysimulation "github.com/strangelove-ventures/noble/x/tokenfactory/simulation" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/testutil/sample" + tokenfactorysimulation "github.com/strangelove-ventures/noble/v4/x/tokenfactory/simulation" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) // avoid unused import issue diff --git a/x/tokenfactory/simulation/blacklist.go b/x/tokenfactory/simulation/blacklist.go index 86e349d8..9e00cb5f 100644 --- a/x/tokenfactory/simulation/blacklist.go +++ b/x/tokenfactory/simulation/blacklist.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func SimulateMsgBlacklist( diff --git a/x/tokenfactory/simulation/burn.go b/x/tokenfactory/simulation/burn.go index b53ac578..f91aecfc 100644 --- a/x/tokenfactory/simulation/burn.go +++ b/x/tokenfactory/simulation/burn.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func SimulateMsgBurn( diff --git a/x/tokenfactory/simulation/configure_minter.go b/x/tokenfactory/simulation/configure_minter.go index 28be6ab5..9c778cb6 100644 --- a/x/tokenfactory/simulation/configure_minter.go +++ b/x/tokenfactory/simulation/configure_minter.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func SimulateMsgConfigureMinter( diff --git a/x/tokenfactory/simulation/configure_minter_controller.go b/x/tokenfactory/simulation/configure_minter_controller.go index 5903fca4..f27e8ebd 100644 --- a/x/tokenfactory/simulation/configure_minter_controller.go +++ b/x/tokenfactory/simulation/configure_minter_controller.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func SimulateMsgConfigureMinterController( diff --git a/x/tokenfactory/simulation/mint.go b/x/tokenfactory/simulation/mint.go index 3149fae1..087f9cd9 100644 --- a/x/tokenfactory/simulation/mint.go +++ b/x/tokenfactory/simulation/mint.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func SimulateMsgMint( diff --git a/x/tokenfactory/simulation/pause.go b/x/tokenfactory/simulation/pause.go index 11bd5359..bed85eb0 100644 --- a/x/tokenfactory/simulation/pause.go +++ b/x/tokenfactory/simulation/pause.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func SimulateMsgPause( diff --git a/x/tokenfactory/simulation/remove_minter.go b/x/tokenfactory/simulation/remove_minter.go index 2901216a..5a82eddb 100644 --- a/x/tokenfactory/simulation/remove_minter.go +++ b/x/tokenfactory/simulation/remove_minter.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func SimulateMsgRemoveMinter( diff --git a/x/tokenfactory/simulation/remove_minter_controller.go b/x/tokenfactory/simulation/remove_minter_controller.go index 2400812f..b2cd24f4 100644 --- a/x/tokenfactory/simulation/remove_minter_controller.go +++ b/x/tokenfactory/simulation/remove_minter_controller.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func SimulateMsgRemoveMinterController( diff --git a/x/tokenfactory/simulation/unblacklist.go b/x/tokenfactory/simulation/unblacklist.go index 928f721b..4589f5ad 100644 --- a/x/tokenfactory/simulation/unblacklist.go +++ b/x/tokenfactory/simulation/unblacklist.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func SimulateMsgUnblacklist( diff --git a/x/tokenfactory/simulation/unpause.go b/x/tokenfactory/simulation/unpause.go index 52b82cfb..afbb5278 100644 --- a/x/tokenfactory/simulation/unpause.go +++ b/x/tokenfactory/simulation/unpause.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func SimulateMsgUnpause( diff --git a/x/tokenfactory/simulation/update_blacklister.go b/x/tokenfactory/simulation/update_blacklister.go index c58f1f96..ffc2f4ea 100644 --- a/x/tokenfactory/simulation/update_blacklister.go +++ b/x/tokenfactory/simulation/update_blacklister.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func SimulateMsgUpdateBlacklister( diff --git a/x/tokenfactory/simulation/update_master_minter.go b/x/tokenfactory/simulation/update_master_minter.go index eade6a57..bc586552 100644 --- a/x/tokenfactory/simulation/update_master_minter.go +++ b/x/tokenfactory/simulation/update_master_minter.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func SimulateMsgUpdateMasterMinter( diff --git a/x/tokenfactory/simulation/update_owner.go b/x/tokenfactory/simulation/update_owner.go index 910e2670..cec3cdd5 100644 --- a/x/tokenfactory/simulation/update_owner.go +++ b/x/tokenfactory/simulation/update_owner.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func SimulateMsgUpdateOwner( diff --git a/x/tokenfactory/simulation/update_pauser.go b/x/tokenfactory/simulation/update_pauser.go index 83d8b02f..108759f8 100644 --- a/x/tokenfactory/simulation/update_pauser.go +++ b/x/tokenfactory/simulation/update_pauser.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/strangelove-ventures/noble/x/tokenfactory/keeper" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" ) func SimulateMsgUpdatePauser( diff --git a/x/tokenfactory/types/blacklisted.pb.go b/x/tokenfactory/types/blacklisted.pb.go index f696dd90..5895bd69 100644 --- a/x/tokenfactory/types/blacklisted.pb.go +++ b/x/tokenfactory/types/blacklisted.pb.go @@ -73,18 +73,19 @@ func init() { func init() { proto.RegisterFile("tokenfactory/blacklisted.proto", fileDescriptor_43ff59c42df01ab4) } var fileDescriptor_43ff59c42df01ab4 = []byte{ - // 174 bytes of a gzipped FileDescriptorProto + // 177 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x2b, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0x4f, 0xca, 0x49, 0x4c, 0xce, 0xce, 0xc9, 0x2c, 0x2e, 0x49, 0x4d, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xca, 0xcb, 0x4f, 0xca, 0x49, 0xd5, 0x43, 0x56, 0xa5, 0xa4, 0xcd, 0xc5, 0xed, 0x84, 0x50, 0x28, 0x24, 0xc3, 0xc5, 0x99, 0x98, 0x92, 0x52, 0x94, 0x5a, 0x5c, 0xec, 0x54, 0x25, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x13, 0x84, - 0x10, 0x70, 0x0a, 0x39, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, - 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xab, 0xf4, + 0x10, 0x70, 0x0a, 0x3f, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, + 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xdb, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0xe2, 0x92, 0xa2, 0xc4, 0xbc, 0xf4, 0xd4, 0x9c, 0xfc, 0xb2, 0x54, 0xdd, 0xb2, 0xd4, 0xbc, 0x92, 0xd2, 0xa2, 0xd4, 0x62, 0x7d, 0xb0, - 0xd5, 0xfa, 0x15, 0xfa, 0x28, 0x4e, 0x2c, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0xbb, 0xce, - 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x29, 0x39, 0xe6, 0x54, 0xbf, 0x00, 0x00, 0x00, + 0xd5, 0xfa, 0x65, 0x26, 0xfa, 0x15, 0xfa, 0x28, 0xae, 0x2c, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, + 0x03, 0x3b, 0xd0, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x21, 0x3e, 0x20, 0x5c, 0xc2, 0x00, 0x00, + 0x00, } func (m *Blacklisted) Marshal() (dAtA []byte, err error) { diff --git a/x/tokenfactory/types/blacklister.pb.go b/x/tokenfactory/types/blacklister.pb.go index 5bd7adc2..fd0d7ed2 100644 --- a/x/tokenfactory/types/blacklister.pb.go +++ b/x/tokenfactory/types/blacklister.pb.go @@ -73,18 +73,18 @@ func init() { func init() { proto.RegisterFile("tokenfactory/blacklister.proto", fileDescriptor_c4e04641cbe52423) } var fileDescriptor_c4e04641cbe52423 = []byte{ - // 172 bytes of a gzipped FileDescriptorProto + // 175 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x2b, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0x4f, 0xca, 0x49, 0x4c, 0xce, 0xce, 0xc9, 0x2c, 0x2e, 0x49, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xca, 0xcb, 0x4f, 0xca, 0x49, 0xd5, 0x43, 0x56, 0xa5, 0xa4, 0xce, 0xc5, 0xed, 0x84, 0x50, 0x28, 0x24, 0xc1, 0xc5, 0x9e, 0x98, 0x92, 0x52, 0x94, 0x5a, 0x5c, 0x2c, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0x04, 0xe3, 0x3a, - 0x85, 0x9c, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, - 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x55, 0x7a, 0x66, 0x49, + 0x85, 0x9f, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, + 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x6d, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x71, 0x49, 0x51, 0x62, 0x5e, 0x7a, 0x6a, 0x4e, 0x7e, 0x59, 0xaa, 0x6e, 0x59, 0x6a, 0x5e, 0x49, 0x69, 0x51, 0x6a, 0xb1, 0x3e, 0xd8, 0x5a, 0xfd, - 0x0a, 0x7d, 0x14, 0xe7, 0x95, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x5d, 0x66, 0x0c, 0x08, - 0x00, 0x00, 0xff, 0xff, 0x00, 0x51, 0x17, 0x6d, 0xbb, 0x00, 0x00, 0x00, + 0x32, 0x13, 0xfd, 0x0a, 0x7d, 0x14, 0x17, 0x96, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x1d, + 0x67, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x52, 0x60, 0x22, 0x0c, 0xbe, 0x00, 0x00, 0x00, } func (m *Blacklister) Marshal() (dAtA []byte, err error) { diff --git a/x/tokenfactory/types/genesis.pb.go b/x/tokenfactory/types/genesis.pb.go index a60954c2..97f62936 100644 --- a/x/tokenfactory/types/genesis.pb.go +++ b/x/tokenfactory/types/genesis.pb.go @@ -147,36 +147,36 @@ func init() { func init() { proto.RegisterFile("tokenfactory/genesis.proto", fileDescriptor_415d5acd9b7bd461) } var fileDescriptor_415d5acd9b7bd461 = []byte{ - // 460 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x93, 0x3f, 0x8f, 0xd3, 0x30, - 0x18, 0xc6, 0x13, 0xee, 0x5a, 0xc0, 0x39, 0x09, 0xc9, 0xba, 0xc1, 0x17, 0xa4, 0x5c, 0x84, 0x6e, - 0xb8, 0x85, 0x44, 0x2a, 0x0b, 0x62, 0xa3, 0xad, 0xc4, 0x42, 0x55, 0x14, 0x98, 0x18, 0xa8, 0x92, - 0xd4, 0x84, 0xa8, 0x89, 0x5d, 0xd9, 0x6e, 0xa1, 0xdf, 0x82, 0x4f, 0xc1, 0x67, 0xe9, 0xd8, 0x91, - 0x09, 0xa1, 0xf6, 0x8b, 0xa0, 0xd8, 0x26, 0x8d, 0xaf, 0x69, 0xbb, 0x45, 0x7a, 0x7e, 0xcf, 0x9b, - 0xe7, 0xfd, 0x63, 0xe0, 0x0a, 0x3a, 0xc3, 0xe4, 0x6b, 0x9c, 0x0a, 0xca, 0x56, 0x61, 0x86, 0x09, - 0xe6, 0x39, 0x0f, 0xe6, 0x8c, 0x0a, 0x0a, 0x21, 0xa1, 0x49, 0x81, 0x83, 0x26, 0xe1, 0x5e, 0x67, - 0x34, 0xa3, 0x52, 0x0e, 0xab, 0x2f, 0x45, 0xba, 0x37, 0x46, 0x95, 0x79, 0xcc, 0xe2, 0x52, 0x17, - 0x71, 0x3d, 0x43, 0x4a, 0x8a, 0x38, 0x9d, 0x15, 0x39, 0x17, 0x78, 0x7a, 0xc4, 0xba, 0xe0, 0xb5, - 0xe4, 0x1b, 0x52, 0x19, 0x73, 0x81, 0xd9, 0xa4, 0xcc, 0x89, 0xc0, 0x4c, 0x13, 0x66, 0x7a, 0x25, - 0xf1, 0xe3, 0x85, 0xd9, 0x99, 0x4c, 0xff, 0x75, 0x64, 0xe8, 0xf4, 0x3b, 0xa9, 0x95, 0xbb, 0x96, - 0x1f, 0x4e, 0x52, 0x4a, 0x04, 0xa3, 0x45, 0x51, 0x53, 0xfe, 0x01, 0x95, 0x93, 0x6c, 0x32, 0xc5, - 0x84, 0x96, 0x8a, 0x78, 0xf1, 0xab, 0x03, 0xae, 0xde, 0xa9, 0x61, 0x7f, 0x14, 0xb1, 0xc0, 0xf0, - 0x35, 0xe8, 0xaa, 0xb1, 0x21, 0xdb, 0xb7, 0xef, 0x9d, 0x9e, 0x1b, 0x1c, 0x0e, 0x3f, 0xf8, 0x20, - 0x89, 0xfe, 0xe5, 0xfa, 0xcf, 0xad, 0x15, 0x69, 0x1e, 0x8e, 0xc1, 0xb3, 0xc6, 0x54, 0xdf, 0xe7, - 0x5c, 0xa0, 0x47, 0xfe, 0xc5, 0xbd, 0xd3, 0xbb, 0x6d, 0x2b, 0xd1, 0xdf, 0xa3, 0xba, 0xce, 0x43, - 0x37, 0xec, 0x55, 0x51, 0xaa, 0x35, 0xa0, 0x8b, 0x53, 0x51, 0x2a, 0x22, 0xd2, 0x24, 0x1c, 0x82, - 0x2b, 0xb5, 0x9f, 0x91, 0x1c, 0x09, 0xba, 0x94, 0x4e, 0xbf, 0xcd, 0x39, 0x6a, 0x70, 0x91, 0xe1, - 0x82, 0x03, 0xe0, 0xe8, 0x1d, 0xca, 0x36, 0x3a, 0xb2, 0x8d, 0xe7, 0xad, 0x45, 0x14, 0xa6, 0x5b, - 0x68, 0xba, 0xea, 0xf8, 0x0c, 0x75, 0xcf, 0xc4, 0x67, 0x3a, 0x3e, 0x83, 0x6f, 0x81, 0xd3, 0xb8, - 0x02, 0xf4, 0x58, 0x1a, 0xcf, 0xcc, 0x8f, 0x45, 0x4d, 0x0f, 0x0c, 0x41, 0x47, 0x1e, 0x0a, 0x7a, - 0x22, 0xcd, 0x37, 0x6d, 0xe6, 0x71, 0x05, 0x44, 0x8a, 0x83, 0x5f, 0xc0, 0xb5, 0x8a, 0x3d, 0xa8, - 0xcf, 0x47, 0x76, 0xfd, 0x54, 0x76, 0x7d, 0x77, 0xbc, 0xeb, 0x3d, 0xaf, 0xdb, 0x6f, 0xad, 0x23, - 0x57, 0xa2, 0x2e, 0x6f, 0x58, 0x1d, 0x1e, 0x02, 0x27, 0x56, 0xd2, 0xe0, 0x22, 0xc3, 0xd5, 0xff, - 0xb4, 0xde, 0x7a, 0xf6, 0x66, 0xeb, 0xd9, 0x7f, 0xb7, 0x9e, 0xfd, 0x73, 0xe7, 0x59, 0x9b, 0x9d, - 0x67, 0xfd, 0xde, 0x79, 0xd6, 0xe7, 0x37, 0x59, 0x2e, 0xbe, 0x2d, 0x92, 0x20, 0xa5, 0x65, 0xc8, - 0x05, 0x8b, 0x49, 0x86, 0x0b, 0xba, 0xc4, 0x2f, 0x97, 0x98, 0x88, 0x05, 0xc3, 0x3c, 0x94, 0x3f, - 0x0a, 0x7f, 0x84, 0xc6, 0x63, 0x10, 0xab, 0x39, 0xe6, 0x49, 0x57, 0xbe, 0x82, 0x57, 0xff, 0x02, - 0x00, 0x00, 0xff, 0xff, 0x87, 0x27, 0x28, 0x63, 0x7e, 0x04, 0x00, 0x00, + // 463 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x93, 0x41, 0x6f, 0xd3, 0x30, + 0x14, 0xc7, 0x13, 0xb6, 0x16, 0x70, 0x26, 0x21, 0x59, 0x3b, 0x78, 0x41, 0xca, 0x22, 0xb4, 0xc3, + 0x2e, 0xc4, 0x52, 0xe1, 0xc0, 0x85, 0x03, 0xdd, 0x24, 0x2e, 0x4c, 0x43, 0xe1, 0x80, 0xc4, 0x81, + 0x2a, 0xc9, 0x4c, 0x88, 0x96, 0xd8, 0x95, 0xed, 0x16, 0xfa, 0x2d, 0xf8, 0x14, 0x7c, 0x96, 0x1e, + 0x7b, 0xe4, 0x84, 0x50, 0xfb, 0x45, 0x50, 0x6c, 0x2b, 0x8d, 0xc1, 0x6d, 0x6f, 0x91, 0xfe, 0xbf, + 0xff, 0xcb, 0xfb, 0xbf, 0xf7, 0x0c, 0x42, 0xc9, 0xee, 0x09, 0xfd, 0x92, 0x15, 0x92, 0xf1, 0x05, + 0x2e, 0x09, 0x25, 0xa2, 0x12, 0xc9, 0x94, 0x33, 0xc9, 0x20, 0xa4, 0x2c, 0xaf, 0x49, 0xd2, 0x27, + 0xc2, 0xd3, 0x92, 0x95, 0x4c, 0xc9, 0xb8, 0xfd, 0xd2, 0x64, 0x18, 0x59, 0x55, 0xf2, 0x3a, 0x2b, + 0xee, 0xeb, 0x4a, 0x48, 0x72, 0x77, 0x40, 0xe7, 0x46, 0x8f, 0x2d, 0xbd, 0xc9, 0x5a, 0x69, 0xd2, + 0x54, 0x74, 0x4b, 0x5c, 0xd8, 0x84, 0x92, 0x26, 0x05, 0xa3, 0x92, 0xb3, 0xba, 0xee, 0xa8, 0xd0, + 0x41, 0x09, 0xf7, 0x3f, 0x2a, 0x2a, 0x2b, 0x5a, 0x4e, 0xee, 0x08, 0x65, 0x8d, 0x21, 0x90, 0x45, + 0xb0, 0x6f, 0xb4, 0xab, 0x7b, 0x66, 0x29, 0xd3, 0x8c, 0x67, 0x8d, 0xd8, 0x21, 0xcd, 0x44, 0x97, + 0xda, 0x21, 0x99, 0x82, 0xcf, 0x7e, 0x0e, 0xc0, 0xc9, 0x5b, 0x3d, 0xec, 0x0f, 0x32, 0x93, 0x04, + 0xbe, 0x02, 0x43, 0x5d, 0x16, 0xf9, 0xb1, 0x7f, 0x19, 0x8c, 0xc2, 0xe4, 0xff, 0xe1, 0x27, 0xef, + 0x15, 0x31, 0x3e, 0x5e, 0xfe, 0x3e, 0xf7, 0x52, 0xc3, 0xc3, 0x5b, 0xf0, 0xa4, 0x37, 0xf0, 0x77, + 0x95, 0x90, 0xe8, 0x41, 0x7c, 0x74, 0x19, 0x8c, 0xce, 0x5d, 0x25, 0xc6, 0x5b, 0xd4, 0xd4, 0xf9, + 0xd7, 0x0d, 0x47, 0x6d, 0x2b, 0x6d, 0x0c, 0x74, 0xb4, 0xaf, 0x95, 0x96, 0x48, 0x0d, 0x09, 0xaf, + 0xc1, 0x89, 0xde, 0xda, 0x8d, 0x9a, 0x39, 0x3a, 0x56, 0xce, 0xd8, 0xe5, 0xbc, 0xe9, 0x71, 0xa9, + 0xe5, 0x82, 0x57, 0x20, 0x30, 0x3b, 0x53, 0x31, 0x06, 0x2a, 0xc6, 0x53, 0x67, 0x11, 0x8d, 0x99, + 0x08, 0x7d, 0x57, 0xd7, 0x3e, 0x47, 0xc3, 0x03, 0xed, 0x73, 0xd3, 0x3e, 0x87, 0x6f, 0x40, 0xd0, + 0x3b, 0x4a, 0xf4, 0x50, 0x19, 0x0f, 0xcc, 0x8f, 0xa7, 0x7d, 0x0f, 0xc4, 0x60, 0xa0, 0x2e, 0x06, + 0x3d, 0x52, 0xe6, 0x33, 0x97, 0xf9, 0xb6, 0x05, 0x52, 0xcd, 0xc1, 0xcf, 0xe0, 0x54, 0xb7, 0x7d, + 0xd5, 0x5d, 0xb1, 0x4a, 0xfd, 0x58, 0xa5, 0xbe, 0xd8, 0x9d, 0x7a, 0xcb, 0x9b, 0xf8, 0xce, 0x3a, + 0x6a, 0x25, 0xfa, 0xc8, 0xaf, 0xdb, 0x1b, 0x47, 0x60, 0xcf, 0x4a, 0x7a, 0x5c, 0x6a, 0xb9, 0xc6, + 0x1f, 0x97, 0xeb, 0xc8, 0x5f, 0xad, 0x23, 0xff, 0xcf, 0x3a, 0xf2, 0x7f, 0x6c, 0x22, 0x6f, 0xb5, + 0x89, 0xbc, 0x5f, 0x9b, 0xc8, 0xfb, 0xf4, 0xba, 0xac, 0xe4, 0xd7, 0x59, 0x9e, 0x14, 0xac, 0xc1, + 0x42, 0xf2, 0x8c, 0x96, 0xa4, 0x66, 0x73, 0xf2, 0x7c, 0x4e, 0xa8, 0x9c, 0x71, 0x22, 0xb0, 0xfa, + 0x11, 0x9e, 0xbf, 0xc4, 0xdf, 0xb1, 0xf5, 0x10, 0xe4, 0x62, 0x4a, 0x44, 0x3e, 0x54, 0x0f, 0xe1, + 0xc5, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x89, 0xa1, 0xa3, 0xca, 0x81, 0x04, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/tokenfactory/types/genesis_test.go b/x/tokenfactory/types/genesis_test.go index 511e7a08..da78dd6f 100644 --- a/x/tokenfactory/types/genesis_test.go +++ b/x/tokenfactory/types/genesis_test.go @@ -4,8 +4,8 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/strangelove-ventures/noble/testutil/sample" - "github.com/strangelove-ventures/noble/x/tokenfactory/types" + "github.com/strangelove-ventures/noble/v4/testutil/sample" + "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/master_minter.pb.go b/x/tokenfactory/types/master_minter.pb.go index 830d2d3d..150ac914 100644 --- a/x/tokenfactory/types/master_minter.pb.go +++ b/x/tokenfactory/types/master_minter.pb.go @@ -73,19 +73,19 @@ func init() { func init() { proto.RegisterFile("tokenfactory/master_minter.proto", fileDescriptor_c337f384f876b9f9) } var fileDescriptor_c337f384f876b9f9 = []byte{ - // 177 bytes of a gzipped FileDescriptorProto + // 180 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x28, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0xcf, 0x4d, 0x2c, 0x2e, 0x49, 0x2d, 0x8a, 0xcf, 0xcd, 0xcc, 0x2b, 0x49, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xca, 0xcb, 0x4f, 0xca, 0x49, 0xd5, 0x43, 0x56, 0xa7, 0xa4, 0xc1, 0xc5, 0xe3, 0x0b, 0x56, 0xea, 0x0b, 0x56, 0x29, 0x24, 0xc1, 0xc5, 0x9e, 0x98, 0x92, 0x52, 0x94, 0x5a, 0x5c, 0x2c, 0xc1, 0xa8, 0xc0, 0xa8, - 0xc1, 0x19, 0x04, 0xe3, 0x3a, 0x85, 0x9c, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, + 0xc1, 0x19, 0x04, 0xe3, 0x3a, 0x85, 0x9f, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, - 0x94, 0x55, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x71, 0x49, 0x51, + 0x94, 0x6d, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x71, 0x49, 0x51, 0x62, 0x5e, 0x7a, 0x6a, 0x4e, 0x7e, 0x59, 0xaa, 0x6e, 0x59, 0x6a, 0x5e, 0x49, 0x69, 0x51, 0x6a, - 0xb1, 0x3e, 0xd8, 0x5e, 0xfd, 0x0a, 0x7d, 0x14, 0x17, 0x96, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, - 0x81, 0x9d, 0x66, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xb5, 0xe4, 0xf1, 0x88, 0xbe, 0x00, 0x00, - 0x00, + 0xb1, 0x3e, 0xd8, 0x5e, 0xfd, 0x32, 0x13, 0xfd, 0x0a, 0x7d, 0x14, 0x47, 0x96, 0x54, 0x16, 0xa4, + 0x16, 0x27, 0xb1, 0x81, 0x5d, 0x67, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xfc, 0x41, 0x6c, 0x1f, + 0xc1, 0x00, 0x00, 0x00, } func (m *MasterMinter) Marshal() (dAtA []byte, err error) { diff --git a/x/tokenfactory/types/message_blacklist_test.go b/x/tokenfactory/types/message_blacklist_test.go index d2fa60c4..3d99ca35 100644 --- a/x/tokenfactory/types/message_blacklist_test.go +++ b/x/tokenfactory/types/message_blacklist_test.go @@ -4,7 +4,7 @@ import ( "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/strangelove-ventures/noble/testutil/sample" + "github.com/strangelove-ventures/noble/v4/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/message_burn_test.go b/x/tokenfactory/types/message_burn_test.go index 49965f60..ac49287d 100644 --- a/x/tokenfactory/types/message_burn_test.go +++ b/x/tokenfactory/types/message_burn_test.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/strangelove-ventures/noble/testutil/sample" + "github.com/strangelove-ventures/noble/v4/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/message_configure_minter_controller_test.go b/x/tokenfactory/types/message_configure_minter_controller_test.go index 305b243a..e683dee4 100644 --- a/x/tokenfactory/types/message_configure_minter_controller_test.go +++ b/x/tokenfactory/types/message_configure_minter_controller_test.go @@ -4,7 +4,7 @@ import ( "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/strangelove-ventures/noble/testutil/sample" + "github.com/strangelove-ventures/noble/v4/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/message_configure_minter_test.go b/x/tokenfactory/types/message_configure_minter_test.go index 7e59a4cd..91192fa8 100644 --- a/x/tokenfactory/types/message_configure_minter_test.go +++ b/x/tokenfactory/types/message_configure_minter_test.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/strangelove-ventures/noble/testutil/sample" + "github.com/strangelove-ventures/noble/v4/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/message_mint_test.go b/x/tokenfactory/types/message_mint_test.go index 8d292e9f..4deb23a7 100644 --- a/x/tokenfactory/types/message_mint_test.go +++ b/x/tokenfactory/types/message_mint_test.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/strangelove-ventures/noble/testutil/sample" + "github.com/strangelove-ventures/noble/v4/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/message_pause_test.go b/x/tokenfactory/types/message_pause_test.go index 2ae825a2..0739f70e 100644 --- a/x/tokenfactory/types/message_pause_test.go +++ b/x/tokenfactory/types/message_pause_test.go @@ -4,7 +4,7 @@ import ( "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/strangelove-ventures/noble/testutil/sample" + "github.com/strangelove-ventures/noble/v4/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/message_remove_minter_controller_test.go b/x/tokenfactory/types/message_remove_minter_controller_test.go index 4f828f82..f5565654 100644 --- a/x/tokenfactory/types/message_remove_minter_controller_test.go +++ b/x/tokenfactory/types/message_remove_minter_controller_test.go @@ -4,7 +4,7 @@ import ( "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/strangelove-ventures/noble/testutil/sample" + "github.com/strangelove-ventures/noble/v4/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/message_remove_minter_test.go b/x/tokenfactory/types/message_remove_minter_test.go index 9d4b5794..c98b1e66 100644 --- a/x/tokenfactory/types/message_remove_minter_test.go +++ b/x/tokenfactory/types/message_remove_minter_test.go @@ -4,7 +4,7 @@ import ( "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/strangelove-ventures/noble/testutil/sample" + "github.com/strangelove-ventures/noble/v4/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/message_unblacklist_test.go b/x/tokenfactory/types/message_unblacklist_test.go index dd3563b5..bb17a86a 100644 --- a/x/tokenfactory/types/message_unblacklist_test.go +++ b/x/tokenfactory/types/message_unblacklist_test.go @@ -4,7 +4,7 @@ import ( "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/strangelove-ventures/noble/testutil/sample" + "github.com/strangelove-ventures/noble/v4/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/message_unpause_test.go b/x/tokenfactory/types/message_unpause_test.go index 1fea193b..ea75deb9 100644 --- a/x/tokenfactory/types/message_unpause_test.go +++ b/x/tokenfactory/types/message_unpause_test.go @@ -4,7 +4,7 @@ import ( "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/strangelove-ventures/noble/testutil/sample" + "github.com/strangelove-ventures/noble/v4/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/message_update_blacklister_test.go b/x/tokenfactory/types/message_update_blacklister_test.go index 25bf72ef..3afe3a04 100644 --- a/x/tokenfactory/types/message_update_blacklister_test.go +++ b/x/tokenfactory/types/message_update_blacklister_test.go @@ -4,7 +4,7 @@ import ( "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/strangelove-ventures/noble/testutil/sample" + "github.com/strangelove-ventures/noble/v4/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/message_update_master_minter_test.go b/x/tokenfactory/types/message_update_master_minter_test.go index 2948afa5..e1da89dc 100644 --- a/x/tokenfactory/types/message_update_master_minter_test.go +++ b/x/tokenfactory/types/message_update_master_minter_test.go @@ -4,7 +4,7 @@ import ( "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/strangelove-ventures/noble/testutil/sample" + "github.com/strangelove-ventures/noble/v4/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/message_update_owner_test.go b/x/tokenfactory/types/message_update_owner_test.go index d6d7b4b6..e8549293 100644 --- a/x/tokenfactory/types/message_update_owner_test.go +++ b/x/tokenfactory/types/message_update_owner_test.go @@ -4,7 +4,7 @@ import ( "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/strangelove-ventures/noble/testutil/sample" + "github.com/strangelove-ventures/noble/v4/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/message_update_pauser_test.go b/x/tokenfactory/types/message_update_pauser_test.go index 749f37ee..748ca839 100644 --- a/x/tokenfactory/types/message_update_pauser_test.go +++ b/x/tokenfactory/types/message_update_pauser_test.go @@ -4,7 +4,7 @@ import ( "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/strangelove-ventures/noble/testutil/sample" + "github.com/strangelove-ventures/noble/v4/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/minter_controller.pb.go b/x/tokenfactory/types/minter_controller.pb.go index 38a03b49..f7c86d61 100644 --- a/x/tokenfactory/types/minter_controller.pb.go +++ b/x/tokenfactory/types/minter_controller.pb.go @@ -83,19 +83,19 @@ func init() { } var fileDescriptor_08f20cf60d2060bd = []byte{ - // 188 bytes of a gzipped FileDescriptorProto + // 191 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x29, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0xcf, 0xcd, 0xcc, 0x2b, 0x49, 0x2d, 0x8a, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0xca, 0xcf, 0xc9, 0x49, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xca, 0xcb, 0x4f, 0xca, 0x49, 0xd5, 0x43, 0x56, 0xab, 0xe4, 0xc5, 0x25, 0xe0, 0x0b, 0x56, 0xee, 0x0c, 0x57, 0x2d, 0x24, 0xc6, 0xc5, 0x06, 0x31, 0x42, 0x82, 0x51, 0x81, 0x51, 0x83, 0x33, 0x08, 0xca, 0x13, 0x92, 0xe3, 0xe2, 0x42, 0x98, 0x29, 0xc1, 0x04, 0x96, 0x43, 0x12, 0x71, - 0x0a, 0x39, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, - 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xab, 0xf4, 0xcc, 0x92, + 0x0a, 0x3f, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, + 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xdb, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0xe2, 0x92, 0xa2, 0xc4, 0xbc, 0xf4, 0xd4, 0x9c, 0xfc, 0xb2, 0x54, 0xdd, 0xb2, 0xd4, 0xbc, 0x92, 0xd2, 0xa2, 0xd4, 0x62, 0x7d, 0xb0, 0xcb, 0xf4, - 0x2b, 0xf4, 0x51, 0xfc, 0x51, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x76, 0xbc, 0x31, 0x20, - 0x00, 0x00, 0xff, 0xff, 0x03, 0x33, 0xa9, 0xaf, 0xe4, 0x00, 0x00, 0x00, + 0xcb, 0x4c, 0xf4, 0x2b, 0xf4, 0x51, 0xbc, 0x52, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x76, + 0xbf, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x67, 0x49, 0x76, 0x75, 0xe7, 0x00, 0x00, 0x00, } func (m *MinterController) Marshal() (dAtA []byte, err error) { diff --git a/x/tokenfactory/types/minters.pb.go b/x/tokenfactory/types/minters.pb.go index 9632e8a0..a973b5df 100644 --- a/x/tokenfactory/types/minters.pb.go +++ b/x/tokenfactory/types/minters.pb.go @@ -83,23 +83,23 @@ func init() { func init() { proto.RegisterFile("tokenfactory/minters.proto", fileDescriptor_ac9d7080b5299f2f) } var fileDescriptor_ac9d7080b5299f2f = []byte{ - // 248 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x90, 0xb1, 0x4e, 0xc3, 0x40, - 0x0c, 0x86, 0x73, 0x08, 0x51, 0x35, 0x6c, 0x11, 0x43, 0xc8, 0x70, 0x54, 0x4c, 0x5d, 0x38, 0xab, - 0xb0, 0x21, 0xb1, 0x94, 0x99, 0xa5, 0x62, 0x62, 0xbb, 0x4b, 0x4d, 0x88, 0x48, 0xce, 0xd5, 0xd9, - 0x0d, 0xf4, 0x2d, 0x78, 0xac, 0x8e, 0x1d, 0x99, 0x10, 0x4a, 0x5e, 0x04, 0x35, 0x01, 0x01, 0x9b, - 0xad, 0xff, 0xf7, 0x27, 0x7d, 0x8e, 0x33, 0xa1, 0x67, 0xf4, 0x8f, 0x36, 0x17, 0x0a, 0x1b, 0xa8, - 0x4b, 0x2f, 0x18, 0xd8, 0xac, 0x02, 0x09, 0x25, 0x89, 0x27, 0x57, 0xa1, 0xf9, 0xdb, 0xc8, 0x4e, - 0x0a, 0x2a, 0xa8, 0x8f, 0x61, 0x3f, 0x0d, 0xcd, 0x4c, 0xe7, 0xc4, 0x35, 0x31, 0x38, 0xcb, 0x08, - 0xcd, 0xcc, 0xa1, 0xd8, 0x19, 0xe4, 0x54, 0xfa, 0x21, 0x3f, 0x77, 0xf1, 0xe8, 0x6e, 0x40, 0x27, - 0x69, 0x3c, 0xb2, 0xcb, 0x65, 0x40, 0xe6, 0x54, 0x4d, 0xd4, 0x74, 0xbc, 0xf8, 0x59, 0x93, 0x9b, - 0x78, 0x6c, 0xab, 0x8a, 0x5e, 0xac, 0xcf, 0x31, 0x3d, 0x98, 0xa8, 0xe9, 0xf1, 0xe5, 0xa9, 0x19, - 0xc0, 0x66, 0x0f, 0x36, 0xdf, 0x60, 0x73, 0x4b, 0xa5, 0x9f, 0x1f, 0x6e, 0x3f, 0xce, 0xa2, 0xc5, - 0xef, 0xc5, 0xfc, 0x7e, 0xdb, 0x6a, 0xb5, 0x6b, 0xb5, 0xfa, 0x6c, 0xb5, 0x7a, 0xeb, 0x74, 0xb4, - 0xeb, 0x74, 0xf4, 0xde, 0xe9, 0xe8, 0xe1, 0xba, 0x28, 0xe5, 0x69, 0xed, 0x4c, 0x4e, 0x35, 0xb0, - 0x04, 0xeb, 0x0b, 0xac, 0xa8, 0xc1, 0x8b, 0x06, 0xbd, 0xac, 0x03, 0x32, 0xf4, 0x9e, 0xf0, 0x0a, - 0xff, 0x7e, 0x21, 0x9b, 0x15, 0xb2, 0x3b, 0xea, 0x05, 0xae, 0xbe, 0x02, 0x00, 0x00, 0xff, 0xff, - 0x17, 0x31, 0x15, 0x9f, 0x28, 0x01, 0x00, 0x00, + // 251 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x90, 0x31, 0x4f, 0xc3, 0x30, + 0x10, 0x85, 0x63, 0x84, 0xa8, 0x1a, 0xb6, 0x88, 0x21, 0x64, 0x30, 0x15, 0x53, 0x17, 0x7c, 0x2a, + 0xb0, 0x76, 0x29, 0x33, 0x4b, 0x17, 0x24, 0x36, 0xdb, 0x3d, 0x42, 0x44, 0xe2, 0xab, 0xec, 0x6b, + 0xa0, 0xff, 0x82, 0x9f, 0xd5, 0xb1, 0x23, 0x13, 0x42, 0xc9, 0x1f, 0x41, 0x49, 0x40, 0xd0, 0xed, + 0xdd, 0xe9, 0xde, 0x7d, 0x7a, 0x2f, 0xce, 0x98, 0x5e, 0xd0, 0x3d, 0x69, 0xcb, 0xe4, 0xb7, 0x50, + 0x15, 0x8e, 0xd1, 0x07, 0xb5, 0xf6, 0xc4, 0x94, 0x24, 0x8e, 0x4c, 0x89, 0xea, 0xff, 0x45, 0x26, + 0x2d, 0x85, 0x8a, 0x02, 0x18, 0x1d, 0x10, 0xea, 0x99, 0x41, 0xd6, 0x33, 0xb0, 0x54, 0xb8, 0xc1, + 0x93, 0x9d, 0xe5, 0x94, 0x53, 0x2f, 0xa1, 0x53, 0xc3, 0xf6, 0xd2, 0xc4, 0xa3, 0xfb, 0xe1, 0x75, + 0x92, 0xc6, 0x23, 0xbd, 0x5a, 0x79, 0x0c, 0x21, 0x15, 0x13, 0x31, 0x1d, 0x2f, 0x7f, 0xc7, 0x64, + 0x1e, 0x8f, 0x75, 0x59, 0xd2, 0xab, 0x76, 0x16, 0xd3, 0xa3, 0x89, 0x98, 0x9e, 0x5e, 0x9f, 0xab, + 0x01, 0xa7, 0x3a, 0x9c, 0xfa, 0xc1, 0xa9, 0x3b, 0x2a, 0xdc, 0xe2, 0x78, 0xf7, 0x79, 0x11, 0x2d, + 0xff, 0x1c, 0x8b, 0x87, 0x5d, 0x23, 0xc5, 0xbe, 0x91, 0xe2, 0xab, 0x91, 0xe2, 0xbd, 0x95, 0xd1, + 0xbe, 0x95, 0xd1, 0x47, 0x2b, 0xa3, 0xc7, 0x79, 0x5e, 0xf0, 0xf3, 0xc6, 0x28, 0x4b, 0x15, 0x04, + 0xf6, 0xda, 0xe5, 0x58, 0x52, 0x8d, 0x57, 0x35, 0x3a, 0xde, 0x78, 0x0c, 0xd0, 0xe7, 0x84, 0xfa, + 0x16, 0xde, 0xe0, 0xa0, 0x0e, 0xde, 0xae, 0x31, 0x98, 0x93, 0x3e, 0xc3, 0xcd, 0x77, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x98, 0xe1, 0x21, 0xb3, 0x2b, 0x01, 0x00, 0x00, } func (m *Minters) Marshal() (dAtA []byte, err error) { diff --git a/x/tokenfactory/types/minting_denom.pb.go b/x/tokenfactory/types/minting_denom.pb.go index 890098ec..269927c1 100644 --- a/x/tokenfactory/types/minting_denom.pb.go +++ b/x/tokenfactory/types/minting_denom.pb.go @@ -73,18 +73,18 @@ func init() { func init() { proto.RegisterFile("tokenfactory/minting_denom.proto", fileDescriptor_478a1499404b8e04) } var fileDescriptor_478a1499404b8e04 = []byte{ - // 172 bytes of a gzipped FileDescriptorProto + // 175 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x28, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0xcf, 0xcd, 0xcc, 0x2b, 0xc9, 0xcc, 0x4b, 0x8f, 0x4f, 0x49, 0xcd, 0xcb, 0xcf, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xca, 0xcb, 0x4f, 0xca, 0x49, 0xd5, 0x43, 0x56, 0xa7, 0xa4, 0xc2, 0xc5, 0xe3, 0x0b, 0x51, 0xea, 0x02, 0x52, 0x29, 0x24, 0xc2, 0xc5, 0x0a, 0xd6, 0x22, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0x04, 0xe1, 0x38, - 0x85, 0x9c, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, - 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x55, 0x7a, 0x66, 0x49, + 0x85, 0x9f, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, + 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x6d, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x71, 0x49, 0x51, 0x62, 0x5e, 0x7a, 0x6a, 0x4e, 0x7e, 0x59, 0xaa, 0x6e, 0x59, 0x6a, 0x5e, 0x49, 0x69, 0x51, 0x6a, 0xb1, 0x3e, 0xd8, 0x4e, 0xfd, - 0x0a, 0x7d, 0x14, 0xd7, 0x95, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x9d, 0x65, 0x0c, 0x08, - 0x00, 0x00, 0xff, 0xff, 0xd9, 0x92, 0xd3, 0x79, 0xba, 0x00, 0x00, 0x00, + 0x32, 0x13, 0xfd, 0x0a, 0x7d, 0x14, 0x07, 0x96, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x5d, + 0x66, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xdd, 0xec, 0xa4, 0xf2, 0xbd, 0x00, 0x00, 0x00, } func (m *MintingDenom) Marshal() (dAtA []byte, err error) { diff --git a/x/tokenfactory/types/owner.pb.go b/x/tokenfactory/types/owner.pb.go index b87cd5af..2ce9a717 100644 --- a/x/tokenfactory/types/owner.pb.go +++ b/x/tokenfactory/types/owner.pb.go @@ -73,18 +73,18 @@ func init() { func init() { proto.RegisterFile("tokenfactory/owner.proto", fileDescriptor_9a4e397b1130eab4) } var fileDescriptor_9a4e397b1130eab4 = []byte{ - // 166 bytes of a gzipped FileDescriptorProto + // 169 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x28, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0xcf, 0x2f, 0xcf, 0x4b, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xca, 0xcb, 0x4f, 0xca, 0x49, 0xd5, 0x43, 0x96, 0x57, 0x52, 0xe4, 0x62, 0xf5, 0x07, 0x29, 0x11, 0x92, 0xe0, 0x62, 0x4f, 0x4c, 0x49, 0x29, 0x4a, 0x2d, 0x2e, - 0x96, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0c, 0x82, 0x71, 0x9d, 0x42, 0x4e, 0x3c, 0x92, 0x63, 0xbc, + 0x96, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0c, 0x82, 0x71, 0x9d, 0xc2, 0x4f, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, - 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0xca, 0x2a, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, + 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0xca, 0x36, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0xbf, 0xb8, 0xa4, 0x28, 0x31, 0x2f, 0x3d, 0x35, 0x27, 0xbf, 0x2c, 0x55, 0xb7, 0x2c, 0x35, - 0xaf, 0xa4, 0xb4, 0x28, 0xb5, 0x58, 0x1f, 0x6c, 0xa1, 0x7e, 0x85, 0x3e, 0x8a, 0x93, 0x4a, 0x2a, - 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x6e, 0x32, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xb7, 0x50, - 0x01, 0x6f, 0xaf, 0x00, 0x00, 0x00, + 0xaf, 0xa4, 0xb4, 0x28, 0xb5, 0x58, 0x1f, 0x6c, 0xa1, 0x7e, 0x99, 0x89, 0x7e, 0x85, 0x3e, 0x8a, + 0xab, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xce, 0x32, 0x06, 0x04, 0x00, 0x00, 0xff, + 0xff, 0xd5, 0x0c, 0xfc, 0x21, 0xb2, 0x00, 0x00, 0x00, } func (m *Owner) Marshal() (dAtA []byte, err error) { diff --git a/x/tokenfactory/types/params.pb.go b/x/tokenfactory/types/params.pb.go index 101092e0..4f9abb80 100644 --- a/x/tokenfactory/types/params.pb.go +++ b/x/tokenfactory/types/params.pb.go @@ -66,18 +66,18 @@ func init() { func init() { proto.RegisterFile("tokenfactory/params.proto", fileDescriptor_0f39a375875b281a) } var fileDescriptor_0f39a375875b281a = []byte{ - // 166 bytes of a gzipped FileDescriptorProto + // 169 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x2c, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xca, 0xcb, 0x4f, 0xca, 0x49, 0xd5, 0x43, 0x56, 0x20, 0x25, 0x92, 0x9e, 0x9f, 0x9e, 0x0f, 0x96, 0xd6, 0x07, 0xb1, 0x20, 0x2a, 0x95, 0xf8, 0xb8, 0xd8, - 0x02, 0xc0, 0x3a, 0xad, 0x58, 0x66, 0x2c, 0x90, 0x67, 0x70, 0x0a, 0x39, 0xf1, 0x48, 0x8e, 0xf1, + 0x02, 0xc0, 0x3a, 0xad, 0x58, 0x66, 0x2c, 0x90, 0x67, 0x70, 0x0a, 0x3f, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, - 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xab, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, + 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xdb, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0xe2, 0x92, 0xa2, 0xc4, 0xbc, 0xf4, 0xd4, 0x9c, 0xfc, 0xb2, 0x54, 0xdd, 0xb2, 0xd4, - 0xbc, 0x92, 0xd2, 0xa2, 0xd4, 0x62, 0x7d, 0xb0, 0x9d, 0xfa, 0x15, 0xfa, 0x28, 0xce, 0x2a, 0xa9, - 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0x5b, 0x66, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x29, 0xdf, - 0x9c, 0x86, 0xb3, 0x00, 0x00, 0x00, + 0xbc, 0x92, 0xd2, 0xa2, 0xd4, 0x62, 0x7d, 0xb0, 0x9d, 0xfa, 0x65, 0x26, 0xfa, 0x15, 0xfa, 0x28, + 0x2e, 0x2b, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0xdb, 0x67, 0x0c, 0x08, 0x00, 0x00, 0xff, + 0xff, 0xbb, 0xf2, 0xd4, 0xe4, 0xb6, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/tokenfactory/types/paused.pb.go b/x/tokenfactory/types/paused.pb.go index d08aa77d..d5d017b2 100644 --- a/x/tokenfactory/types/paused.pb.go +++ b/x/tokenfactory/types/paused.pb.go @@ -73,18 +73,18 @@ func init() { func init() { proto.RegisterFile("tokenfactory/paused.proto", fileDescriptor_f80e08031f66ef0e) } var fileDescriptor_f80e08031f66ef0e = []byte{ - // 162 bytes of a gzipped FileDescriptorProto + // 165 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x2c, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x48, 0x2c, 0x2d, 0x4e, 0x4d, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xca, 0xcb, 0x4f, 0xca, 0x49, 0xd5, 0x43, 0x56, 0xa0, 0xa4, 0xc0, 0xc5, 0x16, 0x00, 0x56, 0x23, 0x24, 0xc6, 0xc5, 0x06, 0x51, 0x2d, 0xc1, 0xa8, 0xc0, - 0xa8, 0xc1, 0x11, 0x04, 0xe5, 0x39, 0x85, 0x9c, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, + 0xa8, 0xc1, 0x11, 0x04, 0xe5, 0x39, 0x85, 0x9f, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, - 0x43, 0x94, 0x55, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x71, 0x49, + 0x43, 0x94, 0x6d, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x71, 0x49, 0x51, 0x62, 0x5e, 0x7a, 0x6a, 0x4e, 0x7e, 0x59, 0xaa, 0x6e, 0x59, 0x6a, 0x5e, 0x49, 0x69, 0x51, - 0x6a, 0xb1, 0x3e, 0xd8, 0x3e, 0xfd, 0x0a, 0x7d, 0x14, 0x27, 0x95, 0x54, 0x16, 0xa4, 0x16, 0x27, - 0xb1, 0x81, 0x9d, 0x64, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xe6, 0xcf, 0xd8, 0x6a, 0xaf, 0x00, - 0x00, 0x00, + 0x6a, 0xb1, 0x3e, 0xd8, 0x3e, 0xfd, 0x32, 0x13, 0xfd, 0x0a, 0x7d, 0x14, 0x57, 0x95, 0x54, 0x16, + 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x5d, 0x65, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xf2, 0xb4, 0x54, + 0x45, 0xb2, 0x00, 0x00, 0x00, } func (m *Paused) Marshal() (dAtA []byte, err error) { diff --git a/x/tokenfactory/types/pauser.pb.go b/x/tokenfactory/types/pauser.pb.go index b53fc734..0ef444d3 100644 --- a/x/tokenfactory/types/pauser.pb.go +++ b/x/tokenfactory/types/pauser.pb.go @@ -73,18 +73,18 @@ func init() { func init() { proto.RegisterFile("tokenfactory/pauser.proto", fileDescriptor_67e2f3360489cd3e) } var fileDescriptor_67e2f3360489cd3e = []byte{ - // 167 bytes of a gzipped FileDescriptorProto + // 170 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x2c, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x48, 0x2c, 0x2d, 0x4e, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xca, 0xcb, 0x4f, 0xca, 0x49, 0xd5, 0x43, 0x56, 0xa0, 0xa4, 0xc4, 0xc5, 0x16, 0x00, 0x56, 0x23, 0x24, 0xc1, 0xc5, 0x9e, 0x98, 0x92, 0x52, 0x94, 0x5a, - 0x5c, 0x2c, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0x04, 0xe3, 0x3a, 0x85, 0x9c, 0x78, 0x24, 0xc7, + 0x5c, 0x2c, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0x04, 0xe3, 0x3a, 0x85, 0x9f, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, - 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x55, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, + 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x6d, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x71, 0x49, 0x51, 0x62, 0x5e, 0x7a, 0x6a, 0x4e, 0x7e, 0x59, 0xaa, 0x6e, 0x59, - 0x6a, 0x5e, 0x49, 0x69, 0x51, 0x6a, 0xb1, 0x3e, 0xd8, 0x46, 0xfd, 0x0a, 0x7d, 0x14, 0x47, 0x95, - 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x1d, 0x65, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x73, - 0x9d, 0xfd, 0x4a, 0xb1, 0x00, 0x00, 0x00, + 0x6a, 0x5e, 0x49, 0x69, 0x51, 0x6a, 0xb1, 0x3e, 0xd8, 0x46, 0xfd, 0x32, 0x13, 0xfd, 0x0a, 0x7d, + 0x14, 0x77, 0x95, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0xdd, 0x65, 0x0c, 0x08, 0x00, 0x00, + 0xff, 0xff, 0x58, 0x25, 0x05, 0x7d, 0xb4, 0x00, 0x00, 0x00, } func (m *Pauser) Marshal() (dAtA []byte, err error) { diff --git a/x/tokenfactory/types/query.pb.go b/x/tokenfactory/types/query.pb.go index 97565bbb..3642939a 100644 --- a/x/tokenfactory/types/query.pb.go +++ b/x/tokenfactory/types/query.pb.go @@ -6,7 +6,6 @@ package types import ( context "context" fmt "fmt" - _ "github.com/cosmos/cosmos-sdk/types" query "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" @@ -1178,78 +1177,77 @@ func init() { func init() { proto.RegisterFile("tokenfactory/query.proto", fileDescriptor_78516c77a1ba9513) } var fileDescriptor_78516c77a1ba9513 = []byte{ - // 1127 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0x4f, 0x6f, 0x1b, 0x45, - 0x14, 0xcf, 0x36, 0x24, 0x11, 0x93, 0x0a, 0xca, 0x34, 0xb4, 0xc9, 0x26, 0x75, 0x9c, 0x69, 0x69, - 0xea, 0x94, 0xee, 0x92, 0x04, 0x10, 0xd0, 0x93, 0x03, 0x22, 0x12, 0x52, 0x49, 0xb0, 0x50, 0x0f, - 0x5c, 0xc2, 0xda, 0x9e, 0x2e, 0x4b, 0xd7, 0x3b, 0xee, 0xec, 0x3a, 0x10, 0xaa, 0x08, 0x09, 0x6e, - 0x9c, 0x40, 0x1c, 0x90, 0x10, 0x12, 0xe2, 0x13, 0xf4, 0x2b, 0x20, 0xb8, 0xf4, 0x58, 0x89, 0x0b, - 0x27, 0x84, 0x12, 0x3e, 0x08, 0xda, 0xd9, 0xb7, 0xde, 0x19, 0xef, 0x78, 0x77, 0x0d, 0xe9, 0xcd, - 0x9e, 0xf7, 0xef, 0xf7, 0xde, 0xfc, 0xe6, 0xbd, 0x67, 0xa3, 0xc5, 0x88, 0xdd, 0xa7, 0xc1, 0x3d, - 0xa7, 0x13, 0x31, 0x7e, 0x64, 0x3f, 0x18, 0x50, 0x7e, 0x64, 0xf5, 0x39, 0x8b, 0x18, 0xc6, 0x01, - 0x6b, 0xfb, 0xd4, 0x92, 0xe5, 0xe6, 0x8a, 0xcb, 0x98, 0xeb, 0x53, 0xdb, 0xe9, 0x7b, 0xb6, 0x13, - 0x04, 0x2c, 0x72, 0x22, 0x8f, 0x05, 0x61, 0x62, 0x61, 0x6e, 0x74, 0x58, 0xd8, 0x63, 0xa1, 0xdd, - 0x76, 0x42, 0x9a, 0xb8, 0xb2, 0x0f, 0x37, 0xdb, 0x34, 0x72, 0x36, 0xed, 0xbe, 0xe3, 0x7a, 0x81, - 0x50, 0x06, 0xdd, 0x25, 0x25, 0x6e, 0xdf, 0xe1, 0x4e, 0x2f, 0x75, 0x53, 0x53, 0x44, 0x6d, 0xdf, - 0xe9, 0xdc, 0xf7, 0xbd, 0x30, 0xa2, 0xdd, 0x31, 0xa6, 0x83, 0x70, 0x28, 0xaa, 0x2b, 0xa2, 0x9e, - 0x13, 0x46, 0x94, 0x1f, 0xf4, 0xbc, 0x20, 0xa2, 0x1c, 0x34, 0x4c, 0x55, 0x43, 0x88, 0xc2, 0xf1, - 0x8e, 0x79, 0x09, 0xa6, 0x54, 0xae, 0x96, 0x91, 0x7d, 0x16, 0x0c, 0x25, 0xd7, 0x34, 0x01, 0x0f, - 0x3a, 0x2c, 0x88, 0x38, 0xf3, 0xfd, 0xa1, 0x56, 0x3d, 0xa7, 0xe5, 0x05, 0xee, 0x41, 0x97, 0x06, - 0xac, 0x97, 0x22, 0x90, 0x8b, 0x9b, 0x96, 0xb5, 0xc3, 0xbc, 0xb4, 0xa0, 0x0b, 0x2e, 0x73, 0x99, - 0xf8, 0x68, 0xc7, 0x9f, 0x92, 0x53, 0xb2, 0x80, 0xf0, 0x07, 0xf1, 0x45, 0xec, 0x8b, 0x02, 0xb7, - 0xe8, 0x83, 0x01, 0x0d, 0x23, 0xb2, 0x87, 0x2e, 0x2a, 0xa7, 0x61, 0x9f, 0x05, 0x21, 0xc5, 0x6f, - 0xa0, 0xd9, 0xe4, 0x22, 0x16, 0x8d, 0xba, 0x71, 0x63, 0x7e, 0xcb, 0xb4, 0xf2, 0x14, 0xb0, 0x12, - 0x9b, 0x9d, 0x67, 0x1e, 0xff, 0xb5, 0x3a, 0xd5, 0x02, 0x7d, 0xf2, 0x3a, 0x32, 0x85, 0xc3, 0x5d, - 0x1a, 0xed, 0x64, 0xf7, 0x05, 0xe1, 0xf0, 0x22, 0x9a, 0x73, 0xba, 0x5d, 0x4e, 0xc3, 0xc4, 0xf1, - 0xb3, 0xad, 0xf4, 0x2b, 0xb9, 0x87, 0x96, 0xb5, 0x76, 0x00, 0x68, 0x17, 0xcd, 0x4b, 0xd7, 0x0f, - 0xa8, 0x56, 0x75, 0xa8, 0x24, 0x6b, 0x80, 0x26, 0x5b, 0x92, 0x2e, 0xe0, 0x6b, 0xfa, 0xbe, 0x06, - 0xdf, 0xbb, 0x08, 0x65, 0xfc, 0x84, 0x28, 0xd7, 0xad, 0xa4, 0xde, 0x56, 0x5c, 0x6f, 0x2b, 0x79, - 0x17, 0x50, 0x75, 0x6b, 0xdf, 0x71, 0x29, 0xd8, 0xb6, 0x24, 0x4b, 0xf2, 0xc8, 0x80, 0x74, 0x46, - 0xc3, 0x8c, 0x4b, 0x67, 0xfa, 0xbf, 0xa5, 0x83, 0x77, 0x15, 0xc0, 0xe7, 0x04, 0xe0, 0xf5, 0x52, - 0xc0, 0x09, 0x0a, 0x05, 0xf1, 0x65, 0xf4, 0x62, 0x5a, 0xff, 0x7d, 0xf1, 0x8e, 0x52, 0x86, 0xb4, - 0xd0, 0xa5, 0x51, 0x81, 0x4c, 0x92, 0xf8, 0xa4, 0x98, 0x24, 0xb1, 0x46, 0x46, 0x92, 0xf8, 0x1b, - 0xb9, 0x92, 0x5d, 0xf6, 0x1d, 0xf1, 0x32, 0xef, 0x88, 0xc7, 0x90, 0x86, 0xfc, 0x14, 0xad, 0xe8, - 0xc5, 0x10, 0xf8, 0x3d, 0x74, 0xbe, 0x27, 0x9d, 0x43, 0xf8, 0xba, 0x2e, 0xbc, 0x6c, 0x0f, 0x20, - 0x14, 0x5b, 0xb2, 0x95, 0xa5, 0x97, 0x9c, 0x84, 0xe5, 0x5c, 0xbd, 0x8b, 0x2e, 0xe7, 0x6c, 0x00, - 0xda, 0x6d, 0x34, 0x07, 0x9d, 0x04, 0x50, 0x2d, 0x6b, 0x51, 0x25, 0x2a, 0x00, 0x28, 0xb5, 0x20, - 0x1f, 0x03, 0x96, 0xa6, 0xef, 0x8f, 0x60, 0x39, 0x2b, 0x5e, 0xfe, 0x6c, 0x00, 0x74, 0x39, 0x84, - 0x0e, 0xfa, 0xf4, 0x64, 0xd0, 0x9f, 0x1e, 0x0f, 0xf9, 0x38, 0x1e, 0xf2, 0x1c, 0x0f, 0x79, 0x29, - 0x0f, 0xb9, 0xc2, 0x43, 0x4e, 0x56, 0x74, 0xcd, 0x6a, 0x18, 0x51, 0xdb, 0x92, 0xb8, 0xfe, 0x0d, - 0xf3, 0x6a, 0x2d, 0x89, 0xe7, 0xdf, 0x30, 0x27, 0x97, 0xd0, 0x42, 0x1a, 0x67, 0x2f, 0x1e, 0x17, - 0x69, 0xfc, 0xf7, 0xb3, 0x52, 0xc0, 0x39, 0x44, 0x7e, 0x0d, 0xcd, 0x88, 0xb9, 0x02, 0x31, 0x97, - 0x74, 0x31, 0x85, 0x05, 0x44, 0x4b, 0xb4, 0xc9, 0x1e, 0x5a, 0x55, 0x69, 0xfb, 0xf6, 0x70, 0xf6, - 0xa4, 0x3c, 0x7b, 0x19, 0xbd, 0x90, 0x0d, 0xa4, 0xa6, 0xc2, 0xfe, 0xbc, 0x80, 0x7c, 0x81, 0xea, - 0xe3, 0x1d, 0x02, 0xd6, 0xbb, 0xe8, 0x42, 0x6f, 0x44, 0x06, 0xb0, 0xaf, 0x8d, 0xa7, 0x57, 0xa6, - 0x0b, 0x19, 0xe4, 0x7c, 0x10, 0x0f, 0x92, 0x19, 0x12, 0x39, 0x9f, 0xcc, 0x59, 0x3d, 0x9a, 0xdf, - 0x0d, 0xc8, 0x53, 0x1b, 0xab, 0x30, 0xcf, 0xe9, 0xff, 0x9b, 0xe7, 0xd9, 0x3d, 0x2c, 0xb9, 0xe7, - 0x26, 0x4b, 0xc5, 0x3b, 0xf1, 0x4e, 0xa1, 0xeb, 0xb9, 0x8a, 0x58, 0xea, 0xb9, 0xd2, 0x79, 0x61, - 0xcf, 0x95, 0xf4, 0x86, 0x3d, 0x57, 0x3a, 0xdb, 0xfa, 0xed, 0x79, 0x34, 0x23, 0x82, 0xe1, 0x63, - 0x34, 0x9b, 0x6c, 0x11, 0xf8, 0xba, 0xce, 0x53, 0x7e, 0x61, 0x31, 0xd7, 0x4b, 0xf5, 0x12, 0xc0, - 0x84, 0x7c, 0xf5, 0xc7, 0x3f, 0xdf, 0x9f, 0x5b, 0xc1, 0xa6, 0x2d, 0x0c, 0x6c, 0xcd, 0x96, 0x89, - 0x7f, 0x31, 0xd0, 0xbc, 0x34, 0x60, 0xb1, 0x35, 0xd6, 0xb9, 0x76, 0x9d, 0x31, 0xed, 0xca, 0xfa, - 0x00, 0x6a, 0x53, 0x80, 0xba, 0x89, 0x1b, 0x3a, 0x50, 0xd2, 0x5c, 0xb7, 0x1f, 0xc2, 0xac, 0x39, - 0xc6, 0x3f, 0x1a, 0xe8, 0x39, 0xc9, 0x55, 0xd3, 0xf7, 0x0b, 0x60, 0x6a, 0xb7, 0x9a, 0x02, 0x98, - 0xfa, 0xf5, 0x84, 0xac, 0x0b, 0x98, 0x6b, 0x78, 0xb5, 0x04, 0x26, 0xfe, 0xda, 0x88, 0x2f, 0x30, - 0x9e, 0xe9, 0xb8, 0x51, 0x54, 0x0b, 0x65, 0xa5, 0x30, 0x37, 0xaa, 0xa8, 0x56, 0xbb, 0x46, 0x11, - 0xfa, 0x27, 0x03, 0x9d, 0x97, 0x07, 0x3d, 0x2e, 0xbc, 0x17, 0xcd, 0xc6, 0x61, 0xbe, 0x52, 0xdd, - 0x00, 0x70, 0x35, 0x04, 0xae, 0xab, 0x78, 0x4d, 0x87, 0x4b, 0xf9, 0xb9, 0x81, 0xbf, 0x33, 0xd0, - 0x1c, 0x8c, 0x4d, 0x5c, 0x98, 0xba, 0x3a, 0xf4, 0xcd, 0x9b, 0x95, 0x74, 0x01, 0xcf, 0x2d, 0x81, - 0x67, 0x1d, 0xbf, 0xa4, 0xc5, 0x93, 0x28, 0x4b, 0xac, 0xfa, 0xc6, 0x40, 0x08, 0x5c, 0xc4, 0x8c, - 0xda, 0x28, 0x62, 0x48, 0x65, 0x58, 0xf9, 0xa5, 0x82, 0x5c, 0x15, 0xb0, 0xae, 0xe0, 0xe5, 0x02, - 0x58, 0x19, 0x8b, 0x78, 0x05, 0x16, 0xf1, 0xea, 0x2c, 0xe2, 0x13, 0xb0, 0x88, 0xe3, 0x1f, 0x94, - 0x66, 0xc0, 0xab, 0x36, 0x03, 0x3e, 0x61, 0x33, 0xe0, 0x93, 0xbe, 0x32, 0x8e, 0xbf, 0x44, 0x33, - 0x62, 0x9c, 0xe3, 0x1b, 0x45, 0x21, 0xe4, 0xdd, 0xc1, 0x6c, 0x54, 0xd0, 0x04, 0x18, 0x6b, 0x02, - 0xc6, 0x32, 0x5e, 0xd2, 0xc1, 0x10, 0x9b, 0x03, 0xfe, 0xd5, 0x40, 0x17, 0x46, 0x27, 0x16, 0xde, - 0x2e, 0xa7, 0x67, 0x6e, 0x26, 0x9b, 0xaf, 0x4e, 0x66, 0x04, 0x10, 0x9b, 0x02, 0xe2, 0x6d, 0xfc, - 0xe6, 0x78, 0x16, 0x49, 0x3f, 0xa4, 0xed, 0x87, 0xb9, 0x55, 0xe5, 0x18, 0x3f, 0x32, 0xd0, 0xc5, - 0x51, 0xff, 0x31, 0xf3, 0xb7, 0xcb, 0xd9, 0x3c, 0x49, 0x16, 0x05, 0x2b, 0x42, 0x95, 0x27, 0x2a, - 0x65, 0x91, 0x74, 0x35, 0x69, 0x6c, 0x96, 0x74, 0xb5, 0xfc, 0x4c, 0x2f, 0xe9, 0x6a, 0x9a, 0x29, - 0x5f, 0xd2, 0xd5, 0xe4, 0xff, 0x22, 0x76, 0x3e, 0x7c, 0x7c, 0x52, 0x33, 0x9e, 0x9c, 0xd4, 0x8c, - 0xbf, 0x4f, 0x6a, 0xc6, 0xb7, 0xa7, 0xb5, 0xa9, 0x27, 0xa7, 0xb5, 0xa9, 0x3f, 0x4f, 0x6b, 0x53, - 0x1f, 0xbd, 0xe5, 0x7a, 0xd1, 0x27, 0x83, 0xb6, 0xd5, 0x61, 0x3d, 0x3b, 0x8c, 0xb8, 0x13, 0xb8, - 0xd4, 0x67, 0x87, 0xf4, 0xd6, 0x21, 0x0d, 0xa2, 0x01, 0xa7, 0x21, 0xf8, 0xfe, 0x5c, 0xf5, 0x1e, - 0x1d, 0xf5, 0x69, 0xd8, 0x9e, 0x15, 0x7f, 0x56, 0x6c, 0xff, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x30, - 0x0a, 0xaf, 0x2c, 0x8d, 0x12, 0x00, 0x00, + // 1118 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0x4f, 0x6f, 0xdc, 0x44, + 0x14, 0x8f, 0x1b, 0x92, 0x88, 0x49, 0x05, 0x65, 0x1a, 0xda, 0xc4, 0x49, 0x37, 0xc9, 0xb4, 0x34, + 0x4d, 0x4a, 0x6d, 0x92, 0x14, 0x04, 0xaa, 0x38, 0x6c, 0x40, 0x44, 0x42, 0x2a, 0x09, 0x7b, 0x28, + 0x12, 0x97, 0xe0, 0xdd, 0x9d, 0x1a, 0x53, 0xaf, 0x67, 0x3b, 0xf6, 0x06, 0x42, 0x15, 0x21, 0xc1, + 0x8d, 0x13, 0x88, 0x03, 0x12, 0x42, 0x42, 0x7c, 0x82, 0x7e, 0x05, 0x04, 0x97, 0x1e, 0x2b, 0x71, + 0xe1, 0x84, 0x50, 0xc2, 0x07, 0x41, 0x9e, 0x79, 0xbb, 0x9e, 0x59, 0xcf, 0xda, 0x5e, 0x08, 0xb7, + 0x64, 0xde, 0x9f, 0xdf, 0xef, 0x79, 0x7e, 0xf3, 0xde, 0x4b, 0xd0, 0x7c, 0xc2, 0x1e, 0xd0, 0xe8, + 0xbe, 0xd7, 0x4a, 0x18, 0x3f, 0x72, 0x1f, 0xf6, 0x28, 0x3f, 0x72, 0xba, 0x9c, 0x25, 0x0c, 0xe3, + 0x88, 0x35, 0x43, 0xea, 0xa8, 0x76, 0x7b, 0xa3, 0xc5, 0xe2, 0x0e, 0x8b, 0xdd, 0xa6, 0x17, 0x53, + 0xe9, 0xec, 0x1e, 0x6e, 0x36, 0x69, 0xe2, 0x6d, 0xba, 0x5d, 0xcf, 0x0f, 0x22, 0x2f, 0x09, 0x58, + 0x24, 0xe3, 0xed, 0x39, 0x9f, 0xf9, 0x4c, 0xfc, 0xe8, 0xa6, 0x3f, 0xc1, 0xe9, 0x92, 0xcf, 0x98, + 0x1f, 0x52, 0xd7, 0xeb, 0x06, 0xae, 0x17, 0x45, 0x2c, 0x11, 0x21, 0x31, 0x58, 0x6b, 0x1a, 0x9b, + 0x66, 0xe8, 0xb5, 0x1e, 0x84, 0x41, 0x9c, 0xd0, 0x76, 0x89, 0x9d, 0x83, 0x7d, 0x45, 0xb3, 0x77, + 0xbc, 0xd4, 0x74, 0xd0, 0x09, 0xa2, 0xcc, 0xe3, 0x9a, 0xee, 0x21, 0x4c, 0x07, 0x2d, 0x16, 0x25, + 0x9c, 0x85, 0xe1, 0xc0, 0xcb, 0x36, 0x78, 0xc5, 0x66, 0x8c, 0x20, 0x4a, 0x82, 0xc8, 0x3f, 0x68, + 0xd3, 0x88, 0x75, 0xc0, 0x43, 0xff, 0xa6, 0xec, 0xd3, 0x68, 0x90, 0x77, 0x41, 0xb3, 0x74, 0x3d, + 0xee, 0x75, 0xe2, 0x11, 0xa6, 0x5e, 0x3c, 0xa8, 0xda, 0x60, 0x82, 0x84, 0x64, 0x0e, 0xe1, 0xf7, + 0xd3, 0x6b, 0xd8, 0x17, 0xa9, 0x1a, 0xf4, 0x61, 0x8f, 0xc6, 0x09, 0xd9, 0x43, 0x17, 0xb5, 0xd3, + 0xb8, 0xcb, 0xa2, 0x98, 0xe2, 0xd7, 0xd1, 0xb4, 0x84, 0x9c, 0xb7, 0x56, 0xac, 0x1b, 0xb3, 0x5b, + 0xb6, 0x93, 0xbf, 0x62, 0x47, 0xc6, 0xec, 0x3c, 0xf3, 0xe4, 0xcf, 0xe5, 0x89, 0x06, 0xf8, 0x93, + 0xd7, 0x90, 0x2d, 0x12, 0xee, 0xd2, 0x64, 0x27, 0xbb, 0x14, 0x80, 0xc3, 0xf3, 0x68, 0xc6, 0x6b, + 0xb7, 0x39, 0x8d, 0x65, 0xe2, 0x67, 0x1b, 0xfd, 0x5f, 0xc9, 0x7d, 0xb4, 0x68, 0x8c, 0x03, 0x42, + 0xbb, 0x68, 0x56, 0xb9, 0x63, 0x60, 0xb5, 0x6c, 0x62, 0xa5, 0x44, 0x03, 0x35, 0x35, 0x92, 0xb4, + 0x81, 0x5f, 0x3d, 0x0c, 0x0d, 0xfc, 0xde, 0x41, 0x28, 0x53, 0x27, 0xa0, 0x5c, 0x77, 0xa4, 0x94, + 0x9d, 0x54, 0xca, 0x8e, 0xd4, 0x3d, 0x48, 0xd9, 0xd9, 0xf7, 0x7c, 0x0a, 0xb1, 0x0d, 0x25, 0x92, + 0x3c, 0xb6, 0xa0, 0x9c, 0x61, 0x98, 0x51, 0xe5, 0x4c, 0xfe, 0xbb, 0x72, 0xf0, 0xae, 0x46, 0xf8, + 0x9c, 0x20, 0xbc, 0x56, 0x4a, 0x58, 0xb2, 0xd0, 0x18, 0x5f, 0x46, 0x2f, 0xf6, 0xbf, 0xff, 0xbe, + 0x50, 0x54, 0x5f, 0x21, 0x0d, 0x74, 0x69, 0xd8, 0xa0, 0x8a, 0x24, 0x3d, 0x29, 0x16, 0x49, 0xea, + 0x91, 0x89, 0x24, 0xfd, 0x8d, 0x5c, 0xc9, 0x2e, 0xfb, 0xae, 0x78, 0x79, 0x77, 0xc5, 0xbb, 0xe9, + 0x43, 0x7e, 0x82, 0x96, 0xcc, 0x66, 0x00, 0x7e, 0x17, 0x9d, 0xef, 0x28, 0xe7, 0x00, 0xbf, 0x62, + 0x82, 0x57, 0xe3, 0x81, 0x84, 0x16, 0x4b, 0xb6, 0xb2, 0xf2, 0xe4, 0x49, 0x5c, 0xae, 0xd5, 0x7b, + 0xe8, 0x72, 0x2e, 0x06, 0xa8, 0xdd, 0x41, 0x33, 0xd0, 0x03, 0x80, 0xd5, 0xa2, 0x91, 0x95, 0x74, + 0x01, 0x42, 0xfd, 0x08, 0xf2, 0x11, 0x70, 0xa9, 0x87, 0xe1, 0x10, 0x97, 0xb3, 0xd2, 0xe5, 0x4f, + 0x16, 0x50, 0x57, 0x21, 0x4c, 0xd4, 0x27, 0xc7, 0xa3, 0xfe, 0xff, 0xe9, 0x90, 0x8f, 0xd2, 0x21, + 0xcf, 0xe9, 0x90, 0x97, 0xea, 0x90, 0x6b, 0x3a, 0xe4, 0x64, 0xc9, 0xd4, 0xac, 0x06, 0x88, 0xc6, + 0x96, 0xc4, 0xcd, 0x6f, 0x98, 0x57, 0x6b, 0x49, 0x3c, 0xff, 0x86, 0x39, 0xb9, 0x84, 0xe6, 0xfa, + 0x38, 0x7b, 0xe9, 0x04, 0xe8, 0xe3, 0xbf, 0x97, 0x7d, 0x0a, 0x38, 0x07, 0xe4, 0x57, 0xd1, 0x94, + 0x18, 0x15, 0x80, 0xb9, 0x60, 0xc2, 0x14, 0x11, 0x80, 0x26, 0xbd, 0xc9, 0x1e, 0x5a, 0xd6, 0x65, + 0xfb, 0xd6, 0x60, 0x98, 0xf5, 0x75, 0xf6, 0x32, 0x7a, 0x21, 0x9b, 0x70, 0x75, 0x4d, 0xfd, 0x79, + 0x03, 0xf9, 0x1c, 0xad, 0x8c, 0x4e, 0x08, 0x5c, 0xef, 0xa1, 0x0b, 0x9d, 0x21, 0x1b, 0xd0, 0xbe, + 0x36, 0x5a, 0x5e, 0x99, 0x2f, 0x54, 0x90, 0xcb, 0x41, 0x02, 0x28, 0x66, 0x20, 0xe4, 0x7c, 0x31, + 0x67, 0xf5, 0x68, 0x7e, 0xb3, 0xa0, 0x4e, 0x23, 0x56, 0x61, 0x9d, 0x93, 0xff, 0xb5, 0xce, 0xb3, + 0x7b, 0x58, 0x6a, 0xcf, 0x95, 0x9b, 0xc8, 0xdb, 0xe9, 0x22, 0x62, 0xea, 0xb9, 0x9a, 0x59, 0xe9, + 0xb9, 0xca, 0x79, 0x61, 0xcf, 0x55, 0xfc, 0x06, 0x3d, 0x57, 0x39, 0xdb, 0xfa, 0xf5, 0x79, 0x34, + 0x25, 0xc0, 0xf0, 0x31, 0x9a, 0x96, 0x5b, 0x04, 0xbe, 0x6e, 0xca, 0x94, 0x5f, 0x58, 0xec, 0xb5, + 0x52, 0x3f, 0x49, 0x98, 0x90, 0x2f, 0x7f, 0xff, 0xfb, 0xbb, 0x73, 0x4b, 0xd8, 0x76, 0x45, 0x80, + 0x6b, 0xd8, 0xa7, 0xf0, 0xcf, 0x16, 0x9a, 0x55, 0x06, 0x2c, 0x76, 0x46, 0x26, 0x37, 0xae, 0x33, + 0xb6, 0x5b, 0xd9, 0x1f, 0x48, 0x6d, 0x0a, 0x52, 0x37, 0xf1, 0xba, 0x89, 0x94, 0x32, 0xd7, 0xdd, + 0x47, 0x30, 0x6b, 0x8e, 0xf1, 0x0f, 0x16, 0x7a, 0x4e, 0x49, 0x55, 0x0f, 0xc3, 0x02, 0x9a, 0xc6, + 0xad, 0xa6, 0x80, 0xa6, 0x79, 0x3d, 0x21, 0x6b, 0x82, 0xe6, 0x2a, 0x5e, 0x2e, 0xa1, 0x89, 0xbf, + 0xb2, 0xd2, 0x0b, 0x4c, 0x67, 0x3a, 0x5e, 0x2f, 0xfa, 0x16, 0xda, 0x4a, 0x61, 0x6f, 0x54, 0x71, + 0xad, 0x76, 0x8d, 0x02, 0xfa, 0x47, 0x0b, 0x9d, 0x57, 0x07, 0x3d, 0x2e, 0xbc, 0x17, 0xc3, 0xc6, + 0x61, 0xbf, 0x52, 0x3d, 0x00, 0x78, 0xad, 0x0b, 0x5e, 0x57, 0xf1, 0xaa, 0x89, 0x97, 0xf6, 0xe7, + 0x04, 0xfe, 0xd6, 0x42, 0x33, 0x30, 0x36, 0x71, 0x61, 0xe9, 0xfa, 0xd0, 0xb7, 0x6f, 0x56, 0xf2, + 0x05, 0x3e, 0xb7, 0x04, 0x9f, 0x35, 0xfc, 0x92, 0x91, 0x8f, 0x74, 0x56, 0x54, 0xf5, 0xb5, 0x85, + 0x10, 0xa4, 0x48, 0x15, 0xb5, 0x51, 0xa4, 0x90, 0xca, 0xb4, 0xf2, 0x4b, 0x05, 0xb9, 0x2a, 0x68, + 0x5d, 0xc1, 0x8b, 0x05, 0xb4, 0x32, 0x15, 0xf1, 0x0a, 0x2a, 0xe2, 0xd5, 0x55, 0xc4, 0xc7, 0x50, + 0x11, 0xc7, 0xdf, 0x6b, 0xcd, 0x80, 0x57, 0x6d, 0x06, 0x7c, 0xcc, 0x66, 0xc0, 0xc7, 0x7d, 0x65, + 0x1c, 0x7f, 0x81, 0xa6, 0xc4, 0x38, 0xc7, 0x37, 0x8a, 0x20, 0xd4, 0xdd, 0xc1, 0x5e, 0xaf, 0xe0, + 0x09, 0x34, 0x56, 0x05, 0x8d, 0x45, 0xbc, 0x60, 0xa2, 0x21, 0x36, 0x07, 0xfc, 0x8b, 0x85, 0x2e, + 0x0c, 0x4f, 0x2c, 0xbc, 0x5d, 0x2e, 0xcf, 0xdc, 0x4c, 0xb6, 0x6f, 0x8f, 0x17, 0x04, 0x14, 0xeb, + 0x82, 0xe2, 0x1d, 0xfc, 0xc6, 0x68, 0x15, 0x29, 0x7f, 0x99, 0xbb, 0x8f, 0x72, 0xab, 0xca, 0x31, + 0x7e, 0x6c, 0xa1, 0x8b, 0xc3, 0xf9, 0x53, 0xe5, 0x6f, 0x97, 0xab, 0x79, 0x9c, 0x2a, 0x0a, 0x56, + 0x84, 0x2a, 0x4f, 0x54, 0xa9, 0x42, 0x76, 0x35, 0x65, 0x6c, 0x96, 0x74, 0xb5, 0xfc, 0x4c, 0x2f, + 0xe9, 0x6a, 0x86, 0x29, 0x5f, 0xd2, 0xd5, 0xd4, 0x7f, 0x60, 0xec, 0x7c, 0xf0, 0xe4, 0xa4, 0x66, + 0x3d, 0x3d, 0xa9, 0x59, 0x7f, 0x9d, 0xd4, 0xac, 0x6f, 0x4e, 0x6b, 0x13, 0x4f, 0x4f, 0x6b, 0x13, + 0x7f, 0x9c, 0xd6, 0x26, 0x3e, 0x7c, 0xd3, 0x0f, 0x92, 0x8f, 0x7b, 0x4d, 0xa7, 0xc5, 0x3a, 0x6e, + 0x9c, 0x70, 0x2f, 0xf2, 0x69, 0xc8, 0x0e, 0xe9, 0xad, 0x43, 0x1a, 0x25, 0x3d, 0x4e, 0x63, 0xc8, + 0x7d, 0x78, 0xdb, 0xfd, 0x4c, 0x07, 0x48, 0x8e, 0xba, 0x34, 0x6e, 0x4e, 0x8b, 0xff, 0x57, 0x6c, + 0xff, 0x13, 0x00, 0x00, 0xff, 0xff, 0x15, 0x23, 0x5e, 0x5a, 0x70, 0x12, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/tokenfactory/types/query.pb.gw.go b/x/tokenfactory/types/query.pb.gw.go index 432bbca2..ec797a39 100644 --- a/x/tokenfactory/types/query.pb.gw.go +++ b/x/tokenfactory/types/query.pb.gw.go @@ -20,6 +20,7 @@ import ( "google.golang.org/grpc" "google.golang.org/grpc/codes" "google.golang.org/grpc/grpclog" + "google.golang.org/grpc/metadata" "google.golang.org/grpc/status" ) @@ -30,6 +31,7 @@ var _ status.Status var _ = runtime.String var _ = utilities.NewDoubleArray var _ = descriptor.ForMessage +var _ = metadata.Join func request_Query_Params_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { var protoReq QueryParamsRequest @@ -430,12 +432,14 @@ func local_request_Query_MintingDenom_0(ctx context.Context, marshaler runtime.M // RegisterQueryHandlerServer registers the http handlers for service Query to "mux". // UnaryRPC :call QueryServer directly. // StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. -// Note that using this registration option will cause many gRPC library features (such as grpc.SendHeader, etc) to stop working. Consider using RegisterQueryHandlerFromEndpoint instead. +// Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterQueryHandlerFromEndpoint instead. func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, server QueryServer) error { mux.Handle("GET", pattern_Query_Params_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -443,6 +447,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv return } resp, md, err := local_request_Query_Params_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -456,6 +461,8 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv mux.Handle("GET", pattern_Query_Blacklisted_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -463,6 +470,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv return } resp, md, err := local_request_Query_Blacklisted_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -476,6 +484,8 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv mux.Handle("GET", pattern_Query_BlacklistedAll_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -483,6 +493,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv return } resp, md, err := local_request_Query_BlacklistedAll_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -496,6 +507,8 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv mux.Handle("GET", pattern_Query_Paused_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -503,6 +516,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv return } resp, md, err := local_request_Query_Paused_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -516,6 +530,8 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv mux.Handle("GET", pattern_Query_MasterMinter_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -523,6 +539,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv return } resp, md, err := local_request_Query_MasterMinter_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -536,6 +553,8 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv mux.Handle("GET", pattern_Query_Minters_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -543,6 +562,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv return } resp, md, err := local_request_Query_Minters_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -556,6 +576,8 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv mux.Handle("GET", pattern_Query_MintersAll_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -563,6 +585,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv return } resp, md, err := local_request_Query_MintersAll_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -576,6 +599,8 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv mux.Handle("GET", pattern_Query_Pauser_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -583,6 +608,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv return } resp, md, err := local_request_Query_Pauser_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -596,6 +622,8 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv mux.Handle("GET", pattern_Query_Blacklister_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -603,6 +631,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv return } resp, md, err := local_request_Query_Blacklister_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -616,6 +645,8 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv mux.Handle("GET", pattern_Query_Owner_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -623,6 +654,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv return } resp, md, err := local_request_Query_Owner_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -636,6 +668,8 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv mux.Handle("GET", pattern_Query_MinterController_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -643,6 +677,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv return } resp, md, err := local_request_Query_MinterController_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -656,6 +691,8 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv mux.Handle("GET", pattern_Query_MinterControllerAll_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -663,6 +700,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv return } resp, md, err := local_request_Query_MinterControllerAll_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) @@ -676,6 +714,8 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv mux.Handle("GET", pattern_Query_MintingDenom_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) if err != nil { @@ -683,6 +723,7 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv return } resp, md, err := local_request_Query_MintingDenom_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) ctx = runtime.NewServerMetadataContext(ctx, md) if err != nil { runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) diff --git a/x/tokenfactory/types/tx.pb.go b/x/tokenfactory/types/tx.pb.go index a857aac9..31540876 100644 --- a/x/tokenfactory/types/tx.pb.go +++ b/x/tokenfactory/types/tx.pb.go @@ -1385,58 +1385,58 @@ func init() { func init() { proto.RegisterFile("tokenfactory/tx.proto", fileDescriptor_51ab120c97d57038) } var fileDescriptor_51ab120c97d57038 = []byte{ - // 806 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x57, 0x5d, 0x4f, 0xdb, 0x48, - 0x14, 0x8d, 0x81, 0x85, 0xcd, 0x05, 0x2d, 0xcb, 0x08, 0xb2, 0x89, 0x97, 0x35, 0x59, 0x83, 0x50, - 0xda, 0x0a, 0x1b, 0xa8, 0xaa, 0x56, 0x55, 0x3f, 0xd4, 0xd0, 0x4a, 0x95, 0xaa, 0x88, 0x36, 0xea, - 0x87, 0x54, 0xa9, 0x52, 0x1d, 0x33, 0xb8, 0x29, 0xce, 0x4c, 0xe4, 0x71, 0x02, 0xbc, 0x54, 0xea, - 0x53, 0x5f, 0xfb, 0xb3, 0x78, 0xa9, 0xc4, 0x63, 0x9f, 0xaa, 0x0a, 0xfe, 0x48, 0xe5, 0x89, 0x3d, - 0x99, 0x24, 0x9e, 0x90, 0xa4, 0x6f, 0xce, 0xdc, 0x73, 0xce, 0xbd, 0x93, 0x39, 0x3e, 0x23, 0xc3, - 0x4a, 0x48, 0x8f, 0x30, 0x39, 0x74, 0xdc, 0x90, 0x06, 0xa7, 0x76, 0x78, 0x62, 0x35, 0x03, 0x1a, - 0x52, 0x84, 0x08, 0xad, 0xf9, 0xd8, 0x92, 0x8b, 0xba, 0xe1, 0x52, 0xd6, 0xa0, 0xcc, 0xae, 0x39, - 0x0c, 0xdb, 0xed, 0x9d, 0x1a, 0x0e, 0x9d, 0x1d, 0xdb, 0xa5, 0x75, 0xd2, 0xe1, 0xe8, 0xcb, 0x1e, - 0xf5, 0x28, 0x7f, 0xb4, 0xa3, 0xa7, 0xce, 0xaa, 0xf9, 0x04, 0x56, 0x2a, 0xcc, 0x7b, 0xd5, 0x3c, - 0x70, 0x42, 0x5c, 0x71, 0x58, 0x88, 0x83, 0x4a, 0x9d, 0x84, 0x38, 0x40, 0x08, 0x66, 0x0e, 0x03, - 0xda, 0xc8, 0x6b, 0x45, 0xad, 0x94, 0xad, 0xf2, 0x67, 0x94, 0x87, 0x39, 0xe7, 0xe0, 0x20, 0xc0, - 0x8c, 0xe5, 0xa7, 0xf8, 0x72, 0xf2, 0xd3, 0x5c, 0x83, 0xff, 0x52, 0x65, 0xaa, 0x98, 0x35, 0x29, - 0x61, 0xd8, 0x7c, 0x08, 0x8b, 0x02, 0xf0, 0xdc, 0x69, 0xb1, 0xb1, 0x3b, 0x14, 0xe0, 0x9f, 0x3e, - 0x01, 0xa1, 0xfd, 0x18, 0x96, 0x45, 0xa9, 0xec, 0x3b, 0xee, 0x91, 0x5f, 0x67, 0xe3, 0x6f, 0xc1, - 0x80, 0xd5, 0x34, 0x15, 0xd1, 0xe5, 0x01, 0xfc, 0x25, 0xea, 0xfb, 0xc7, 0x64, 0x6c, 0xfd, 0x3c, - 0xe4, 0x7a, 0xf9, 0x42, 0x79, 0x83, 0x2b, 0x3f, 0x72, 0x5d, 0xdc, 0x0c, 0x95, 0xca, 0x31, 0x5f, - 0x42, 0x09, 0xfe, 0x67, 0x0d, 0x50, 0x85, 0x79, 0x7b, 0x94, 0x1c, 0xd6, 0xbd, 0x56, 0x80, 0x27, - 0x39, 0x41, 0x74, 0x1f, 0xb2, 0x8e, 0xef, 0xd3, 0x63, 0x87, 0xb8, 0x38, 0x3f, 0x5d, 0xd4, 0x4a, - 0xf3, 0xbb, 0x05, 0xab, 0x63, 0x29, 0x2b, 0xb2, 0x94, 0x15, 0x5b, 0xca, 0xda, 0xa3, 0x75, 0x52, - 0x9e, 0x39, 0xfb, 0xb1, 0x96, 0xa9, 0x76, 0x19, 0xe6, 0x2a, 0xe8, 0x83, 0x23, 0xf4, 0x9d, 0x7e, - 0x15, 0x37, 0x68, 0x7b, 0xa2, 0xe9, 0xe2, 0xd3, 0x97, 0x05, 0x84, 0x76, 0x13, 0xe6, 0x2a, 0xcc, - 0x8b, 0x16, 0xc7, 0xdc, 0xf1, 0x6d, 0x98, 0x75, 0x1a, 0xb4, 0x45, 0xc2, 0x51, 0xb7, 0x1b, 0xc3, - 0xcd, 0x25, 0xbe, 0x9b, 0xa8, 0xa3, 0x18, 0xe2, 0x35, 0x1f, 0xa2, 0xdc, 0x0a, 0x48, 0xea, 0x10, - 0xdd, 0x56, 0x53, 0x93, 0xb4, 0x8a, 0x74, 0x45, 0xab, 0x7b, 0xb0, 0x10, 0x2d, 0x25, 0x0e, 0x1d, - 0xf3, 0x8f, 0xcc, 0xf1, 0x77, 0x45, 0xb0, 0xfb, 0xdd, 0x4d, 0x6a, 0x13, 0xea, 0xc6, 0xee, 0xee, - 0xf2, 0x85, 0xb2, 0x01, 0x7f, 0x56, 0x98, 0xc7, 0x5f, 0xd9, 0x54, 0x5f, 0x23, 0xf8, 0x3b, 0xa9, - 0x0b, 0x4e, 0x11, 0x80, 0xab, 0x35, 0x95, 0xac, 0x65, 0x6e, 0xf9, 0x18, 0x21, 0x78, 0x1f, 0xf9, - 0x3b, 0xdc, 0xe7, 0xc2, 0x3d, 0x4a, 0xc2, 0x80, 0xfa, 0xbe, 0xc2, 0x74, 0x06, 0x80, 0x2b, 0x10, - 0xf1, 0xb6, 0xa4, 0x15, 0x94, 0x83, 0xd9, 0x06, 0xd7, 0xe1, 0x36, 0xc9, 0x56, 0xe3, 0x5f, 0xe6, - 0x26, 0x6c, 0x0c, 0xeb, 0x25, 0x66, 0xda, 0x87, 0x42, 0x9f, 0x75, 0x7f, 0x6f, 0x20, 0x73, 0x1d, - 0xfe, 0x57, 0x0a, 0x26, 0x5d, 0x77, 0xbf, 0xcd, 0xc3, 0x74, 0x85, 0x79, 0x28, 0x00, 0x94, 0x12, - 0xee, 0xd7, 0xac, 0xc1, 0x0b, 0xc4, 0x4a, 0x0d, 0x70, 0x7d, 0x67, 0x64, 0x68, 0xd2, 0x1b, 0xbd, - 0x87, 0x85, 0x9e, 0xa0, 0x5f, 0x1f, 0x2a, 0xd1, 0x01, 0xe9, 0x37, 0x46, 0x00, 0x89, 0x0e, 0x14, - 0x96, 0x06, 0xe3, 0xbe, 0x34, 0x54, 0x41, 0x42, 0xea, 0xdb, 0xa3, 0x22, 0x45, 0xc3, 0x77, 0x30, - 0x2f, 0x27, 0xbf, 0x39, 0x54, 0x80, 0x63, 0xf4, 0xeb, 0x57, 0x63, 0x64, 0x79, 0x39, 0xfe, 0x55, - 0xf2, 0x12, 0x46, 0x29, 0x9f, 0x72, 0x41, 0xa0, 0x3a, 0x2c, 0xf6, 0x5f, 0x0e, 0x9b, 0x0a, 0x7a, - 0x1f, 0x4e, 0xb7, 0x46, 0xc3, 0xc9, 0x67, 0xdf, 0x13, 0xf3, 0xaa, 0xb3, 0x97, 0x41, 0xca, 0xb3, - 0x4f, 0xcb, 0x7b, 0xf4, 0x14, 0x66, 0x78, 0xd8, 0xff, 0xab, 0x20, 0x45, 0x45, 0x7d, 0x7d, 0x48, - 0x51, 0x56, 0xe2, 0x89, 0xad, 0x52, 0x8a, 0x8a, 0x4a, 0x25, 0x39, 0x93, 0xd1, 0x1b, 0xc8, 0x76, - 0x03, 0xb9, 0xa8, 0x62, 0x24, 0x08, 0xbd, 0x74, 0x15, 0xa2, 0xc7, 0x77, 0x52, 0x26, 0x2b, 0x7d, - 0xd7, 0xc5, 0xa8, 0x7d, 0x37, 0x98, 0xcd, 0xe8, 0x19, 0xfc, 0xd1, 0x09, 0xe6, 0x55, 0x05, 0x89, - 0x57, 0xf5, 0x8d, 0x61, 0x55, 0x21, 0xf6, 0x02, 0xe6, 0x92, 0xc4, 0x36, 0x94, 0x33, 0xf0, 0xba, - 0xbe, 0x39, 0xbc, 0x2e, 0x24, 0xbf, 0x68, 0x50, 0x50, 0xa7, 0xf9, 0xf6, 0x68, 0xde, 0xec, 0x32, - 0xf4, 0x3b, 0xe3, 0x32, 0xc4, 0x24, 0x9f, 0x20, 0xa7, 0x88, 0xf0, 0xad, 0x11, 0xcc, 0x2b, 0x8d, - 0x70, 0x6b, 0x2c, 0x78, 0xd2, 0xbf, 0xfc, 0xf2, 0xec, 0xc2, 0xd0, 0xce, 0x2f, 0x0c, 0xed, 0xe7, - 0x85, 0xa1, 0x7d, 0xbd, 0x34, 0x32, 0xe7, 0x97, 0x46, 0xe6, 0xfb, 0xa5, 0x91, 0x79, 0x7b, 0xd7, - 0xab, 0x87, 0x1f, 0x5a, 0x35, 0xcb, 0xa5, 0x0d, 0x9b, 0x85, 0x81, 0x43, 0x3c, 0xec, 0xd3, 0x36, - 0xde, 0x6a, 0x63, 0x12, 0xb6, 0x02, 0xcc, 0x6c, 0xde, 0xcf, 0x3e, 0xb1, 0x7b, 0x3f, 0x25, 0x4e, - 0x9b, 0x98, 0xd5, 0x66, 0xf9, 0x47, 0xc0, 0xcd, 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x78, 0xdd, - 0xe8, 0x82, 0x67, 0x0c, 0x00, 0x00, + // 808 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x57, 0x41, 0x4f, 0xdb, 0x48, + 0x18, 0x8d, 0x81, 0x85, 0xcd, 0x07, 0x5a, 0x96, 0x11, 0x64, 0x13, 0x2f, 0x6b, 0xb2, 0x06, 0xa1, + 0xec, 0x56, 0xd8, 0x40, 0x5b, 0xb5, 0x87, 0xd2, 0xaa, 0xa1, 0x95, 0x2a, 0x55, 0x11, 0x6d, 0xa4, + 0x16, 0xa9, 0x52, 0xa5, 0x3a, 0x66, 0x70, 0x53, 0x9c, 0x99, 0xc8, 0xe3, 0x04, 0xb8, 0x54, 0xea, + 0xa9, 0xd7, 0xfe, 0x2c, 0x2e, 0x95, 0x38, 0xf6, 0x54, 0x55, 0xf0, 0x47, 0x2a, 0x4f, 0xec, 0xc9, + 0x24, 0xf1, 0x84, 0x24, 0xbd, 0x39, 0xf3, 0xbd, 0xf7, 0xbe, 0x6f, 0x32, 0xcf, 0x6f, 0x64, 0x58, + 0x09, 0xe9, 0x09, 0x26, 0xc7, 0x8e, 0x1b, 0xd2, 0xe0, 0xdc, 0x0e, 0xcf, 0xac, 0x66, 0x40, 0x43, + 0x8a, 0x10, 0xa1, 0x35, 0x1f, 0x5b, 0x72, 0x51, 0x37, 0x5c, 0xca, 0x1a, 0x94, 0xd9, 0x35, 0x87, + 0x61, 0xbb, 0xbd, 0x53, 0xc3, 0xa1, 0xb3, 0x63, 0xbb, 0xb4, 0x4e, 0x3a, 0x1c, 0x7d, 0xd9, 0xa3, + 0x1e, 0xe5, 0x8f, 0x76, 0xf4, 0xd4, 0x59, 0x35, 0x9f, 0xc2, 0x4a, 0x85, 0x79, 0xaf, 0x9a, 0x47, + 0x4e, 0x88, 0x2b, 0x0e, 0x0b, 0x71, 0x50, 0xa9, 0x93, 0x10, 0x07, 0x08, 0xc1, 0xcc, 0x71, 0x40, + 0x1b, 0x79, 0xad, 0xa8, 0x95, 0xb2, 0x55, 0xfe, 0x8c, 0xf2, 0x30, 0xe7, 0x1c, 0x1d, 0x05, 0x98, + 0xb1, 0xfc, 0x14, 0x5f, 0x4e, 0x7e, 0x9a, 0x6b, 0xf0, 0x4f, 0xaa, 0x4c, 0x15, 0xb3, 0x26, 0x25, + 0x0c, 0x9b, 0x8f, 0x60, 0x51, 0x00, 0x5e, 0x38, 0x2d, 0x36, 0x76, 0x87, 0x02, 0xfc, 0xd5, 0x27, + 0x20, 0xb4, 0x9f, 0xc0, 0xb2, 0x28, 0x95, 0x7d, 0xc7, 0x3d, 0xf1, 0xeb, 0x6c, 0xfc, 0x2d, 0x18, + 0xb0, 0x9a, 0xa6, 0x22, 0xba, 0x3c, 0x84, 0x3f, 0x44, 0xfd, 0xe0, 0x94, 0x8c, 0xad, 0x9f, 0x87, + 0x5c, 0x2f, 0x5f, 0x28, 0x6f, 0x70, 0xe5, 0xc7, 0xae, 0x8b, 0x9b, 0xa1, 0x52, 0x39, 0xe6, 0x4b, + 0x28, 0xc1, 0xff, 0xa4, 0x01, 0xaa, 0x30, 0x6f, 0x9f, 0x92, 0xe3, 0xba, 0xd7, 0x0a, 0xf0, 0x24, + 0x27, 0x88, 0xf6, 0x20, 0xeb, 0xf8, 0x3e, 0x3d, 0x75, 0x88, 0x8b, 0xf3, 0xd3, 0x45, 0xad, 0x34, + 0xbf, 0x5b, 0xb0, 0x3a, 0x96, 0xb2, 0x22, 0x4b, 0x59, 0xb1, 0xa5, 0xac, 0x7d, 0x5a, 0x27, 0xe5, + 0x99, 0x8b, 0xef, 0x6b, 0x99, 0x6a, 0x97, 0x61, 0xae, 0x82, 0x3e, 0x38, 0x42, 0xdf, 0xe9, 0x57, + 0x71, 0x83, 0xb6, 0x27, 0x9a, 0x2e, 0x3e, 0x7d, 0x59, 0x40, 0x68, 0x37, 0x61, 0xae, 0xc2, 0xbc, + 0x68, 0x71, 0xcc, 0x1d, 0xdf, 0x83, 0x59, 0xa7, 0x41, 0x5b, 0x24, 0x1c, 0x75, 0xbb, 0x31, 0xdc, + 0x5c, 0xe2, 0xbb, 0x89, 0x3a, 0x8a, 0x21, 0x5e, 0xf3, 0x21, 0xca, 0xad, 0x80, 0xa4, 0x0e, 0xd1, + 0x6d, 0x35, 0x35, 0x49, 0xab, 0x48, 0x57, 0xb4, 0x7a, 0x00, 0x0b, 0xd1, 0x52, 0xe2, 0xd0, 0x31, + 0xff, 0xc8, 0x1c, 0x7f, 0x57, 0x04, 0xbb, 0xdf, 0xdd, 0xa4, 0x36, 0xa1, 0x6e, 0xec, 0xee, 0x2e, + 0x5f, 0x28, 0x1b, 0xf0, 0x7b, 0x85, 0x79, 0xfc, 0x95, 0x4d, 0xf5, 0x35, 0x82, 0x3f, 0x93, 0xba, + 0xe0, 0x14, 0x01, 0xb8, 0x5a, 0x53, 0xc9, 0x5a, 0xe6, 0x96, 0x8f, 0x11, 0x82, 0xf7, 0x81, 0xbf, + 0xc3, 0x7d, 0x2e, 0xdc, 0xa7, 0x24, 0x0c, 0xa8, 0xef, 0x2b, 0x4c, 0x67, 0x00, 0xb8, 0x02, 0x11, + 0x6f, 0x4b, 0x5a, 0x41, 0x39, 0x98, 0x6d, 0x70, 0x1d, 0x6e, 0x93, 0x6c, 0x35, 0xfe, 0x65, 0x6e, + 0xc2, 0xc6, 0xb0, 0x5e, 0x62, 0xa6, 0x03, 0x28, 0xf4, 0x59, 0xf7, 0xd7, 0x06, 0x32, 0xd7, 0xe1, + 0x5f, 0xa5, 0x60, 0xd2, 0x75, 0xf7, 0xeb, 0x3c, 0x4c, 0x57, 0x98, 0x87, 0x02, 0x40, 0x29, 0xe1, + 0xfe, 0x9f, 0x35, 0x78, 0x81, 0x58, 0xa9, 0x01, 0xae, 0xef, 0x8c, 0x0c, 0x4d, 0x7a, 0xa3, 0x77, + 0xb0, 0xd0, 0x13, 0xf4, 0xeb, 0x43, 0x25, 0x3a, 0x20, 0xfd, 0xd6, 0x08, 0x20, 0xd1, 0x81, 0xc2, + 0xd2, 0x60, 0xdc, 0x97, 0x86, 0x2a, 0x48, 0x48, 0x7d, 0x7b, 0x54, 0xa4, 0x68, 0xf8, 0x16, 0xe6, + 0xe5, 0xe4, 0x37, 0x87, 0x0a, 0x70, 0x8c, 0xfe, 0xff, 0xcd, 0x18, 0x59, 0x5e, 0x8e, 0x7f, 0x95, + 0xbc, 0x84, 0x51, 0xca, 0xa7, 0x5c, 0x10, 0xa8, 0x0e, 0x8b, 0xfd, 0x97, 0xc3, 0xa6, 0x82, 0xde, + 0x87, 0xd3, 0xad, 0xd1, 0x70, 0xf2, 0xd9, 0xf7, 0xc4, 0xbc, 0xea, 0xec, 0x65, 0x90, 0xf2, 0xec, + 0xd3, 0xf2, 0x1e, 0x3d, 0x83, 0x19, 0x1e, 0xf6, 0x7f, 0x2b, 0x48, 0x51, 0x51, 0x5f, 0x1f, 0x52, + 0x94, 0x95, 0x78, 0x62, 0xab, 0x94, 0xa2, 0xa2, 0x52, 0x49, 0xce, 0x64, 0x74, 0x08, 0xd9, 0x6e, + 0x20, 0x17, 0x55, 0x8c, 0x04, 0xa1, 0x97, 0x6e, 0x42, 0xf4, 0xf8, 0x4e, 0xca, 0x64, 0xa5, 0xef, + 0xba, 0x18, 0xb5, 0xef, 0x06, 0xb3, 0x19, 0x3d, 0x87, 0xdf, 0x3a, 0xc1, 0xbc, 0xaa, 0x20, 0xf1, + 0xaa, 0xbe, 0x31, 0xac, 0x2a, 0xc4, 0x5e, 0xc2, 0x5c, 0x92, 0xd8, 0x86, 0x72, 0x06, 0x5e, 0xd7, + 0x37, 0x87, 0xd7, 0x85, 0xe4, 0x67, 0x0d, 0x0a, 0xea, 0x34, 0xdf, 0x1e, 0xcd, 0x9b, 0x5d, 0x86, + 0x7e, 0x7f, 0x5c, 0x86, 0x98, 0xe4, 0x23, 0xe4, 0x14, 0x11, 0xbe, 0x35, 0x82, 0x79, 0xa5, 0x11, + 0xee, 0x8e, 0x05, 0x4f, 0xfa, 0x97, 0x0f, 0x2f, 0xae, 0x0c, 0xed, 0xf2, 0xca, 0xd0, 0x7e, 0x5c, + 0x19, 0xda, 0x97, 0x6b, 0x23, 0x73, 0x79, 0x6d, 0x64, 0xbe, 0x5d, 0x1b, 0x99, 0x37, 0x7b, 0x5e, + 0x3d, 0x7c, 0xdf, 0xaa, 0x59, 0x2e, 0x6d, 0xd8, 0x2c, 0x0c, 0x1c, 0xe2, 0x61, 0x9f, 0xb6, 0xf1, + 0x56, 0x1b, 0x93, 0xb0, 0x15, 0x60, 0x66, 0xf3, 0x7e, 0x76, 0xfb, 0x8e, 0x7d, 0x66, 0xf7, 0x7e, + 0x4d, 0x9c, 0x37, 0x31, 0xab, 0xcd, 0xf2, 0xef, 0x80, 0xdb, 0x3f, 0x03, 0x00, 0x00, 0xff, 0xff, + 0x9f, 0x61, 0xf4, 0xec, 0x6a, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.