diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 368df69f5..d1b0df20c 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,4 +1,7 @@ # CODEOWNERS: https://help.github.com/articles/about-codeowners/ # Primary repo maintainers -* @fadeev @lubtd @Pantani @aljo242 @giunatale +* @ilgooz @jeronimoalbi @Pantani + +# Docs +*.md @ilgooz diff --git a/.github/workflows/dependency.yml b/.github/workflows/dependency.yml new file mode 100644 index 000000000..a6024c5eb --- /dev/null +++ b/.github/workflows/dependency.yml @@ -0,0 +1,16 @@ +name: 'Dependency Review' +# Dependency Review workflow action scans pull requests for dependency changes and +# will raise an error if any new dependencies have existing vulnerabilities. +on: [pull_request] + +permissions: + contents: read + +jobs: + dependency-review: + runs-on: ubuntu-latest + steps: + - name: 'Checkout Repository' + uses: actions/checkout@v3 + - name: 'Dependency Review' + uses: actions/dependency-review-action@v3 \ No newline at end of file diff --git a/.github/workflows/janitor.yml b/.github/workflows/janitor.yml new file mode 100644 index 000000000..ecc2e4878 --- /dev/null +++ b/.github/workflows/janitor.yml @@ -0,0 +1,16 @@ +name: Janitor +# Janitor cleans up previous runs that are not completed for a given workflow +# It cancels Sims and Tests +# Reference the API https://api.github.com/repos/:org/:repo/actions/workflows to find workflow ids +on: + pull_request: + +jobs: + cancel: + name: "Cancel Previous Runs" + runs-on: ubuntu-latest + timeout-minutes: 3 + steps: + - uses: styfle/cancel-workflow-action@0.11.0 + with: + access_token: ${{ github.token }} diff --git a/.github/workflows/sims.yml b/.github/workflows/sims.yml new file mode 100644 index 000000000..17015bbc4 --- /dev/null +++ b/.github/workflows/sims.yml @@ -0,0 +1,119 @@ +name: Sims +# Sims workflow runs multiple types of simulations (nondeterminism, import-export, after-import) +# This workflow will run on all Pull Requests, if a .go, .mod or .sum file have been changed +on: + pull_request: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + if: "!contains(github.event.head_commit.message, 'skip-sims')" + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 + with: + go-version: 1.19 + - name: Display go version + run: go version + - run: make build + + install-runsim: + runs-on: ubuntu-latest + needs: build + steps: + - uses: actions/setup-go@v4 + with: + go-version: 1.19 + - name: Display go version + run: go version + - name: Install runsim + run: export GO111MODULE="on" && go install github.com/cosmos/tools/cmd/runsim@v1.0.0 + - uses: actions/cache@v2 + with: + path: ~/go/bin + key: ${{ runner.os }}-go-runsim-binary + + test-sim-nondeterminism: + runs-on: ubuntu-latest + needs: [build, install-runsim] + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 + with: + go-version: 1.19 + - name: Display go version + run: go version + - uses: technote-space/get-diff-action@v4 + with: + PATTERNS: | + **/**.go + go.mod + go.sum + - uses: actions/cache@v2 + with: + path: ~/go/bin + key: ${{ runner.os }}-go-runsim-binary + if: env.GIT_DIFF + - name: test-sim-nondeterminism + run: | + make test-sim-nondeterminism + if: env.GIT_DIFF + + test-sim-import-export: + runs-on: ubuntu-latest + needs: [build, install-runsim] + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 + with: + go-version: 1.19 + - name: Display go version + run: go version + - uses: technote-space/get-diff-action@v4 + with: + SUFFIX_FILTER: | + **/**.go + go.mod + go.sum + SET_ENV_NAME_INSERTIONS: 1 + SET_ENV_NAME_LINES: 1 + - uses: actions/cache@v2 + with: + path: ~/go/bin + key: ${{ runner.os }}-go-runsim-binary + if: env.GIT_DIFF + - name: test-sim-import-export + run: | + make test-sim-import-export + if: env.GIT_DIFF + + test-sim-after-import: + runs-on: ubuntu-latest + needs: [build, install-runsim] + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 + with: + go-version: 1.19 + - name: Display go version + run: go version + - uses: technote-space/get-diff-action@v4 + with: + SUFFIX_FILTER: | + **/**.go + go.mod + go.sum + SET_ENV_NAME_INSERTIONS: 1 + SET_ENV_NAME_LINES: 1 + - uses: actions/cache@v2 + with: + path: ~/go/bin + key: ${{ runner.os }}-go-runsim-binary + if: env.GIT_DIFF + - name: test-sim-after-import + run: | + make test-sim-after-import + if: env.GIT_DIFF diff --git a/.github/workflows/simulation.yml b/.github/workflows/simulation.yml index a9418b203..e5a7e7872 100644 --- a/.github/workflows/simulation.yml +++ b/.github/workflows/simulation.yml @@ -12,7 +12,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/cache@v2 with: @@ -23,7 +23,7 @@ jobs: restore-keys: | ${{ runner.os }}-go- - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v4 with: go-version: 1.19 diff --git a/.github/workflows/test-lint.yml b/.github/workflows/test-lint.yml index ad932dd53..aa2eaefec 100644 --- a/.github/workflows/test-lint.yml +++ b/.github/workflows/test-lint.yml @@ -12,20 +12,20 @@ jobs: timeout-minutes: 6 steps: - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: go-version: 1.19 - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: technote-space/get-diff-action@v4 with: PATTERNS: | **/**.go go.mod go.sum - - uses: golangci/golangci-lint-action@master + - uses: golangci/golangci-lint-action@v3 with: # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. - version: v1.49 + version: v1.52 args: --issues-exit-code=0 -e SA1019 --timeout 10m github-token: ${{ secrets.github_token }} if: env.GIT_DIFF diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 85963cf46..86bc1b84c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/cache@v2 with: @@ -26,7 +26,7 @@ jobs: restore-keys: | ${{ runner.os }}-go- - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v4 with: go-version: 1.19 diff --git a/Makefile b/Makefile index a2cb75363..2cf38dc7c 100644 --- a/Makefile +++ b/Makefile @@ -2,25 +2,97 @@ PACKAGES=$(shell go list ./...) VERSION := $(shell echo $(shell git describe --tags 2> /dev/null || echo "dev-$(shell git describe --always)") | sed 's/^v//') -SIMAPP = ./app +COMMIT := $(shell git log -1 --format='%H') +PACKAGES_NOSIMULATION=$(shell go list ./... | grep -v '/simulation') DOCKER := $(shell which docker) COVER_FILE := coverage.txt COVER_HTML_FILE := cover.html +BINDIR ?= $(GOPATH)/bin +DOCKER := $(shell which docker) +DOCKER_BUF := $(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace bufbuild/buf +BUILDDIR ?= $(CURDIR)/build + +export GO111MODULE = on + +# process build tags + +build_tags = netgo +ifeq ($(LEDGER_ENABLED),true) + ifeq ($(OS),Windows_NT) + GCCEXE = $(shell where gcc.exe 2> NUL) + ifeq ($(GCCEXE),) + $(error gcc.exe not installed for ledger support, please install or set LEDGER_ENABLED=false) + else + build_tags += ledger + endif + else + UNAME_S = $(shell uname -s) + ifeq ($(UNAME_S),OpenBSD) + $(warning OpenBSD detected, disabling ledger support (https://github.com/cosmos/cosmos-sdk/issues/1988)) + else + GCC = $(shell command -v gcc 2> /dev/null) + ifeq ($(GCC),) + $(error gcc not installed for ledger support, please install or set LEDGER_ENABLED=false) + else + build_tags += ledger + endif + endif + endif +endif + +ifeq ($(WITH_CLEVELDB),yes) + build_tags += gcc +endif +build_tags += $(BUILD_TAGS) +build_tags := $(strip $(build_tags)) + +whitespace := +whitespace += $(whitespace) +comma := , +build_tags_comma_sep := $(subst $(whitespace),$(comma),$(build_tags)) + +# process linker flags + +ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=spnd \ + -X github.com/cosmos/cosmos-sdk/version.AppName=spnd \ + -X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION) \ + -X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT) \ + -X "github.com/cosmos/cosmos-sdk/version.BuildTags=$(build_tags_comma_sep)" \ + -X github.com/cosmos/cosmos-sdk/types.reDnmString=[a-zA-Z][a-zA-Z0-9/:]{2,127} + +ifeq ($(WITH_CLEVELDB),yes) + ldflags += -X github.com/cosmos/cosmos-sdk/types.DBBackend=cleveldb +endif +ldflags += $(LDFLAGS) +ldflags := $(strip $(ldflags)) + +BUILD_FLAGS := -tags "$(build_tags)" -ldflags '$(ldflags)' + +all: tools install lint + +############################################################################### +### Development ### +############################################################################### ## govet: Run go vet. govet: @echo Running go vet... @go vet ./... +## govulncheck: Run govulncheck +govulncheck: + @echo Running govulncheck... + @go run golang.org/x/vuln/cmd/govulncheck ./... + FIND_ARGS := -name '*.go' -type f -not -name '*.pb.go' -not -name '*.pb.gw.go' -## format: Run gofmt and goimports. +## format: Run gofumpt and goimports. format: @echo Formatting... @go install mvdan.cc/gofumpt @go install golang.org/x/tools/cmd/goimports @find . $(FIND_ARGS) | xargs gofumpt -w . - @find . $(FIND_ARGS) | xargs goimports -w -local github.com/tendermint/spn + @find . $(FIND_ARGS) | xargs goimports -w -local github.com/ignite/modules ## lint: Run Golang CI Lint. lint: @@ -35,7 +107,56 @@ help: Makefile @sed -n 's/^##//p' $< | column -t -s ':' | sed -e 's/^/ /' @echo -.PHONY: lint format govet help +.PHONY: lint format govet govulncheck help + +############################################################################### +### Build ### +############################################################################### + +build: go.sum +ifeq ($(OS),Windows_NT) + go build $(BUILD_FLAGS) -o build/spnd.exe ./cmd/spnd +else + go build $(BUILD_FLAGS) -o build/spnd ./cmd/spnd +endif + +build-linux: go.sum + LEDGER_ENABLED=false GOOS=linux GOARCH=amd64 $(MAKE) build + +install: go.sum + go install $(BUILD_FLAGS) ./cmd/spnd + +build-reproducible: go.sum + $(DOCKER) rm latest-build || true + $(DOCKER) run --volume=$(CURDIR):/sources:ro \ + --env TARGET_PLATFORMS='linux/amd64 darwin/amd64 linux/arm64' \ + --env APP=spnd \ + --env VERSION=$(VERSION) \ + --env COMMIT=$(COMMIT) \ + --name latest-build cosmossdk/rbuilder:latest + $(DOCKER) cp -a latest-build:/home/builder/artifacts/ $(CURDIR)/ + +############################################################################### +### Tools & Dependencies ### +############################################################################### + +go-mod-cache: go.sum + @echo "--> Download go modules to local cache" + @go mod download + +go.sum: go.mod + @echo "--> Ensure dependencies have not been modified" + @go mod verify + @go mod tidy + +clean: + rm -rf build/ + +.PHONY: go-mod-cache clean + +############################################################################### +### Test ### +############################################################################### ## test-unit: Run the unit tests. test-unit: @@ -64,6 +185,10 @@ test: govet test-unit .PHONY: test test-unit test-race test-cover bench +############################################################################### +### Protobuf ### +############################################################################### + proto-all: proto-format protoVer=v0.7 @@ -76,6 +201,14 @@ proto-format: find ./ -not -path "./third_party/*" -name "*.proto" -exec clang-format -i {} \; ; fi +############################################################################### +### Simulation ### +############################################################################### + +# The below include contains the tools and runsim targets. +include contrib/devtools/Makefile + +SIMAPP = ./app SIM_NUM_BLOCKS ?= 500 SIM_BLOCK_SIZE ?= 100 SIM_CI_NUM_BLOCKS ?= 200 @@ -84,34 +217,71 @@ SIM_PERIOD ?= 50 SIM_COMMIT ?= true SIM_TIMEOUT ?= 24h -## test-sim-nondeterminism: Run simulation test checking for app state nondeterminism +# test-sim-nondeterminism: Run simulation test checking for app state nondeterminism test-sim-nondeterminism: @echo "Running non-determinism test..." @VERSION=$(VERSION) go test -mod=readonly $(SIMAPP) -run TestAppStateDeterminism -Enabled=true \ -NumBlocks=$(SIM_NUM_BLOCKS) -BlockSize=$(SIM_BLOCK_SIZE) -Commit=$(SIM_COMMIT) -Period=$(SIM_PERIOD) \ -v -timeout $(SIM_TIMEOUT) -## test-sim-ci: Run lightweight simulation for CI pipeline +# test-sim-import-export: Run simulation test checking import and export app state determinism +# go get github.com/cosmos/tools/cmd/runsim@v1.0.0 +test-sim-import-export: runsim + @echo "Running application import/export simulation. This may take several minutes..." + @$(BINDIR)/runsim -Jobs=4 -SimAppPkg=$(SIMAPP) -ExitOnFail 2 2 TestAppImportExport + +# test-sim-after-import: Run simulation test checking import after simulation +# go get github.com/cosmos/tools/cmd/runsim@v1.0.0 +test-sim-after-import: runsim + @echo "Running application simulation-after-import. This may take several minutes..." + @$(BINDIR)/runsim -Jobs=4 -SimAppPkg=$(SIMAPP) -ExitOnFail 2 2 TestAppSimulationAfterImport + +# test-sim-nondeterminism-long: Run simulation test checking for app state nondeterminism with a big data +test-sim-nondeterminism-long: + @echo "Running non-determinism test..." + @go test -mod=readonly $(SIMAPP) -run TestAppStateDeterminism -Enabled=true \ + -NumBlocks=100 -BlockSize=100 -Commit=true -Period=0 -v -timeout 1h + +# test-sim-import-export-long: Test import/export simulation +test-sim-import-export-long: runsim + @echo "Running application import/export simulation. This may take several minutes..." + @$(BINDIR)/runsim -Jobs=4 -SimAppPkg=$(SIMAPP) -ExitOnFail 5 5 TestAppImportExport + +# test-sim-import-export-long: Test import/export simulation with a big data +test-sim-after-import-long: runsim + @echo "Running application simulation-after-import. This may take several minutes..." + @$(BINDIR)/runsim -Jobs=4 -SimAppPkg=$(SIMAPP) -ExitOnFail 5 5 TestAppSimulationAfterImport + +# test-sim-ci: Run lightweight simulation for CI pipeline test-sim-ci: @echo "Running application benchmark for numBlocks=$(SIM_CI_NUM_BLOCKS), blockSize=$(SIM_CI_BLOCK_SIZE)" @VERSION=$(VERSION) go test -mod=readonly -benchmem -run=^$$ $(SIMAPP) -bench ^BenchmarkSimulation$$ \ -Enabled=true -NumBlocks=$(SIM_CI_NUM_BLOCKS) -BlockSize=$(SIM_CI_BLOCK_SIZE) -Commit=$(SIM_COMMIT) \ -Period=$(SIM_PERIOD) -timeout $(SIM_TIMEOUT) -## test-sim-benchmark: Run heavy benchmarking simulation +# test-sim-benchmark: Run heavy benchmarking simulation test-sim-benchmark: @echo "Running application benchmark for numBlocks=$(SIM_NUM_BLOCKS), blockSize=$(SIM_BLOCK_SIZE). This may take awhile!" @VERSION=$(VERSION) go test -mod=readonly -benchmem -run=^$$ $(SIMAPP) -bench ^BenchmarkSimulation$$ \ -Enabled=true -NumBlocks=$(SIM_NUM_BLOCKS) -BlockSize=$(SIM_BLOCK_SIZE) -Period=$(SIM_PERIOD) \ -Commit=$(SIM_COMMIT) timeout $(SIM_TIMEOUT) -## test-sim-benchmark: Run heavy benchmarking simulation with CPU and memory profiling +# test-sim-benchmark: Run heavy benchmarking simulation with CPU and memory profiling test-sim-profile: @echo "Running application benchmark for numBlocks=$(SIM_NUM_BLOCKS), blockSize=$(SIM_BLOCK_SIZE). This may take awhile!" @VERSION=$(VERSION) go test -mod=readonly -benchmem -run=^$$ $(SIMAPP) -bench ^BenchmarkSimulation$$ \ -Enabled=true -NumBlocks=$(SIM_NUM_BLOCKS) -BlockSize=$(SIM_BLOCK_SIZE) -Period=$(SIM_PERIOD) \ -Commit=$(SIM_COMMIT) timeout $(SIM_TIMEOUT)-cpuprofile cpu.out -memprofile mem.out -.PHONY: test-sim-nondeterminism test-sim-ci test-sim-profile test-sim-benchmark +.PHONY: \ +test-sim-nondeterminism \ +test-sim-nondeterminism-long \ +test-sim-import-export \ +test-sim-import-export-long \ +test-sim-after-import \ +test-sim-after-import-long \ +test-sim-ci \ +test-sim-profile \ +test-sim-benchmark .DEFAULT_GOAL := install diff --git a/app/app.go b/app/app.go index a41a2ec75..b3aff83a1 100644 --- a/app/app.go +++ b/app/app.go @@ -1,20 +1,30 @@ package app import ( + "encoding/json" "io" "net/http" "os" "path/filepath" + autocliv1 "cosmossdk.io/api/cosmos/autocli/v1" + reflectionv1 "cosmossdk.io/api/cosmos/reflection/v1" + + dbm "github.com/cometbft/cometbft-db" + abci "github.com/cometbft/cometbft/abci/types" + "github.com/cometbft/cometbft/libs/log" + tmos "github.com/cometbft/cometbft/libs/os" "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/client" + nodeservice "github.com/cosmos/cosmos-sdk/client/grpc/node" "github.com/cosmos/cosmos-sdk/client/grpc/tmservice" "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/codec/types" + "github.com/cosmos/cosmos-sdk/runtime" + runtimeservices "github.com/cosmos/cosmos-sdk/runtime/services" "github.com/cosmos/cosmos-sdk/server/api" "github.com/cosmos/cosmos-sdk/server/config" servertypes "github.com/cosmos/cosmos-sdk/server/types" - "github.com/cosmos/cosmos-sdk/simapp" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" @@ -36,11 +46,13 @@ import ( "github.com/cosmos/cosmos-sdk/x/capability" capabilitykeeper "github.com/cosmos/cosmos-sdk/x/capability/keeper" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" + "github.com/cosmos/cosmos-sdk/x/consensus" + consensusparamkeeper "github.com/cosmos/cosmos-sdk/x/consensus/keeper" + consensusparamtypes "github.com/cosmos/cosmos-sdk/x/consensus/types" "github.com/cosmos/cosmos-sdk/x/crisis" crisiskeeper "github.com/cosmos/cosmos-sdk/x/crisis/keeper" crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types" distr "github.com/cosmos/cosmos-sdk/x/distribution" - distrclient "github.com/cosmos/cosmos-sdk/x/distribution/client" distrkeeper "github.com/cosmos/cosmos-sdk/x/distribution/keeper" distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" "github.com/cosmos/cosmos-sdk/x/evidence" @@ -72,33 +84,34 @@ import ( upgradeclient "github.com/cosmos/cosmos-sdk/x/upgrade/client" upgradekeeper "github.com/cosmos/cosmos-sdk/x/upgrade/keeper" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/cosmos/ibc-go/v6/modules/apps/transfer" - ibctransferkeeper "github.com/cosmos/ibc-go/v6/modules/apps/transfer/keeper" - ibctransfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - ibc "github.com/cosmos/ibc-go/v6/modules/core" - ibcclient "github.com/cosmos/ibc-go/v6/modules/core/02-client" - ibcporttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" - ibchost "github.com/cosmos/ibc-go/v6/modules/core/24-host" - ibckeeper "github.com/cosmos/ibc-go/v6/modules/core/keeper" - "github.com/ignite/modules/x/claim" - claimkeeper "github.com/ignite/modules/x/claim/keeper" - claimtypes "github.com/ignite/modules/x/claim/types" - "github.com/ignite/modules/x/mint" - mintkeeper "github.com/ignite/modules/x/mint/keeper" - minttypes "github.com/ignite/modules/x/mint/types" + ica "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts" + icacontroller "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller" + icacontrollerkeeper "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/keeper" + icacontrollertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" + icahost "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host" + icahostkeeper "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/keeper" + icahosttypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/host/types" + icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" + ibcfee "github.com/cosmos/ibc-go/v7/modules/apps/29-fee" + ibcfeekeeper "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/keeper" + ibcfeetypes "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" + "github.com/cosmos/ibc-go/v7/modules/apps/transfer" + ibctransferkeeper "github.com/cosmos/ibc-go/v7/modules/apps/transfer/keeper" + ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + ibc "github.com/cosmos/ibc-go/v7/modules/core" + ibcclient "github.com/cosmos/ibc-go/v7/modules/core/02-client" + ibcclientclient "github.com/cosmos/ibc-go/v7/modules/core/02-client/client" + ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper" + ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" "github.com/spf13/cast" "github.com/tendermint/fundraising/x/fundraising" fundraisingkeeper "github.com/tendermint/fundraising/x/fundraising/keeper" fundraisingtypes "github.com/tendermint/fundraising/x/fundraising/types" - abci "github.com/tendermint/tendermint/abci/types" - tmjson "github.com/tendermint/tendermint/libs/json" - "github.com/tendermint/tendermint/libs/log" - tmos "github.com/tendermint/tendermint/libs/os" - dbm "github.com/tendermint/tm-db" - "github.com/tendermint/spn/cmd" "github.com/tendermint/spn/docs" - "github.com/tendermint/spn/pkg/airdrop" spntypes "github.com/tendermint/spn/pkg/types" "github.com/tendermint/spn/x/launch" launchkeeper "github.com/tendermint/spn/x/launch/keeper" @@ -121,10 +134,19 @@ import ( "github.com/tendermint/spn/x/reward" rewardkeeper "github.com/tendermint/spn/x/reward/keeper" rewardtypes "github.com/tendermint/spn/x/reward/types" + + "github.com/ignite/modules/x/claim" + claimkeeper "github.com/ignite/modules/x/claim/keeper" + claimtypes "github.com/ignite/modules/x/claim/types" + "github.com/ignite/modules/x/mint" + mintkeeper "github.com/ignite/modules/x/mint/keeper" + minttypes "github.com/ignite/modules/x/mint/types" // this line is used by starport scaffolding # stargate/app/moduleImport ) const ( + DefaultChainID = "spn-1" + // missionIDStaking is the mission ID for staking mission to claim airdrop missionIDStaking = 1 @@ -143,9 +165,10 @@ func getGovProposalHandlers() []govclient.ProposalHandler { govProposalHandlers = append(govProposalHandlers, paramsclient.ProposalHandler, - distrclient.ProposalHandler, upgradeclient.LegacyProposalHandler, upgradeclient.LegacyCancelProposalHandler, + ibcclientclient.UpdateClientProposalHandler, + ibcclientclient.UpgradeProposalHandler, // this line is used by starport scaffolding # stargate/app/govProposalHandler ) @@ -161,7 +184,7 @@ var ( // and genesis verification. ModuleBasics = module.NewBasicManager( auth.AppModuleBasic{}, - genutil.AppModuleBasic{}, + genutil.NewAppModuleBasic(genutiltypes.DefaultMessageValidator), bank.AppModuleBasic{}, capability.AppModuleBasic{}, staking.AppModuleBasic{}, @@ -169,17 +192,21 @@ var ( distr.AppModuleBasic{}, gov.NewAppModuleBasic(getGovProposalHandlers()), params.AppModuleBasic{}, - crisis.AppModuleBasic{}, slashing.AppModuleBasic{}, - feegrantmodule.AppModuleBasic{}, - authzmodule.AppModuleBasic{}, ibc.AppModuleBasic{}, + ibctm.AppModuleBasic{}, + feegrantmodule.AppModuleBasic{}, upgrade.AppModuleBasic{}, evidence.AppModuleBasic{}, transfer.AppModuleBasic{}, + ica.AppModuleBasic{}, + authzmodule.AppModuleBasic{}, vesting.AppModuleBasic{}, + ibcfee.AppModuleBasic{}, + consensus.AppModuleBasic{}, participation.AppModuleBasic{}, claim.AppModuleBasic{}, + crisis.AppModuleBasic{}, // this line is used by starport scaffolding # stargate/app/moduleBasic profile.AppModuleBasic{}, launch.AppModuleBasic{}, @@ -200,6 +227,8 @@ var ( govtypes.ModuleName: {authtypes.Burner}, ibctransfertypes.ModuleName: {authtypes.Minter, authtypes.Burner}, projecttypes.ModuleName: {authtypes.Minter, authtypes.Burner}, + ibcfeetypes.ModuleName: nil, + icatypes.ModuleName: nil, rewardtypes.ModuleName: nil, fundraisingtypes.ModuleName: nil, monitoringctypes.ModuleName: nil, @@ -210,9 +239,8 @@ var ( ) var ( - _ cmd.App = (*App)(nil) + _ runtime.AppI = (*App)(nil) _ servertypes.Application = (*App)(nil) - _ simapp.App = (*App)(nil) ) func init() { @@ -242,27 +270,33 @@ type App struct { memKeys map[string]*storetypes.MemoryStoreKey // keepers - AuthKeeper authkeeper.AccountKeeper - BankKeeper bankkeeper.Keeper - CapabilityKeeper *capabilitykeeper.Keeper - StakingKeeper stakingkeeper.Keeper - SlashingKeeper slashingkeeper.Keeper - MintKeeper mintkeeper.Keeper - DistrKeeper distrkeeper.Keeper - GovKeeper govkeeper.Keeper - CrisisKeeper crisiskeeper.Keeper - UpgradeKeeper upgradekeeper.Keeper - ParamsKeeper paramskeeper.Keeper - IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly - EvidenceKeeper evidencekeeper.Keeper - TransferKeeper ibctransferkeeper.Keeper - FeeGrantKeeper feegrantkeeper.Keeper - AuthzKeeper authzkeeper.Keeper - FundraisingKeeper fundraisingkeeper.Keeper + AuthKeeper authkeeper.AccountKeeper + BankKeeper bankkeeper.Keeper + CapabilityKeeper *capabilitykeeper.Keeper + StakingKeeper *stakingkeeper.Keeper + SlashingKeeper slashingkeeper.Keeper + MintKeeper mintkeeper.Keeper + DistrKeeper distrkeeper.Keeper + GovKeeper govkeeper.Keeper + CrisisKeeper *crisiskeeper.Keeper + UpgradeKeeper *upgradekeeper.Keeper + ParamsKeeper paramskeeper.Keeper + IBCKeeper *ibckeeper.Keeper + IBCFeeKeeper ibcfeekeeper.Keeper + ICAControllerKeeper icacontrollerkeeper.Keeper + ICAHostKeeper icahostkeeper.Keeper + EvidenceKeeper evidencekeeper.Keeper + TransferKeeper ibctransferkeeper.Keeper + FeeGrantKeeper feegrantkeeper.Keeper + AuthzKeeper authzkeeper.Keeper + FundraisingKeeper fundraisingkeeper.Keeper + ConsensusParamsKeeper consensusparamkeeper.Keeper // make scoped keepers public for test purposes - ScopedIBCKeeper capabilitykeeper.ScopedKeeper - ScopedTransferKeeper capabilitykeeper.ScopedKeeper + ScopedIBCKeeper capabilitykeeper.ScopedKeeper + ScopedTransferKeeper capabilitykeeper.ScopedKeeper + ScopedICAControllerKeeper capabilitykeeper.ScopedKeeper + ScopedICAHostKeeper capabilitykeeper.ScopedKeeper ScopedMonitoringcKeeper capabilitykeeper.ScopedKeeper @@ -283,6 +317,9 @@ type App struct { // simulation manager sm *module.SimulationManager + + // module configurator + configurator module.Configurator } // New returns a reference to an initialized spn app. @@ -301,11 +338,13 @@ func New( appCodec := encodingConfig.Marshaler cdc := encodingConfig.Amino interfaceRegistry := encodingConfig.InterfaceRegistry + txConfig := encodingConfig.TxConfig - bApp := baseapp.NewBaseApp(spntypes.Name, logger, db, encodingConfig.TxConfig.TxDecoder(), baseAppOptions...) + bApp := baseapp.NewBaseApp(spntypes.Name, logger, db, txConfig.TxDecoder(), baseAppOptions...) bApp.SetCommitMultiStoreTracer(traceStore) bApp.SetVersion(version.Version) bApp.SetInterfaceRegistry(interfaceRegistry) + bApp.SetTxEncoder(txConfig.TxEncoder()) keys := sdk.NewKVStoreKeys( authtypes.StoreKey, @@ -316,12 +355,14 @@ func New( slashingtypes.StoreKey, govtypes.StoreKey, paramstypes.StoreKey, - ibchost.StoreKey, upgradetypes.StoreKey, feegrant.StoreKey, authzkeeper.StoreKey, evidencetypes.StoreKey, + ibcexported.StoreKey, ibctransfertypes.StoreKey, + icacontrollertypes.StoreKey, + icahosttypes.StoreKey, capabilitytypes.StoreKey, profiletypes.StoreKey, launchtypes.StoreKey, @@ -331,7 +372,10 @@ func New( rewardtypes.StoreKey, fundraisingtypes.StoreKey, participationtypes.StoreKey, + ibcfeetypes.StoreKey, + consensusparamtypes.StoreKey, claimtypes.StoreKey, + crisistypes.StoreKey, // this line is used by starport scaffolding # stargate/app/storeKey ) tkeys := sdk.NewTransientStoreKeys(paramstypes.TStoreKey) @@ -356,7 +400,8 @@ func New( ) // set the BaseApp's parameter store - bApp.SetParamStore(app.ParamsKeeper.Subspace(baseapp.Paramspace).WithKeyTable(paramstypes.ConsensusParamsKeyTable())) + app.ConsensusParamsKeeper = consensusparamkeeper.NewKeeper(appCodec, keys[upgradetypes.StoreKey], authtypes.NewModuleAddress(govtypes.ModuleName).String()) + bApp.SetParamStore(&app.ConsensusParamsKeeper) // add capability keeper and ScopeToModule for ibc module app.CapabilityKeeper = capabilitykeeper.NewKeeper( @@ -366,18 +411,21 @@ func New( ) // grant capabilities for the ibc and ibc-transfer modules - scopedIBCKeeper := app.CapabilityKeeper.ScopeToModule(ibchost.ModuleName) + scopedIBCKeeper := app.CapabilityKeeper.ScopeToModule(ibcexported.ModuleName) scopedTransferKeeper := app.CapabilityKeeper.ScopeToModule(ibctransfertypes.ModuleName) + scopedICAControllerKeeper := app.CapabilityKeeper.ScopeToModule(icacontrollertypes.SubModuleName) + scopedICAHostKeeper := app.CapabilityKeeper.ScopeToModule(icahosttypes.SubModuleName) + // this line is used by starport scaffolding # stargate/app/scopedKeeper // add keepers app.AuthKeeper = authkeeper.NewAccountKeeper( appCodec, keys[authtypes.StoreKey], - app.GetSubspace(authtypes.ModuleName), authtypes.ProtoBaseAccount, maccPerms, - spntypes.AccountAddressPrefix, + sdk.Bech32PrefixAccAddr, + authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) app.AuthzKeeper = authzkeeper.NewKeeper( @@ -391,48 +439,54 @@ func New( appCodec, keys[banktypes.StoreKey], app.AuthKeeper, - app.GetSubspace(banktypes.ModuleName), - app.ModuleAccountAddrs(), + app.BlockedModuleAccountAddrs(), + authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) - stakingKeeper := stakingkeeper.NewKeeper( + app.StakingKeeper = stakingkeeper.NewKeeper( appCodec, keys[stakingtypes.StoreKey], app.AuthKeeper, app.BankKeeper, - app.GetSubspace(stakingtypes.ModuleName), + authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) app.DistrKeeper = distrkeeper.NewKeeper( appCodec, keys[distrtypes.StoreKey], - app.GetSubspace(distrtypes.ModuleName), app.AuthKeeper, app.BankKeeper, - &stakingKeeper, + app.StakingKeeper, authtypes.FeeCollectorName, + authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) + app.MintKeeper = mintkeeper.NewKeeper( appCodec, keys[minttypes.StoreKey], app.GetSubspace(minttypes.ModuleName), - &stakingKeeper, + app.StakingKeeper, app.AuthKeeper, app.BankKeeper, app.DistrKeeper, authtypes.FeeCollectorName, ) + app.SlashingKeeper = slashingkeeper.NewKeeper( appCodec, + cdc, keys[slashingtypes.StoreKey], - &stakingKeeper, - app.GetSubspace(slashingtypes.ModuleName), + app.StakingKeeper, + authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) app.CrisisKeeper = crisiskeeper.NewKeeper( - app.GetSubspace(crisistypes.ModuleName), - invCheckPeriod, app.BankKeeper, + appCodec, + keys[crisistypes.StoreKey], + invCheckPeriod, + app.BankKeeper, authtypes.FeeCollectorName, + authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) app.FeeGrantKeeper = feegrantkeeper.NewKeeper( @@ -455,20 +509,39 @@ func New( // Create IBC Keeper app.IBCKeeper = ibckeeper.NewKeeper( appCodec, - keys[ibchost.StoreKey], - app.GetSubspace(ibchost.ModuleName), - stakingKeeper, + keys[ibcexported.StoreKey], + app.GetSubspace(ibcexported.ModuleName), + app.StakingKeeper, app.UpgradeKeeper, scopedIBCKeeper, ) - // register the proposal types - govRouter := govv1beta1.NewRouter() - govRouter.AddRoute(govtypes.RouterKey, govv1beta1.ProposalHandler). - AddRoute(paramproposal.RouterKey, params.NewParamChangeProposalHandler(app.ParamsKeeper)). - AddRoute(distrtypes.RouterKey, distr.NewCommunityPoolSpendProposalHandler(app.DistrKeeper)). - AddRoute(upgradetypes.RouterKey, upgrade.NewSoftwareUpgradeProposalHandler(app.UpgradeKeeper)). - AddRoute(ibchost.RouterKey, ibcclient.NewClientProposalHandler(app.IBCKeeper.ClientKeeper)) + // IBC Fee Module keeper + app.IBCFeeKeeper = ibcfeekeeper.NewKeeper( + appCodec, keys[ibcfeetypes.StoreKey], + app.IBCKeeper.ChannelKeeper, // may be replaced with IBC middleware + app.IBCKeeper.ChannelKeeper, + &app.IBCKeeper.PortKeeper, app.AuthKeeper, app.BankKeeper, + ) + + // ICA Controller keeper + app.ICAControllerKeeper = icacontrollerkeeper.NewKeeper( + appCodec, keys[icacontrollertypes.StoreKey], app.GetSubspace(icacontrollertypes.SubModuleName), + app.IBCFeeKeeper, // use ics29 fee as ics4Wrapper in middleware stack + app.IBCKeeper.ChannelKeeper, &app.IBCKeeper.PortKeeper, + scopedICAControllerKeeper, app.MsgServiceRouter(), + ) + + // ICA Host keeper + app.ICAHostKeeper = icahostkeeper.NewKeeper( + appCodec, keys[icahosttypes.StoreKey], app.GetSubspace(icahosttypes.SubModuleName), + app.IBCFeeKeeper, // use ics29 fee as ics4Wrapper in middleware stack + app.IBCKeeper.ChannelKeeper, &app.IBCKeeper.PortKeeper, + app.AuthKeeper, scopedICAHostKeeper, app.MsgServiceRouter(), + ) + + // Create IBC Router + ibcRouter := porttypes.NewRouter() // Create Transfer Keepers app.TransferKeeper = ibctransferkeeper.NewKeeper( @@ -483,31 +556,60 @@ func New( scopedTransferKeeper, ) app.transferModule = transfer.NewAppModule(app.TransferKeeper) - transferIBCModule := transfer.NewIBCModule(app.TransferKeeper) + + // Create Transfer Stack + // SendPacket, since it is originating from the application to core IBC: + // transferKeeper.SendPacket -> fee.SendPacket -> channel.SendPacket + + // RecvPacket, message that originates from core IBC and goes down to app, the flow is the other way + // channel.RecvPacket -> fee.OnRecvPacket -> transfer.OnRecvPacket + + // transfer stack contains (from top to bottom): + // - IBC Fee Middleware + // - Transfer + + // create IBC module from bottom to top of stack + var transferStack porttypes.IBCModule + transferStack = transfer.NewIBCModule(app.TransferKeeper) + transferStack = ibcfee.NewIBCMiddleware(transferStack, app.IBCFeeKeeper) + + // Add transfer stack to IBC Router + ibcRouter.AddRoute(ibctransfertypes.ModuleName, transferStack) + + // Create Interchain Accounts Stack + // SendPacket, since it is originating from the application to core IBC: + // icaAuthModuleKeeper.SendTx -> icaController.SendPacket -> fee.SendPacket -> channel.SendPacket + + // initialize ICA module as the authentication module on the controller side + var icaControllerStack porttypes.IBCModule + icaControllerStack = icacontroller.NewIBCMiddleware(icaControllerStack, app.ICAControllerKeeper) + icaControllerStack = ibcfee.NewIBCMiddleware(icaControllerStack, app.IBCFeeKeeper) + + // RecvPacket, message that originates from core IBC and goes down to app, the flow is: + // channel.RecvPacket -> fee.OnRecvPacket -> icaHost.OnRecvPacket + + var icaHostStack porttypes.IBCModule + icaHostStack = icahost.NewIBCModule(app.ICAHostKeeper) + icaHostStack = ibcfee.NewIBCMiddleware(icaHostStack, app.IBCFeeKeeper) + + // Add host, controller & ica auth modules to IBC router + ibcRouter. + // the ICA Controller middleware needs to be explicitly added to the IBC Router because the + // ICA controller module owns the port capability for ICA. The ICA authentication module + // owns the channel capability. + AddRoute(icacontrollertypes.SubModuleName, icaControllerStack). + AddRoute(icahosttypes.SubModuleName, icaHostStack) // Create evidence Keeper for to register the IBC light client misbehaviour evidence route evidenceKeeper := evidencekeeper.NewKeeper( appCodec, keys[evidencetypes.StoreKey], - &stakingKeeper, + app.StakingKeeper, app.SlashingKeeper, ) // If evidence needs to be handled for the app, set routes in router here and seal app.EvidenceKeeper = *evidenceKeeper - govConfig := govtypes.DefaultConfig() - app.GovKeeper = govkeeper.NewKeeper( - appCodec, - keys[govtypes.StoreKey], - app.GetSubspace(govtypes.ModuleName), - app.AuthKeeper, - app.BankKeeper, - &stakingKeeper, - govRouter, - app.MsgServiceRouter(), - govConfig, - ) - app.FundraisingKeeper = fundraisingkeeper.NewKeeper( appCodec, keys[fundraisingtypes.StoreKey], @@ -581,7 +683,7 @@ func New( keys[monitoringptypes.StoreKey], keys[monitoringptypes.MemStoreKey], app.GetSubspace(monitoringptypes.ModuleName), - stakingKeeper, + app.StakingKeeper, app.IBCKeeper.ClientKeeper, app.IBCKeeper.ConnectionKeeper, app.IBCKeeper.ChannelKeeper, @@ -596,7 +698,7 @@ func New( keys[participationtypes.MemStoreKey], app.GetSubspace(participationtypes.ModuleName), app.FundraisingKeeper, - stakingKeeper, + app.StakingKeeper, ) app.ClaimKeeper = *claimkeeper.NewKeeper( @@ -614,11 +716,37 @@ func New( app.ProjectKeeper.ProjectAuctionEventHooks(), ) + // register the proposal types + govConfig := govtypes.DefaultConfig() + govKeeper := govkeeper.NewKeeper( + appCodec, + keys[govtypes.StoreKey], + app.AuthKeeper, + app.BankKeeper, + app.StakingKeeper, + app.MsgServiceRouter(), + govConfig, + authtypes.NewModuleAddress(govtypes.ModuleName).String(), + ) + + govRouter := govv1beta1.NewRouter() + govRouter.AddRoute(govtypes.RouterKey, govv1beta1.ProposalHandler). + AddRoute(paramproposal.RouterKey, params.NewParamChangeProposalHandler(app.ParamsKeeper)). + AddRoute(upgradetypes.RouterKey, upgrade.NewSoftwareUpgradeProposalHandler(app.UpgradeKeeper)). + AddRoute(ibcclienttypes.RouterKey, ibcclient.NewClientProposalHandler(app.IBCKeeper.ClientKeeper)) + govKeeper.SetLegacyRouter(govRouter) + + app.GovKeeper = *govKeeper.SetHooks( + govtypes.NewMultiGovHooks( + app.ClaimKeeper.NewMissionVoteHooks(missionIDVoting), + ), + ) + // this line is used by starport scaffolding # stargate/app/keeperDefinition // register the staking hooks // NOTE: stakingKeeper above is passed by reference, so that it will contain these hooks - app.StakingKeeper = *stakingKeeper.SetHooks( + app.StakingKeeper.SetHooks( stakingtypes.NewMultiStakingHooks( app.DistrKeeper.Hooks(), app.SlashingKeeper.Hooks(), @@ -626,25 +754,10 @@ func New( ), ) - // register the gov hooks - app.GovKeeper = *app.GovKeeper.SetHooks( - govtypes.NewMultiGovHooks( - app.ClaimKeeper.NewMissionVoteHooks(missionIDVoting), - ), - ) - - // register the launch hooks - app.LaunchKeeper = *app.LaunchKeeper.SetHooks( - launchtypes.NewMultiLaunchHooks( - airdrop.NewMissionSendRequestHooks(app.ClaimKeeper, missionIDSendingRequest), - ), - ) - // Create static IBC router, add transfer route, then set and seal it - ibcRouter := ibcporttypes.NewRouter() - ibcRouter.AddRoute(ibctransfertypes.ModuleName, transferIBCModule) ibcRouter.AddRoute(monitoringctypes.ModuleName, monitoringcModule) ibcRouter.AddRoute(monitoringptypes.ModuleName, monitoringpModule) + // this line is used by starport scaffolding # ibc/app/router app.IBCKeeper.SetRouter(ibcRouter) @@ -662,20 +775,20 @@ func New( app.AuthKeeper, app.StakingKeeper, app.BaseApp.DeliverTx, encodingConfig.TxConfig, ), - auth.NewAppModule(appCodec, app.AuthKeeper, nil), + auth.NewAppModule(appCodec, app.AuthKeeper, authsims.RandomGenesisAccounts, app.GetSubspace(authtypes.ModuleName)), vesting.NewAppModule(app.AuthKeeper, app.BankKeeper), - bank.NewAppModule(appCodec, app.BankKeeper, app.AuthKeeper), - capability.NewAppModule(appCodec, *app.CapabilityKeeper), + bank.NewAppModule(appCodec, app.BankKeeper, app.AuthKeeper, app.GetSubspace(banktypes.ModuleName)), + capability.NewAppModule(appCodec, *app.CapabilityKeeper, false), feegrantmodule.NewAppModule(appCodec, app.AuthKeeper, app.BankKeeper, app.FeeGrantKeeper, app.interfaceRegistry), authzmodule.NewAppModule(appCodec, app.AuthzKeeper, app.AuthKeeper, app.BankKeeper, app.interfaceRegistry), - crisis.NewAppModule(&app.CrisisKeeper, skipGenesisInvariants), - gov.NewAppModule(appCodec, app.GovKeeper, app.AuthKeeper, app.BankKeeper), + gov.NewAppModule(appCodec, &app.GovKeeper, app.AuthKeeper, app.BankKeeper, app.GetSubspace(govtypes.ModuleName)), mint.NewAppModule(appCodec, app.MintKeeper, app.AuthKeeper), - slashing.NewAppModule(appCodec, app.SlashingKeeper, app.AuthKeeper, app.BankKeeper, app.StakingKeeper), - distr.NewAppModule(appCodec, app.DistrKeeper, app.AuthKeeper, app.BankKeeper, app.StakingKeeper), - staking.NewAppModule(appCodec, app.StakingKeeper, app.AuthKeeper, app.BankKeeper), + slashing.NewAppModule(appCodec, app.SlashingKeeper, app.AuthKeeper, app.BankKeeper, app.StakingKeeper, app.GetSubspace(slashingtypes.ModuleName)), + distr.NewAppModule(appCodec, app.DistrKeeper, app.AuthKeeper, app.BankKeeper, app.StakingKeeper, app.GetSubspace(distrtypes.ModuleName)), + staking.NewAppModule(appCodec, app.StakingKeeper, app.AuthKeeper, app.BankKeeper, app.GetSubspace(stakingtypes.ModuleName)), upgrade.NewAppModule(app.UpgradeKeeper), evidence.NewAppModule(app.EvidenceKeeper), + consensus.NewAppModule(appCodec, app.ConsensusParamsKeeper), ibc.NewAppModule(app.IBCKeeper), params.NewAppModule(app.ParamsKeeper), app.transferModule, @@ -688,6 +801,11 @@ func New( fundraising.NewAppModule(appCodec, app.FundraisingKeeper, app.AuthKeeper, app.BankKeeper, app.DistrKeeper), participation.NewAppModule(appCodec, app.ParticipationKeeper, app.AuthKeeper, app.BankKeeper, app.FundraisingKeeper), claim.NewAppModule(appCodec, app.ClaimKeeper, app.AuthKeeper, app.BankKeeper), + ibc.NewAppModule(app.IBCKeeper), + transfer.NewAppModule(app.TransferKeeper), + ibcfee.NewAppModule(app.IBCFeeKeeper), + ica.NewAppModule(&app.ICAControllerKeeper, &app.ICAHostKeeper), + crisis.NewAppModule(app.CrisisKeeper, skipGenesisInvariants, app.GetSubspace(crisistypes.ModuleName)), // always be last to make sure that it checks for all invariants and not only part of them // this line is used by starport scaffolding # stargate/app/appModule ) @@ -705,8 +823,11 @@ func New( claimtypes.ModuleName, stakingtypes.ModuleName, vestingtypes.ModuleName, - ibchost.ModuleName, + ibcexported.ModuleName, ibctransfertypes.ModuleName, + ibcfeetypes.ModuleName, + ibctransfertypes.ModuleName, + icatypes.ModuleName, authtypes.ModuleName, banktypes.ModuleName, govtypes.ModuleName, @@ -723,6 +844,7 @@ func New( monitoringptypes.ModuleName, participationtypes.ModuleName, launchtypes.ModuleName, + consensusparamtypes.ModuleName, ) app.mm.SetOrderEndBlockers( @@ -744,8 +866,11 @@ func New( feegrant.ModuleName, paramstypes.ModuleName, upgradetypes.ModuleName, - ibchost.ModuleName, + ibcexported.ModuleName, + ibctransfertypes.ModuleName, + ibcfeetypes.ModuleName, ibctransfertypes.ModuleName, + icatypes.ModuleName, profiletypes.ModuleName, rewardtypes.ModuleName, projecttypes.ModuleName, @@ -753,6 +878,7 @@ func New( monitoringptypes.ModuleName, participationtypes.ModuleName, launchtypes.ModuleName, + consensusparamtypes.ModuleName, ) // NOTE: The genutils module must occur after staking so that pools are @@ -772,7 +898,10 @@ func New( govtypes.ModuleName, minttypes.ModuleName, crisistypes.ModuleName, - ibchost.ModuleName, + ibcexported.ModuleName, + ibctransfertypes.ModuleName, + ibcfeetypes.ModuleName, + icatypes.ModuleName, genutiltypes.ModuleName, evidencetypes.ModuleName, paramstypes.ModuleName, @@ -788,38 +917,33 @@ func New( rewardtypes.ModuleName, fundraisingtypes.ModuleName, participationtypes.ModuleName, + consensusparamtypes.ModuleName, // this line is used by starport scaffolding # stargate/app/initGenesis ) - app.mm.RegisterInvariants(&app.CrisisKeeper) - app.mm.RegisterRoutes(app.Router(), app.QueryRouter(), encodingConfig.Amino) - app.mm.RegisterServices(module.NewConfigurator(app.appCodec, app.MsgServiceRouter(), app.GRPCQueryRouter())) + app.mm.RegisterInvariants(app.CrisisKeeper) + app.configurator = module.NewConfigurator(app.appCodec, app.MsgServiceRouter(), app.GRPCQueryRouter()) + app.mm.RegisterServices(app.configurator) + + autocliv1.RegisterQueryServer(app.GRPCQueryRouter(), runtimeservices.NewAutoCLIQueryService(app.mm.Modules)) + reflectionSvc, err := runtimeservices.NewReflectionService() + if err != nil { + panic(err) + } + reflectionv1.RegisterReflectionServiceServer(app.GRPCQueryRouter(), reflectionSvc) // create the simulation manager and define the order of the modules for deterministic simulations - app.sm = module.NewSimulationManager( - auth.NewAppModule(appCodec, app.AuthKeeper, authsims.RandomGenesisAccounts), - bank.NewAppModule(appCodec, app.BankKeeper, app.AuthKeeper), - capability.NewAppModule(appCodec, *app.CapabilityKeeper), - feegrantmodule.NewAppModule(appCodec, app.AuthKeeper, app.BankKeeper, app.FeeGrantKeeper, app.interfaceRegistry), - authzmodule.NewAppModule(appCodec, app.AuthzKeeper, app.AuthKeeper, app.BankKeeper, app.interfaceRegistry), - gov.NewAppModule(appCodec, app.GovKeeper, app.AuthKeeper, app.BankKeeper), - mint.NewAppModule(appCodec, app.MintKeeper, app.AuthKeeper), - staking.NewAppModule(appCodec, app.StakingKeeper, app.AuthKeeper, app.BankKeeper), - distr.NewAppModule(appCodec, app.DistrKeeper, app.AuthKeeper, app.BankKeeper, app.StakingKeeper), - slashing.NewAppModule(appCodec, app.SlashingKeeper, app.AuthKeeper, app.BankKeeper, app.StakingKeeper), - params.NewAppModule(app.ParamsKeeper), - evidence.NewAppModule(app.EvidenceKeeper), - ibc.NewAppModule(app.IBCKeeper), - app.transferModule, - profile.NewAppModule(appCodec, app.ProfileKeeper, app.AuthKeeper, app.BankKeeper), - launch.NewAppModule(appCodec, app.LaunchKeeper, app.AuthKeeper, app.BankKeeper), - project.NewAppModule(appCodec, app.ProjectKeeper, app.AuthKeeper, app.BankKeeper, app.ProfileKeeper), - reward.NewAppModule(appCodec, app.RewardKeeper, app.AuthKeeper, app.BankKeeper), - participation.NewAppModule(appCodec, app.ParticipationKeeper, app.AuthKeeper, app.BankKeeper, app.FundraisingKeeper), - fundraising.NewAppModule(appCodec, app.FundraisingKeeper, app.AuthKeeper, app.BankKeeper, app.DistrKeeper), - monitoringpModule, - claim.NewAppModule(appCodec, app.ClaimKeeper, app.AuthKeeper, app.BankKeeper), - ) + overrideModules := map[string]module.AppModuleSimulation{ + authtypes.ModuleName: auth.NewAppModule( + app.appCodec, + app.AuthKeeper, + authsims.RandomGenesisAccounts, + app.GetSubspace(authtypes.ModuleName), + ), + } + + // create the simulation manager and define the order of the modules for deterministic simulations + app.sm = module.NewSimulationManagerFromAppModules(app.mm.Modules, overrideModules) app.sm.RegisterStoreDecoders() // initialize stores @@ -828,9 +952,6 @@ func New( app.MountMemoryStores(memKeys) // initialize BaseApp - app.SetInitChainer(app.InitChainer) - app.SetBeginBlocker(app.BeginBlocker) - anteHandler, err := ante.NewAnteHandler( ante.HandlerOptions{ AccountKeeper: app.AuthKeeper, @@ -844,7 +965,9 @@ func New( panic(err) } + app.SetInitChainer(app.InitChainer) app.SetAnteHandler(anteHandler) + app.SetBeginBlocker(app.BeginBlocker) app.SetEndBlocker(app.EndBlocker) if loadLatest { @@ -855,6 +978,9 @@ func New( app.ScopedIBCKeeper = scopedIBCKeeper app.ScopedTransferKeeper = scopedTransferKeeper + app.ScopedICAControllerKeeper = scopedICAControllerKeeper + app.ScopedICAHostKeeper = scopedICAHostKeeper + // this line is used by starport scaffolding # stargate/app/beforeInitReturn return app @@ -879,17 +1005,27 @@ func (app *App) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.Respo // InitChainer application update at chain initialization func (app *App) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain { var genesisState GenesisState - if err := tmjson.Unmarshal(req.AppStateBytes, &genesisState); err != nil { + if err := json.Unmarshal(req.AppStateBytes, &genesisState); err != nil { panic(err) } return app.mm.InitGenesis(ctx, app.appCodec, genesisState) } +// Configurator get app configurator +func (app *App) Configurator() module.Configurator { + return app.configurator +} + // LoadHeight loads a particular height func (app *App) LoadHeight(height int64) error { return app.LoadVersion(height) } +// RegisterNodeService implements the Application.RegisterNodeService method. +func (app *App) RegisterNodeService(clientCtx client.Context) { + nodeservice.RegisterNodeService(clientCtx, app.GRPCQueryRouter()) +} + // ModuleAccountAddrs returns all the app's module account addresses. func (app *App) ModuleAccountAddrs() map[string]bool { modAccAddrs := make(map[string]bool) @@ -900,6 +1036,15 @@ func (app *App) ModuleAccountAddrs() map[string]bool { return modAccAddrs } +// BlockedModuleAccountAddrs returns all the app's blocked module account +// addresses. +func (app *App) BlockedModuleAccountAddrs() map[string]bool { + modAccAddrs := app.ModuleAccountAddrs() + delete(modAccAddrs, authtypes.NewModuleAddress(govtypes.ModuleName).String()) + + return modAccAddrs +} + // LegacyAmino returns SimApp's amino codec. // // NOTE: This is solely to be used for testing purposes as it may be desirable @@ -958,6 +1103,8 @@ func (app *App) RegisterAPIRoutes(apiSvr *api.Server, apiConfig config.APIConfig authtx.RegisterGRPCGatewayRoutes(clientCtx, apiSvr.GRPCGatewayRouter) // Register new tendermint queries routes from grpc-gateway. tmservice.RegisterGRPCGatewayRoutes(clientCtx, apiSvr.GRPCGatewayRouter) + // Register node gRPC service for grpc-gateway. + nodeservice.RegisterGRPCGatewayRoutes(clientCtx, apiSvr.GRPCGatewayRouter) // Register grpc-gateway routes for all modules. ModuleBasics.RegisterGRPCGatewayRoutes(clientCtx, apiSvr.GRPCGatewayRouter) @@ -1004,7 +1151,9 @@ func initParamsKeeper(appCodec codec.BinaryCodec, legacyAmino *codec.LegacyAmino paramsKeeper.Subspace(govtypes.ModuleName).WithKeyTable(govv1.ParamKeyTable()) paramsKeeper.Subspace(crisistypes.ModuleName) paramsKeeper.Subspace(ibctransfertypes.ModuleName) - paramsKeeper.Subspace(ibchost.ModuleName) + paramsKeeper.Subspace(ibcexported.ModuleName) + paramsKeeper.Subspace(icacontrollertypes.SubModuleName) + paramsKeeper.Subspace(icahosttypes.SubModuleName) paramsKeeper.Subspace(profiletypes.ModuleName) paramsKeeper.Subspace(launchtypes.ModuleName) paramsKeeper.Subspace(projecttypes.ModuleName) @@ -1013,6 +1162,7 @@ func initParamsKeeper(appCodec codec.BinaryCodec, legacyAmino *codec.LegacyAmino paramsKeeper.Subspace(rewardtypes.ModuleName) paramsKeeper.Subspace(fundraisingtypes.ModuleName) paramsKeeper.Subspace(participationtypes.ModuleName) + paramsKeeper.Subspace(consensusparamtypes.ModuleName) paramsKeeper.Subspace(claimtypes.ModuleName) // this line is used by starport scaffolding # stargate/app/paramSubspace @@ -1023,3 +1173,7 @@ func initParamsKeeper(appCodec codec.BinaryCodec, legacyAmino *codec.LegacyAmino func (app *App) SimulationManager() *module.SimulationManager { return app.sm } + +func (app *App) InitGenesis(ctx sdk.Context, cdc codec.JSONCodec, genesisData map[string]json.RawMessage) { + app.mm.InitGenesis(ctx, cdc, genesisData) +} diff --git a/app/export.go b/app/export.go index d9033d586..db240d2b6 100644 --- a/app/export.go +++ b/app/export.go @@ -2,10 +2,10 @@ package app import ( "encoding/json" + "fmt" "log" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - + tmproto "github.com/cometbft/cometbft/proto/tendermint/types" servertypes "github.com/cosmos/cosmos-sdk/server/types" sdk "github.com/cosmos/cosmos-sdk/types" slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" @@ -16,7 +16,9 @@ import ( // ExportAppStateAndValidators exports the state of the application for a genesis // file. func (app *App) ExportAppStateAndValidators( - forZeroHeight bool, jailAllowedAddrs []string, + forZeroHeight bool, + jailAllowedAddrs []string, + modulesToExport []string, ) (servertypes.ExportedApp, error) { // as if they could withdraw from the start of the next block ctx := app.NewContext(true, tmproto.Header{Height: app.LastBlockHeight()}) @@ -29,28 +31,25 @@ func (app *App) ExportAppStateAndValidators( app.prepForZeroHeightGenesis(ctx, jailAllowedAddrs) } - genState := app.mm.ExportGenesis(ctx, app.appCodec) + genState := app.mm.ExportGenesisForModules(ctx, app.appCodec, modulesToExport) appState, err := json.MarshalIndent(genState, "", " ") if err != nil { return servertypes.ExportedApp{}, err } validators, err := staking.WriteValidators(ctx, app.StakingKeeper) - if err != nil { - return servertypes.ExportedApp{}, err - } return servertypes.ExportedApp{ AppState: appState, Validators: validators, Height: height, ConsensusParams: app.BaseApp.GetConsensusParams(ctx), - }, nil + }, err } -// prepare for fresh start at zero height -// NOTE zero height genesis is a temporary feature which will be deprecated +// prepForZeroHeightGenesis prepares for a fresh genesis // -// in favour of export at a block height +// NOTE zero height genesis is a temporary feature which will be deprecated +// in favour of export at a block height func (app *App) prepForZeroHeightGenesis(ctx sdk.Context, jailAllowedAddrs []string) { applyAllowedAddrs := false @@ -76,20 +75,21 @@ func (app *App) prepForZeroHeightGenesis(ctx sdk.Context, jailAllowedAddrs []str // withdraw all validator commission app.StakingKeeper.IterateValidators(ctx, func(_ int64, val stakingtypes.ValidatorI) (stop bool) { - _, err := app.DistrKeeper.WithdrawValidatorCommission(ctx, val.GetOperator()) - if err != nil { - panic(err) - } + _, _ = app.DistrKeeper.WithdrawValidatorCommission(ctx, val.GetOperator()) return false }) // withdraw all delegator rewards dels := app.StakingKeeper.GetAllDelegations(ctx) for _, delegation := range dels { - _, err := app.DistrKeeper.WithdrawDelegationRewards(ctx, delegation.GetDelegatorAddr(), delegation.GetValidatorAddr()) + valAddr, err := sdk.ValAddressFromBech32(delegation.ValidatorAddress) if err != nil { panic(err) } + + delAddr := sdk.MustAccAddressFromBech32(delegation.DelegatorAddress) + + _, _ = app.DistrKeeper.WithdrawDelegationRewards(ctx, delAddr, valAddr) } // clear validator slash events @@ -110,8 +110,7 @@ func (app *App) prepForZeroHeightGenesis(ctx sdk.Context, jailAllowedAddrs []str feePool.CommunityPool = feePool.CommunityPool.Add(scraps...) app.DistrKeeper.SetFeePool(ctx, feePool) - err := app.DistrKeeper.Hooks().AfterValidatorCreated(ctx, val.GetOperator()) - if err != nil { + if err := app.DistrKeeper.Hooks().AfterValidatorCreated(ctx, val.GetOperator()); err != nil { panic(err) } return false @@ -119,13 +118,20 @@ func (app *App) prepForZeroHeightGenesis(ctx sdk.Context, jailAllowedAddrs []str // reinitialize all delegations for _, del := range dels { - err := app.DistrKeeper.Hooks().BeforeDelegationCreated(ctx, del.GetDelegatorAddr(), del.GetValidatorAddr()) + valAddr, err := sdk.ValAddressFromBech32(del.ValidatorAddress) if err != nil { panic(err) } - err = app.DistrKeeper.Hooks().AfterDelegationModified(ctx, del.GetDelegatorAddr(), del.GetValidatorAddr()) - if err != nil { - panic(err) + delAddr := sdk.MustAccAddressFromBech32(del.DelegatorAddress) + + if err := app.DistrKeeper.Hooks().BeforeDelegationCreated(ctx, delAddr, valAddr); err != nil { + // never called as BeforeDelegationCreated always returns nil + panic(fmt.Errorf("error while incrementing period: %w", err)) + } + + if err := app.DistrKeeper.Hooks().AfterDelegationModified(ctx, delAddr, valAddr); err != nil { + // never called as AfterDelegationModified always returns nil + panic(fmt.Errorf("error while creating a new delegation period record: %w", err)) } } @@ -154,12 +160,12 @@ func (app *App) prepForZeroHeightGenesis(ctx sdk.Context, jailAllowedAddrs []str // Iterate through validators by power descending, reset bond heights, and // update bond intra-tx counters. - store := ctx.KVStore(app.keys[stakingtypes.StoreKey]) + store := ctx.KVStore(app.GetKey(stakingtypes.StoreKey)) iter := sdk.KVStoreReversePrefixIterator(store, stakingtypes.ValidatorsKey) counter := int16(0) for ; iter.Valid(); iter.Next() { - addr := sdk.ValAddress(iter.Key()[1:]) + addr := sdk.ValAddress(stakingtypes.AddressFromValidatorsKey(iter.Key())) validator, found := app.StakingKeeper.GetValidator(ctx, addr) if !found { panic("expected validator, not found") @@ -174,10 +180,14 @@ func (app *App) prepForZeroHeightGenesis(ctx sdk.Context, jailAllowedAddrs []str counter++ } - iter.Close() + if err := iter.Close(); err != nil { + app.Logger().Error("error while closing the key-value store reverse prefix iterator: ", err) + return + } - if _, err := app.StakingKeeper.ApplyAndReturnValidatorSetUpdates(ctx); err != nil { - panic(err) + _, err := app.StakingKeeper.ApplyAndReturnValidatorSetUpdates(ctx) + if err != nil { + log.Fatal(err) } /* Handle slashing state. */ diff --git a/app/simulation_test.go b/app/simulation_test.go index b045a5dcf..dae885985 100644 --- a/app/simulation_test.go +++ b/app/simulation_test.go @@ -1,73 +1,94 @@ package app_test +// DONTCOVER + import ( "encoding/json" "fmt" "math/rand" "os" + "runtime/debug" + "strings" "testing" "time" + dbm "github.com/cometbft/cometbft-db" + abci "github.com/cometbft/cometbft/abci/types" + "github.com/cometbft/cometbft/libs/log" + tmproto "github.com/cometbft/cometbft/proto/tendermint/types" "github.com/cosmos/cosmos-sdk/baseapp" - "github.com/cosmos/cosmos-sdk/codec" - "github.com/cosmos/cosmos-sdk/simapp" - "github.com/cosmos/cosmos-sdk/store" + "github.com/cosmos/cosmos-sdk/client/flags" + "github.com/cosmos/cosmos-sdk/server" storetypes "github.com/cosmos/cosmos-sdk/store/types" + simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/cosmos-sdk/types/module" - simulationtypes "github.com/cosmos/cosmos-sdk/types/simulation" + simtypes "github.com/cosmos/cosmos-sdk/types/simulation" + authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" + authzkeeper "github.com/cosmos/cosmos-sdk/x/authz/keeper" + banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" + capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" + distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" + evidencetypes "github.com/cosmos/cosmos-sdk/x/evidence/types" + govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" + minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" + paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" "github.com/cosmos/cosmos-sdk/x/simulation" + simcli "github.com/cosmos/cosmos-sdk/x/simulation/client/cli" + slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" + stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" "github.com/stretchr/testify/require" - abci "github.com/tendermint/tendermint/abci/types" - "github.com/tendermint/tendermint/libs/log" - dbm "github.com/tendermint/tm-db" "github.com/tendermint/spn/app" - "github.com/tendermint/spn/app/simutil" "github.com/tendermint/spn/cmd" ) func init() { - simapp.GetSimulatorFlags() + simcli.GetSimulatorFlags() } -type SimApp interface { - cmd.App - GetBaseApp() *baseapp.BaseApp - AppCodec() codec.Codec - SimulationManager() *module.SimulationManager - ModuleAccountAddrs() map[string]bool - Name() string - LegacyAmino() *codec.LegacyAmino - BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock - EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock - InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain - LastCommitID() storetypes.CommitID +type StoreKeysPrefixes struct { + A storetypes.StoreKey + B storetypes.StoreKey + Prefixes [][]byte } -// interBlockCacheOpt returns a BaseApp option function that sets the persistent -// inter-block write-through cache. -func interBlockCacheOpt() func(*baseapp.BaseApp) { - return baseapp.SetInterBlockCache(store.NewCommitKVStoreCacheManager()) +// fauxMerkleModeOpt returns a BaseApp option to use a dbStoreAdapter instead of +// an IAVLStore for faster simulation speed. +func fauxMerkleModeOpt(bapp *baseapp.BaseApp) { + bapp.SetFauxMerkleMode() } +// BenchmarkSimulation run the chain simulation +// Running using starport command: +// `starport chain simulate -v --numBlocks 200 --blockSize 50` +// Running as go benchmark test: +// `go test -benchmem -run=^$ -bench ^BenchmarkSimulation ./app -NumBlocks=200 -BlockSize 50 -Commit=true -Verbose=true -Enabled=true` func BenchmarkSimulation(b *testing.B) { - simapp.FlagVerboseValue = true - simapp.FlagOnOperationValue = true - simapp.FlagAllInvariantsValue = true - simapp.FlagInitialBlockHeightValue = 1 + simcli.FlagSeedValue = 10 + simcli.FlagVerboseValue = true + simcli.FlagCommitValue = true + simcli.FlagEnabledValue = true + + config := simcli.NewConfigFromFlags() + config.ChainID = app.DefaultChainID - config, db, dir, logger, _, err := simapp.SetupSimulation("goleveldb-app-sim", "Simulation") + db, dir, logger, _, err := simtestutil.SetupSimulation( + config, + "leveldb-app-sim", + "Simulation", + simcli.FlagVerboseValue, + simcli.FlagEnabledValue, + ) require.NoError(b, err, "simulation setup failed") b.Cleanup(func() { - err := db.Close() - require.NoError(b, err) - err = os.RemoveAll(dir) - require.NoError(b, err) + require.NoError(b, db.Close()) + require.NoError(b, os.RemoveAll(dir)) }) - encoding := cmd.MakeEncodingConfig(app.ModuleBasics) + appOptions := make(simtestutil.AppOptionsMap, 0) + appOptions[flags.FlagHome] = app.DefaultNodeHome + appOptions[server.FlagInvCheckPeriod] = simcli.FlagPeriodValue cmdApp := app.New( logger, @@ -76,81 +97,388 @@ func BenchmarkSimulation(b *testing.B) { true, map[int64]bool{}, app.DefaultNodeHome, - simapp.FlagPeriodValue, - encoding, - simapp.EmptyAppOptions{}, + 0, + cmd.MakeEncodingConfig(app.ModuleBasics), + appOptions, + baseapp.SetChainID(app.DefaultChainID), ) - app, ok := cmdApp.(SimApp) - require.True(b, ok, "can't use simapp") + bApp, ok := cmdApp.(*app.App) + require.True(b, ok) // Run randomized simulations _, simParams, simErr := simulation.SimulateFromSeed( b, os.Stdout, - app.GetBaseApp(), - simutil.CustomAppStateFn(app.AppCodec(), app.SimulationManager()), - simulationtypes.RandomAccounts, - simapp.SimulationOperations(app, app.AppCodec(), config), - app.ModuleAccountAddrs(), + bApp.GetBaseApp(), + simtestutil.AppStateFn( + bApp.AppCodec(), + bApp.SimulationManager(), + app.NewDefaultGenesisState(bApp.AppCodec()), + ), + simtypes.RandomAccounts, + simtestutil.SimulationOperations(bApp, bApp.AppCodec(), config), + bApp.BlockedModuleAccountAddrs(), config, - app.AppCodec(), + bApp.AppCodec(), ) - require.NoError(b, simErr) // export state and simParams before the simulation error is checked - err = simapp.CheckExportSimulation(app, config, simParams) + err = simtestutil.CheckExportSimulation(bApp, config, simParams) require.NoError(b, err) + require.NoError(b, simErr) if config.Commit { - simapp.PrintStats(db) + simtestutil.PrintStats(db) } } +func TestAppImportExport(t *testing.T) { + config := simcli.NewConfigFromFlags() + config.ChainID = app.DefaultChainID + + db, dir, logger, skip, err := simtestutil.SetupSimulation( + config, + "leveldb-app-sim", + "Simulation", + simcli.FlagVerboseValue, + simcli.FlagEnabledValue, + ) + if skip { + t.Skip("skipping application import/export simulation") + } + require.NoError(t, err, "simulation setup failed") + + defer func() { + require.NoError(t, db.Close()) + require.NoError(t, os.RemoveAll(dir)) + }() + + appOptions := make(simtestutil.AppOptionsMap, 0) + appOptions[flags.FlagHome] = app.DefaultNodeHome + appOptions[server.FlagInvCheckPeriod] = simcli.FlagPeriodValue + + cmdApp := app.New( + logger, + db, + nil, + true, + map[int64]bool{}, + app.DefaultNodeHome, + 0, + cmd.MakeEncodingConfig(app.ModuleBasics), + appOptions, + fauxMerkleModeOpt, + baseapp.SetChainID(app.DefaultChainID), + ) + bApp, ok := cmdApp.(*app.App) + require.True(t, ok) + + // run randomized simulation + _, simParams, simErr := simulation.SimulateFromSeed( + t, + os.Stdout, + bApp.GetBaseApp(), + simtestutil.AppStateFn( + bApp.AppCodec(), + bApp.SimulationManager(), + app.NewDefaultGenesisState(bApp.AppCodec()), + ), + simtypes.RandomAccounts, + simtestutil.SimulationOperations(bApp, bApp.AppCodec(), config), + bApp.BlockedModuleAccountAddrs(), + config, + bApp.AppCodec(), + ) + require.NoError(t, simErr) + + // export state and simParams before the simulation error is checked + err = simtestutil.CheckExportSimulation(bApp, config, simParams) + require.NoError(t, err) + + if config.Commit { + simtestutil.PrintStats(db) + } + + fmt.Printf("exporting genesis...\n") + + exported, err := bApp.ExportAppStateAndValidators(false, []string{}, []string{}) + require.NoError(t, err) + + fmt.Printf("importing genesis...\n") + + newDB, newDir, _, _, err := simtestutil.SetupSimulation( + config, + "leveldb-app-sim-2", + "Simulation-2", + simcli.FlagVerboseValue, + simcli.FlagEnabledValue, + ) + require.NoError(t, err, "simulation setup failed") + + defer func() { + require.NoError(t, newDB.Close()) + require.NoError(t, os.RemoveAll(newDir)) + }() + + cmdNewApp := app.New( + log.NewNopLogger(), + newDB, + nil, + true, + map[int64]bool{}, + app.DefaultNodeHome, + 0, + cmd.MakeEncodingConfig(app.ModuleBasics), + appOptions, + fauxMerkleModeOpt, + baseapp.SetChainID(app.DefaultChainID), + ) + + newApp, ok := cmdNewApp.(*app.App) + require.True(t, ok) + + var genesisState app.GenesisState + err = json.Unmarshal(exported.AppState, &genesisState) + require.NoError(t, err) + + defer func() { + if r := recover(); r != nil { + err := fmt.Sprintf("%v", r) + if !strings.Contains(err, "validator set is empty after InitGenesis") { + panic(r) + } + logger.Info("Skipping simulation as all validators have been unbonded") + logger.Info("err", err, "stacktrace", string(debug.Stack())) + } + }() + + ctxA := bApp.NewContext(true, tmproto.Header{Height: bApp.LastBlockHeight()}) + ctxB := newApp.NewContext(true, tmproto.Header{Height: bApp.LastBlockHeight()}) + newApp.InitGenesis(ctxB, bApp.AppCodec(), genesisState) + newApp.StoreConsensusParams(ctxB, exported.ConsensusParams) + + fmt.Printf("comparing stores...\n") + + storeKeysPrefixes := []StoreKeysPrefixes{ + {bApp.GetKey(authtypes.StoreKey), newApp.GetKey(authtypes.StoreKey), [][]byte{}}, + { + bApp.GetKey(stakingtypes.StoreKey), newApp.GetKey(stakingtypes.StoreKey), + [][]byte{ + stakingtypes.UnbondingQueueKey, stakingtypes.RedelegationQueueKey, stakingtypes.ValidatorQueueKey, + stakingtypes.HistoricalInfoKey, stakingtypes.UnbondingIDKey, stakingtypes.UnbondingIndexKey, stakingtypes.UnbondingTypeKey, stakingtypes.ValidatorUpdatesKey, + }, + }, // ordering may change but it doesn't matter + {bApp.GetKey(slashingtypes.StoreKey), newApp.GetKey(slashingtypes.StoreKey), [][]byte{}}, + {bApp.GetKey(minttypes.StoreKey), newApp.GetKey(minttypes.StoreKey), [][]byte{}}, + {bApp.GetKey(distrtypes.StoreKey), newApp.GetKey(distrtypes.StoreKey), [][]byte{}}, + {bApp.GetKey(banktypes.StoreKey), newApp.GetKey(banktypes.StoreKey), [][]byte{banktypes.BalancesPrefix}}, + {bApp.GetKey(paramstypes.StoreKey), newApp.GetKey(paramstypes.StoreKey), [][]byte{}}, + {bApp.GetKey(govtypes.StoreKey), newApp.GetKey(govtypes.StoreKey), [][]byte{}}, + {bApp.GetKey(evidencetypes.StoreKey), newApp.GetKey(evidencetypes.StoreKey), [][]byte{}}, + {bApp.GetKey(capabilitytypes.StoreKey), newApp.GetKey(capabilitytypes.StoreKey), [][]byte{}}, + {bApp.GetKey(authzkeeper.StoreKey), newApp.GetKey(authzkeeper.StoreKey), [][]byte{authzkeeper.GrantKey, authzkeeper.GrantQueuePrefix}}, + } + + for _, skp := range storeKeysPrefixes { + storeA := ctxA.KVStore(skp.A) + storeB := ctxB.KVStore(skp.B) + + failedKVAs, failedKVBs := sdk.DiffKVStores(storeA, storeB, skp.Prefixes) + require.Equal(t, len(failedKVAs), len(failedKVBs), "unequal sets of key-values to compare") + + fmt.Printf("compared %d different key/value pairs between %s and %s\n", len(failedKVAs), skp.A, skp.B) + require.Equal(t, 0, len(failedKVAs), simtestutil.GetSimulationLog(skp.A.Name(), bApp.SimulationManager().StoreDecoders, failedKVAs, failedKVBs)) + } +} + +func TestAppSimulationAfterImport(t *testing.T) { + config := simcli.NewConfigFromFlags() + config.ChainID = app.DefaultChainID + + db, dir, logger, skip, err := simtestutil.SetupSimulation( + config, + "leveldb-app-sim", + "Simulation", + simcli.FlagVerboseValue, + simcli.FlagEnabledValue, + ) + if skip { + t.Skip("skipping application simulation after import") + } + require.NoError(t, err, "simulation setup failed") + + defer func() { + require.NoError(t, db.Close()) + require.NoError(t, os.RemoveAll(dir)) + }() + + appOptions := make(simtestutil.AppOptionsMap, 0) + appOptions[flags.FlagHome] = app.DefaultNodeHome + appOptions[server.FlagInvCheckPeriod] = simcli.FlagPeriodValue + + cmdApp := app.New( + logger, + db, + nil, + true, + map[int64]bool{}, + app.DefaultNodeHome, + 0, + cmd.MakeEncodingConfig(app.ModuleBasics), + appOptions, + fauxMerkleModeOpt, + baseapp.SetChainID(app.DefaultChainID), + ) + bApp, ok := cmdApp.(*app.App) + require.True(t, ok) + + // run randomized simulation + stopEarly, simParams, simErr := simulation.SimulateFromSeed( + t, + os.Stdout, + bApp.BaseApp, + simtestutil.AppStateFn( + bApp.AppCodec(), + bApp.SimulationManager(), + app.NewDefaultGenesisState(bApp.AppCodec()), + ), + simtypes.RandomAccounts, // replace with own random account function if using keys other than secp256k1 + simtestutil.SimulationOperations(bApp, bApp.AppCodec(), config), + bApp.BlockedModuleAccountAddrs(), + config, + bApp.AppCodec(), + ) + require.NoError(t, simErr) + + // export state and simParams before the simulation error is checked + err = simtestutil.CheckExportSimulation(bApp, config, simParams) + require.NoError(t, err) + + if config.Commit { + simtestutil.PrintStats(db) + } + + if stopEarly { + fmt.Println("can't export or import a zero-validator genesis, exiting test...") + return + } + + fmt.Printf("exporting genesis...\n") + + exported, err := bApp.ExportAppStateAndValidators(true, []string{}, []string{}) + require.NoError(t, err) + + fmt.Printf("importing genesis...\n") + + newDB, newDir, _, _, err := simtestutil.SetupSimulation( + config, + "leveldb-app-sim-2", + "Simulation-2", + simcli.FlagVerboseValue, + simcli.FlagEnabledValue, + ) + require.NoError(t, err, "simulation setup failed") + + defer func() { + require.NoError(t, newDB.Close()) + require.NoError(t, os.RemoveAll(newDir)) + }() + + cmdNewApp := app.New( + log.NewNopLogger(), + newDB, + nil, + true, + map[int64]bool{}, + app.DefaultNodeHome, + 0, + cmd.MakeEncodingConfig(app.ModuleBasics), + appOptions, + fauxMerkleModeOpt, + baseapp.SetChainID(app.DefaultChainID), + ) + newApp, ok := cmdNewApp.(*app.App) + require.True(t, ok) + + newApp.InitChain(abci.RequestInitChain{ + ChainId: app.DefaultChainID, + AppStateBytes: exported.AppState, + }) + + _, _, err = simulation.SimulateFromSeed( + t, + os.Stdout, + newApp.BaseApp, + simtestutil.AppStateFn( + bApp.AppCodec(), + bApp.SimulationManager(), + app.NewDefaultGenesisState(bApp.AppCodec()), + ), + simtypes.RandomAccounts, // Replace with own random account function if using keys other than secp256k1 + simtestutil.SimulationOperations(newApp, newApp.AppCodec(), config), + newApp.BlockedModuleAccountAddrs(), + config, + bApp.AppCodec(), + ) + require.NoError(t, err) +} + func TestAppStateDeterminism(t *testing.T) { - if !simapp.FlagEnabledValue { + if !simcli.FlagEnabledValue { t.Skip("skipping application simulation") } - config := simapp.NewConfigFromFlags() + config := simcli.NewConfigFromFlags() config.InitialBlockHeight = 1 config.ExportParamsPath = "" config.OnOperation = true config.AllInvariants = true + config.ChainID = app.DefaultChainID - rand.Seed(time.Now().Unix()) - numSeeds := 3 - numTimesToRunPerSeed := 5 - appHashList := make([]json.RawMessage, numTimesToRunPerSeed) + var ( + r = rand.New(rand.NewSource(time.Now().Unix())) + numSeeds = 3 + numTimesToRunPerSeed = 5 + appHashList = make([]json.RawMessage, numTimesToRunPerSeed) + ) + + appOptions := make(simtestutil.AppOptionsMap, 0) + appOptions[flags.FlagHome] = app.DefaultNodeHome + appOptions[server.FlagInvCheckPeriod] = simcli.FlagPeriodValue for i := 0; i < numSeeds; i++ { - config.Seed = rand.Int63() + config.Seed = r.Int63() for j := 0; j < numTimesToRunPerSeed; j++ { var logger log.Logger - if simapp.FlagVerboseValue { + if simcli.FlagVerboseValue { logger = log.TestingLogger() } else { logger = log.NewNopLogger() } - db := dbm.NewMemDB() - encoding := cmd.MakeEncodingConfig(app.ModuleBasics) - cmdApp := app.New( - logger, - db, - nil, - true, - map[int64]bool{}, - app.DefaultNodeHome, - simapp.FlagPeriodValue, - encoding, - simapp.EmptyAppOptions{}, - interBlockCacheOpt(), + var ( + chainID = fmt.Sprintf("chain-id-%d-%d", i, j) + db = dbm.NewMemDB() + cmdApp = app.New( + logger, + db, + nil, + true, + map[int64]bool{}, + app.DefaultNodeHome, + simcli.FlagPeriodValue, + cmd.MakeEncodingConfig(app.ModuleBasics), + appOptions, + fauxMerkleModeOpt, + baseapp.SetChainID(chainID), + ) ) + config.ChainID = chainID - app, ok := cmdApp.(SimApp) - require.True(t, ok, "can't use simapp") + bApp, ok := cmdApp.(*app.App) + require.True(t, ok) fmt.Printf( "running non-determinism simulation; seed %d: %d/%d, attempt: %d/%d\n", @@ -160,21 +488,25 @@ func TestAppStateDeterminism(t *testing.T) { _, _, err := simulation.SimulateFromSeed( t, os.Stdout, - app.GetBaseApp(), - simutil.CustomAppStateFn(app.AppCodec(), app.SimulationManager()), - simulationtypes.RandomAccounts, - simapp.SimulationOperations(app, app.AppCodec(), config), - app.ModuleAccountAddrs(), + bApp.BaseApp, + simtestutil.AppStateFn( + bApp.AppCodec(), + bApp.SimulationManager(), + app.NewDefaultGenesisState(bApp.AppCodec()), + ), + simtypes.RandomAccounts, // Replace with own random account function if using keys other than secp256k1 + simtestutil.SimulationOperations(bApp, bApp.AppCodec(), config), + bApp.BlockedModuleAccountAddrs(), config, - app.AppCodec(), + bApp.AppCodec(), ) require.NoError(t, err) if config.Commit { - simapp.PrintStats(db) + simtestutil.PrintStats(db) } - appHash := app.LastCommitID().Hash + appHash := bApp.LastCommitID().Hash appHashList[j] = appHash if j != 0 { diff --git a/app/simutil/app_state.go b/app/simutil/app_state.go index 65146cbc6..cb6445acb 100644 --- a/app/simutil/app_state.go +++ b/app/simutil/app_state.go @@ -8,15 +8,17 @@ import ( "time" sdkmath "cosmossdk.io/math" + "github.com/cosmos/cosmos-sdk/codec" - "github.com/cosmos/cosmos-sdk/simapp" - simappparams "github.com/cosmos/cosmos-sdk/simapp/params" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" + simappparams "github.com/cosmos/ibc-go/v7/testing/simapp/params" + + "github.com/tendermint/spn/app" ) const ( @@ -31,7 +33,7 @@ func CustomAppStateFn(cdc codec.JSONCodec, simManager *module.SimulationManager) genesisTimestamp = simtypes.RandTimestamp(r) numAccs := int64(len(accs)) - genesisState := simapp.NewDefaultGenesisState(cdc) + genesisState := app.NewDefaultGenesisState(cdc) chainID = config.ChainID appParams := make(simtypes.AppParams) @@ -147,7 +149,8 @@ func CustomAppStateFn(cdc codec.JSONCodec, simManager *module.SimulationManager) } // override bank parameters to always enable transfers - bankState.Params.SendEnabled = banktypes.SendEnabledParams{} + bankState.Params.SendEnabled = []*banktypes.SendEnabled{} + bankState.SendEnabled = []banktypes.SendEnabled{} bankState.Params.DefaultSendEnabled = true // change appState back diff --git a/cmd/cosmosapp.go b/cmd/cosmosapp.go deleted file mode 100644 index 525f2f8d1..000000000 --- a/cmd/cosmosapp.go +++ /dev/null @@ -1,40 +0,0 @@ -package cmd - -import ( - abci "github.com/tendermint/tendermint/abci/types" - - "github.com/cosmos/cosmos-sdk/codec" - "github.com/cosmos/cosmos-sdk/server/types" - sdk "github.com/cosmos/cosmos-sdk/types" -) - -// CosmosApp implements the common methods for a Cosmos SDK-based application -// specific blockchain. -type CosmosApp interface { - // Name is the assigned name of the app. - Name() string - - // The application types codec. - // NOTE: This should be sealed before being returned. - LegacyAmino() *codec.LegacyAmino - - // BeginBlocker updates every begin block. - BeginBlocker(ctx sdk.Context, req abci.RequestBeginBlock) abci.ResponseBeginBlock - - // EndBlocker updates every end block. - EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.ResponseEndBlock - - // InitChainer updates at chain (i.e app) initialization. - InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain - - // LoadHeight loads the app at a given height. - LoadHeight(height int64) error - - // ExportAppStateAndValidators exports the state of the application for a genesis file. - ExportAppStateAndValidators( - forZeroHeight bool, jailAllowedAddrs []string, - ) (types.ExportedApp, error) - - // ModuleAccountAddrs are registered module account addreses. - ModuleAccountAddrs() map[string]bool -} diff --git a/cmd/encoding.go b/cmd/encoding.go index 91124d633..ec6b6dec6 100644 --- a/cmd/encoding.go +++ b/cmd/encoding.go @@ -38,7 +38,7 @@ func MakeEncodingConfig(moduleBasics module.BasicManager) EncodingConfig { encodingConfig := makeEncodingConfig() std.RegisterLegacyAminoCodec(encodingConfig.Amino) std.RegisterInterfaces(encodingConfig.InterfaceRegistry) - moduleBasics.RegisterLegacyAminoCodec(encodingConfig.Amino) moduleBasics.RegisterInterfaces(encodingConfig.InterfaceRegistry) + moduleBasics.RegisterLegacyAminoCodec(encodingConfig.Amino) return encodingConfig } diff --git a/cmd/root.go b/cmd/root.go index ce650b97b..4a4966fc5 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -6,6 +6,11 @@ import ( "os" "path/filepath" + dbm "github.com/cometbft/cometbft-db" + tmcfg "github.com/cometbft/cometbft/config" + tmcli "github.com/cometbft/cometbft/libs/cli" + "github.com/cometbft/cometbft/libs/log" + tmtypes "github.com/cometbft/cometbft/types" "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/config" @@ -25,14 +30,12 @@ import ( "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/cosmos/cosmos-sdk/x/crisis" + "github.com/cosmos/cosmos-sdk/x/genutil" genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" + genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" "github.com/spf13/cast" "github.com/spf13/cobra" "github.com/spf13/pflag" - tmcfg "github.com/tendermint/tendermint/config" - tmcli "github.com/tendermint/tendermint/libs/cli" - "github.com/tendermint/tendermint/libs/log" - dbm "github.com/tendermint/tm-db" ) type ( @@ -61,6 +64,7 @@ type ( ExportAppStateAndValidators( forZeroHeight bool, jailAllowedAddrs []string, + modulesToExport []string, ) (servertypes.ExportedApp, error) LoadHeight(height int64) error } @@ -138,7 +142,7 @@ func NewRootCmd( WithLegacyAmino(encodingConfig.Amino). WithInput(os.Stdin). WithAccountRetriever(types.AccountRetriever{}). - WithBroadcastMode(flags.BroadcastBlock). + WithBroadcastMode(flags.BroadcastSync). WithHomeDir(defaultNodeHome). WithViper(rootOptions.envPrefix) @@ -198,9 +202,10 @@ func initRootCmd( buildApp AppBuilder, options rootOptions, ) { + gentxModule := moduleBasics[genutiltypes.ModuleName].(genutil.AppModuleBasic) rootCmd.AddCommand( genutilcli.InitCmd(moduleBasics, defaultNodeHome), - genutilcli.CollectGenTxsCmd(banktypes.GenesisBalancesIterator{}, defaultNodeHome), + genutilcli.CollectGenTxsCmd(banktypes.GenesisBalancesIterator{}, defaultNodeHome, gentxModule.GenTxValidator), genutilcli.MigrateGenesisCmd(), genutilcli.GenTxCmd( moduleBasics, @@ -344,6 +349,18 @@ func (a appCreator) newApp( panic(err) } + homeDir := cast.ToString(appOpts.Get(flags.FlagHome)) + chainID := cast.ToString(appOpts.Get(flags.FlagChainID)) + if chainID == "" { + // fallback to genesis chain-id + appGenesis, err := tmtypes.GenesisDocFromFile(filepath.Join(homeDir, "config", "genesis.json")) + if err != nil { + panic(err) + } + + chainID = appGenesis.ChainID + } + snapshotDir := filepath.Join(cast.ToString(appOpts.Get(flags.FlagHome)), "data", "snapshots") snapshotDB, err := dbm.NewDB("metadata", dbm.GoLevelDBBackend, snapshotDir) if err != nil { @@ -380,6 +397,7 @@ func (a appCreator) newApp( baseapp.SetSnapshot(snapshotStore, snapshotOptions), baseapp.SetIAVLCacheSize(cast.ToInt(appOpts.Get(server.FlagIAVLCacheSize))), baseapp.SetIAVLDisableFastNode(cast.ToBool(appOpts.Get(server.FlagDisableIAVLFastNode))), + baseapp.SetChainID(chainID), ) } @@ -392,6 +410,7 @@ func (a appCreator) appExport( forZeroHeight bool, jailAllowedAddrs []string, appOpts servertypes.AppOptions, + modulesToExport []string, //nolint:revive ) (servertypes.ExportedApp, error) { var exportableApp ExportableApp @@ -418,7 +437,7 @@ func (a appCreator) appExport( } } - return exportableApp.ExportAppStateAndValidators(forZeroHeight, jailAllowedAddrs) + return exportableApp.ExportAppStateAndValidators(forZeroHeight, jailAllowedAddrs, modulesToExport) } // initAppConfig helps to override default appConfig template and configs. diff --git a/contrib/devtools/Makefile b/contrib/devtools/Makefile new file mode 100644 index 000000000..2e3741fd8 --- /dev/null +++ b/contrib/devtools/Makefile @@ -0,0 +1,84 @@ +### +# Find OS and Go environment +# GO contains the Go binary +# FS contains the OS file separator +### +ifeq ($(OS),Windows_NT) + GO := $(shell where go.exe 2> NUL) + FS := "\\" +else + GO := $(shell command -v go 2> /dev/null) + FS := "/" +endif + +ifeq ($(GO),) + $(error could not find go. Is it in PATH? $(GO)) +endif + +############################################################################### +### Functions ### +############################################################################### + +go_get = $(if $(findstring Windows_NT,$(OS)),\ +IF NOT EXIST $(GITHUBDIR)$(FS)$(1)$(FS) ( mkdir $(GITHUBDIR)$(FS)$(1) ) else (cd .) &\ +IF NOT EXIST $(GITHUBDIR)$(FS)$(1)$(FS)$(2)$(FS) ( cd $(GITHUBDIR)$(FS)$(1) && git clone https://github.com/$(1)/$(2) ) else (cd .) &\ +,\ +mkdir -p $(GITHUBDIR)$(FS)$(1) &&\ +(test ! -d $(GITHUBDIR)$(FS)$(1)$(FS)$(2) && cd $(GITHUBDIR)$(FS)$(1) && git clone https://github.com/$(1)/$(2)) || true &&\ +)\ +cd $(GITHUBDIR)$(FS)$(1)$(FS)$(2) && git fetch origin && git checkout -q $(3) + +mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST))) +mkfile_dir := $(shell cd $(shell dirname $(mkfile_path)); pwd) + + +############################################################################### +### Tools ### +############################################################################### + +PREFIX ?= /usr/local +BIN ?= $(PREFIX)/bin +UNAME_S ?= $(shell uname -s) +UNAME_M ?= $(shell uname -m) + +GOPATH ?= $(shell $(GO) env GOPATH) +GITHUBDIR := $(GOPATH)$(FS)src$(FS)github.com + +BUF_VERSION ?= 0.11.0 + +TOOLS_DESTDIR ?= $(GOPATH)/bin +STATIK = $(TOOLS_DESTDIR)/statik +RUNSIM = $(TOOLS_DESTDIR)/runsim + +tools: tools-stamp +tools-stamp: statik runsim + # Create dummy file to satisfy dependency and avoid + # rebuilding when this Makefile target is hit twice + # in a row. + touch $@ + +# Install the runsim binary with a temporary workaround of entering an outside +# directory as the "go get" command ignores the -mod option and will polute the +# go.{mod, sum} files. +# +# ref: https://github.com/golang/go/issues/30515 +statik: $(STATIK) +$(STATIK): + @echo "Installing statik..." + @(cd /tmp && go get github.com/rakyll/statik@v0.1.6) + +# Install the runsim binary with a temporary workaround of entering an outside +# directory as the "go get" command ignores the -mod option and will polute the +# go.{mod, sum} files. +# +# ref: https://github.com/golang/go/issues/30515 +runsim: $(RUNSIM) +$(RUNSIM): + @echo "Installing runsim..." + @(cd /tmp && go get github.com/cosmos/tools/cmd/runsim@v1.0.0) + +tools-clean: + rm -f $(STATIK) $(GOLANGCI_LINT) $(RUNSIM) + rm -f tools-stamp + +.PHONY: tools-clean statik runsim diff --git a/go.mod b/go.mod index 9759be58b..34bdcbb38 100644 --- a/go.mod +++ b/go.mod @@ -3,42 +3,50 @@ module github.com/tendermint/spn go 1.19 require ( + cosmossdk.io/api v0.3.1 cosmossdk.io/errors v1.0.0-beta.7 - cosmossdk.io/math v1.0.0-beta.4 + cosmossdk.io/math v1.0.0 github.com/aws/smithy-go v1.8.0 - github.com/cosmos/cosmos-proto v1.0.0-beta.1 - github.com/cosmos/cosmos-sdk v0.46.7 - github.com/cosmos/ibc-go/v6 v6.0.0 - github.com/gogo/protobuf v1.3.3 - github.com/golang/protobuf v1.5.2 + github.com/cometbft/cometbft v0.37.0 + github.com/cometbft/cometbft-db v0.7.0 + github.com/cosmos/cosmos-proto v1.0.0-beta.2 + github.com/cosmos/cosmos-sdk v0.47.1 + github.com/cosmos/gogoproto v1.4.7 + github.com/cosmos/ibc-go/v7 v7.0.0 + github.com/gogo/protobuf v1.3.2 + github.com/golang/protobuf v1.5.3 github.com/golangci/golangci-lint v1.50.1 github.com/gorilla/mux v1.8.0 github.com/grpc-ecosystem/grpc-gateway v1.16.0 - github.com/ignite/modules v0.0.0-20221215224430-496fd9a7820c + github.com/ignite/modules v0.0.0-20230426163137-432873c36327 github.com/pkg/errors v0.9.1 github.com/spf13/cast v1.5.0 github.com/spf13/cobra v1.6.1 github.com/spf13/pflag v1.0.5 - github.com/stretchr/testify v1.8.1 - github.com/tendermint/fundraising v0.3.1 - github.com/tendermint/tendermint v0.34.24 - github.com/tendermint/tm-db v0.6.7 - golang.org/x/tools v0.2.0 - google.golang.org/genproto v0.0.0-20221114212237-e4508ebdbee1 - google.golang.org/grpc v1.50.1 - google.golang.org/protobuf v1.28.2-0.20220831092852-f930b1dc76e8 + github.com/stretchr/testify v1.8.2 + github.com/tendermint/fundraising v0.3.2-0.20230426170640-25ca21084e72 + golang.org/x/tools v0.8.0 + google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 + google.golang.org/grpc v1.54.0 + google.golang.org/protobuf v1.30.0 gopkg.in/yaml.v2 v2.4.0 - mvdan.cc/gofumpt v0.4.0 + mvdan.cc/gofumpt v0.5.0 ) +replace github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 + require ( 4d63.com/gochecknoglobals v0.1.0 // indirect - cloud.google.com/go v0.105.0 // indirect - cloud.google.com/go/compute v1.12.1 // indirect - cloud.google.com/go/compute/metadata v0.2.1 // indirect - cloud.google.com/go/iam v0.7.0 // indirect - cloud.google.com/go/storage v1.27.0 // indirect - filippo.io/edwards25519 v1.0.0-rc.1 // indirect + cloud.google.com/go v0.110.0 // indirect + cloud.google.com/go/compute v1.19.0 // indirect + cloud.google.com/go/compute/metadata v0.2.3 // indirect + cloud.google.com/go/iam v1.0.0 // indirect + cloud.google.com/go/storage v1.30.1 // indirect + cosmossdk.io/core v0.5.1 // indirect + cosmossdk.io/depinject v1.0.0-alpha.3 // indirect + cosmossdk.io/simapp v0.0.0-20230224204036-a6adb0821462 // indirect + cosmossdk.io/tools/rosetta v0.2.1 // indirect + filippo.io/edwards25519 v1.0.0 // indirect github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect github.com/99designs/keyring v1.2.1 // indirect github.com/Abirdcfly/dupword v0.0.7 // indirect @@ -50,62 +58,64 @@ require ( github.com/GaijinEntertainment/go-exhaustruct/v2 v2.3.0 // indirect github.com/Masterminds/semver v1.5.0 // indirect github.com/OpenPeeDeeP/depguard v1.1.1 // indirect - github.com/Workiva/go-datastructures v1.0.53 // indirect github.com/alexkohler/prealloc v1.0.0 // indirect github.com/alingse/asasalint v0.0.11 // indirect github.com/armon/go-metrics v0.4.1 // indirect github.com/ashanbrown/forbidigo v1.3.0 // indirect github.com/ashanbrown/makezero v1.1.1 // indirect - github.com/aws/aws-sdk-go v1.40.45 // indirect + github.com/aws/aws-sdk-go v1.44.244 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect - github.com/bgentry/speakeasy v0.1.0 // indirect + github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 // indirect github.com/bkielbasa/cyclop v1.2.0 // indirect github.com/blizzy78/varnamelen v0.8.0 // indirect github.com/bombsimon/wsl/v3 v3.3.0 // indirect github.com/breml/bidichk v0.2.3 // indirect github.com/breml/errchkjson v0.3.0 // indirect - github.com/btcsuite/btcd v0.22.1 // indirect + github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect github.com/butuzov/ireturn v0.1.1 // indirect github.com/cenkalti/backoff/v4 v4.1.3 // indirect github.com/cespare/xxhash v1.1.0 // indirect - github.com/cespare/xxhash/v2 v2.1.2 // indirect + github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/charithe/durationcheck v0.0.9 // indirect github.com/chavacava/garif v0.0.0-20220630083739-93517212f375 // indirect - github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect + github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect + github.com/chzyer/readline v1.5.1 // indirect github.com/cockroachdb/apd/v2 v2.0.2 // indirect github.com/coinbase/rosetta-sdk-go v0.7.9 // indirect github.com/confio/ics23/go v0.9.0 // indirect github.com/cosmos/btcutil v1.0.5 // indirect github.com/cosmos/go-bip39 v1.0.0 // indirect - github.com/cosmos/gorocksdb v1.2.0 // indirect - github.com/cosmos/iavl v0.19.4 // indirect + github.com/cosmos/gogogateway v1.2.0 // indirect + github.com/cosmos/iavl v0.20.0 // indirect + github.com/cosmos/ics23/go v0.9.1-0.20221207100636-b1abd8678aab // indirect github.com/cosmos/ledger-cosmos-go v0.12.1 // indirect - github.com/creachadair/taskgroup v0.3.2 // indirect + github.com/cosmos/rosetta-sdk-go v0.10.0 // indirect + github.com/creachadair/taskgroup v0.4.2 // indirect github.com/curioswitch/go-reassign v0.2.0 // indirect github.com/daixiang0/gci v0.8.1 // indirect github.com/danieljoos/wincred v1.1.2 // indirect github.com/davecgh/go-spew v1.1.1 // indirect + github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect github.com/denis-tingaikin/go-header v0.4.3 // indirect github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect github.com/dgraph-io/badger/v2 v2.2007.4 // indirect - github.com/dgraph-io/ristretto v0.1.0 // indirect + github.com/dgraph-io/ristretto v0.1.1 // indirect github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect - github.com/dustin/go-humanize v1.0.1-0.20200219035652-afde56e7acac // indirect + github.com/dustin/go-humanize v1.0.1 // indirect github.com/dvsekhvalnov/jose2go v1.5.0 // indirect github.com/esimonov/ifshort v1.0.4 // indirect github.com/ettle/strcase v0.1.1 // indirect github.com/fatih/color v1.13.0 // indirect github.com/fatih/structtag v1.2.0 // indirect - github.com/felixge/httpsnoop v1.0.1 // indirect + github.com/felixge/httpsnoop v1.0.2 // indirect github.com/firefart/nonamedreturns v1.0.4 // indirect github.com/fsnotify/fsnotify v1.6.0 // indirect github.com/fzipp/gocyclo v0.6.0 // indirect - github.com/ghodss/yaml v1.0.0 // indirect github.com/go-critic/go-critic v0.6.5 // indirect github.com/go-kit/kit v0.12.0 // indirect github.com/go-kit/log v0.2.1 // indirect - github.com/go-logfmt/logfmt v0.5.1 // indirect + github.com/go-logfmt/logfmt v0.6.0 // indirect github.com/go-toolsmith/astcast v1.0.0 // indirect github.com/go-toolsmith/astcopy v1.0.2 // indirect github.com/go-toolsmith/astequal v1.0.3 // indirect @@ -117,9 +127,10 @@ require ( github.com/gobwas/glob v0.2.3 // indirect github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect github.com/gofrs/flock v0.8.1 // indirect - github.com/gogo/gateway v1.1.0 // indirect - github.com/golang/glog v1.0.0 // indirect + github.com/gogo/googleapis v1.4.1 // indirect + github.com/golang/glog v1.1.0 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect + github.com/golang/mock v1.6.0 // indirect github.com/golang/snappy v0.0.4 // indirect github.com/golangci/check v0.0.0-20180506172741-cfe4005ccda2 // indirect github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a // indirect @@ -130,12 +141,13 @@ require ( github.com/golangci/misspell v0.3.5 // indirect github.com/golangci/revgrep v0.0.0-20220804021717-745bb2f7c2e6 // indirect github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4 // indirect - github.com/google/btree v1.0.1 // indirect + github.com/google/btree v1.1.2 // indirect github.com/google/go-cmp v0.5.9 // indirect github.com/google/orderedcode v0.0.1 // indirect + github.com/google/s2a-go v0.1.0 // indirect github.com/google/uuid v1.3.0 // indirect - github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect - github.com/googleapis/gax-go/v2 v2.6.0 // indirect + github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect + github.com/googleapis/gax-go/v2 v2.8.0 // indirect github.com/gordonklaus/ineffassign v0.0.0-20210914165742-4cc7213b9bc8 // indirect github.com/gorilla/handlers v1.5.1 // indirect github.com/gorilla/websocket v1.5.0 // indirect @@ -144,58 +156,61 @@ require ( github.com/gostaticanalysis/forcetypeassert v0.1.0 // indirect github.com/gostaticanalysis/nilerr v0.1.1 // indirect github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect - github.com/grpc-ecosystem/grpc-gateway/v2 v2.14.0 // indirect github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect github.com/gtank/merlin v0.1.1 // indirect github.com/gtank/ristretto255 v0.1.2 // indirect github.com/hashicorp/errwrap v1.1.0 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect - github.com/hashicorp/go-getter v1.6.1 // indirect + github.com/hashicorp/go-getter v1.7.1 // indirect github.com/hashicorp/go-immutable-radix v1.3.1 // indirect github.com/hashicorp/go-multierror v1.1.1 // indirect github.com/hashicorp/go-safetemp v1.0.0 // indirect github.com/hashicorp/go-version v1.6.0 // indirect github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect github.com/hashicorp/hcl v1.0.0 // indirect - github.com/hdevalence/ed25519consensus v0.0.0-20220222234857-c00d1f31bab3 // indirect + github.com/hdevalence/ed25519consensus v0.1.0 // indirect github.com/hexops/gotextdiff v1.0.3 // indirect + github.com/huandu/skiplist v1.2.0 // indirect github.com/improbable-eng/grpc-web v0.15.0 // indirect - github.com/inconshreveable/mousetrap v1.0.1 // indirect + github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/jgautheron/goconst v1.5.1 // indirect github.com/jingyugao/rowserrcheck v1.1.1 // indirect github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af // indirect github.com/jmespath/go-jmespath v0.4.0 // indirect github.com/jmhodges/levigo v1.0.0 // indirect + github.com/json-iterator/go v1.1.12 // indirect github.com/julz/importas v0.1.0 // indirect github.com/kisielk/errcheck v1.6.2 // indirect github.com/kisielk/gotool v1.0.0 // indirect github.com/kkHAIKE/contextcheck v1.1.3 // indirect - github.com/klauspost/compress v1.15.11 // indirect + github.com/klauspost/compress v1.16.4 // indirect github.com/kulti/thelper v0.6.3 // indirect github.com/kunwardeep/paralleltest v1.0.6 // indirect github.com/kyoh86/exportloopref v0.1.8 // indirect github.com/ldez/gomoddirectives v0.2.3 // indirect github.com/ldez/tagliatelle v0.3.1 // indirect github.com/leonklingele/grouper v1.1.0 // indirect - github.com/lib/pq v1.10.6 // indirect + github.com/lib/pq v1.10.7 // indirect github.com/libp2p/go-buffer-pool v0.1.0 // indirect github.com/lufeee/execinquery v1.2.1 // indirect - github.com/magiconair/properties v1.8.6 // indirect + github.com/magiconair/properties v1.8.7 // indirect github.com/manifoldco/promptui v0.9.0 // indirect github.com/maratori/testableexamples v1.0.0 // indirect github.com/maratori/testpackage v1.1.0 // indirect github.com/matoous/godox v0.0.0-20210227103229-6504466cf951 // indirect github.com/mattn/go-colorable v0.1.13 // indirect - github.com/mattn/go-isatty v0.0.16 // indirect + github.com/mattn/go-isatty v0.0.18 // indirect github.com/mattn/go-runewidth v0.0.10 // indirect - github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect + github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/mbilski/exhaustivestruct v1.2.0 // indirect github.com/mgechev/revive v1.2.4 // indirect github.com/mimoo/StrobeGo v0.0.0-20210601165009-122bf33a46e0 // indirect github.com/minio/highwayhash v1.0.2 // indirect github.com/mitchellh/go-homedir v1.1.0 // indirect - github.com/mitchellh/go-testing-interface v1.0.0 // indirect + github.com/mitchellh/go-testing-interface v1.14.1 // indirect github.com/mitchellh/mapstructure v1.5.0 // indirect + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect + github.com/modern-go/reflect2 v1.0.2 // indirect github.com/moricho/tparallel v0.2.1 // indirect github.com/mtibben/percent v0.2.1 // indirect github.com/nakabonne/nestif v0.3.1 // indirect @@ -203,26 +218,23 @@ require ( github.com/nishanths/exhaustive v0.8.3 // indirect github.com/nishanths/predeclared v0.2.2 // indirect github.com/olekukonko/tablewriter v0.0.5 // indirect - github.com/pelletier/go-toml v1.9.5 // indirect - github.com/pelletier/go-toml/v2 v2.0.5 // indirect - github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect + github.com/pelletier/go-toml/v2 v2.0.7 // indirect + github.com/petermattis/goid v0.0.0-20221215004737-a150e88a970d // indirect github.com/phayes/checkstyle v0.0.0-20170904204023-bfd46e6a821d // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/polyfloyd/go-errorlint v1.0.5 // indirect - github.com/prometheus/client_golang v1.12.2 // indirect - github.com/prometheus/client_model v0.2.0 // indirect - github.com/prometheus/common v0.34.0 // indirect - github.com/prometheus/procfs v0.8.0 // indirect + github.com/prometheus/client_golang v1.14.0 // indirect + github.com/prometheus/client_model v0.3.0 // indirect + github.com/prometheus/common v0.40.0 // indirect + github.com/prometheus/procfs v0.9.0 // indirect github.com/quasilyte/go-ruleguard v0.3.18 // indirect github.com/quasilyte/gogrep v0.0.0-20220828223005-86e4605de09f // indirect github.com/quasilyte/regex/syntax v0.0.0-20200407221936-30656e2c4a95 // indirect github.com/quasilyte/stdinfo v0.0.0-20220114132959-f7386bf02567 // indirect github.com/rakyll/statik v0.1.7 // indirect github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect - github.com/regen-network/cosmos-proto v0.3.1 // indirect github.com/rivo/uniseg v0.2.0 // indirect - github.com/rs/cors v1.8.2 // indirect - github.com/rs/zerolog v1.27.0 // indirect + github.com/rs/cors v1.8.3 // indirect github.com/ryancurrah/gomodguard v1.2.4 // indirect github.com/ryanrolds/sqlclosecheck v0.3.0 // indirect github.com/sanposhiho/wastedassign/v2 v2.0.6 // indirect @@ -237,49 +249,50 @@ require ( github.com/sivchari/tenv v1.7.0 // indirect github.com/sonatard/noctx v0.0.1 // indirect github.com/sourcegraph/go-diff v0.6.1 // indirect - github.com/spf13/afero v1.9.2 // indirect + github.com/spf13/afero v1.9.3 // indirect github.com/spf13/jwalterweatherman v1.1.0 // indirect - github.com/spf13/viper v1.14.0 // indirect + github.com/spf13/viper v1.15.0 // indirect github.com/ssgreg/nlreturn/v2 v2.2.1 // indirect github.com/stbenjam/no-sprintf-host-port v0.1.1 // indirect github.com/stretchr/objx v0.5.0 // indirect - github.com/subosito/gotenv v1.4.1 // indirect - github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect + github.com/subosito/gotenv v1.4.2 // indirect + github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect github.com/tdakkota/asciicheck v0.1.1 // indirect - github.com/tendermint/btcd v0.1.1 // indirect - github.com/tendermint/crypto v0.0.0-20191022145703-50d29ede1e15 // indirect + github.com/tecbot/gorocksdb v0.0.0-20191217155057-f0fad39f321c // indirect github.com/tendermint/go-amino v0.16.0 // indirect github.com/tetafro/godot v1.4.11 // indirect + github.com/tidwall/btree v1.6.0 // indirect github.com/timakin/bodyclose v0.0.0-20210704033933-f49887972144 // indirect github.com/timonwong/loggercheck v0.9.3 // indirect github.com/tomarrell/wrapcheck/v2 v2.7.0 // indirect github.com/tommy-muehle/go-mnd/v2 v2.5.1 // indirect - github.com/ulikunitz/xz v0.5.8 // indirect + github.com/twitchyliquid64/golang-asm v0.15.1 // indirect + github.com/ulikunitz/xz v0.5.11 // indirect github.com/ultraware/funlen v0.0.3 // indirect github.com/ultraware/whitespace v0.0.5 // indirect github.com/uudashr/gocognit v1.0.6 // indirect github.com/yagipy/maintidx v1.0.0 // indirect github.com/yeya24/promlinter v0.2.0 // indirect github.com/zondax/hid v0.9.1 // indirect - github.com/zondax/ledger-go v0.14.0 // indirect + github.com/zondax/ledger-go v0.14.1 // indirect gitlab.com/bosi/decorder v0.2.3 // indirect - go.etcd.io/bbolt v1.3.6 // indirect - go.opencensus.io v0.23.0 // indirect + go.etcd.io/bbolt v1.3.7 // indirect + go.opencensus.io v0.24.0 // indirect go.uber.org/atomic v1.10.0 // indirect go.uber.org/multierr v1.8.0 // indirect go.uber.org/zap v1.23.0 // indirect - golang.org/x/crypto v0.2.0 // indirect - golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect + golang.org/x/crypto v0.8.0 // indirect + golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect golang.org/x/exp/typeparams v0.0.0-20220827204233-334a2380cb91 // indirect - golang.org/x/mod v0.6.0 // indirect - golang.org/x/net v0.2.0 // indirect - golang.org/x/oauth2 v0.2.0 // indirect + golang.org/x/mod v0.10.0 // indirect + golang.org/x/net v0.9.0 // indirect + golang.org/x/oauth2 v0.7.0 // indirect golang.org/x/sync v0.1.0 // indirect - golang.org/x/sys v0.2.0 // indirect - golang.org/x/term v0.2.0 // indirect - golang.org/x/text v0.4.0 // indirect + golang.org/x/sys v0.7.0 // indirect + golang.org/x/term v0.7.0 // indirect + golang.org/x/text v0.9.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect - google.golang.org/api v0.102.0 // indirect + google.golang.org/api v0.117.0 // indirect google.golang.org/appengine v1.6.7 // indirect gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect @@ -288,10 +301,6 @@ require ( mvdan.cc/lint v0.0.0-20170908181259-adc824a0674b // indirect mvdan.cc/unparam v0.0.0-20220706161116-678bad134442 // indirect nhooyr.io/websocket v1.8.6 // indirect + pgregory.net/rapid v0.5.5 // indirect sigs.k8s.io/yaml v1.3.0 // indirect ) - -replace ( - github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0 - github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 -) diff --git a/go.sum b/go.sum index 8631ebf8c..7e9f9cf30 100644 --- a/go.sum +++ b/go.sum @@ -21,44 +21,197 @@ cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHOb cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= -cloud.google.com/go v0.105.0 h1:DNtEKRBAAzeS4KyIory52wWHuClNaXJ5x1F7xa4q+5Y= -cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFOKM= +cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= +cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= +cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= +cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= +cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= +cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= +cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= +cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= +cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= +cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= +cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA= +cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w99A= +cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+nc= +cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= +cloud.google.com/go v0.104.0/go.mod h1:OO6xxXdJyvuJPcEPBLN9BJPD+jep5G1+2U5B5gkRYtA= +cloud.google.com/go v0.110.0 h1:Zc8gqp3+a9/Eyph2KDmcGaPtbKRIoqq4YTlL4NMD0Ys= +cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= +cloud.google.com/go/aiplatform v1.22.0/go.mod h1:ig5Nct50bZlzV6NvKaTwmplLLddFx0YReh9WfTO5jKw= +cloud.google.com/go/aiplatform v1.24.0/go.mod h1:67UUvRBKG6GTayHKV8DBv2RtR1t93YRu5B1P3x99mYY= +cloud.google.com/go/analytics v0.11.0/go.mod h1:DjEWCu41bVbYcKyvlws9Er60YE4a//bK6mnhWvQeFNI= +cloud.google.com/go/analytics v0.12.0/go.mod h1:gkfj9h6XRf9+TS4bmuhPEShsh3hH8PAZzm/41OOhQd4= +cloud.google.com/go/area120 v0.5.0/go.mod h1:DE/n4mp+iqVyvxHN41Vf1CR602GiHQjFPusMFW6bGR4= +cloud.google.com/go/area120 v0.6.0/go.mod h1:39yFJqWVgm0UZqWTOdqkLhjoC7uFfgXRC8g/ZegeAh0= +cloud.google.com/go/artifactregistry v1.6.0/go.mod h1:IYt0oBPSAGYj/kprzsBjZ/4LnG/zOcHyFHjWPCi6SAQ= +cloud.google.com/go/artifactregistry v1.7.0/go.mod h1:mqTOFOnGZx8EtSqK/ZWcsm/4U8B77rbcLP6ruDU2Ixk= +cloud.google.com/go/asset v1.5.0/go.mod h1:5mfs8UvcM5wHhqtSv8J1CtxxaQq3AdBxxQi2jGW/K4o= +cloud.google.com/go/asset v1.7.0/go.mod h1:YbENsRK4+xTiL+Ofoj5Ckf+O17kJtgp3Y3nn4uzZz5s= +cloud.google.com/go/asset v1.8.0/go.mod h1:mUNGKhiqIdbr8X7KNayoYvyc4HbbFO9URsjbytpUaW0= +cloud.google.com/go/assuredworkloads v1.5.0/go.mod h1:n8HOZ6pff6re5KYfBXcFvSViQjDwxFkAkmUFffJRbbY= +cloud.google.com/go/assuredworkloads v1.6.0/go.mod h1:yo2YOk37Yc89Rsd5QMVECvjaMKymF9OP+QXWlKXUkXw= +cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVoYoxeLBoj4XkKYscNI= +cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= +cloud.google.com/go/automl v1.6.0/go.mod h1:ugf8a6Fx+zP0D59WLhqgTDsQI9w07o64uf/Is3Nh5p8= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= +cloud.google.com/go/bigquery v1.42.0/go.mod h1:8dRTJxhtG+vwBKzE5OseQn/hiydoQN3EedCaOdYmxRA= cloud.google.com/go/bigtable v1.2.0/go.mod h1:JcVAOl45lrTmQfLj7T6TxyMzIN/3FGGcFm+2xVAli2o= -cloud.google.com/go/compute v1.12.1 h1:gKVJMEyqV5c/UnpzjjQbo3Rjvvqpr9B1DFSbJC4OXr0= -cloud.google.com/go/compute v1.12.1/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= -cloud.google.com/go/compute/metadata v0.2.1 h1:efOwf5ymceDhK6PKMnnrTHP4pppY5L22mle96M1yP48= -cloud.google.com/go/compute/metadata v0.2.1/go.mod h1:jgHgmJd2RKBGzXqF5LR2EZMGxBkeanZ9wwa75XHJgOM= +cloud.google.com/go/billing v1.4.0/go.mod h1:g9IdKBEFlItS8bTtlrZdVLWSSdSyFUZKXNS02zKMOZY= +cloud.google.com/go/billing v1.5.0/go.mod h1:mztb1tBc3QekhjSgmpf/CV4LzWXLzCArwpLmP2Gm88s= +cloud.google.com/go/binaryauthorization v1.1.0/go.mod h1:xwnoWu3Y84jbuHa0zd526MJYmtnVXn0syOjaJgy4+dM= +cloud.google.com/go/binaryauthorization v1.2.0/go.mod h1:86WKkJHtRcv5ViNABtYMhhNWRrD1Vpi//uKEy7aYEfI= +cloud.google.com/go/cloudtasks v1.5.0/go.mod h1:fD92REy1x5woxkKEkLdvavGnPJGEn8Uic9nWuLzqCpY= +cloud.google.com/go/cloudtasks v1.6.0/go.mod h1:C6Io+sxuke9/KNRkbQpihnW93SWDU3uXt92nu85HkYI= +cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow= +cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM= +cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M= +cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz/FMzPu0s= +cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU= +cloud.google.com/go/compute v1.7.0/go.mod h1:435lt8av5oL9P3fv1OEzSbSUe+ybHXGMPQHHZWZxy9U= +cloud.google.com/go/compute v1.10.0/go.mod h1:ER5CLbMxl90o2jtNbGSbtfOpQKR0t15FOtRsugnLrlU= +cloud.google.com/go/compute v1.19.0 h1:+9zda3WGgW1ZSTlVppLCYFIr48Pa35q1uG2N1itbCEQ= +cloud.google.com/go/compute v1.19.0/go.mod h1:rikpw2y+UMidAe9tISo04EHNOIf42RLYF/q8Bs93scU= +cloud.google.com/go/compute/metadata v0.2.3 h1:mg4jlk7mCAj6xXp9UJ4fjI9VUI5rubuGBW5aJ7UnBMY= +cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= +cloud.google.com/go/containeranalysis v0.5.1/go.mod h1:1D92jd8gRR/c0fGMlymRgxWD3Qw9C1ff6/T7mLgVL8I= +cloud.google.com/go/containeranalysis v0.6.0/go.mod h1:HEJoiEIu+lEXM+k7+qLCci0h33lX3ZqoYFdmPcoO7s4= +cloud.google.com/go/datacatalog v1.3.0/go.mod h1:g9svFY6tuR+j+hrTw3J2dNcmI0dzmSiyOzm8kpLq0a0= +cloud.google.com/go/datacatalog v1.5.0/go.mod h1:M7GPLNQeLfWqeIm3iuiruhPzkt65+Bx8dAKvScX8jvs= +cloud.google.com/go/datacatalog v1.6.0/go.mod h1:+aEyF8JKg+uXcIdAmmaMUmZ3q1b/lKLtXCmXdnc0lbc= +cloud.google.com/go/dataflow v0.6.0/go.mod h1:9QwV89cGoxjjSR9/r7eFDqqjtvbKxAK2BaYU6PVk9UM= +cloud.google.com/go/dataflow v0.7.0/go.mod h1:PX526vb4ijFMesO1o202EaUmouZKBpjHsTlCtB4parQ= +cloud.google.com/go/dataform v0.3.0/go.mod h1:cj8uNliRlHpa6L3yVhDOBrUXH+BPAO1+KFMQQNSThKo= +cloud.google.com/go/dataform v0.4.0/go.mod h1:fwV6Y4Ty2yIFL89huYlEkwUPtS7YZinZbzzj5S9FzCE= +cloud.google.com/go/datalabeling v0.5.0/go.mod h1:TGcJ0G2NzcsXSE/97yWjIZO0bXj0KbVlINXMG9ud42I= +cloud.google.com/go/datalabeling v0.6.0/go.mod h1:WqdISuk/+WIGeMkpw/1q7bK/tFEZxsrFJOJdY2bXvTQ= +cloud.google.com/go/dataqna v0.5.0/go.mod h1:90Hyk596ft3zUQ8NkFfvICSIfHFh1Bc7C4cK3vbhkeo= +cloud.google.com/go/dataqna v0.6.0/go.mod h1:1lqNpM7rqNLVgWBJyk5NF6Uen2PHym0jtVJonplVsDA= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= -cloud.google.com/go/iam v0.7.0 h1:k4MuwOsS7zGJJ+QfZ5vBK8SgHBAvYN/23BWsiihJ1vs= -cloud.google.com/go/iam v0.7.0/go.mod h1:H5Br8wRaDGNc8XP3keLc4unfUUZeyH3Sfl9XpQEYOeg= -cloud.google.com/go/longrunning v0.3.0 h1:NjljC+FYPV3uh5/OwWT6pVU+doBqMg2x/rZlE+CamDs= +cloud.google.com/go/datastream v1.2.0/go.mod h1:i/uTP8/fZwgATHS/XFu0TcNUhuA0twZxxQ3EyCUQMwo= +cloud.google.com/go/datastream v1.3.0/go.mod h1:cqlOX8xlyYF/uxhiKn6Hbv6WjwPPuI9W2M9SAXwaLLQ= +cloud.google.com/go/dialogflow v1.15.0/go.mod h1:HbHDWs33WOGJgn6rfzBW1Kv807BE3O1+xGbn59zZWI4= +cloud.google.com/go/dialogflow v1.16.1/go.mod h1:po6LlzGfK+smoSmTBnbkIZY2w8ffjz/RcGSS+sh1el0= +cloud.google.com/go/dialogflow v1.17.0/go.mod h1:YNP09C/kXA1aZdBgC/VtXX74G/TKn7XVCcVumTflA+8= +cloud.google.com/go/documentai v1.7.0/go.mod h1:lJvftZB5NRiFSX4moiye1SMxHx0Bc3x1+p9e/RfXYiU= +cloud.google.com/go/documentai v1.8.0/go.mod h1:xGHNEB7CtsnySCNrCFdCyyMz44RhFEEX2Q7UD0c5IhU= +cloud.google.com/go/domains v0.6.0/go.mod h1:T9Rz3GasrpYk6mEGHh4rymIhjlnIuB4ofT1wTxDeT4Y= +cloud.google.com/go/domains v0.7.0/go.mod h1:PtZeqS1xjnXuRPKE/88Iru/LdfoRyEHYA9nFQf4UKpg= +cloud.google.com/go/edgecontainer v0.1.0/go.mod h1:WgkZ9tp10bFxqO8BLPqv2LlfmQF1X8lZqwW4r1BTajk= +cloud.google.com/go/edgecontainer v0.2.0/go.mod h1:RTmLijy+lGpQ7BXuTDa4C4ssxyXT34NIuHIgKuP4s5w= +cloud.google.com/go/functions v1.6.0/go.mod h1:3H1UA3qiIPRWD7PeZKLvHZ9SaQhR26XIJcC0A5GbvAk= +cloud.google.com/go/functions v1.7.0/go.mod h1:+d+QBcWM+RsrgZfV9xo6KfA1GlzJfxcfZcRPEhDDfzg= +cloud.google.com/go/gaming v1.5.0/go.mod h1:ol7rGcxP/qHTRQE/RO4bxkXq+Fix0j6D4LFPzYTIrDM= +cloud.google.com/go/gaming v1.6.0/go.mod h1:YMU1GEvA39Qt3zWGyAVA9bpYz/yAhTvaQ1t2sK4KPUA= +cloud.google.com/go/gkeconnect v0.5.0/go.mod h1:c5lsNAg5EwAy7fkqX/+goqFsU1Da/jQFqArp+wGNr/o= +cloud.google.com/go/gkeconnect v0.6.0/go.mod h1:Mln67KyU/sHJEBY8kFZ0xTeyPtzbq9StAVvEULYK16A= +cloud.google.com/go/gkehub v0.9.0/go.mod h1:WYHN6WG8w9bXU0hqNxt8rm5uxnk8IH+lPY9J2TV7BK0= +cloud.google.com/go/gkehub v0.10.0/go.mod h1:UIPwxI0DsrpsVoWpLB0stwKCP+WFVG9+y977wO+hBH0= +cloud.google.com/go/grafeas v0.2.0/go.mod h1:KhxgtF2hb0P191HlY5besjYm6MqTSTj3LSI+M+ByZHc= +cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= +cloud.google.com/go/iam v0.5.0/go.mod h1:wPU9Vt0P4UmCux7mqtRu6jcpPAb74cP1fh50J3QpkUc= +cloud.google.com/go/iam v1.0.0 h1:hlQJMovyJJwYjZcTohUH4o1L8Z8kYz+E+W/zktiLCBc= +cloud.google.com/go/iam v1.0.0/go.mod h1:ikbQ4f1r91wTmBmmOtBCOtuEOei6taatNXytzB7Cxew= +cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= +cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= +cloud.google.com/go/lifesciences v0.5.0/go.mod h1:3oIKy8ycWGPUyZDR/8RNnTOYevhaMLqh5vLUXs9zvT8= +cloud.google.com/go/lifesciences v0.6.0/go.mod h1:ddj6tSX/7BOnhxCSd3ZcETvtNr8NZ6t/iPhY2Tyfu08= +cloud.google.com/go/longrunning v0.4.1 h1:v+yFJOfKC3yZdY6ZUI933pIYdhyhV8S3NpWrXWmg7jM= +cloud.google.com/go/mediatranslation v0.5.0/go.mod h1:jGPUhGTybqsPQn91pNXw0xVHfuJ3leR1wj37oU3y1f4= +cloud.google.com/go/mediatranslation v0.6.0/go.mod h1:hHdBCTYNigsBxshbznuIMFNe5QXEowAuNmmC7h8pu5w= +cloud.google.com/go/memcache v1.4.0/go.mod h1:rTOfiGZtJX1AaFUrOgsMHX5kAzaTQ8azHiuDoTPzNsE= +cloud.google.com/go/memcache v1.5.0/go.mod h1:dk3fCK7dVo0cUU2c36jKb4VqKPS22BTkf81Xq617aWM= +cloud.google.com/go/metastore v1.5.0/go.mod h1:2ZNrDcQwghfdtCwJ33nM0+GrBGlVuh8rakL3vdPY3XY= +cloud.google.com/go/metastore v1.6.0/go.mod h1:6cyQTls8CWXzk45G55x57DVQ9gWg7RiH65+YgPsNh9s= +cloud.google.com/go/networkconnectivity v1.4.0/go.mod h1:nOl7YL8odKyAOtzNX73/M5/mGZgqqMeryi6UPZTk/rA= +cloud.google.com/go/networkconnectivity v1.5.0/go.mod h1:3GzqJx7uhtlM3kln0+x5wyFvuVH1pIBJjhCpjzSt75o= +cloud.google.com/go/networksecurity v0.5.0/go.mod h1:xS6fOCoqpVC5zx15Z/MqkfDwH4+m/61A3ODiDV1xmiQ= +cloud.google.com/go/networksecurity v0.6.0/go.mod h1:Q5fjhTr9WMI5mbpRYEbiexTzROf7ZbDzvzCrNl14nyU= +cloud.google.com/go/notebooks v1.2.0/go.mod h1:9+wtppMfVPUeJ8fIWPOq1UnATHISkGXGqTkxeieQ6UY= +cloud.google.com/go/notebooks v1.3.0/go.mod h1:bFR5lj07DtCPC7YAAJ//vHskFBxA5JzYlH68kXVdk34= +cloud.google.com/go/osconfig v1.7.0/go.mod h1:oVHeCeZELfJP7XLxcBGTMBvRO+1nQ5tFG9VQTmYS2Fs= +cloud.google.com/go/osconfig v1.8.0/go.mod h1:EQqZLu5w5XA7eKizepumcvWx+m8mJUhEwiPqWiZeEdg= +cloud.google.com/go/oslogin v1.4.0/go.mod h1:YdgMXWRaElXz/lDk1Na6Fh5orF7gvmJ0FGLIs9LId4E= +cloud.google.com/go/oslogin v1.5.0/go.mod h1:D260Qj11W2qx/HVF29zBg+0fd6YCSjSqLUkY/qEenQU= +cloud.google.com/go/phishingprotection v0.5.0/go.mod h1:Y3HZknsK9bc9dMi+oE8Bim0lczMU6hrX0UpADuMefr0= +cloud.google.com/go/phishingprotection v0.6.0/go.mod h1:9Y3LBLgy0kDTcYET8ZH3bq/7qni15yVUoAxiFxnlSUA= +cloud.google.com/go/privatecatalog v0.5.0/go.mod h1:XgosMUvvPyxDjAVNDYxJ7wBW8//hLDDYmnsNcMGq1K0= +cloud.google.com/go/privatecatalog v0.6.0/go.mod h1:i/fbkZR0hLN29eEWiiwue8Pb+GforiEIBnV9yrRUOKI= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= +cloud.google.com/go/recaptchaenterprise v1.3.1/go.mod h1:OdD+q+y4XGeAlxRaMn1Y7/GveP6zmq76byL6tjPE7d4= +cloud.google.com/go/recaptchaenterprise/v2 v2.1.0/go.mod h1:w9yVqajwroDNTfGuhmOjPDN//rZGySaf6PtFVcSCa7o= +cloud.google.com/go/recaptchaenterprise/v2 v2.2.0/go.mod h1:/Zu5jisWGeERrd5HnlS3EUGb/D335f9k51B/FVil0jk= +cloud.google.com/go/recaptchaenterprise/v2 v2.3.0/go.mod h1:O9LwGCjrhGHBQET5CA7dd5NwwNQUErSgEDit1DLNTdo= +cloud.google.com/go/recommendationengine v0.5.0/go.mod h1:E5756pJcVFeVgaQv3WNpImkFP8a+RptV6dDLGPILjvg= +cloud.google.com/go/recommendationengine v0.6.0/go.mod h1:08mq2umu9oIqc7tDy8sx+MNJdLG0fUi3vaSVbztHgJ4= +cloud.google.com/go/recommender v1.5.0/go.mod h1:jdoeiBIVrJe9gQjwd759ecLJbxCDED4A6p+mqoqDvTg= +cloud.google.com/go/recommender v1.6.0/go.mod h1:+yETpm25mcoiECKh9DEScGzIRyDKpZ0cEhWGo+8bo+c= +cloud.google.com/go/redis v1.7.0/go.mod h1:V3x5Jq1jzUcg+UNsRvdmsfuFnit1cfe3Z/PGyq/lm4Y= +cloud.google.com/go/redis v1.8.0/go.mod h1:Fm2szCDavWzBk2cDKxrkmWBqoCiL1+Ctwq7EyqBCA/A= +cloud.google.com/go/retail v1.8.0/go.mod h1:QblKS8waDmNUhghY2TI9O3JLlFk8jybHeV4BF19FrE4= +cloud.google.com/go/retail v1.9.0/go.mod h1:g6jb6mKuCS1QKnH/dpu7isX253absFl6iE92nHwlBUY= +cloud.google.com/go/scheduler v1.4.0/go.mod h1:drcJBmxF3aqZJRhmkHQ9b3uSSpQoltBPGPxGAWROx6s= +cloud.google.com/go/scheduler v1.5.0/go.mod h1:ri073ym49NW3AfT6DZi21vLZrG07GXr5p3H1KxN5QlI= +cloud.google.com/go/secretmanager v1.6.0/go.mod h1:awVa/OXF6IiyaU1wQ34inzQNc4ISIDIrId8qE5QGgKA= +cloud.google.com/go/security v1.5.0/go.mod h1:lgxGdyOKKjHL4YG3/YwIL2zLqMFCKs0UbQwgyZmfJl4= +cloud.google.com/go/security v1.7.0/go.mod h1:mZklORHl6Bg7CNnnjLH//0UlAlaXqiG7Lb9PsPXLfD0= +cloud.google.com/go/security v1.8.0/go.mod h1:hAQOwgmaHhztFhiQ41CjDODdWP0+AE1B3sX4OFlq+GU= +cloud.google.com/go/securitycenter v1.13.0/go.mod h1:cv5qNAqjY84FCN6Y9z28WlkKXyWsgLO832YiWwkCWcU= +cloud.google.com/go/securitycenter v1.14.0/go.mod h1:gZLAhtyKv85n52XYWt6RmeBdydyxfPeTrpToDPw4Auc= +cloud.google.com/go/servicedirectory v1.4.0/go.mod h1:gH1MUaZCgtP7qQiI+F+A+OpeKF/HQWgtAddhTbhL2bs= +cloud.google.com/go/servicedirectory v1.5.0/go.mod h1:QMKFL0NUySbpZJ1UZs3oFAmdvVxhhxB6eJ/Vlp73dfg= +cloud.google.com/go/speech v1.6.0/go.mod h1:79tcr4FHCimOp56lwC01xnt/WPJZc4v3gzyT7FoBkCM= +cloud.google.com/go/speech v1.7.0/go.mod h1:KptqL+BAQIhMsj1kOP2la5DSEEerPDuOP/2mmkhHhZQ= cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= -cloud.google.com/go/storage v1.27.0 h1:YOO045NZI9RKfCj1c5A/ZtuuENUc8OAW+gHdGnDgyMQ= +cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq6kuBTW58Y= +cloud.google.com/go/storage v1.23.0/go.mod h1:vOEEDNFnciUMhBeT6hsJIn3ieU5cFRmzeLgDvXzfIXc= cloud.google.com/go/storage v1.27.0/go.mod h1:x9DOL8TK/ygDUMieqwfhdpQryTeEkhGKMi80i/iqR2s= +cloud.google.com/go/storage v1.30.1 h1:uOdMxAs8HExqBlnLtnQyP0YkvbiDpdGShGKtx6U/oNM= +cloud.google.com/go/storage v1.30.1/go.mod h1:NfxhC0UJE1aXSx7CIIbCf7y9HKT7BiccwkR7+P7gN8E= +cloud.google.com/go/talent v1.1.0/go.mod h1:Vl4pt9jiHKvOgF9KoZo6Kob9oV4lwd/ZD5Cto54zDRw= +cloud.google.com/go/talent v1.2.0/go.mod h1:MoNF9bhFQbiJ6eFD3uSsg0uBALw4n4gaCaEjBw9zo8g= +cloud.google.com/go/videointelligence v1.6.0/go.mod h1:w0DIDlVRKtwPCn/C4iwZIJdvC69yInhW0cfi+p546uU= +cloud.google.com/go/videointelligence v1.7.0/go.mod h1:k8pI/1wAhjznARtVT9U1llUaFNPh7muw8QyOUpavru4= +cloud.google.com/go/vision v1.2.0/go.mod h1:SmNwgObm5DpFBme2xpyOyasvBc1aPdjvMk2bBk0tKD0= +cloud.google.com/go/vision/v2 v2.2.0/go.mod h1:uCdV4PpN1S0jyCyq8sIM42v2Y6zOLkZs+4R9LrGYwFo= +cloud.google.com/go/vision/v2 v2.3.0/go.mod h1:UO61abBx9QRMFkNBbf1D8B1LXdS2cGiiCRx0vSpZoUo= +cloud.google.com/go/webrisk v1.4.0/go.mod h1:Hn8X6Zr+ziE2aNd8SliSDWpEnSS1u4R9+xXZmFiHmGE= +cloud.google.com/go/webrisk v1.5.0/go.mod h1:iPG6fr52Tv7sGk0H6qUFzmL3HHZev1htXuWDEEsqMTg= +cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1Vwf+KmJENM0= +cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= collectd.org v0.3.0/go.mod h1:A/8DzQBkF6abtvrT2j/AU/4tiBgJWYyh0y/oB/4MlWE= +cosmossdk.io/api v0.3.1 h1:NNiOclKRR0AOlO4KIqeaG6PS6kswOMhHD0ir0SscNXE= +cosmossdk.io/api v0.3.1/go.mod h1:DfHfMkiNA2Uhy8fj0JJlOCYOBp4eWUUJ1te5zBGNyIw= +cosmossdk.io/core v0.5.1 h1:vQVtFrIYOQJDV3f7rw4pjjVqc1id4+mE0L9hHP66pyI= +cosmossdk.io/core v0.5.1/go.mod h1:KZtwHCLjcFuo0nmDc24Xy6CRNEL9Vl/MeimQ2aC7NLE= +cosmossdk.io/depinject v1.0.0-alpha.3 h1:6evFIgj//Y3w09bqOUOzEpFj5tsxBqdc5CfkO7z+zfw= +cosmossdk.io/depinject v1.0.0-alpha.3/go.mod h1:eRbcdQ7MRpIPEM5YUJh8k97nxHpYbc3sMUnEtt8HPWU= cosmossdk.io/errors v1.0.0-beta.7 h1:gypHW76pTQGVnHKo6QBkb4yFOJjC+sUGRc5Al3Odj1w= cosmossdk.io/errors v1.0.0-beta.7/go.mod h1:mz6FQMJRku4bY7aqS/Gwfcmr/ue91roMEKAmDUDpBfE= -cosmossdk.io/math v1.0.0-beta.4 h1:JtKedVLGzA0vv84xjYmZ75RKG35Kf2WwcFu8IjRkIIw= -cosmossdk.io/math v1.0.0-beta.4/go.mod h1:An0MllWJY6PxibUpnwGk8jOm+a/qIxlKmL5Zyp9NnaM= +cosmossdk.io/math v1.0.0 h1:ro9w7eKx23om2tZz/VM2Pf+z2WAbGX1yDQQOJ6iGeJw= +cosmossdk.io/math v1.0.0/go.mod h1:Ygz4wBHrgc7g0N+8+MrnTfS9LLn9aaTGa9hKopuym5k= +cosmossdk.io/simapp v0.0.0-20230224204036-a6adb0821462 h1:g8muUHnXL8vhld2Sjilyhb1UQObc+x9GVuDK43TYZns= +cosmossdk.io/simapp v0.0.0-20230224204036-a6adb0821462/go.mod h1:4Dd3NLoLYoN90kZ0uyHoTHzVVk9+J0v4HhZRBNTAq2c= +cosmossdk.io/tools/rosetta v0.2.1 h1:ddOMatOH+pbxWbrGJKRAawdBkPYLfKXutK9IETnjYxw= +cosmossdk.io/tools/rosetta v0.2.1/go.mod h1:Pqdc1FdvkNV3LcNIkYWt2RQY6IP1ge6YWZk8MhhO9Hw= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -filippo.io/edwards25519 v1.0.0-rc.1 h1:m0VOOB23frXZvAOK44usCgLWvtsxIoMCTBGJZlpmGfU= filippo.io/edwards25519 v1.0.0-rc.1/go.mod h1:N1IkdkCkiLB6tki+MYJoSx2JTY9NUlxZE7eHn5EwJns= +filippo.io/edwards25519 v1.0.0 h1:0wAIcmJUqRdI8IJ/3eGi5/HwXZWPujYXXlkrQogz0Ek= +filippo.io/edwards25519 v1.0.0/go.mod h1:N1IkdkCkiLB6tki+MYJoSx2JTY9NUlxZE7eHn5EwJns= git.sr.ht/~sircmpwn/getopt v0.0.0-20191230200459-23622cc906b3/go.mod h1:wMEGFFFNuPos7vHmWXfszqImLppbc0wEhh6JBfJIUgw= git.sr.ht/~sircmpwn/go-bare v0.0.0-20210406120253-ab86bc2846d9/go.mod h1:BVJwbDfVjCjoFiKrhkei6NdGcZYpkDkdyCdg1ukytRA= github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 h1:/vQbFIOMbk2FiG/kXiLl8BRyzTWDw7gX/Hz7Dd5eDMs= @@ -103,13 +256,12 @@ github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrU github.com/VictoriaMetrics/fastcache v1.6.0/go.mod h1:0qHz5QP0GMX4pfmMA/zt5RgfNuXJrTP0zS7DqpHGGTw= github.com/VividCortex/gohistogram v1.0.0 h1:6+hBz+qvs0JOrrNhhmR7lFxo5sINxBCGXrdtl/UvroE= github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g= -github.com/Workiva/go-datastructures v1.0.53 h1:J6Y/52yX10Xc5JjXmGtWoSSxs3mZnGSaq37xZZh7Yig= -github.com/Workiva/go-datastructures v1.0.53/go.mod h1:1yZL+zfsztete+ePzZz/Zb1/t5BnDuE2Ya2MMGhzP6A= github.com/Zilliqa/gozilliqa-sdk v1.2.1-0.20201201074141-dd0ecada1be6/go.mod h1:eSYp2T6f0apnuW8TzhV3f6Aff2SE8Dwio++U4ha4yEM= github.com/adlio/schema v1.3.3 h1:oBJn8I02PyTB466pZO1UZEn1TV5XLlifBSyMrmHl/1I= github.com/aead/siphash v1.0.1/go.mod h1:Nywa3cDsYNNK3gaciGTWPwHt0wlpNV15vwmswBAUSII= github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5/go.mod h1:SkGFH1ia65gfNATL8TAiHDNxPzPdmEL5uirI2Uyuz6c= github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= +github.com/alecthomas/participle/v2 v2.0.0-alpha7 h1:cK4vjj0VSgb3lN1nuKA5F7dw+1s1pWBe5bx7nNCnN+c= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= @@ -137,10 +289,10 @@ github.com/ashanbrown/forbidigo v1.3.0/go.mod h1:vVW7PEdqEFqapJe95xHkTfB1+XvZXBF github.com/ashanbrown/makezero v1.1.1 h1:iCQ87C0V0vSyO+M9E/FZYbu65auqH0lnsOkf5FcB28s= github.com/ashanbrown/makezero v1.1.1/go.mod h1:i1bJLCRSCHOcOa9Y6MyF2FTfMZMFdHvxKHxgO5Z1axI= github.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQwij/eHl5CU= -github.com/aws/aws-sdk-go v1.15.78/go.mod h1:E3/ieXAlvM0XWO57iftYVDLLvQ824smPP3ATZkfNZeM= github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= -github.com/aws/aws-sdk-go v1.40.45 h1:QN1nsY27ssD/JmW4s83qmSb+uL6DG4GmCDzjmJB4xUI= -github.com/aws/aws-sdk-go v1.40.45/go.mod h1:585smgzpB/KqRA+K3y/NL/oYRqQvpNJYvLm+LY1U59Q= +github.com/aws/aws-sdk-go v1.44.122/go.mod h1:y4AeaBuwd2Lk+GepC1E9v0qOiTws0MIWAX4oIKwKHZo= +github.com/aws/aws-sdk-go v1.44.244 h1:QzBWLD5HjZHdRZyTMTOWtD9Pobzf1n8/CeTJB4giXi0= +github.com/aws/aws-sdk-go v1.44.244/go.mod h1:aVsgQcEevwlmQ7qHE9I3h+dtQgpqhFB+i8Phjh7fkwI= github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g= github.com/aws/aws-sdk-go-v2 v1.2.0/go.mod h1:zEQs02YRBw1DjK0PoJv3ygDYOFTre1ejlJWl8FwAuQo= github.com/aws/aws-sdk-go-v2/config v1.1.1/go.mod h1:0XsVy9lBI/BCXm+2Tuvt39YmdHwS5unDQmxZOYe8F5Y= @@ -160,8 +312,9 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d h1:xDfNPAt8lFiC1UJrqV3uuy861HCTo708pDMbjHHdCas= github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d/go.mod h1:6QX/PXZ00z/TKoufEY6K/a0k6AhaJrQKdFe6OfVXsa4= -github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY= github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= +github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 h1:41iFGWnSlI2gVpmOtVTJZNodLdLQLn/KsJqFvXwnd/s= +github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/bkielbasa/cyclop v1.2.0 h1:7Jmnh0yL2DjKfw28p86YTd/B4lRGcNuu12sKE35sM7A= github.com/bkielbasa/cyclop v1.2.0/go.mod h1:qOI0yy6A7dYC4Zgsa72Ppm9kONl0RoIlPbzot9mhmeI= github.com/blizzy78/varnamelen v0.8.0 h1:oqSblyuQvFsW1hbBHh1zfwrKe3kcSj0rnXkKzsQ089M= @@ -181,6 +334,8 @@ github.com/btcsuite/btcd v0.22.1 h1:CnwP9LM/M9xuRrGSCGeMVs9iv09uMqwsVX7EeIpgV2c= github.com/btcsuite/btcd v0.22.1/go.mod h1:wqgTSL29+50LRkmOVknEdmt8ZojIzhuWvgu/iptuN7Y= github.com/btcsuite/btcd/btcec/v2 v2.1.2/go.mod h1:ctjw4H1kknNJmRN4iP1R7bTQ+v3GJkZBd6mui8ZsAZE= github.com/btcsuite/btcd/btcec/v2 v2.3.2 h1:5n0X6hX0Zk+6omWcihdYvdAlGf2DfasC0GMf7DClJ3U= +github.com/btcsuite/btcd/btcec/v2 v2.3.2/go.mod h1:zYzJ8etWJQIv1Ogk7OzpWjowwOdXY1W/17j2MW85J04= +github.com/btcsuite/btcd/btcutil v1.1.2 h1:XLMbX8JQEiwMcYft2EGi8zPUkoa0abKIU6/BJSRsjzQ= github.com/btcsuite/btcd/chaincfg/chainhash v1.0.0/go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc= github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 h1:q0rUy8C/TYNBQS1+CGKw68tLOFYSNEs0TFnxxnS9+4U= github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1/go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc= @@ -188,7 +343,6 @@ github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f/go.mod h1:TdznJufo github.com/btcsuite/btcutil v0.0.0-20190207003914-4c204d697803/go.mod h1:+5NJ2+qvTyV9exUAL/rxXi3DcLg2Ts+ymUAY5y4NvMg= github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d/go.mod h1:+5NJ2+qvTyV9exUAL/rxXi3DcLg2Ts+ymUAY5y4NvMg= github.com/btcsuite/btcutil v1.0.2/go.mod h1:j9HUFwoQRsZL3V4n+qG+CUnEGHOarIxfC3Le2Yhbcts= -github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce h1:YtWJF7RHm2pYCvA5t0RPmAaLUhREsKuKd+SLhxFbFeQ= github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce/go.mod h1:0DVlHczLPewLcPGEIeUEzfOJhqGPQ0mJJRDBtD307+o= github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd/go.mod h1:HHNXQzUsZCxOoE+CPiyCTO6x34Zs86zZUiwtpXoGdtg= github.com/btcsuite/goleveldb v0.0.0-20160330041536-7834afc9e8cd/go.mod h1:F+uVaaLLH7j4eDXPRvw78tMflu7Ie2bzYOH4Y8rRKBY= @@ -200,6 +354,8 @@ github.com/btcsuite/winsvc v1.0.0/go.mod h1:jsenWakMcC0zFBFurPLEAyrnc/teJEM1O46f github.com/butuzov/ireturn v0.1.1 h1:QvrO2QF2+/Cx1WA/vETCIYBKtRjc30vesdoPUNo1EbY= github.com/butuzov/ireturn v0.1.1/go.mod h1:Wh6Zl3IMtTpaIKbmwzqi6olnM9ptYQxxVacMsOEFPoc= github.com/bwesterb/go-ristretto v1.2.0/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0= +github.com/bytedance/sonic v1.5.0/go.mod h1:ED5hyg4y6t3/9Ku1R6dU/4KyJ48DZ4jPhfY1O2AihPM= +github.com/bytedance/sonic v1.8.7 h1:d3sry5vGgVq/OpgozRUNP6xBsSo0mtNdwliApw+SAMQ= github.com/c-bata/go-prompt v0.2.2/go.mod h1:VzqtzE2ksDBcdln8G7mk2RX9QyGjH+OVqOCSiVIqS34= github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ= github.com/cenkalti/backoff v2.2.1+incompatible h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4= @@ -212,19 +368,26 @@ github.com/cespare/cp v0.1.0/go.mod h1:SOGHArjBr4JWaSDEVpWpo/hNg6RoKrls6Oh40hiwW github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.1.2 h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE= github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= +github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/charithe/durationcheck v0.0.9 h1:mPP4ucLrf/rKZiIG/a9IPXHGlh8p4CzgpyTy6EEutYk= github.com/charithe/durationcheck v0.0.9/go.mod h1:SSbRIBVfMjCi/kEB6K65XEA83D6prSM8ap1UCpNKtgg= github.com/chavacava/garif v0.0.0-20220630083739-93517212f375 h1:E7LT642ysztPWE0dfz43cWOvMiF42DyTRC+eZIaO4yI= github.com/chavacava/garif v0.0.0-20220630083739-93517212f375/go.mod h1:4m1Rv7xfuwWPNKXlThldNuJvutYM6J95wNuuVmn55To= github.com/cheggaaa/pb v1.0.27/go.mod h1:pQciLPpbU0oxA0h+VJYYLxO+XeDQb5pZijXscXHm81s= -github.com/chzyer/logex v1.1.10 h1:Swpa1K6QvQznwJRcfTfQJmTE72DqScAa40E+fbHEXEE= +github.com/chenzhuoyu/base64x v0.0.0-20211019084208-fb5309c8db06/go.mod h1:DH46F32mSOjUmXrMHnKwZdA8wcEefY7UVqBKYGjpdQY= +github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 h1:qSGYFH7+jGhDF8vLC+iwCD4WpbV1EBDSzWkJODFLams= +github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311/go.mod h1:b583jCggY9gE99b6G5LEC39OIiVsWj+R97kbl5odCEk= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= -github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e h1:fY5BOSpyZCqRo5OhCuC+XN+r/bBCmeuuJtjz+bCNIf8= +github.com/chzyer/logex v1.2.1 h1:XHDu3E6q+gdHgsdTPH6ImJMIp436vR6MPtH8gP05QzM= +github.com/chzyer/logex v1.2.1/go.mod h1:JLbx6lG2kDbNRFnfkgvh4eRJRPX1QCoOIWomwysCBrQ= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= -github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 h1:q763qf9huN11kDQavWsoZXJNW3xEE4JJyHa5Q25/sd8= +github.com/chzyer/readline v1.5.1 h1:upd/6fQk4src78LMRzh5vItIt361/o4uq553V8B5sGI= +github.com/chzyer/readline v1.5.1/go.mod h1:Eh+b79XXUwfKfcPLepksvw2tcLE/Ct21YObkaSkeBlk= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= +github.com/chzyer/test v1.0.0 h1:p3BQDXSxOhOG0P9z6/hGnII4LGiEPOYBhs8asl/fC04= +github.com/chzyer/test v1.0.0/go.mod h1:2JlltgoNkt4TW/z9V/IzDdFaMTM2JPIi26O1pF38GC8= github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= github.com/clbanning/x2j v0.0.0-20191024224557-825249438eec/go.mod h1:jMjuTZXRI4dUb/I5gc9Hdhagfvm9+RyrPryS/auMzxE= @@ -233,13 +396,26 @@ github.com/cloudflare/cloudflare-go v0.14.0/go.mod h1:EnwdgGMaFOruiPZRFSgn+TsQ3h github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= +github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cockroachdb/apd/v2 v2.0.2 h1:weh8u7Cneje73dDh+2tEVLUvyBc89iwepWCD8b8034E= github.com/cockroachdb/apd/v2 v2.0.2/go.mod h1:DDxRlzC2lo3/vSlmSoS7JkqbbrARPuFOGr0B9pvN3Gw= +github.com/cockroachdb/apd/v3 v3.1.0 h1:MK3Ow7LH0W8zkd5GMKA1PvS9qG3bWFI95WaVNfyZJ/w= github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8= github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI= github.com/coinbase/kryptology v1.8.0/go.mod h1:RYXOAPdzOGUe3qlSFkMGn58i3xUA8hmxYHksuq+8ciI= github.com/coinbase/rosetta-sdk-go v0.7.9 h1:lqllBjMnazTjIqYrOGv8h8jxjg9+hJazIGZr9ZvoCcA= github.com/coinbase/rosetta-sdk-go v0.7.9/go.mod h1:0/knutI7XGVqXmmH4OQD8OckFrbQ8yMsUZTG7FXCR2M= +github.com/cometbft/cometbft v0.37.0 h1:M005vBaSaugvYYmNZwJOopynQSjwLoDTwflnQ/I/eYk= +github.com/cometbft/cometbft v0.37.0/go.mod h1:Y2MMMN//O5K4YKd8ze4r9jmk4Y7h0ajqILXbH5JQFVs= +github.com/cometbft/cometbft-db v0.7.0 h1:uBjbrBx4QzU0zOEnU8KxoDl18dMNgDh+zZRUE0ucsbo= +github.com/cometbft/cometbft-db v0.7.0/go.mod h1:yiKJIm2WKrt6x8Cyxtq9YTEcIMPcEe4XPxhgX59Fzf0= +github.com/confio/ics23/go v0.9.0 h1:cWs+wdbS2KRPZezoaaj+qBleXgUk5WOQFMP3CQFGTr4= +github.com/confio/ics23/go v0.9.0/go.mod h1:4LPZ2NYqnYIVRklaozjNR1FScgDJ2s5Xrp+e/mYVRak= github.com/consensys/bavard v0.1.8-0.20210406032232-f3452dc9b572/go.mod h1:Bpd0/3mZuaj6Sj+PqrmIquiOKy397AKGThQPaGzNXAQ= github.com/consensys/bavard v0.1.8-0.20210915155054-088da2f7f54a/go.mod h1:9ItSMtA/dXMAiL7BG6bqW2m3NdSEObYWoH223nGHukI= github.com/consensys/gnark-crypto v0.4.1-0.20210426202927-39ac3d4b3f1f/go.mod h1:815PAHg3wvysy0SyIqanF8gZ0Y1wjk/hrDHD/iT88+Q= @@ -249,35 +425,41 @@ github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/go-systemd/v22 v22.3.3-0.20220203105225-a9a7ef127534/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/cosmos/btcutil v1.0.5 h1:t+ZFcX77LpKtDBhjucvnOH8C2l2ioGsBNEQ3jef8xFk= github.com/cosmos/btcutil v1.0.5/go.mod h1:IyB7iuqZMJlthe2tkIFL33xPyzbFYP0XVdS8P5lUPis= -github.com/cosmos/cosmos-proto v1.0.0-beta.1 h1:iDL5qh++NoXxG8hSy93FdYJut4XfgbShIocllGaXx/0= -github.com/cosmos/cosmos-proto v1.0.0-beta.1/go.mod h1:8k2GNZghi5sDRFw/scPL8gMSowT1vDA+5ouxL8GjaUE= -github.com/cosmos/cosmos-sdk v0.46.7 h1:dkGy9y2ewgqvawrUOuWb2oz3MdotVduokyreXC4bS0s= -github.com/cosmos/cosmos-sdk v0.46.7/go.mod h1:fqKqz39U5IlEFb4nbQ72951myztsDzFKKDtffYJ63nk= -github.com/cosmos/cosmos-sdk/ics23/go v0.8.0 h1:iKclrn3YEOwk4jQHT2ulgzuXyxmzmPczUalMwW4XH9k= -github.com/cosmos/cosmos-sdk/ics23/go v0.8.0/go.mod h1:2a4dBq88TUoqoWAU5eu0lGvpFP3wWDPgdHPargtyw30= +github.com/cosmos/cosmos-proto v1.0.0-beta.2 h1:X3OKvWgK9Gsejo0F1qs5l8Qn6xJV/AzgIWR2wZ8Nua8= +github.com/cosmos/cosmos-proto v1.0.0-beta.2/go.mod h1:+XRCLJ14pr5HFEHIUcn51IKXD1Fy3rkEQqt4WqmN4V0= +github.com/cosmos/cosmos-sdk v0.47.1 h1:HnaCYtaAMWZp1SdlwwE1mPJ8kFlZ/TuEJ/ciNXH6Uno= +github.com/cosmos/cosmos-sdk v0.47.1/go.mod h1:14tO5KQaTrl2q3OxBnDRfue7TRN9zkXS0cLutrSqkOo= github.com/cosmos/go-bip39 v0.0.0-20180819234021-555e2067c45d/go.mod h1:tSxLoYXyBmiFeKpvmq4dzayMdCjCnu8uqmCysIGBT2Y= github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY= github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw= -github.com/cosmos/gorocksdb v1.2.0 h1:d0l3jJG8M4hBouIZq0mDUHZ+zjOx044J3nGRskwTb4Y= -github.com/cosmos/gorocksdb v1.2.0/go.mod h1:aaKvKItm514hKfNJpUJXnnOWeBnk2GL4+Qw9NHizILw= -github.com/cosmos/iavl v0.19.4 h1:t82sN+Y0WeqxDLJRSpNd8YFX5URIrT+p8n6oJbJ2Dok= -github.com/cosmos/iavl v0.19.4/go.mod h1:X9PKD3J0iFxdmgNLa7b2LYWdsGd90ToV5cAONApkEPw= -github.com/cosmos/ibc-go/v6 v6.0.0 h1:76tsrdxJF32rM9toFFRlBdxq/Twpk9Ph4QSbArtLtVY= -github.com/cosmos/ibc-go/v6 v6.0.0/go.mod h1:Tt3NdjCHAXrEe1mbd8rgLndA1jNykhMndX6rKs9QMIw= +github.com/cosmos/gogogateway v1.2.0 h1:Ae/OivNhp8DqBi/sh2A8a1D0y638GpL3tkmLQAiKxTE= +github.com/cosmos/gogogateway v1.2.0/go.mod h1:iQpLkGWxYcnCdz5iAdLcRBSw3h7NXeOkZ4GUkT+tbFI= +github.com/cosmos/gogoproto v1.4.2/go.mod h1:cLxOsn1ljAHSV527CHOtaIP91kK6cCrZETRBrkzItWU= +github.com/cosmos/gogoproto v1.4.7 h1:RzYKVnsEC7UIkDnhTIkqEB7LnIQbsySvmNEqPCiPevk= +github.com/cosmos/gogoproto v1.4.7/go.mod h1:gxGePp9qedovvl/StQL2BIJ6qlIBn1+9YxR0IulGBKA= +github.com/cosmos/iavl v0.20.0 h1:fTVznVlepH0KK8NyKq8w+U7c2L6jofa27aFX6YGlm38= +github.com/cosmos/iavl v0.20.0/go.mod h1:WO7FyvaZJoH65+HFOsDir7xU9FWk2w9cHXNW1XHcl7A= +github.com/cosmos/ibc-go/v7 v7.0.0 h1:j4kyywlG0hhDmT9FmSaR5iCIka7Pz7kJTxGWY1nlV9Q= +github.com/cosmos/ibc-go/v7 v7.0.0/go.mod h1:BFh8nKWjr5zeR2OZfhkzdgDzj1+KjRn3aJLpwapStj8= +github.com/cosmos/ics23/go v0.9.1-0.20221207100636-b1abd8678aab h1:I9ialKTQo7248V827Bba4OuKPmk+FPzmTVHsLXaIJWw= +github.com/cosmos/ics23/go v0.9.1-0.20221207100636-b1abd8678aab/go.mod h1:2CwqasX5dSD7Hbp/9b6lhK6BwoBDCBldx7gPKRukR60= github.com/cosmos/ledger-cosmos-go v0.12.1 h1:sMBxza5p/rNK/06nBSNmsI/WDqI0pVJFVNihy1Y984w= github.com/cosmos/ledger-cosmos-go v0.12.1/go.mod h1:dhO6kj+Y+AHIOgAe4L9HL/6NDdyyth4q238I9yFpD2g= +github.com/cosmos/rosetta-sdk-go v0.10.0 h1:E5RhTruuoA7KTIXUcMicL76cffyeoyvNybzUGSKFTcM= +github.com/cosmos/rosetta-sdk-go v0.10.0/go.mod h1:SImAZkb96YbwvoRkzSMQB6noNJXFgWl/ENIznEoYQI4= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= -github.com/creachadair/taskgroup v0.3.2 h1:zlfutDS+5XG40AOxcHDSThxKzns8Tnr9jnr6VqkYlkM= -github.com/creachadair/taskgroup v0.3.2/go.mod h1:wieWwecHVzsidg2CsUnFinW1faVN4+kq+TDlRJQ0Wbk= +github.com/creachadair/taskgroup v0.4.2 h1:jsBLdAJE42asreGss2xZGZ8fJra7WtwnHWeJFxv2Li8= +github.com/creachadair/taskgroup v0.4.2/go.mod h1:qiXUOSrbwAY3u0JPGTzObbE3yf9hcXHDKBZ2ZjpCbgM= github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/cristalhq/acmd v0.8.1/go.mod h1:LG5oa43pE/BbxtfMoImHCQN++0Su7dzipdgBjMCBVDQ= +github.com/cucumber/common/gherkin/go/v22 v22.0.0 h1:4K8NqptbvdOrjL9DEea6HFjSpbdT9+Q5kgLpmmsHYl0= +github.com/cucumber/common/messages/go/v17 v17.1.1 h1:RNqopvIFyLWnKv0LfATh34SWBhXeoFTJnSrgm9cT/Ts= github.com/curioswitch/go-reassign v0.2.0 h1:G9UZyOcpk/d7Gd6mqYgd8XYWFMw/znxwGDUstnC9DIo= github.com/curioswitch/go-reassign v0.2.0/go.mod h1:x6OpXuWvgfQaMGks2BZybTngWjT84hqJfKoO8Tt/Roc= github.com/cyberdelia/templates v0.0.0-20141128023046-ca7fffd4298c/go.mod h1:GyV+0YP4qX0UQ7r2MoYZ+AvYDp12OF5yg4q8rGnyNh4= @@ -291,9 +473,11 @@ github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/deckarep/golang-set v1.8.0/go.mod h1:5nI87KwE7wgsBU1F4GKAw2Qod7p5kyS383rP6+o6qqo= +github.com/decred/dcrd/crypto/blake256 v1.0.0 h1:/8DMNYp9SGi5f0w7uCm6d6M4OU2rGFK09Y2A4Xv7EE0= github.com/decred/dcrd/crypto/blake256 v1.0.0/go.mod h1:sQl2p6Y26YV+ZOcSTP6thNdn47hh8kt6rqSlvmrXFAc= -github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 h1:YLtO71vCjJRCBcrPMtQ9nqBsqpA1m5sE92cU+pd5Mcc= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1/go.mod h1:hyedUtir6IdtD/7lIxGeCxkaw7y45JueMRL4DIyJDKs= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 h1:HbphB4TFFXpv7MNrT52FGrrgVXF1owhMVTHFZIlnvd4= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0/go.mod h1:DZGJHZMqrU4JJqFAWUS2UO1+lbSKsdiOoYi9Zzey7Fc= github.com/decred/dcrd/lru v1.0.0/go.mod h1:mxKOwFd7lFjN2GZYsiz/ecgqR6kkYAl+0pz0tEMk218= github.com/deepmap/oapi-codegen v1.6.0/go.mod h1:ryDa9AgbELGeB+YEXE1dR53yAjHwFvE9iAUlWl9Al3M= github.com/deepmap/oapi-codegen v1.8.2/go.mod h1:YLgSKSDv/bZQB7N4ws6luhozi3cEdRktEqrX88CvjIw= @@ -305,8 +489,8 @@ github.com/dgraph-io/badger/v2 v2.2007.4 h1:TRWBQg8UrlUhaFdco01nO2uXwzKS7zd+HVdw github.com/dgraph-io/badger/v2 v2.2007.4/go.mod h1:vSw/ax2qojzbN6eXHIx6KPKtCSHJN/Uz0X0VPruTIhk= github.com/dgraph-io/ristretto v0.0.3-0.20200630154024-f66de99634de/go.mod h1:KPxhHT9ZxKefz+PCeOGsrHpl1qZ7i70dGTu2u+Ahh6E= github.com/dgraph-io/ristretto v0.0.3/go.mod h1:KPxhHT9ZxKefz+PCeOGsrHpl1qZ7i70dGTu2u+Ahh6E= -github.com/dgraph-io/ristretto v0.1.0 h1:Jv3CGQHp9OjuMBSne1485aDpUkTKEcUqF+jm/LuerPI= -github.com/dgraph-io/ristretto v0.1.0/go.mod h1:fux0lOrBhrVCJd3lcTHsIJhq1T2rokOu6v9Vcb3Q9ug= +github.com/dgraph-io/ristretto v0.1.1 h1:6CWw5tJNgpegArSHpNHJKldNeq03FQCwYvfMVWajOK8= +github.com/dgraph-io/ristretto v0.1.1/go.mod h1:S1GPSBCYCIhmVNfcth17y2zZtQT6wzkzgwUve0VDWWA= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= github.com/dgryski/go-bitstream v0.0.0-20180413035011-3522498ce2c8/go.mod h1:VMaSuZ+SZcx/wljOQKvp5srsbCiKDEb6K2wC4+PiBmQ= github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= @@ -323,8 +507,8 @@ github.com/dop251/goja v0.0.0-20211011172007-d99e4b8cbf48/go.mod h1:R9ET47fwRVRP github.com/dop251/goja_nodejs v0.0.0-20210225215109-d91c329300e7/go.mod h1:hn7BA7c8pLvoGndExHudxTDKZ84Pyvv+90pbBjbTz0Y= github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= -github.com/dustin/go-humanize v1.0.1-0.20200219035652-afde56e7acac h1:opbrjaN/L8gg6Xh5D04Tem+8xVcz6ajZlGCs49mQgyg= -github.com/dustin/go-humanize v1.0.1-0.20200219035652-afde56e7acac/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= +github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY= +github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= github.com/dvsekhvalnov/jose2go v1.5.0 h1:3j8ya4Z4kMCwT5nXIKFSV84YS+HdqSSO0VsTQxaLAeM= github.com/dvsekhvalnov/jose2go v1.5.0/go.mod h1:QsHjhyTlD/lAVqn/NSbVZmSCGeDehTB/mPZadG+mhXU= github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= @@ -338,6 +522,10 @@ github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.m github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= +github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= +github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/esimonov/ifshort v1.0.4 h1:6SID4yGWfRae/M7hkVDVVyppy8q/v9OuxNdmjLQStBA= github.com/esimonov/ifshort v1.0.4/go.mod h1:Pe8zjlRrJ80+q2CxHLfEOfTwxCZ4O+MuhcHcfgNWTk0= @@ -352,8 +540,9 @@ github.com/fatih/color v1.13.0 h1:8LOYc1KYPPmyKMuN8QV2DNRWNbLo6LZ0iLs8+mlH53w= github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= github.com/fatih/structtag v1.2.0 h1:/OdNE99OxoI/PqaW/SuSK9uxxT3f/tcSZgon/ssNSx4= github.com/fatih/structtag v1.2.0/go.mod h1:mBJUNpUnHmRKrKlQQlmCrh5PuhftFbNv8Ys4/aAZl94= -github.com/felixge/httpsnoop v1.0.1 h1:lvB5Jl89CsZtGIWuTcDM1E/vkVs49/Ml7JJe07l8SPQ= github.com/felixge/httpsnoop v1.0.1/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= +github.com/felixge/httpsnoop v1.0.2 h1:+nS9g82KMXccJ/wp0zyRW9ZBHFETmMGtkk+2CTTrW4o= +github.com/felixge/httpsnoop v1.0.2/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/firefart/nonamedreturns v1.0.4 h1:abzI1p7mAEPYuR4A+VLKn4eNDOycjYo2phmY9sfv40Y= github.com/firefart/nonamedreturns v1.0.4/go.mod h1:TDhe/tjI1BXo48CmYbUduTV7BdIga8MAO/xbKdcVsGI= github.com/fjl/memsize v0.0.0-20190710130421-bcb5799ab5e5/go.mod h1:VvhXpOYNQvB+uIk2RvXzuaQtkQJzzIx6lSBe1xv7hi0= @@ -361,7 +550,7 @@ github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/ github.com/fortytw2/leaktest v1.3.0 h1:u8491cBMTQ8ft8aeV+adlcytMZylmA5nnwwkRZjI8vw= github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db/go.mod h1:7dvUGVsVBjqR7JHJk0brhHOZYGmfBYOrK0ZhYMEtBr4= github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2rbfLwlschooIH4+wKKDR4Pdxhh+TRoA20= -github.com/frankban/quicktest v1.14.3 h1:FJKSZTDHjyhriyC81FLQ0LY93eSai0ZyR/ZIkd3ZUKE= +github.com/frankban/quicktest v1.14.4 h1:g2rn0vABPOOXmZUj+vbmUp0lPoXEMuhTpIluN0XL9UY= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY= @@ -371,12 +560,11 @@ github.com/fzipp/gocyclo v0.6.0/go.mod h1:rXPyn8fnlpa0R2csP/31uerbiVBugk5whMdlya github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww= github.com/getkin/kin-openapi v0.53.0/go.mod h1:7Yn5whZr5kJi6t+kShccXS8ae1APpYTW6yheSwk8Yi4= github.com/getkin/kin-openapi v0.61.0/go.mod h1:7Yn5whZr5kJi6t+kShccXS8ae1APpYTW6yheSwk8Yi4= -github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= github.com/gin-gonic/gin v1.6.3/go.mod h1:75u5sXoLsGZoRN5Sgbi1eraJ4GU3++wFwWzhwvtwp4M= -github.com/gin-gonic/gin v1.7.0 h1:jGB9xAJQ12AIGNB4HguylppmDK1Am9ppF7XnGXXJuoU= +github.com/gin-gonic/gin v1.9.0 h1:OjyFBKICoexlu99ctXNR2gg+c5pKrKMuyjgARg9qeY8= github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd/go.mod h1:/20jfyN9Y5QPEAprSgKAUr+glWDY39ZiUEAYOEv5dsE= github.com/glycerine/goconvey v0.0.0-20190410193231-58a59202ab31/go.mod h1:Ogl1Tioa0aV7gstGFO7KhffUsb9M4ydbEbbxpcEDc24= github.com/go-chi/chi/v5 v5.0.0/go.mod h1:BBug9lr0cqtdAhsu6R4AAdvufI0/XBzAQSsUqJpoZOs= @@ -391,14 +579,13 @@ github.com/go-kit/kit v0.10.0/go.mod h1:xUsJbQ/Fp4kEt7AFgCuvyX4a71u8h9jB8tj/ORgO github.com/go-kit/kit v0.12.0 h1:e4o3o3IsBfAKQh5Qbbiqyfu97Ku7jrO/JbohvztANh4= github.com/go-kit/kit v0.12.0/go.mod h1:lHd+EkCZPIwYItmGDDRdhinkzX2A1sj+M9biaEaizzs= github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= -github.com/go-kit/log v0.2.0/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBjv0= github.com/go-kit/log v0.2.1 h1:MRVx0/zhvdseW+Gza6N9rVzU/IVzaeE1SFI4raAhmBU= github.com/go-kit/log v0.2.1/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBjv0= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= -github.com/go-logfmt/logfmt v0.5.1 h1:otpy5pqBCBZ1ng9RQ0dPu4PN7ba75Y/aA+UpowDyNVA= -github.com/go-logfmt/logfmt v0.5.1/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs= +github.com/go-logfmt/logfmt v0.6.0 h1:wGYYu3uicYdqXVgoYbvnkrPVXkuLM1p1ifugDMEdRi4= +github.com/go-logfmt/logfmt v0.6.0/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs= github.com/go-ole/go-ole v1.2.1/go.mod h1:7FAglXiTm7HKlQRDeOQ6ZNUHidzCWXuZWq/1dTyBNF8= github.com/go-openapi/jsonpointer v0.19.5/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= @@ -408,7 +595,7 @@ github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTM github.com/go-playground/universal-translator v0.17.0 h1:icxd5fm+REJzpZx7ZfpaD876Lmtgy7VtROAbHHXk8no= github.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+Scu5vgOQjsIJAF8j9muTVoKLVtA= github.com/go-playground/validator/v10 v10.2.0/go.mod h1:uOYAAleCW8F/7oMFd6aG0GOhaH6EGOAJShg8Id5JGkI= -github.com/go-playground/validator/v10 v10.4.1 h1:pH2c5ADXtd66mxoE0Zm9SUhxE20r7aM3F26W0hOn+GE= +github.com/go-playground/validator/v10 v10.12.0 h1:E4gtWgxWxp8YSxExrQFv5BpCahla0PVF2oTTEYaWQGI= github.com/go-sourcemap/sourcemap v2.1.3+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= @@ -441,21 +628,29 @@ github.com/gobwas/pool v0.2.0 h1:QEmUOlnSjWtnpRGHF3SauEiOsy82Cup83Vf2LcMlnc8= github.com/gobwas/pool v0.2.0/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw= github.com/gobwas/ws v1.0.2 h1:CoAavW/wd/kulfZmSIBt6p24n4j7tHgNVCjsfHVNUbo= github.com/gobwas/ws v1.0.2/go.mod h1:szmBTxLgaFppYjEmNtny/v3w89xOydFnnZMcgRRu/EM= +github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU= github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 h1:ZpnhV/YsD2/4cESfV5+Hoeu/iUR3ruzNvZ+yQfO03a0= github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2/go.mod h1:bBOAhwG1umN6/6ZUMtDFBMQR8jRg9O75tm9K00oMsK4= -github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= github.com/gofrs/flock v0.8.1 h1:+gYjHKf32LDeiEEFhQaotPbLuUXjY5ZqxKgXy7n59aw= github.com/gofrs/flock v0.8.1/go.mod h1:F1TvTiK9OcQqauNUHlbJvyl9Qa1QvF/gOUDKA14jxHU= github.com/gofrs/uuid v3.3.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= -github.com/gogo/gateway v1.1.0 h1:u0SuhL9+Il+UbjM9VIE3ntfRujKbvVpFvNB4HbjeVQ0= -github.com/gogo/gateway v1.1.0/go.mod h1:S7rR8FRQyG3QFESeSv4l2WnsyzlCLG0CzBbUUo/mbic= +github.com/gofrs/uuid v4.3.0+incompatible h1:CaSVZxm5B+7o45rtab4jC2G37WGYX1zQfuU2i6DSvnc= github.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= +github.com/gogo/googleapis v1.4.1-0.20201022092350-68b0159b7869/go.mod h1:5YRNX2z1oM5gXdAkurHa942MDgEJyk02w4OecKY87+c= +github.com/gogo/googleapis v1.4.1 h1:1Yx4Myt7BxzvUr5ldGSbwYiZG6t9wGBZ+8/fX3Wvtq0= +github.com/gogo/googleapis v1.4.1/go.mod h1:2lpHqI5OcWCtVElxXnPt+s8oJvMpySlOyM6xDCrzib4= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= +github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= +github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= +github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= github.com/golang-jwt/jwt/v4 v4.3.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= github.com/golang/geo v0.0.0-20190916061304-5b978397cfec/go.mod h1:QZ0nwyI2jOfgRAoBvP+ab5aRr7c9x7lhGEJrKvBwjWI= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/glog v1.0.0 h1:nfP3RFugxnNRyKgeWd4oI1nYvXpxrx8ck8ZrcizshdQ= -github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= +github.com/golang/glog v1.1.0 h1:/d3pCKDPWNnvIWe0vVUpNP32qc8U3PDVxySP/y360qE= +github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ= github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -469,7 +664,9 @@ github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= +github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= github.com/golang/mock v1.6.0 h1:ErTB+efbowRARo13NNdxyJji2egdxLGQhRaY+DUumQc= +github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.0/go.mod h1:Qd/q+1AKNOZr9uGQzbzCmRO6sUih6GTPZv6a1/R87v0= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= @@ -486,8 +683,10 @@ github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QD github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= +github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM= @@ -515,8 +714,8 @@ github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4 h1:zwtduBRr5SSW github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4/go.mod h1:Izgrg8RkN3rCIMLGE9CyYmU9pY2Jer6DgANEnZ/L/cQ= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/btree v1.0.1 h1:gK4Kx5IaGY9CD5sPJ36FHiBJ6ZXl0kilRiiCj+jdYp4= -github.com/google/btree v1.0.1/go.mod h1:xXMiIv4Fb/0kKde4SpL7qlzvu5cMJDRkFDxJfI9uaxA= +github.com/google/btree v1.1.2 h1:xf4v41cLI2Z6FxbKm+8Bu+m8ifhj15JuZ9sa0jZCMUU= +github.com/google/btree v1.1.2/go.mod h1:qOPhT0dTNdNzV6Z/lhRX0YXUafgPLFUh+gZMl761Gm4= github.com/google/flatbuffers v1.11.0/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= @@ -529,6 +728,8 @@ github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= @@ -540,7 +741,8 @@ github.com/google/martian v2.1.0+incompatible h1:/CP5g8u/VJHijgedC/Legn3BAbAaWPg github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.2.1 h1:d8MncMlErDFTwQGBK1xhv026j9kqhvw1Qv9IbWT1VLQ= +github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= +github.com/google/martian/v3 v3.3.2 h1:IqNFLAmvJOgVlpdEBiQbDc2EwKW77amAycfTuWKdfvw= github.com/google/orderedcode v0.0.1 h1:UzfcAexk9Vhv8+9pNOgRu41f16lHq725vPwnSeiG/Us= github.com/google/orderedcode v0.0.1/go.mod h1:iVyU4/qPKHY5h/wSd6rZZCDcLJNxiWO6dvsYES2Sb20= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= @@ -553,19 +755,37 @@ github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hf github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/google/s2a-go v0.1.0 h1:3Qm0liEiCErViKERO2Su5wp+9PfMRiuS6XB5FvpKnYQ= +github.com/google/s2a-go v0.1.0/go.mod h1:OJpEgntRZo8ugHpF9hkoLJbS5dSI20XZeXJ9JVywLlM= github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I= github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/googleapis/enterprise-certificate-proxy v0.2.0 h1:y8Yozv7SZtlU//QXbezB6QkpuE6jMD2/gfzk4AftXjs= +github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= +github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= +github.com/googleapis/enterprise-certificate-proxy v0.2.3 h1:yk9/cqRKtT9wXZSsRH9aurXEpJX+U6FLtpYTdC3R06k= +github.com/googleapis/enterprise-certificate-proxy v0.2.3/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/googleapis/gax-go/v2 v2.6.0 h1:SXk3ABtQYDT/OH8jAyvEOQ58mgawq5C4o/4/89qN2ZU= +github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= +github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= +github.com/googleapis/gax-go/v2 v2.2.0/go.mod h1:as02EH8zWkzwUoLbBaFeQ+arQaj/OthfcblKl4IGNaM= +github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99EXz9pXxye9YM= +github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c= +github.com/googleapis/gax-go/v2 v2.5.1/go.mod h1:h6B0KMMFNtI2ddbGJn3T3ZbwkeT6yqEF02fYlzkUCyo= github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= +github.com/googleapis/gax-go/v2 v2.8.0 h1:UBtEZqx1bjXtOQ5BVTkuYghXrr3N4V123VKJK67vJZc= +github.com/googleapis/gax-go/v2 v2.8.0/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= +github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gordonklaus/ineffassign v0.0.0-20210914165742-4cc7213b9bc8 h1:PVRE9d4AQKmbelZ7emNig1+NT27DUmKZn5qXxfio54U= @@ -603,12 +823,9 @@ github.com/grpc-ecosystem/go-grpc-middleware v1.2.2/go.mod h1:EaizFBKfUKtMIF5iaD github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 h1:+9834+KizmvFV7pXQGSXQTsaWhq2GjuNUt0aUU0YBYw= github.com/grpc-ecosystem/go-grpc-middleware v1.3.0/go.mod h1:z0ButlSOZa5vEBq9m2m2hlwIgKw+rp3sdCBRoJY+30Y= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= -github.com/grpc-ecosystem/grpc-gateway v1.8.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.16.0 h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.14.0 h1:t7uX3JBHdVwAi3G7sSSdbsk8NfgA+LnUS88V/2EKaA0= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.14.0/go.mod h1:4OGVnY4qf2+gw+ssiHbW+pq4mo2yko94YxxMmXZ7jCA= github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c h1:6rhixN/i8ZofjG1Y75iExal34USq5p+wiN1tpie8IrU= github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c/go.mod h1:NMPJylDgVpX0MLRlPy15sqSwOFv/U1GZ2m21JhFfek0= github.com/gtank/merlin v0.1.1-0.20191105220539-8318aed1a79f/go.mod h1:T86dnYJhcGOh5BjZFCJWTDeTK7XW8uE+E21Cy/bIQ+s= @@ -626,8 +843,8 @@ github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtng github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= -github.com/hashicorp/go-getter v1.6.1 h1:NASsgP4q6tL94WH6nJxKWj8As2H/2kop/bB1d8JMyRY= -github.com/hashicorp/go-getter v1.6.1/go.mod h1:IZCrswsZPeWv9IkVnLElzRU/gz/QPi6pZHn4tv6vbwA= +github.com/hashicorp/go-getter v1.7.1 h1:SWiSWN/42qdpR0MdhaOc/bLR48PLuP1ZQtYLRlM69uY= +github.com/hashicorp/go-getter v1.7.1/go.mod h1:W7TalhMmbPmsSMdNjD0ZskARur/9GJ17cfHTRtXV744= github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= github.com/hashicorp/go-immutable-radix v1.3.1 h1:DKHmCUm2hRBK510BaiZlwvpD40f8bJFeZnpfm2KLowc= github.com/hashicorp/go-immutable-radix v1.3.1/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= @@ -644,7 +861,6 @@ github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdv github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= github.com/hashicorp/go-uuid v1.0.1 h1:fv1ep09latC32wFoVwnqcnKJGnMSdBanPczbHAYm1BE= github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/go-version v1.1.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/hashicorp/go-version v1.2.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/hashicorp/go-version v1.2.1/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/hashicorp/go-version v1.6.0 h1:feTTfFNnjP967rlCxM/I9g701jU+RN74YKx2mOkIeek= @@ -660,25 +876,30 @@ github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= -github.com/hdevalence/ed25519consensus v0.0.0-20220222234857-c00d1f31bab3 h1:aSVUgRRRtOrZOC1fYmY9gV0e9z/Iu+xNVSASWjsuyGU= -github.com/hdevalence/ed25519consensus v0.0.0-20220222234857-c00d1f31bab3/go.mod h1:5PC6ZNPde8bBqU/ewGZig35+UIZtw9Ytxez8/q5ZyFE= +github.com/hdevalence/ed25519consensus v0.1.0 h1:jtBwzzcHuTmFrQN6xQZn6CQEO/V9f7HsjsjeEZ6auqU= +github.com/hdevalence/ed25519consensus v0.1.0/go.mod h1:w3BHWjwJbFU29IRHL1Iqkw3sus+7FctEyM4RqDxYNzo= github.com/hexops/gotextdiff v1.0.3 h1:gitA9+qJrrTCsiCl7+kh75nPqQt1cx4ZkudSTLoUqJM= github.com/hexops/gotextdiff v1.0.3/go.mod h1:pSWU5MAI3yDq+fZBTazCSJysOMbxWL1BSow5/V2vxeg= github.com/holiman/bloomfilter/v2 v2.0.3/go.mod h1:zpoh+gs7qcpqrHr3dB55AMiJwo0iURXE7ZOP9L9hSkA= github.com/holiman/uint256 v1.2.0/go.mod h1:y4ga/t+u+Xwd7CpDgZESaRcWy0I7XMlTMA25ApIH5Jw= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= +github.com/huandu/go-assert v1.1.5 h1:fjemmA7sSfYHJD7CUqs9qTwwfdNAx7/j2/ZlHXzNB3c= +github.com/huandu/go-assert v1.1.5/go.mod h1:yOLvuqZwmcHIC5rIzrBhT7D3Q9c3GFnd0JrPVhn/06U= +github.com/huandu/skiplist v1.2.0 h1:gox56QD77HzSC0w+Ws3MH3iie755GBJU1OER3h5VsYw= +github.com/huandu/skiplist v1.2.0/go.mod h1:7v3iFjLcSAzO4fN5B8dvebvo/qsfumiLiDXMrPiHF9w= github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg= github.com/huin/goupnp v1.0.3-0.20220313090229-ca81a64b4204/go.mod h1:ZxNlw5WqJj6wSsRK5+YfflQGXYfccj5VgQsMNixHM7Y= github.com/huin/goutil v0.0.0-20170803182201-1ca381bf3150/go.mod h1:PpLOETDnJ0o3iZrZfqZzyLl6l7F3c6L1oWn7OICBi6o= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/ignite/modules v0.0.0-20221215224430-496fd9a7820c h1:D1YVySV3UkklH2rSprBapY3wTGh5mG/aGW6f+uHZu+E= -github.com/ignite/modules v0.0.0-20221215224430-496fd9a7820c/go.mod h1:CYbs3kvo/wr4RZ+ZuuFfGjSvpjMWP62mBlteenOrMSc= +github.com/ignite/modules v0.0.0-20230426163137-432873c36327 h1:V4mFjxxcavoAjZPE0+uq71jGcKPwhY+TyEblnKH17F4= +github.com/ignite/modules v0.0.0-20230426163137-432873c36327/go.mod h1:lxwQ7CC1cmbSvOr6wb2twnrfHGdXp6our1FAYJdz3Cw= github.com/improbable-eng/grpc-web v0.15.0 h1:BN+7z6uNXZ1tQGcNAuaU1YjsLTApzkjt2tzCixLaUPQ= github.com/improbable-eng/grpc-web v0.15.0/go.mod h1:1sy9HKV4Jt9aEs9JSnkWlRJPuPtwNr0l57L4f878wP8= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= -github.com/inconshreveable/mousetrap v1.0.1 h1:U3uMjPSQEBMNp1lFxmllqCPM6P5u/Xq7Pgzkat/bFNc= github.com/inconshreveable/mousetrap v1.0.1/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= +github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= +github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= github.com/influxdata/flux v0.65.1/go.mod h1:J754/zds0vvpfwuq7Gc2wRdVwEodfpCFM7mYlOw2LqY= github.com/influxdata/influxdb v1.8.3/go.mod h1:JugdFhsvvI8gadxOI6noqNeeBHvWNTbfYGtiAn+2jhI= github.com/influxdata/influxdb-client-go/v2 v2.4.0/go.mod h1:vLNHdxTJkIf2mSLvGrpj8TCcISApPoXkaxP8g9uRlW8= @@ -702,7 +923,6 @@ github.com/jingyugao/rowserrcheck v1.1.1 h1:zibz55j/MJtLsjP1OF4bSdgXxwL1b+Vn7Tjz github.com/jingyugao/rowserrcheck v1.1.1/go.mod h1:4yvlZSDb3IyDTUZJUmpZfm2Hwok+Dtp+nu2qOq+er9c= github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af h1:KA9BjwUk7KlCh6S9EAGWBt1oExIUv9WyNCiRz5amv48= github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af/go.mod h1:HEWGJkRDzjJY2sqdDwxccsGicWEf9BQOZsq2tV+xzM0= -github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/jmespath/go-jmespath v0.4.0 h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9YPoQUg= github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= @@ -733,6 +953,8 @@ github.com/julz/importas v0.1.0/go.mod h1:oSFU2R4XK/P7kNBrnL/FEQlDGN1/6WoxXEjSSX github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= github.com/jwilder/encoding v0.0.0-20170811194829-b4e1701a28ef/go.mod h1:Ct9fl0F6iIOGgxJ5npU/IUOhOhqlVrGjyIZc8/MagT0= github.com/karalabe/usb v0.0.2/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= +github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= +github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/errcheck v1.6.2 h1:uGQ9xI8/pgc9iOoCe7kWQgRE6SBTrCGmTSf0LrEtY7c= github.com/kisielk/errcheck v1.6.2/go.mod h1:nXw/i/MfnvRHqXa7XXmQMUB0oNFGuBrNI8d8NLy0LPw= @@ -743,12 +965,15 @@ github.com/kkHAIKE/contextcheck v1.1.3/go.mod h1:PG/cwd6c0705/LM0KTr1acO2gORUxkS github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23/go.mod h1:J+Gs4SYgM6CZQHDETBtE9HaSEkGmuNXF86RwHhHUvq4= github.com/klauspost/compress v1.4.0/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= github.com/klauspost/compress v1.10.3/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= -github.com/klauspost/compress v1.11.2/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= github.com/klauspost/compress v1.11.7/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= github.com/klauspost/compress v1.12.3/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8eO+e+Dq5Gzg= -github.com/klauspost/compress v1.15.11 h1:Lcadnb3RKGin4FYM/orgq0qde+nc15E5Cbqg4B9Sx9c= github.com/klauspost/compress v1.15.11/go.mod h1:QPwzmACJjUTFsnSHH934V6woptycfrDDJnH7hvFVbGM= +github.com/klauspost/compress v1.16.4 h1:91KN02FnsOYhuunwU4ssRe8lc2JosWmizWa91B5v1PU= +github.com/klauspost/compress v1.16.4/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= +github.com/klauspost/cpuid v0.0.0-20170728055534-ae7887de9fa5 h1:2U0HzY8BJ8hVwDKIzp7y4voR9CX/nvcfymLmg2UiOio= github.com/klauspost/cpuid v0.0.0-20170728055534-ae7887de9fa5/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= +github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= +github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk= github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6/go.mod h1:+ZoRqAPRLkC4NPOvfYeR5KNOrY6TD+/sAC3HXPZgDYg= github.com/klauspost/pgzip v1.0.2-0.20170402124221-0bf5dcad4ada/go.mod h1:Ch1tH69qFZu15pkjo5kYi6mth2Zzwzt50oCQKQE9RUs= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= @@ -757,7 +982,7 @@ github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= @@ -776,13 +1001,13 @@ github.com/ldez/gomoddirectives v0.2.3/go.mod h1:cpgBogWITnCfRq2qGoDkKMEVSaarhdB github.com/ldez/tagliatelle v0.3.1 h1:3BqVVlReVUZwafJUwQ+oxbx2BEX2vUG4Yu/NOfMiKiM= github.com/ldez/tagliatelle v0.3.1/go.mod h1:8s6WJQwEYHbKZDsp/LjArytKOG8qaMrKQQ3mFukHs88= github.com/leanovate/gopter v0.2.9/go.mod h1:U2L/78B+KVFIx2VmW6onHJQzXtFb+p5y3y2Sh+Jxxv8= -github.com/leodido/go-urn v1.2.0 h1:hpXL4XnriNwQ/ABnpepYM/1vCLWNDfUNts8dX3xTG6Y= github.com/leodido/go-urn v1.2.0/go.mod h1:+8+nEpDfqqsY+g338gtMEUOtuK+4dEMhiQEgxpxOKII= +github.com/leodido/go-urn v1.2.3 h1:6BE2vPT0lqoz3fmOesHZiaiFh7889ssCo2GMvLCfiuA= github.com/leonklingele/grouper v1.1.0 h1:tC2y/ygPbMFSBOs3DcyaEMKnnwH7eYKzohOtRrf0SAg= github.com/leonklingele/grouper v1.1.0/go.mod h1:uk3I3uDfi9B6PeUjsCKi6ndcf63Uy7snXgR4yDYQVDY= github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= -github.com/lib/pq v1.10.6 h1:jbk+ZieJ0D7EVGJYpL9QTz7/YW6UHbmdnZWYyK5cdBs= -github.com/lib/pq v1.10.6/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= +github.com/lib/pq v1.10.7 h1:p7ZhMD+KsSRozJr34udlUrhboJwWAgCg34+/ZZNvZZw= +github.com/lib/pq v1.10.7/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= github.com/libp2p/go-buffer-pool v0.1.0 h1:oK4mSFcQz7cTQIfqbe4MIj9gLW+mnanjyFtc6cdF0Y8= github.com/libp2p/go-buffer-pool v0.1.0/go.mod h1:N+vh8gMqimBzdKkSMVuydVDq+UV5QTWy5HSiZacSbPg= github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod h1:qklhhLq1aX+mtWk9cPHPzaBjWImj5ULL6C7HFJtXQMM= @@ -792,8 +1017,8 @@ github.com/lufeee/execinquery v1.2.1 h1:hf0Ems4SHcUGBxpGN7Jz78z1ppVkP/837ZlETPCE github.com/lufeee/execinquery v1.2.1/go.mod h1:EC7DrEKView09ocscGHC+apXMIaorh4xqSxS/dy8SbM= github.com/lyft/protoc-gen-validate v0.0.13/go.mod h1:XbGvPuh87YZc5TdIa2/I4pLk0QoUACkjt2znoq26NVQ= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= -github.com/magiconair/properties v1.8.6 h1:5ibWZ6iY0NctNGWo87LalDlEZ6R41TqbbDamhfG/Qzo= -github.com/magiconair/properties v1.8.6/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60= +github.com/magiconair/properties v1.8.7 h1:IeQXZAiQcpL9mgcAe1Nu6cX9LLw6ExEHKjN0VQdvPDY= +github.com/magiconair/properties v1.8.7/go.mod h1:Dhd985XPs7jluiymwWYZ0G4Z61jb3vdS329zhj2hYo0= github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/manifoldco/promptui v0.9.0 h1:3V4HzJk1TtXW1MTZMP7mdlwbBpIinw3HztaIlYthEiA= @@ -812,7 +1037,6 @@ github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVc github.com/mattn/go-colorable v0.1.7/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= -github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4= github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= @@ -821,8 +1045,9 @@ github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hd github.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2yME+cCiQ= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= -github.com/mattn/go-isatty v0.0.16 h1:bq3VjFmv/sOjHtdEhmkEV4x1AJtvUvOJ2PFAZ5+peKQ= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= +github.com/mattn/go-isatty v0.0.18 h1:DOKFKCQ7FNG2L1rbrmstDN4QVRdS89Nkh85u68Uwp98= +github.com/mattn/go-isatty v0.0.18/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= @@ -833,8 +1058,8 @@ github.com/mattn/go-sqlite3 v1.9.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOq github.com/mattn/go-sqlite3 v1.11.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= github.com/mattn/go-tty v0.0.0-20180907095812-13ff1204f104/go.mod h1:XPvLUNfbS4fJH25nqRHfWLMa1ONC8Amw+mIA639KxkE= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI= -github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= +github.com/matttproud/golang_protobuf_extensions v1.0.4 h1:mmDVorXM7PCGKw94cs5zkfA9PSy5pEvNWRP0ET0TIVo= +github.com/matttproud/golang_protobuf_extensions v1.0.4/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= github.com/mbilski/exhaustivestruct v1.2.0 h1:wCBmUnSYufAHO6J4AVWY6ff+oxWxsVFrwgOdMUQePUo= github.com/mbilski/exhaustivestruct v1.2.0/go.mod h1:OeTBVxQWoEmB2J2JCHmXWPJ0aksxSUOUy+nvtVEfzXc= github.com/mgechev/revive v1.2.4 h1:+2Hd/S8oO2H0Ikq2+egtNwQsVhAeELHjxjIUFX5ajLI= @@ -849,8 +1074,9 @@ github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceT github.com/mitchellh/go-homedir v1.0.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= -github.com/mitchellh/go-testing-interface v1.0.0 h1:fzU/JVNcaqHQEcVFAKeR41fkiLdIPrefOvVG1VZ96U0= github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= +github.com/mitchellh/go-testing-interface v1.14.1 h1:jrgshOhYAUVNMAJiKbEu7EqAwgJJ2JqpQmpLJOu07cU= +github.com/mitchellh/go-testing-interface v1.14.1/go.mod h1:gfgS7OtZj6MA4U1UrDRp04twqAjfvlZyCfX3sDjEym8= github.com/mitchellh/gox v0.4.0/go.mod h1:Sd9lOJ0+aimLBi73mGofS1ycjY8lL3uZM3JPS42BGNg= github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0QubkSMEySY= github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= @@ -896,8 +1122,8 @@ github.com/nishanths/exhaustive v0.8.3 h1:pw5O09vwg8ZaditDp/nQRqVnrMczSJDxRDJMow github.com/nishanths/exhaustive v0.8.3/go.mod h1:qj+zJJUgJ76tR92+25+03oYUhzF4R7/2Wk7fGTfCHmg= github.com/nishanths/predeclared v0.2.2 h1:V2EPdZPliZymNAn79T8RkNApBjMmVKh5XRpLm/w98Vk= github.com/nishanths/predeclared v0.2.2/go.mod h1:RROzoN6TnGQupbC+lqggsOlcgysk3LMK/HI84Mp280c= -github.com/nxadm/tail v1.4.4 h1:DQuhQpB1tVlglWS2hLQ5OV6B5r8aGxSrPc5Qo6uTN78= github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= +github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE= github.com/oklog/oklog v0.3.2/go.mod h1:FCV+B7mhrz4o+ueLpx+KqkyXRGMWOYEvfiXtdGtbWGs= github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= @@ -907,8 +1133,8 @@ github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6 github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= -github.com/onsi/ginkgo v1.14.0 h1:2mOpI4JVVPBN+WQRa0WKH2eXR+Ey+uK4n7Zj0aYpIQA= github.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= +github.com/onsi/ginkgo v1.16.4 h1:29JGrr5oVBm5ulCWet69zQkzWipVXIol6ygQUe/EzNc= github.com/onsi/ginkgo/v2 v2.1.4 h1:GNapqRSid3zijZ9H77KrgVG4/8KqiyRsxcSxe+7ApXY= github.com/onsi/gomega v1.4.1/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= @@ -929,8 +1155,8 @@ github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJ github.com/openzipkin/zipkin-go v0.2.1/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4= github.com/openzipkin/zipkin-go v0.2.2/go.mod h1:NaW6tEwdmWMaCDZzg8sh+IBNOxHMPnhQw8ySjnjRyN4= github.com/ory/dockertest v3.3.5+incompatible h1:iLLK6SQwIhcbrG783Dghaaa3WPzGc+4Emza6EbVUUGA= +github.com/otiai10/copy v1.2.0 h1:HvG945u96iNadPoG2/Ja2+AUJeW5YuFQMixq9yirC+k= github.com/otiai10/copy v1.2.0/go.mod h1:rrF5dJ5F0t/EWSYODDu4j9/vEeYHMkc8jt0zJChqQWw= -github.com/otiai10/copy v1.6.0 h1:IinKAryFFuPONZ7cm6T6E2QX/vcJwSnlaA5lfoaXIiQ= github.com/otiai10/curr v0.0.0-20150429015615-9b4961190c95/go.mod h1:9qAhocn7zKJG+0mI8eUu6xqkFDYS2kb2saOteoSB3cE= github.com/otiai10/curr v1.0.0/go.mod h1:LskTG5wDwr8Rs+nNQ+1LlxRjAtTZZjtJW4rMXl6j4vs= github.com/otiai10/mint v1.3.0/go.mod h1:F5AjcsTsWUqX+Na9fpHb52P8pcRX2CI6A3ctIT91xUo= @@ -942,22 +1168,19 @@ github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144T github.com/paulbellamy/ratecounter v0.2.0/go.mod h1:Hfx1hDpSGoqxkVVpBi/IlYD7kChlfo5C6hzIHwPqfFE= github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= -github.com/pelletier/go-toml v1.9.5 h1:4yBQzkHv+7BHq2PQUZF3Mx0IYxG7LsP222s7Agd3ve8= -github.com/pelletier/go-toml v1.9.5/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= -github.com/pelletier/go-toml/v2 v2.0.5 h1:ipoSadvV8oGUjnUbMub59IDPPwfxF694nG/jwbMiyQg= -github.com/pelletier/go-toml/v2 v2.0.5/go.mod h1:OMHamSCAODeSsVrwwvcJOaoN0LIUIaFVNZzmWyNfXas= +github.com/pelletier/go-toml/v2 v2.0.7 h1:muncTPStnKRos5dpVKULv2FVd4bMOhNePj9CjgDb8Us= +github.com/pelletier/go-toml/v2 v2.0.7/go.mod h1:eumQOmlWiOPt5WriQQqoM5y18pDHwha2N+QD+EUNTek= github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac= github.com/peterh/liner v1.0.1-0.20180619022028-8c1271fcf47f/go.mod h1:xIteQHvHuaLYG9IFj6mSxM0fCKrs34IrEQUhOYuGPHc= github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= -github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 h1:q2e307iGHPdTGp0hoxKjt1H5pDo6utceo3dQVK3I5XQ= github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5/go.mod h1:jvVRKCrJTQWu0XVbaOlby/2lO20uSCHEMzzplHXte1o= +github.com/petermattis/goid v0.0.0-20221215004737-a150e88a970d h1:htwtWgtQo8YS6JFWWi2DNgY0RwSGJ1ruMoxY6CUUclk= +github.com/petermattis/goid v0.0.0-20221215004737-a150e88a970d/go.mod h1:pxMtw7cyUw6B2bRH0ZBANSPg+AoSud1I1iyJHI69jH4= github.com/phayes/checkstyle v0.0.0-20170904204023-bfd46e6a821d h1:CdDQnGF8Nq9ocOS/xlSptM1N3BbrA6/kmaep5ggwaIA= github.com/phayes/checkstyle v0.0.0-20170904204023-bfd46e6a821d/go.mod h1:3OzsM7FXDQlpCiw2j81fOmAwQLnZnLGXVKUzeKQXIAw= github.com/philhofer/fwd v1.0.0/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU= -github.com/philhofer/fwd v1.1.1/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU= github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= -github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e h1:aoZm08cpOy4WuID//EZDgcC4zIxODThtZNPirFr42+A= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= @@ -978,15 +1201,16 @@ github.com/prometheus/client_golang v1.4.0/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3O github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= github.com/prometheus/client_golang v1.12.1/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= -github.com/prometheus/client_golang v1.12.2 h1:51L9cDoUHVrXx4zWYlcLQIZ+d+VXHgqnYKkIuq4g/34= -github.com/prometheus/client_golang v1.12.2/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= +github.com/prometheus/client_golang v1.14.0 h1:nJdhIvne2eSX/XRAFV9PcvFFRbrjbcTUj0VP62TMhnw= +github.com/prometheus/client_golang v1.14.0/go.mod h1:8vpkKitgIVNcqrRBWh1C4TIUQgYNtG/XQE4E/Zae36Y= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.1.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.2.0 h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.3.0 h1:UBgGFHqYdG/TPFD1B1ogZywDqEkwp3fBMvqdiQ7Xew4= +github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= @@ -997,8 +1221,8 @@ github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB8 github.com/prometheus/common v0.15.0/go.mod h1:U+gB1OBLb1lF3O42bTCL+FK18tX9Oar16Clt/msog/s= github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= -github.com/prometheus/common v0.34.0 h1:RBmGO9d/FVjqHT0yUGQwBJhkwKV+wPCn7KGpvfab0uE= -github.com/prometheus/common v0.34.0/go.mod h1:gB3sOl7P0TvJabZpLY5uQMpUqRCPPCyRLCZYc7JZTNE= +github.com/prometheus/common v0.40.0 h1:Afz7EVRqGg2Mqqf4JuF9vdvp1pi220m55Pi9T2JnO4Q= +github.com/prometheus/common v0.40.0/go.mod h1:L65ZJPSmfn/UBWLQIHV7dBrKFidB/wPlF1y5TlSt9OE= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= @@ -1007,8 +1231,8 @@ github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4O github.com/prometheus/procfs v0.3.0/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/procfs v0.8.0 h1:ODq8ZFEaYeCaZOJlZZdJA2AbQR98dSHSM1KW/You5mo= -github.com/prometheus/procfs v0.8.0/go.mod h1:z7EfXMXOkbkqb9IINtpCn86r/to3BnA0uaxHdg830/4= +github.com/prometheus/procfs v0.9.0 h1:wzCHvIvM5SxWqYvwgVL7yJY8Lz3PKn49KQtpgMYJfhI= +github.com/prometheus/procfs v0.9.0/go.mod h1:+pB4zwohETzFnmlpe6yd2lSc+0/46IYZRB/chUwxUZY= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/quasilyte/go-ruleguard v0.3.1-0.20210203134552-1b5a410e1cc8/go.mod h1:KsAh3x0e7Fkpgs+Q9pNLS5XpFSvYCEVl5gP9Pp1xp30= github.com/quasilyte/go-ruleguard v0.3.18 h1:sd+abO1PEI9fkYennwzHn9kl3nqP6M5vE7FiOzZ+5CE= @@ -1028,10 +1252,7 @@ github.com/rakyll/statik v0.1.7/go.mod h1:AlZONWzMtEnMs7W4e/1LURLiI49pIMmp6V9Ung github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 h1:N/ElC8H3+5XpJzTSTfLsJV/mx9Q9g7kxmchpfZyxgzM= github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= -github.com/regen-network/cosmos-proto v0.3.1 h1:rV7iM4SSFAagvy8RiyhiACbWEGotmqzywPxOvwMdxcg= -github.com/regen-network/cosmos-proto v0.3.1/go.mod h1:jO0sVX6a1B36nmE8C9xBFXpNwWejXC7QqCOnH3O0+YM= -github.com/regen-network/protobuf v1.3.3-alpha.regen.1 h1:OHEc+q5iIAXpqiqFKeLpu5NwTIkVXUs48vFMwzqpqY4= -github.com/regen-network/protobuf v1.3.3-alpha.regen.1/go.mod h1:2DjTFR1HhMQhiWC5sZ4OhQ3+NtdbZ6oBDKQwq5Ou+FI= +github.com/regen-network/gocuke v0.6.2 h1:pHviZ0kKAq2U2hN2q3smKNxct6hS0mGByFMHGnWA97M= github.com/retailnext/hllpp v1.0.1-0.20180308014038-101a6d2f8b52/go.mod h1:RDpi1RftBQPUCDRw6SmxeaREsAaRKnOclghuzp/WRzc= github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY= @@ -1040,13 +1261,10 @@ github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRr github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= +github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= -github.com/rs/cors v1.8.2 h1:KCooALfAYGs415Cwu5ABvv9n9509fSiG5SQJn/AQo4U= -github.com/rs/cors v1.8.2/go.mod h1:XyqrcTp5zjWr1wsJ8PIRZssZ8b/WMcMf71DJnit4EMU= -github.com/rs/xid v1.3.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg= -github.com/rs/zerolog v1.27.0 h1:1T7qCieN22GVc8S4Q2yuexzBb1EqjbgjSH9RohbMjKs= -github.com/rs/zerolog v1.27.0/go.mod h1:7frBqO0oezxmnO7GF86FY++uy8I0Tk/If5ni1G9Qc0U= +github.com/rs/cors v1.8.3 h1:O+qNyWn7Z+F9M0ILBHgMVPuB1xTOucVd5gtaYyXBpRo= +github.com/rs/cors v1.8.3/go.mod h1:XyqrcTp5zjWr1wsJ8PIRZssZ8b/WMcMf71DJnit4EMU= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= @@ -1101,8 +1319,8 @@ github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasO github.com/spaolacci/murmur3 v1.1.0 h1:7c1g84S4BPRrfL5Xrdp6fOJ206sU9y293DDHaoy0bLI= github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= -github.com/spf13/afero v1.9.2 h1:j49Hj62F0n+DaZ1dDCvhABaPNSGNkt32oRFxI33IEMw= -github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= +github.com/spf13/afero v1.9.3 h1:41FoI0fD7OR7mGcKE/aOiLkGreyf8ifIOQmJANWogMk= +github.com/spf13/afero v1.9.3/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cast v1.5.0 h1:rj3WzYc11XZaIZMPKmwP96zkFEnnAmV8s6XbB2aY32w= github.com/spf13/cast v1.5.0/go.mod h1:SpXXQ5YoyJw6s3/6cMTQuxvgRl3PCJiyaX9p6b155UU= @@ -1118,8 +1336,8 @@ github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnIn github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s= -github.com/spf13/viper v1.14.0 h1:Rg7d3Lo706X9tHsJMUjdiwMpHB7W8WnSVOssIY+JElU= -github.com/spf13/viper v1.14.0/go.mod h1:WT//axPky3FdvXHzGw33dNdXXXfFQqmEalje+egj8As= +github.com/spf13/viper v1.15.0 h1:js3yy885G8xwJa6iOISGFwd+qlUo5AvyXb7CiihdtiU= +github.com/spf13/viper v1.15.0/go.mod h1:fFcTBJxvhhzSJiZy8n+PeW6t8l+KeT/uTARa0jHOQLA= github.com/ssgreg/nlreturn/v2 v2.2.1 h1:X4XDI7jstt3ySqGU86YGAURbxw3oTDPK9sPEi6YEwQ0= github.com/ssgreg/nlreturn/v2 v2.2.1/go.mod h1:E/iiPB78hV7Szg2YfRgyIrk1AD6JVMTRkkxBiELzh2I= github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q= @@ -1143,32 +1361,29 @@ github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= -github.com/stretchr/testify v1.8.1 h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/subosito/gotenv v1.4.1 h1:jyEFiXpy21Wm81FBN71l9VoMMV8H8jG+qIK3GCpY6Qs= -github.com/subosito/gotenv v1.4.1/go.mod h1:ayKnFf/c6rvx/2iiLrJUk1e6plDbT3edrFNGqEflhK0= +github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8= +github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/subosito/gotenv v1.4.2 h1:X1TuBLAMDFbaTAChgCBLu3DU3UPyELpnF2jjJ2cz/S8= +github.com/subosito/gotenv v1.4.2/go.mod h1:ayKnFf/c6rvx/2iiLrJUk1e6plDbT3edrFNGqEflhK0= github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 h1:epCh84lMvA70Z7CTTCmYQn2CKbY8j86K7/FAIr141uY= github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7/go.mod h1:q4W45IWZaF22tdD+VEXcAWRA037jwmWEB5VWYORlTpc= github.com/tdakkota/asciicheck v0.1.1 h1:PKzG7JUTUmVspQTDqtkX9eSiLGossXTybutHwTXuO0A= github.com/tdakkota/asciicheck v0.1.1/go.mod h1:yHp0ai0Z9gUljN3o0xMhYJnH/IcvkdTBOX2fmJ93JEM= -github.com/tendermint/btcd v0.1.1 h1:0VcxPfflS2zZ3RiOAHkBiFUcPvbtRj5O7zHmcJWHV7s= -github.com/tendermint/btcd v0.1.1/go.mod h1:DC6/m53jtQzr/NFmMNEu0rxf18/ktVoVtMrnDD5pN+U= -github.com/tendermint/crypto v0.0.0-20191022145703-50d29ede1e15 h1:hqAk8riJvK4RMWx1aInLzndwxKalgi5rTqgfXxOxbEI= -github.com/tendermint/crypto v0.0.0-20191022145703-50d29ede1e15/go.mod h1:z4YtwM70uOnk8h0pjJYlj3zdYwi9l03By6iAIF5j/Pk= -github.com/tendermint/fundraising v0.3.1 h1:S4uOV/T7YNBqXhsCZnq/TUoHB0d2kM+6tKeTD4WhLN0= -github.com/tendermint/fundraising v0.3.1/go.mod h1:7rCHXGOoFiUBD7sAZ4u+/EFq4MgQEn7tFopX6Qe6zpc= +github.com/tecbot/gorocksdb v0.0.0-20191217155057-f0fad39f321c h1:g+WoO5jjkqGAzHWCjJB1zZfXPIAaDpzXIEJ0eS6B5Ok= +github.com/tecbot/gorocksdb v0.0.0-20191217155057-f0fad39f321c/go.mod h1:ahpPrc7HpcfEWDQRZEmnXMzHY03mLDYMCxeDzy46i+8= +github.com/tendermint/fundraising v0.3.2-0.20230426170640-25ca21084e72 h1:U5Vn+at38mCtLoCJQPlbZkvor5f9Q9B4XWKBFTcC6kU= +github.com/tendermint/fundraising v0.3.2-0.20230426170640-25ca21084e72/go.mod h1:z3yQxvI1YgRpHMG7HxORiYWRC7DdXR9vvf7ZjGIX0Xg= github.com/tendermint/go-amino v0.16.0 h1:GyhmgQKvqF82e2oZeuMSp9JTN0N09emoSZlb2lyGa2E= github.com/tendermint/go-amino v0.16.0/go.mod h1:TQU0M1i/ImAo+tYpZi73AU3V/dKeCoMC9Sphe2ZwGME= -github.com/tendermint/tendermint v0.34.24 h1:879MKKJWYYPJEMMKME+DWUTY4V9f/FBpnZDI82ky+4k= -github.com/tendermint/tendermint v0.34.24/go.mod h1:rXVrl4OYzmIa1I91av3iLv2HS0fGSiucyW9J4aMTpKI= -github.com/tendermint/tm-db v0.6.7 h1:fE00Cbl0jayAoqlExN6oyQJ7fR/ZtoVOmvPJ//+shu8= -github.com/tendermint/tm-db v0.6.7/go.mod h1:byQDzFkZV1syXr/ReXS808NxA2xvyuuVgXOJ/088L6I= github.com/tenntenn/modver v1.0.1 h1:2klLppGhDgzJrScMpkj9Ujy3rXPUspSjAcev9tSEBgA= github.com/tenntenn/modver v1.0.1/go.mod h1:bePIyQPb7UeioSRkw3Q0XeMhYZSMx9B8ePqg6SAMGH0= github.com/tenntenn/text/transform v0.0.0-20200319021203-7eef512accb3 h1:f+jULpRQGxTSkNYKJ51yaw6ChIqO+Je8UqsTKN/cDag= github.com/tenntenn/text/transform v0.0.0-20200319021203-7eef512accb3/go.mod h1:ON8b8w4BN/kE1EOhwT0o+d62W65a6aPw1nouo9LMgyY= github.com/tetafro/godot v1.4.11 h1:BVoBIqAf/2QdbFmSwAWnaIqDivZdOV0ZRwEm6jivLKw= github.com/tetafro/godot v1.4.11/go.mod h1:LR3CJpxDVGlYOWn3ZZg1PgNZdTUvzsZWu8xaEohUpn8= +github.com/tidwall/btree v1.6.0 h1:LDZfKfQIBHGHWSwckhXI0RPSXzlo+KYdjK7FWSqOzzg= +github.com/tidwall/btree v1.6.0/go.mod h1:twD9XRA5jj9VUQGELzDO4HPQTNJsoWWfYEL+EUQ2cKY= github.com/tidwall/gjson v1.12.1/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= github.com/tidwall/gjson v1.14.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= github.com/tidwall/match v1.1.1/go.mod h1:eRSPERbgtNPcGhD8UCthc6PmLEQXEWd3PRB5JTxsfmM= @@ -1179,7 +1394,6 @@ github.com/timakin/bodyclose v0.0.0-20210704033933-f49887972144/go.mod h1:Qimiff github.com/timonwong/loggercheck v0.9.3 h1:ecACo9fNiHxX4/Bc02rW2+kaJIAMAes7qJ7JKxt0EZI= github.com/timonwong/loggercheck v0.9.3/go.mod h1:wUqnk9yAOIKtGA39l1KLE9Iz0QiTocu/YZoOf+OzFdw= github.com/tinylib/msgp v1.0.2/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE= -github.com/tinylib/msgp v1.1.5/go.mod h1:eQsjooMTnV42mHu917E26IogZ2930nFyBQdofk10Udg= github.com/tklauser/go-sysconf v0.3.5/go.mod h1:MkWzOF4RMCshBAMXuhXJs64Rte09mITnppBXY/rYEFI= github.com/tklauser/numcpus v0.2.2/go.mod h1:x3qojaO3uyYt0i56EW/VUYs7uBvdl2fkfZFu0T9wgjM= github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= @@ -1187,17 +1401,19 @@ github.com/tomarrell/wrapcheck/v2 v2.7.0 h1:J/F8DbSKJC83bAvC6FoZaRjZiZ/iKoueSdrE github.com/tomarrell/wrapcheck/v2 v2.7.0/go.mod h1:ao7l5p0aOlUNJKI0qVwB4Yjlqutd0IvAB9Rdwyilxvg= github.com/tommy-muehle/go-mnd/v2 v2.5.1 h1:NowYhSdyE/1zwK9QCLeRb6USWdoif80Ie+v+yU8u1Zw= github.com/tommy-muehle/go-mnd/v2 v2.5.1/go.mod h1:WsUAkMJMYww6l/ufffCD3m+P7LEvr8TnZn9lwVDlgzw= -github.com/ttacon/chalk v0.0.0-20160626202418-22c06c80ed31/go.mod h1:onvgF043R+lC5RZ8IT9rBXDaEDnpnw/Cl+HFiw+v/7Q= github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= +github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI= +github.com/twitchyliquid64/golang-asm v0.15.1/go.mod h1:a1lVb/DtPvCB8fslRZhAngC2+aY1QWCk3Cedj/Gdt08= github.com/tyler-smith/go-bip39 v1.0.1-0.20181017060643-dbb3b84ba2ef/go.mod h1:sJ5fKU0s6JVwZjjcUEX2zFOnvq0ASQ2K9Zr6cf67kNs= github.com/tyler-smith/go-bip39 v1.0.2/go.mod h1:sJ5fKU0s6JVwZjjcUEX2zFOnvq0ASQ2K9Zr6cf67kNs= github.com/ugorji/go v1.1.7 h1:/68gy2h+1mWMrwZFeD1kQialdSzAb432dtpeJ42ovdo= github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVMw= github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0= -github.com/ugorji/go/codec v1.1.7 h1:2SvQaVZ1ouYrrKKwoSk2pzd4A9evlKJb9oTL+OaLUSs= github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY= -github.com/ulikunitz/xz v0.5.8 h1:ERv8V6GKqVi23rgu5cj9pVfVzJbOqAY2Ntl88O6c2nQ= -github.com/ulikunitz/xz v0.5.8/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14= +github.com/ugorji/go/codec v1.2.11 h1:BMaWp1Bb6fHwEtbplGBGJ498wD+LKlNSl25MjdZY4dU= +github.com/ulikunitz/xz v0.5.10/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14= +github.com/ulikunitz/xz v0.5.11 h1:kpFauv27b6ynzBNT/Xy+1k+fK4WswhN/6PN5WhFAGw8= +github.com/ulikunitz/xz v0.5.11/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14= github.com/ultraware/funlen v0.0.3 h1:5ylVWm8wsNwH5aWo9438pwvsK0QiqVuUrt9bn7S/iLA= github.com/ultraware/funlen v0.0.3/go.mod h1:Dp4UiAus7Wdb9KUZsYWZEWiRzGuM2kXM1lPbfaF6xhA= github.com/ultraware/whitespace v0.0.5 h1:hh+/cpIcopyMYbZNVov9iSxvJU3OYQg78Sfaqzi/CzI= @@ -1230,13 +1446,13 @@ github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1 github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= github.com/zondax/hid v0.9.1 h1:gQe66rtmyZ8VeGFcOpbuH3r7erYtNEAezCAYu8LdkJo= github.com/zondax/hid v0.9.1/go.mod h1:l5wttcP0jwtdLjqjMMWFVEE7d1zO0jvSPA9OPZxWpEM= -github.com/zondax/ledger-go v0.14.0 h1:dlMC7aO8Wss1CxBq2I96kZ69Nh1ligzbs8UWOtq/AsA= -github.com/zondax/ledger-go v0.14.0/go.mod h1:fZ3Dqg6qcdXWSOJFKMG8GCTnD7slO/RL2feOQv8K320= +github.com/zondax/ledger-go v0.14.1 h1:Pip65OOl4iJ84WTpA4BKChvOufMhhbxED3BaihoZN4c= +github.com/zondax/ledger-go v0.14.1/go.mod h1:fZ3Dqg6qcdXWSOJFKMG8GCTnD7slO/RL2feOQv8K320= gitlab.com/bosi/decorder v0.2.3 h1:gX4/RgK16ijY8V+BRQHAySfQAb354T7/xQpDB2n10P0= gitlab.com/bosi/decorder v0.2.3/go.mod h1:9K1RB5+VPNQYtXtTDAzd2OEftsZb1oV0IrJrzChSdGE= go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= -go.etcd.io/bbolt v1.3.6 h1:/ecaJf0sk1l4l6V4awd65v2C3ILy7MSj+s/x1ADCIMU= -go.etcd.io/bbolt v1.3.6/go.mod h1:qXsaaIqmgQH0T+OPdb99Bf+PKfBBQVAdyD6TY9G8XM4= +go.etcd.io/bbolt v1.3.7 h1:j+zJOnnEjF/kyHlDDgGnVL/AIqIJPq8UoB2GSNfkUfQ= +go.etcd.io/bbolt v1.3.7/go.mod h1:N9Mkw9X8x5fupy0IKsmuqVtoGDyxsaDlbk4Rd05IAQw= go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738/go.mod h1:dnLIgRNXwCJa5e+c6mIZCrds/GIG4ncV9HhK5PX7jPg= go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.20.2/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= @@ -1246,8 +1462,10 @@ go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= -go.opencensus.io v0.23.0 h1:gqCw0LfLxScz8irSi8exQc7fyQ0fKQU/qnC/X8+V/1M= go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= +go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0= +go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= +go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= @@ -1265,6 +1483,8 @@ go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= go.uber.org/zap v1.23.0 h1:OjGQ5KQDEUawVHxNwQgPpiypGHOxo2mNZsOqTak4fFY= go.uber.org/zap v1.23.0/go.mod h1:D+nX8jyLsMHMYrln8A0rJjFt/T/9/bGgIhAqxv5URuY= +golang.org/x/arch v0.0.0-20210923205945-b76863e36670/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8= +golang.org/x/arch v0.3.0 h1:02VY4/ZcO/gBOH6PUaoiptASxtXU10jazRCP865E97k= golang.org/x/crypto v0.0.0-20170930174604-9419663f5a44/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= @@ -1288,8 +1508,8 @@ golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.2.0 h1:BRXPfhNivWL5Yq0BGQ39a2sW6t44aODpfxkWjYdzewE= -golang.org/x/crypto v0.2.0/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4= +golang.org/x/crypto v0.8.0 h1:pd9TJtTueMTVQXzk8E2XESSMQDj/U7OUu0PqJqPXQjQ= +golang.org/x/crypto v0.8.0/go.mod h1:mRqEX+O9/h5TFCrQhkgjo2yKi0yYA+9ecGkdQoHrywE= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -1304,8 +1524,8 @@ golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= golang.org/x/exp v0.0.0-20200331195152-e8c3332aa8e5/go.mod h1:4M0jN8W1tt0AVLNr8HDosyJCDCDuyL9N9+3m7wDWgKw= -golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e h1:+WEEuIdZHnUeJJmEUjyYC2gfUMj69yZXw17EnHg/otA= -golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e/go.mod h1:Kr81I6Kryrl9sr8s2FK3vxD90NdsKWRuOIl2O4CvYbA= +golang.org/x/exp v0.0.0-20230321023759-10a507213a29 h1:ooxPy7fPvB4kwsA2h+iBNHkAbp/4JxTSwCmvdjEYmug= +golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= golang.org/x/exp/typeparams v0.0.0-20220428152302-39d4317da171/go.mod h1:AbB0pIl9nAr9wVwH+Z2ZpaocVmF5I4GyWCDIsVjR0bk= golang.org/x/exp/typeparams v0.0.0-20220827204233-334a2380cb91 h1:Ic/qN6TEifvObMGQy72k0n1LlJr7DjWWEi+MOsDOiSk= golang.org/x/exp/typeparams v0.0.0-20220827204233-334a2380cb91/go.mod h1:AbB0pIl9nAr9wVwH+Z2ZpaocVmF5I4GyWCDIsVjR0bk= @@ -1323,6 +1543,7 @@ golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRu golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= @@ -1337,8 +1558,8 @@ golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3/go.mod h1:3p9vT2HGsQu2K1YbXdKPJLVgG5VJdoTa1poYQBtP1AY= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= -golang.org/x/mod v0.6.0 h1:b9gGHsz9/HhJ3HF5DHQytPpuwocVTChQJK3AvoLRD5I= -golang.org/x/mod v0.6.0/go.mod h1:4mET923SAdbXp2ki8ey+zGs1SLqsuM2Y0uvdZR/fUNI= +golang.org/x/mod v0.10.0 h1:lFO9qtOdlre5W1jxS3r/4szv2/6iXxScdzjoBMXNhYk= +golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/net v0.0.0-20180719180050-a680a1efc54d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1386,17 +1607,27 @@ golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210220033124-5f55cee0dc0d/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= +golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210610132358-84b48f89b13b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210614182718-04defd469f4e/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220607020251-c690dde0001d/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220617184016-355a448f1bc9/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.2.0 h1:sZfSu1wtKLGlWI4ZZayP0ck9Y73K1ynO6gqzTdBVdPU= -golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= +golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= +golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= +golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= +golang.org/x/net v0.9.0 h1:aWJ/m6xSmxWBx+V0XRHTlrYrPG56jKsLdTFmsSsCzOM= +golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1406,10 +1637,24 @@ golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.2.0 h1:GtQkldQ9m7yvzCL1V+LrYow3Khe0eJH0w7RbX/VbaIU= -golang.org/x/oauth2 v0.2.0/go.mod h1:Cwn6afJ8jrQwYMxQDTpISoXmXW9I6qF6vDeuuoX3Ibs= +golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= +golang.org/x/oauth2 v0.0.0-20220622183110-fd043fe589d2/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= +golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.1.0/go.mod h1:G9FE4dLTsbXUu90h/Pf85g4w1D+SSAgR+q46nJZ8M4A= +golang.org/x/oauth2 v0.7.0 h1:qe6s0zUXlPX80/dITx3440hWZ7GwMwgDDyrSGTPJG/g= +golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -1421,7 +1666,9 @@ golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0 h1:wsuoTGHzEhffawBOhz5CYhcrV4IdKZbEyZjBMuTp12o= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -1478,46 +1725,72 @@ golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200814200057-3d37ad5750ed/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200923182605-d9f96fdee20d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210316164454-77fc1eacc6aa/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210324051608-47abb6519492/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210420205809-ac73e9fd8988/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210819135213-f52c844e1c1c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211105183446-c75c47738b0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220517195934-5e4e11fc645e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220315194320-039c03cc5b86/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220702020025-31831981b65f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.2.0 h1:ljd4t30dBnAvMZaQCevtY0xLLD0A+bRZXbgLMLU1F/A= -golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20221010170243-090e33056c14/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.7.0 h1:3jlCCIQZPdOYu1h8BkNvLz8Kgwtae2cagcG/VamtZRU= +golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.2.0 h1:z85xZCsEl7bi/KwbNADeBYoOP0++7W1ipu+aGnpwzRM= -golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= +golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.7.0 h1:BEvjmm5fURWqcfbSKTdpkDXYBrUS1c0m8agp14W48vQ= +golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -1527,17 +1800,20 @@ golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.4.0 h1:BrVqGRd7+k1DiOgtnFvAkoQEWQvBc25ouMJM6429SFg= golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE= +golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20201208040808-7e3f01d25324/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= @@ -1605,7 +1881,6 @@ golang.org/x/tools v0.0.0-20200831203904-5a2aa26beb65/go.mod h1:Cj7w3i3Rnn0Xh82u golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= golang.org/x/tools v0.0.0-20201001104356-43ebab892c4c/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= golang.org/x/tools v0.0.0-20201002184944-ecd9fd270d5d/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU= -golang.org/x/tools v0.0.0-20201022035929-9cf592e881e9/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201023174141-c8cfbd0f21e6/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= @@ -1618,18 +1893,24 @@ golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= golang.org/x/tools v0.1.1-0.20210205202024-ef80cdb6ec6d/go.mod h1:9bzcO0MWcOuT0tm1iBGzDVPshzfwoVvREIui8C+MHqU= golang.org/x/tools v0.1.1-0.20210302220138-2ac05c832e1a/go.mod h1:9bzcO0MWcOuT0tm1iBGzDVPshzfwoVvREIui8C+MHqU= golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.9-0.20211228192929-ee1ca4ffc4da/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= golang.org/x/tools v0.1.10/go.mod h1:Uh6Zz+xoGYZom868N8YTex3t7RhtHDBrE8Gzo9bV56E= golang.org/x/tools v0.1.11/go.mod h1:SgwaegtQh8clINPpECJMqnxLv9I09HLqnW3RMqW0CA4= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= -golang.org/x/tools v0.2.0 h1:G6AHpWxTMGY1KyEYoAQ5WTtIekUUvDNjan3ugu60JvE= -golang.org/x/tools v0.2.0/go.mod h1:y4OqIKeOV/fWJetJ8bXPU1sEVniLMIyDAZWeHdV+NTA= +golang.org/x/tools v0.8.0 h1:vSDcovVPld282ceKgDimkRSC8kpaH1dgyc9UMzlt84Y= +golang.org/x/tools v0.8.0/go.mod h1:JxBZ99ISMI5ViVkT1tr6tdNmXeTrcpVSD3vZ1RsRdN4= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= +golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= @@ -1658,8 +1939,37 @@ google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz513 google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= -google.golang.org/api v0.102.0 h1:JxJl2qQ85fRMPNvlZY/enexbxpCjLwGhZUtgfGeQ51I= -google.golang.org/api v0.102.0/go.mod h1:3VFl6/fzoA+qNuS1N1/VfXY4LjoXN/wzeIp7TweWwGo= +google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= +google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= +google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= +google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= +google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= +google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= +google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= +google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= +google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= +google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= +google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= +google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo= +google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g= +google.golang.org/api v0.70.0/go.mod h1:Bs4ZM2HGifEvXwd50TtW70ovgJffJYw2oRCOFU/SkfA= +google.golang.org/api v0.71.0/go.mod h1:4PyU6e6JogV1f9eA4voyrTY2batOLdgZ5qZ5HOCc4j8= +google.golang.org/api v0.74.0/go.mod h1:ZpfMZOVRMywNyvJFeqL9HRWBgAuRfSjJFpe9QtRRyDs= +google.golang.org/api v0.75.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= +google.golang.org/api v0.77.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= +google.golang.org/api v0.78.0/go.mod h1:1Sg78yoMLOhlQTeF+ARBoytAcH1NNyyl390YMy6rKmw= +google.golang.org/api v0.80.0/go.mod h1:xY3nI94gbvBrE0J6NHXhxOmW97HG7Khjkku6AFB3Hyg= +google.golang.org/api v0.84.0/go.mod h1:NTsGnUFJMYROtiquksZHBWtHfeMC7iYthki7Eq3pa8o= +google.golang.org/api v0.85.0/go.mod h1:AqZf8Ep9uZ2pyTvgL+x0D3Zt0eoT9b5E8fmzfu6FO2g= +google.golang.org/api v0.90.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= +google.golang.org/api v0.93.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= +google.golang.org/api v0.95.0/go.mod h1:eADj+UBuxkh5zlrSntJghuNeg8HwQ1w5lTKkuqaETEI= +google.golang.org/api v0.96.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.97.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.98.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.100.0/go.mod h1:ZE3Z2+ZOr87Rx7dqFsdRQkRBk36kDtp/h+QpHbB7a70= +google.golang.org/api v0.117.0 h1:JsXRperckxXjnPl42ku4+KQRhWFiW6XjcZlOEHoxG8M= +google.golang.org/api v0.117.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjYK+5E= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -1693,7 +2003,6 @@ google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfG google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200324203455-a04cca1dde73/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200423170343-7949de9c1215/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= @@ -1712,12 +2021,78 @@ google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6D google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210126160654-44e461bb6506/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20221114212237-e4508ebdbee1 h1:jCw9YRd2s40X9Vxi4zKsPRvSPlHWNqadVkpbMsCPzPQ= -google.golang.org/genproto v0.0.0-20221114212237-e4508ebdbee1/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210329143202-679c6ae281ee/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= +google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= +google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= +google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= +google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= +google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= +google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= +google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= +google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= +google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211221195035-429b39de9b1c/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220207164111-0872dc986b00/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220314164441-57ef72a4c106/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= +google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= +google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220413183235-5e96e2839df9/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220414192740-2d67ff6cf2b4/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220429170224-98d788798c3e/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220518221133-4f43b3371335/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220523171625-347a074981d8/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220608133413-ed9918b62aac/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220624142145-8cd45d7dbd1f/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220628213854-d9e0b6570c03/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220722212130-b98a9ff5e252/go.mod h1:GkXuJDJ6aQ7lnJcRF+SJVgFdQhypqgl3LB1C9vabdRE= +google.golang.org/genproto v0.0.0-20220801145646-83ce21fca29f/go.mod h1:iHe1svFLAZg9VWz891+QbRMwUv9O/1Ww+/mngYeThbc= +google.golang.org/genproto v0.0.0-20220815135757-37a418bb8959/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220817144833-d7fd3f11b9b1/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220829144015-23454907ede3/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220829175752-36a9c930ecbf/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220913154956-18f8339a66a5/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220914142337-ca0e39ece12f/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220915135415-7fd63a7952de/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220916172020-2692e8806bfa/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220919141832-68c03719ef51/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220920201722-2b89144ce006/go.mod h1:ht8XFiar2npT/g4vkk7O0WYS1sHOHbdujxbEp7CJWbw= +google.golang.org/genproto v0.0.0-20220926165614-551eb538f295/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= +google.golang.org/genproto v0.0.0-20220926220553-6981cbe3cfce/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= +google.golang.org/genproto v0.0.0-20221010155953-15ba04fc1c0e/go.mod h1:3526vdqwhZAwq4wsRUaVG555sVgsNmIjRtO7t/JH29U= +google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= +google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= +google.golang.org/genproto v0.0.0-20221025140454-527a21cfbd71/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= +google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 h1:KpwkzHKEF7B9Zxg18WzOa7djJ+Ha5DzthMyZYQfEn2A= +google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.19.1/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.0/go.mod h1:chYK+tFQF0nDUGJgXMSgLCQk3phJEuONr2DCgLDdAQM= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= @@ -1739,8 +2114,27 @@ google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTp google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.50.1 h1:DS/BukOZWp8s6p4Dt/tOaJaTQyPyOoCcrjroHuCeLzY= +google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= +google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= +google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= +google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= +google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= +google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= +google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.47.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/grpc v1.50.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/grpc v1.54.0 h1:EhTqbhiYeixwWQtAEZAxmV9MGqcjEU2mFx52xCzNyag= +google.golang.org/grpc v1.54.0/go.mod h1:PUSEXI6iWghWaB6lXM4knEgpJNu2qUcKfDtNci3EC2g= +google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -1753,8 +2147,11 @@ google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGj google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.28.2-0.20220831092852-f930b1dc76e8 h1:KR8+MyP7/qOlV+8Af01LtjL04bu7on42eVsxT4EyBQk= -google.golang.org/protobuf v1.28.2-0.20220831092852-f930b1dc76e8/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng= +google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= @@ -1791,7 +2188,9 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gotest.tools v2.2.0+incompatible h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo= gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= +gotest.tools/v3 v3.4.0 h1:ZazjZUfuVeZGLAmlKKuyv3IKP5orXcwtOwDQH6YVr6o= honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= @@ -1803,8 +2202,8 @@ honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9 honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= honnef.co/go/tools v0.3.3 h1:oDx7VAwstgpYpb3wv0oxiZlxY+foCpRAwY7Vk6XpAgA= honnef.co/go/tools v0.3.3/go.mod h1:jzwdWgg7Jdq75wlfblQxO4neNaFFSvgc1tD5Wv8U0Yw= -mvdan.cc/gofumpt v0.4.0 h1:JVf4NN1mIpHogBj7ABpgOyZc65/UUOkKQFkoURsz4MM= -mvdan.cc/gofumpt v0.4.0/go.mod h1:PljLOHDeZqgS8opHRKLzp2It2VBuSdteAgqUfzMTxlQ= +mvdan.cc/gofumpt v0.5.0 h1:0EQ+Z56k8tXjj/6TQD25BFNKQXpCvT0rnansIc7Ug5E= +mvdan.cc/gofumpt v0.5.0/go.mod h1:HBeVDtMKRZpXyxFciAirzdKklDlGu8aAy1wEbH5Y9js= mvdan.cc/interfacer v0.0.0-20180901003855-c20040233aed h1:WX1yoOaKQfddO/mLzdV4wptyWgoH/6hwLs7QHTixo0I= mvdan.cc/interfacer v0.0.0-20180901003855-c20040233aed/go.mod h1:Xkxe497xwlCKkIaQYRfC7CSLworTXY9RMqwhhCm+8Nc= mvdan.cc/lint v0.0.0-20170908181259-adc824a0674b h1:DxJ5nJdkhDlLok9K6qO+5290kphDJbHOQO1DFFFTeBo= @@ -1813,7 +2212,8 @@ mvdan.cc/unparam v0.0.0-20220706161116-678bad134442 h1:seuXWbRB1qPrS3NQnHmFKLJLt mvdan.cc/unparam v0.0.0-20220706161116-678bad134442/go.mod h1:F/Cxw/6mVrNKqrR2YjFf5CaW0Bw4RL8RfbEf4GRggJk= nhooyr.io/websocket v1.8.6 h1:s+C3xAMLwGmlI31Nyn/eAehUlZPwfYZu2JXM621Q5/k= nhooyr.io/websocket v1.8.6/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0= -pgregory.net/rapid v0.5.3 h1:163N50IHFqr1phZens4FQOdPgfJscR7a562mjQqeo4M= +pgregory.net/rapid v0.5.5 h1:jkgx1TjbQPD/feRoK+S/mXw9e1uj6WilpHrXJowi6oA= +pgregory.net/rapid v0.5.5/go.mod h1:PY5XlDGj0+V1FCq0o192FdRhpKHGTRIWBgqjDBTrq04= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= diff --git a/pkg/airdrop/airdrop_missions.go b/pkg/airdrop/airdrop_missions.go index ede91e8de..83eeaef8d 100644 --- a/pkg/airdrop/airdrop_missions.go +++ b/pkg/airdrop/airdrop_missions.go @@ -2,9 +2,9 @@ package airdrop import ( sdk "github.com/cosmos/cosmos-sdk/types" - claimkeeper "github.com/ignite/modules/x/claim/keeper" - launchtypes "github.com/tendermint/spn/x/launch/types" + + claimkeeper "github.com/ignite/modules/x/claim/keeper" ) // MissionSendRequestHooks is an implementation of launch hooks that completes a claim mission diff --git a/pkg/types/consensus_state.go b/pkg/types/consensus_state.go index dc45a6618..9d8dade65 100644 --- a/pkg/types/consensus_state.go +++ b/pkg/types/consensus_state.go @@ -7,10 +7,9 @@ import ( "os" "time" + committypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" + ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" "gopkg.in/yaml.v2" - - committypes "github.com/cosmos/ibc-go/v6/modules/core/23-commitment/types" - ibctmtypes "github.com/cosmos/ibc-go/v6/modules/light-clients/07-tendermint/types" ) // consensusStateFile represents dumped consensus state from @@ -57,25 +56,25 @@ func NewConsensusState(timestamp, nextValHash, rootHash string) ConsensusState { } // ToTendermintConsensusState returns a new IBC Tendermint Consensus State -func (cs ConsensusState) ToTendermintConsensusState() (ibctmtypes.ConsensusState, error) { +func (cs ConsensusState) ToTendermintConsensusState() (ibctm.ConsensusState, error) { // parse the RFC3339 timestamp format t, err := time.Parse(time.RFC3339Nano, cs.Timestamp) if err != nil { - return ibctmtypes.ConsensusState{}, err + return ibctm.ConsensusState{}, err } // decode validator set nextValSetHashBytes, err := hex.DecodeString(cs.NextValidatorsHash) if err != nil { - return ibctmtypes.ConsensusState{}, err + return ibctm.ConsensusState{}, err } // decode root hash rootHashBase64, err := base64.StdEncoding.DecodeString(cs.RootHash()) if err != nil { - return ibctmtypes.ConsensusState{}, err + return ibctm.ConsensusState{}, err } - return *ibctmtypes.NewConsensusState( + return *ibctm.NewConsensusState( t, committypes.NewMerkleRoot(rootHashBase64), nextValSetHashBytes, diff --git a/pkg/types/ibc.pb.go b/pkg/types/ibc.pb.go index 0648360e8..9276224e2 100644 --- a/pkg/types/ibc.pb.go +++ b/pkg/types/ibc.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: types/ibc.proto +// source: spn/types/ibc.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -32,7 +32,7 @@ func (m *MerkleRoot) Reset() { *m = MerkleRoot{} } func (m *MerkleRoot) String() string { return proto.CompactTextString(m) } func (*MerkleRoot) ProtoMessage() {} func (*MerkleRoot) Descriptor() ([]byte, []int) { - return fileDescriptor_e8a3c3ef848f382a, []int{0} + return fileDescriptor_e945911ae6a1b767, []int{0} } func (m *MerkleRoot) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -80,7 +80,7 @@ func (m *ConsensusState) Reset() { *m = ConsensusState{} } func (m *ConsensusState) String() string { return proto.CompactTextString(m) } func (*ConsensusState) ProtoMessage() {} func (*ConsensusState) Descriptor() ([]byte, []int) { - return fileDescriptor_e8a3c3ef848f382a, []int{1} + return fileDescriptor_e945911ae6a1b767, []int{1} } func (m *ConsensusState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -140,7 +140,7 @@ func (m *PubKey) Reset() { *m = PubKey{} } func (m *PubKey) String() string { return proto.CompactTextString(m) } func (*PubKey) ProtoMessage() {} func (*PubKey) Descriptor() ([]byte, []int) { - return fileDescriptor_e8a3c3ef848f382a, []int{2} + return fileDescriptor_e945911ae6a1b767, []int{2} } func (m *PubKey) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -194,7 +194,7 @@ func (m *Validator) Reset() { *m = Validator{} } func (m *Validator) String() string { return proto.CompactTextString(m) } func (*Validator) ProtoMessage() {} func (*Validator) Descriptor() ([]byte, []int) { - return fileDescriptor_e8a3c3ef848f382a, []int{3} + return fileDescriptor_e945911ae6a1b767, []int{3} } func (m *Validator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -254,7 +254,7 @@ func (m *ValidatorSet) Reset() { *m = ValidatorSet{} } func (m *ValidatorSet) String() string { return proto.CompactTextString(m) } func (*ValidatorSet) ProtoMessage() {} func (*ValidatorSet) Descriptor() ([]byte, []int) { - return fileDescriptor_e8a3c3ef848f382a, []int{4} + return fileDescriptor_e945911ae6a1b767, []int{4} } func (m *ValidatorSet) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -291,41 +291,41 @@ func (m *ValidatorSet) GetValidators() []Validator { } func init() { - proto.RegisterType((*MerkleRoot)(nil), "tendermint.spn.types.MerkleRoot") - proto.RegisterType((*ConsensusState)(nil), "tendermint.spn.types.ConsensusState") - proto.RegisterType((*PubKey)(nil), "tendermint.spn.types.PubKey") - proto.RegisterType((*Validator)(nil), "tendermint.spn.types.Validator") - proto.RegisterType((*ValidatorSet)(nil), "tendermint.spn.types.ValidatorSet") + proto.RegisterType((*MerkleRoot)(nil), "spn.types.MerkleRoot") + proto.RegisterType((*ConsensusState)(nil), "spn.types.ConsensusState") + proto.RegisterType((*PubKey)(nil), "spn.types.PubKey") + proto.RegisterType((*Validator)(nil), "spn.types.Validator") + proto.RegisterType((*ValidatorSet)(nil), "spn.types.ValidatorSet") } -func init() { proto.RegisterFile("types/ibc.proto", fileDescriptor_e8a3c3ef848f382a) } +func init() { proto.RegisterFile("spn/types/ibc.proto", fileDescriptor_e945911ae6a1b767) } -var fileDescriptor_e8a3c3ef848f382a = []byte{ - // 373 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x92, 0x41, 0xcb, 0xd3, 0x40, - 0x10, 0x86, 0xb3, 0x7e, 0xb5, 0xd0, 0xa9, 0xa8, 0x2c, 0x3d, 0x04, 0xf9, 0xc8, 0x17, 0xe2, 0xa5, - 0x78, 0x48, 0xa0, 0xde, 0x0a, 0x5e, 0x2a, 0x82, 0x20, 0x42, 0x69, 0xd1, 0x83, 0xb7, 0xa4, 0x5d, - 0xd2, 0xa5, 0xcd, 0xce, 0xb2, 0x3b, 0xa9, 0xf6, 0x5f, 0x78, 0xf1, 0xe2, 0x2f, 0xea, 0xb1, 0x47, - 0x4f, 0x22, 0xed, 0x1f, 0x91, 0x6c, 0x63, 0x52, 0x30, 0xb7, 0xd9, 0x99, 0xf7, 0x7d, 0xf7, 0x99, - 0x65, 0xe1, 0x19, 0x1d, 0xb4, 0xb0, 0x89, 0xcc, 0x56, 0xb1, 0x36, 0x48, 0xc8, 0x47, 0x24, 0xd4, - 0x5a, 0x98, 0x42, 0x2a, 0x8a, 0xad, 0x56, 0xb1, 0x9b, 0xbf, 0x18, 0xe5, 0x98, 0xa3, 0x13, 0x24, - 0x55, 0x75, 0xd5, 0x46, 0x21, 0xc0, 0x47, 0x61, 0xb6, 0x3b, 0xb1, 0x40, 0x24, 0xce, 0xa1, 0xb7, - 0x49, 0xed, 0xc6, 0x67, 0x21, 0x1b, 0x0f, 0x16, 0xae, 0x8e, 0x7e, 0x32, 0x78, 0xfa, 0x16, 0x95, - 0x15, 0xca, 0x96, 0x76, 0x49, 0x29, 0x09, 0x1e, 0x03, 0x57, 0xe2, 0x1b, 0x7d, 0x4e, 0x77, 0x72, - 0x9d, 0x12, 0x1a, 0xfb, 0xbe, 0x35, 0x75, 0x4c, 0xf8, 0x3d, 0x0c, 0x48, 0x16, 0xc2, 0x52, 0x5a, - 0x68, 0xff, 0x91, 0x93, 0xb5, 0x0d, 0x3e, 0x85, 0x9e, 0x41, 0x24, 0xff, 0x2e, 0x64, 0xe3, 0xe1, - 0x24, 0x8c, 0xbb, 0xe8, 0xe3, 0x16, 0x72, 0xd6, 0x3b, 0xfe, 0x7e, 0xf0, 0x16, 0xce, 0x13, 0x4d, - 0xa0, 0x3f, 0x2f, 0xb3, 0x0f, 0xe2, 0x50, 0xa1, 0x57, 0xca, 0x7f, 0xe8, 0x55, 0xcd, 0x47, 0xf0, - 0x78, 0x9f, 0xee, 0x4a, 0x51, 0xdf, 0x79, 0x3d, 0x44, 0x3f, 0x18, 0x0c, 0x1a, 0x40, 0xfe, 0x0a, - 0x9e, 0x6b, 0x83, 0x1a, 0xad, 0x30, 0x73, 0x23, 0xd1, 0x48, 0x3a, 0xd4, 0x19, 0xff, 0xf5, 0x79, - 0x08, 0xc3, 0x3d, 0x92, 0x54, 0xf9, 0x1c, 0xbf, 0x0a, 0x53, 0xa7, 0xde, 0xb6, 0xf8, 0x14, 0xfa, - 0xda, 0xf1, 0xd4, 0xdb, 0xdc, 0x77, 0x6f, 0x73, 0x65, 0xae, 0x37, 0xa9, 0x1d, 0xd1, 0x27, 0x78, - 0xd2, 0x60, 0x2d, 0x05, 0xf1, 0x77, 0x00, 0xfb, 0xe6, 0x1d, 0x7d, 0x16, 0xde, 0x8d, 0x87, 0x93, - 0x87, 0xee, 0xbc, 0xc6, 0x57, 0x47, 0xde, 0x18, 0x67, 0x6f, 0x8e, 0xe7, 0x80, 0x9d, 0xce, 0x01, - 0xfb, 0x73, 0x0e, 0xd8, 0xf7, 0x4b, 0xe0, 0x9d, 0x2e, 0x81, 0xf7, 0xeb, 0x12, 0x78, 0x5f, 0x5e, - 0xe6, 0x92, 0x36, 0x65, 0x16, 0xaf, 0xb0, 0x48, 0xda, 0xd8, 0xc4, 0x6a, 0x95, 0xe8, 0x6d, 0x9e, - 0xb8, 0xe8, 0xac, 0xef, 0xfe, 0xc9, 0xeb, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xf6, 0x64, 0xf8, - 0x72, 0x66, 0x02, 0x00, 0x00, +var fileDescriptor_e945911ae6a1b767 = []byte{ + // 371 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x92, 0xcf, 0x8b, 0xd3, 0x40, + 0x14, 0xc7, 0x33, 0xb6, 0x16, 0xf2, 0x2a, 0xa2, 0x63, 0x85, 0x20, 0x12, 0x43, 0xbc, 0x14, 0x0f, + 0x09, 0xd4, 0x9b, 0xe0, 0xa5, 0x5e, 0x44, 0x11, 0x4a, 0x0b, 0x1e, 0xbc, 0x25, 0xed, 0x90, 0x0e, + 0x6d, 0xe6, 0x0d, 0x33, 0x2f, 0xd5, 0xfe, 0x0b, 0x5e, 0x76, 0xff, 0xac, 0x1e, 0x7b, 0xdc, 0xd3, + 0xb2, 0xb4, 0xff, 0xc8, 0x92, 0x1f, 0x9b, 0x06, 0x76, 0x6f, 0x2f, 0xdf, 0x7c, 0xf2, 0xcd, 0x67, + 0x86, 0x07, 0x6f, 0xac, 0x56, 0x31, 0xed, 0xb5, 0xb0, 0xb1, 0x4c, 0x97, 0x91, 0x36, 0x48, 0xc8, + 0x5d, 0xab, 0x55, 0x54, 0x85, 0xef, 0x46, 0x19, 0x66, 0x58, 0xa5, 0x71, 0x39, 0xd5, 0x40, 0x18, + 0x00, 0xfc, 0x12, 0x66, 0xb3, 0x15, 0x73, 0x44, 0xe2, 0x1c, 0xfa, 0xeb, 0xc4, 0xae, 0x3d, 0x16, + 0xb0, 0xb1, 0x3b, 0xaf, 0xe6, 0xf0, 0x8a, 0xc1, 0xcb, 0x6f, 0xa8, 0xac, 0x50, 0xb6, 0xb0, 0x0b, + 0x4a, 0x48, 0xf0, 0x08, 0xb8, 0x12, 0xff, 0xe8, 0x77, 0xb2, 0x95, 0xab, 0x84, 0xd0, 0xd8, 0xef, + 0x97, 0x8f, 0x9e, 0x78, 0xc3, 0xdf, 0x83, 0x4b, 0x32, 0x17, 0x96, 0x92, 0x5c, 0x7b, 0xcf, 0x2a, + 0xec, 0x12, 0xf0, 0x18, 0xfa, 0x06, 0x91, 0xbc, 0x5e, 0xc0, 0xc6, 0xc3, 0xc9, 0xdb, 0xa8, 0x55, + 0x8e, 0x2e, 0x66, 0xd3, 0xfe, 0xe1, 0xf6, 0x83, 0x33, 0xaf, 0xc0, 0x70, 0x02, 0x83, 0x59, 0x91, + 0xfe, 0x14, 0xfb, 0xd2, 0xb7, 0x24, 0x1f, 0x7c, 0xcb, 0x99, 0x8f, 0xe0, 0xf9, 0x2e, 0xd9, 0x16, + 0xa2, 0xf9, 0x51, 0xfd, 0x10, 0xfe, 0x67, 0xe0, 0xb6, 0x56, 0xfc, 0x13, 0xbc, 0xd2, 0x06, 0x35, + 0x5a, 0x61, 0x66, 0x46, 0xa2, 0x91, 0xb4, 0x6f, 0x3a, 0x1e, 0xe5, 0x3c, 0x80, 0xe1, 0x0e, 0x49, + 0xaa, 0x6c, 0x86, 0x7f, 0x85, 0x69, 0x5a, 0xbb, 0x11, 0x8f, 0x61, 0xa0, 0x2b, 0x9f, 0xe6, 0x08, + 0xaf, 0x3b, 0x47, 0xa8, 0x45, 0x1b, 0xfd, 0x06, 0x0b, 0x7f, 0xc0, 0x8b, 0xd6, 0x65, 0x21, 0x88, + 0x7f, 0x01, 0xd8, 0xb5, 0x37, 0xe6, 0xb1, 0xa0, 0x37, 0x1e, 0x4e, 0x46, 0x9d, 0x92, 0x16, 0x6e, + 0x7a, 0x3a, 0xf4, 0xf4, 0xeb, 0xe1, 0xe4, 0xb3, 0xe3, 0xc9, 0x67, 0x77, 0x27, 0x9f, 0x5d, 0x9f, + 0x7d, 0xe7, 0x78, 0xf6, 0x9d, 0x9b, 0xb3, 0xef, 0xfc, 0xf9, 0x98, 0x49, 0x5a, 0x17, 0x69, 0xb4, + 0xc4, 0x3c, 0x26, 0xa1, 0x56, 0xc2, 0xe4, 0x52, 0x51, 0x5c, 0xae, 0x89, 0xde, 0x64, 0xf5, 0xaa, + 0xa4, 0x83, 0x6a, 0x0d, 0x3e, 0xdf, 0x07, 0x00, 0x00, 0xff, 0xff, 0x4b, 0x5a, 0x71, 0x2a, 0x3e, + 0x02, 0x00, 0x00, } func (m *MerkleRoot) Marshal() (dAtA []byte, err error) { diff --git a/pkg/types/monitoring.pb.go b/pkg/types/monitoring.pb.go index 5e0df67ab..ba7234917 100644 --- a/pkg/types/monitoring.pb.go +++ b/pkg/types/monitoring.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: types/monitoring.proto +// source: spn/types/monitoring.proto package types @@ -7,8 +7,8 @@ import ( fmt "fmt" _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -36,7 +36,7 @@ func (m *MonitoringPacketData) Reset() { *m = MonitoringPacketData{} } func (m *MonitoringPacketData) String() string { return proto.CompactTextString(m) } func (*MonitoringPacketData) ProtoMessage() {} func (*MonitoringPacketData) Descriptor() ([]byte, []int) { - return fileDescriptor_4a0d1b50e3af2385, []int{0} + return fileDescriptor_8fd55e1446543ca5, []int{0} } func (m *MonitoringPacketData) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -106,7 +106,7 @@ func (m *MonitoringPacketAck) Reset() { *m = MonitoringPacketAck{} } func (m *MonitoringPacketAck) String() string { return proto.CompactTextString(m) } func (*MonitoringPacketAck) ProtoMessage() {} func (*MonitoringPacketAck) Descriptor() ([]byte, []int) { - return fileDescriptor_4a0d1b50e3af2385, []int{1} + return fileDescriptor_8fd55e1446543ca5, []int{1} } func (m *MonitoringPacketAck) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -145,7 +145,7 @@ func (m *MonitoringPacket) Reset() { *m = MonitoringPacket{} } func (m *MonitoringPacket) String() string { return proto.CompactTextString(m) } func (*MonitoringPacket) ProtoMessage() {} func (*MonitoringPacket) Descriptor() ([]byte, []int) { - return fileDescriptor_4a0d1b50e3af2385, []int{2} + return fileDescriptor_8fd55e1446543ca5, []int{2} } func (m *MonitoringPacket) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -198,7 +198,7 @@ func (m *SignatureCounts) Reset() { *m = SignatureCounts{} } func (m *SignatureCounts) String() string { return proto.CompactTextString(m) } func (*SignatureCounts) ProtoMessage() {} func (*SignatureCounts) Descriptor() ([]byte, []int) { - return fileDescriptor_4a0d1b50e3af2385, []int{3} + return fileDescriptor_8fd55e1446543ca5, []int{3} } func (m *SignatureCounts) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -252,7 +252,7 @@ func (m *SignatureCount) Reset() { *m = SignatureCount{} } func (m *SignatureCount) String() string { return proto.CompactTextString(m) } func (*SignatureCount) ProtoMessage() {} func (*SignatureCount) Descriptor() ([]byte, []int) { - return fileDescriptor_4a0d1b50e3af2385, []int{4} + return fileDescriptor_8fd55e1446543ca5, []int{4} } func (m *SignatureCount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -289,42 +289,42 @@ func (m *SignatureCount) GetOpAddress() string { } func init() { - proto.RegisterType((*MonitoringPacketData)(nil), "tendermint.spn.types.MonitoringPacketData") - proto.RegisterType((*MonitoringPacketAck)(nil), "tendermint.spn.types.MonitoringPacketAck") - proto.RegisterType((*MonitoringPacket)(nil), "tendermint.spn.types.MonitoringPacket") - proto.RegisterType((*SignatureCounts)(nil), "tendermint.spn.types.SignatureCounts") - proto.RegisterType((*SignatureCount)(nil), "tendermint.spn.types.SignatureCount") + proto.RegisterType((*MonitoringPacketData)(nil), "spn.types.MonitoringPacketData") + proto.RegisterType((*MonitoringPacketAck)(nil), "spn.types.MonitoringPacketAck") + proto.RegisterType((*MonitoringPacket)(nil), "spn.types.MonitoringPacket") + proto.RegisterType((*SignatureCounts)(nil), "spn.types.SignatureCounts") + proto.RegisterType((*SignatureCount)(nil), "spn.types.SignatureCount") } -func init() { proto.RegisterFile("types/monitoring.proto", fileDescriptor_4a0d1b50e3af2385) } +func init() { proto.RegisterFile("spn/types/monitoring.proto", fileDescriptor_8fd55e1446543ca5) } -var fileDescriptor_4a0d1b50e3af2385 = []byte{ - // 397 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x52, 0xbd, 0x8e, 0xda, 0x40, - 0x10, 0xb6, 0x03, 0x42, 0x61, 0x90, 0x02, 0xda, 0x90, 0x88, 0xa0, 0xc8, 0x20, 0x27, 0x41, 0x34, - 0xd8, 0x12, 0x69, 0x93, 0x02, 0x87, 0x82, 0x26, 0x52, 0xe4, 0x24, 0x4d, 0x9a, 0xc8, 0xac, 0x57, - 0xc6, 0x32, 0xde, 0xb5, 0xbc, 0x6b, 0xa4, 0x7b, 0x86, 0x6b, 0xee, 0x01, 0xee, 0x31, 0xee, 0x21, - 0x28, 0xd1, 0x55, 0xa7, 0x2b, 0xd0, 0x09, 0x5e, 0xe4, 0xc4, 0xae, 0x8f, 0x1f, 0x1f, 0xc5, 0x55, - 0x9e, 0xf9, 0xe6, 0x9b, 0xef, 0xfb, 0xbc, 0x1a, 0x78, 0x2f, 0x2e, 0x12, 0xc2, 0xed, 0x98, 0xd1, - 0x50, 0xb0, 0x34, 0xa4, 0x81, 0x95, 0xa4, 0x4c, 0x30, 0xd4, 0x14, 0x84, 0xfa, 0x24, 0x8d, 0x43, - 0x2a, 0x2c, 0x9e, 0x50, 0x4b, 0xd2, 0xda, 0xcd, 0x80, 0x05, 0x4c, 0x12, 0xec, 0x5d, 0xa5, 0xb8, - 0xed, 0x0f, 0x98, 0xf1, 0x98, 0xf1, 0xff, 0x6a, 0xa0, 0x1a, 0x35, 0x32, 0x17, 0xd0, 0xfc, 0xb9, - 0x97, 0xfe, 0xe5, 0xe1, 0x88, 0x88, 0xb1, 0x27, 0x3c, 0xf4, 0x07, 0x1a, 0x71, 0x01, 0x6f, 0xe9, - 0x5d, 0xbd, 0x5f, 0x1b, 0xf6, 0xac, 0x73, 0xce, 0x56, 0x51, 0x65, 0xa2, 0xb9, 0xcf, 0x14, 0x9c, - 0xd7, 0x50, 0x49, 0x64, 0x65, 0xbe, 0x83, 0xb7, 0xc5, 0x8d, 0x11, 0x8e, 0xcc, 0x4b, 0x1d, 0x1a, - 0x45, 0x1c, 0x75, 0xa1, 0x36, 0x9d, 0x33, 0x1c, 0x4d, 0x48, 0x18, 0xcc, 0x54, 0x8c, 0x92, 0x7b, - 0x0c, 0xa1, 0xbf, 0x50, 0xe7, 0x61, 0x40, 0x3d, 0x91, 0xa5, 0xe4, 0x07, 0xcb, 0xa8, 0xe0, 0xad, - 0x57, 0x32, 0xec, 0x97, 0xf3, 0x61, 0x7f, 0x9f, 0x92, 0x9d, 0xf2, 0x72, 0xdd, 0xd1, 0xdc, 0xa2, - 0x86, 0x99, 0x41, 0xbd, 0xc0, 0x44, 0x06, 0x80, 0x34, 0x96, 0xad, 0x8c, 0x52, 0x76, 0x8f, 0x10, - 0xe4, 0x40, 0x05, 0x3f, 0x05, 0x28, 0xf5, 0x6b, 0xc3, 0xcf, 0x2f, 0x09, 0x90, 0xfb, 0xe7, 0x9b, - 0xe6, 0xb5, 0x0e, 0x6f, 0x4e, 0x09, 0xe8, 0x23, 0x54, 0x59, 0x32, 0xf2, 0xfd, 0x94, 0x70, 0x2e, - 0x5d, 0xab, 0xee, 0x01, 0x40, 0x73, 0x40, 0x2e, 0x99, 0x7b, 0x22, 0x5c, 0x90, 0xfd, 0x9e, 0x7a, - 0x81, 0xaa, 0xf3, 0x6d, 0x27, 0x7d, 0xbf, 0xee, 0xf4, 0x82, 0x50, 0xcc, 0xb2, 0xa9, 0x85, 0x59, - 0x9c, 0x5f, 0x40, 0xfe, 0x19, 0x70, 0x3f, 0xb2, 0x55, 0xaa, 0x31, 0xc1, 0xb7, 0x37, 0x03, 0xc8, - 0x0f, 0x64, 0x4c, 0xb0, 0x7b, 0x46, 0xd7, 0xf9, 0xbe, 0xdc, 0x18, 0xfa, 0x6a, 0x63, 0xe8, 0x0f, - 0x1b, 0x43, 0xbf, 0xda, 0x1a, 0xda, 0x6a, 0x6b, 0x68, 0x77, 0x5b, 0x43, 0xfb, 0xf7, 0xe9, 0xc8, - 0xe3, 0xf0, 0xdb, 0x36, 0x4f, 0xa8, 0x9d, 0x44, 0x81, 0x32, 0x99, 0x56, 0xe4, 0xe1, 0x7d, 0x7d, - 0x0c, 0x00, 0x00, 0xff, 0xff, 0xbf, 0xfa, 0xff, 0x2f, 0xd9, 0x02, 0x00, 0x00, +var fileDescriptor_8fd55e1446543ca5 = []byte{ + // 395 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0xc1, 0x8a, 0xda, 0x40, + 0x18, 0xc7, 0x93, 0x2a, 0xd2, 0x7c, 0x42, 0x95, 0xa9, 0x05, 0x4d, 0x4b, 0x94, 0x14, 0x8a, 0x17, + 0x13, 0xb0, 0x87, 0x5e, 0xda, 0x83, 0xa9, 0x07, 0x5b, 0x28, 0x94, 0xf4, 0xd6, 0x4b, 0x89, 0x93, + 0x21, 0xa6, 0x31, 0x33, 0x21, 0x33, 0x16, 0x7a, 0xdb, 0x47, 0xd8, 0x07, 0xd8, 0xc7, 0xd8, 0x87, + 0xf0, 0x28, 0x7b, 0x5a, 0xf6, 0x20, 0x8b, 0xbe, 0xc8, 0xe2, 0x4c, 0xd6, 0x8d, 0xd9, 0xdd, 0x53, + 0x66, 0xfe, 0xdf, 0xff, 0xff, 0xfd, 0x26, 0x7c, 0x1f, 0x98, 0x3c, 0xa3, 0xae, 0xf8, 0x9f, 0x11, + 0xee, 0xa6, 0x8c, 0xc6, 0x82, 0xe5, 0x31, 0x8d, 0x9c, 0x2c, 0x67, 0x82, 0x21, 0x83, 0x67, 0xd4, + 0x91, 0x35, 0xb3, 0x13, 0xb1, 0x88, 0x49, 0xd5, 0x3d, 0x9c, 0x94, 0xc1, 0xec, 0x61, 0xc6, 0x53, + 0xc6, 0xff, 0xa8, 0x82, 0xba, 0xa8, 0x92, 0x9d, 0x40, 0xe7, 0xc7, 0xb1, 0xdf, 0xcf, 0x00, 0x27, + 0x44, 0x4c, 0x03, 0x11, 0xa0, 0x6f, 0xd0, 0x4e, 0x2b, 0x7a, 0x57, 0x1f, 0xe8, 0xc3, 0xe6, 0xf8, + 0xad, 0x73, 0xc4, 0x39, 0xd5, 0xe8, 0x4c, 0xf3, 0x1f, 0xc5, 0xbc, 0x97, 0xd0, 0xc8, 0xe4, 0xc9, + 0x7e, 0x03, 0xaf, 0xab, 0x89, 0x09, 0x4e, 0xec, 0x33, 0x1d, 0xda, 0x55, 0x1d, 0x0d, 0xa0, 0x39, + 0x5f, 0x32, 0x9c, 0xcc, 0x48, 0x1c, 0x2d, 0x14, 0xbb, 0xe6, 0x97, 0x25, 0xf4, 0x1d, 0x5a, 0x3c, + 0x8e, 0x68, 0x20, 0x56, 0x39, 0xf9, 0xca, 0x56, 0x54, 0xf0, 0xee, 0x0b, 0xf9, 0x42, 0xb3, 0xf4, + 0xc2, 0x5f, 0xa7, 0x0e, 0xaf, 0xbe, 0xde, 0xf6, 0x35, 0xbf, 0x1a, 0xb4, 0xff, 0x42, 0xab, 0xe2, + 0x44, 0x16, 0x80, 0xa4, 0xc9, 0xab, 0xe4, 0xd7, 0xfd, 0x92, 0x82, 0x3e, 0x41, 0x03, 0xdf, 0x53, + 0x6b, 0xc3, 0xe6, 0xb8, 0xf7, 0x2c, 0xb5, 0x80, 0x16, 0x76, 0xfb, 0x42, 0x87, 0x57, 0xa7, 0x06, + 0xf4, 0x0e, 0x0c, 0x96, 0x4d, 0xc2, 0x30, 0x27, 0x9c, 0x4b, 0x94, 0xe1, 0x3f, 0x08, 0x68, 0x09, + 0xc8, 0x27, 0xcb, 0x40, 0xc4, 0xff, 0xc8, 0x31, 0xa7, 0xfe, 0xd5, 0xf0, 0x3e, 0x1f, 0x5a, 0xdf, + 0x6c, 0xfb, 0x1f, 0xa2, 0x58, 0x2c, 0x56, 0x73, 0x07, 0xb3, 0xb4, 0x18, 0x70, 0xf1, 0x19, 0xf1, + 0x30, 0x51, 0x8b, 0xe3, 0x4c, 0x09, 0xbe, 0xba, 0x1c, 0x41, 0x31, 0xff, 0x29, 0xc1, 0xfe, 0x13, + 0x7d, 0xbd, 0x2f, 0xeb, 0x9d, 0xa5, 0x6f, 0x76, 0x96, 0x7e, 0xbb, 0xb3, 0xf4, 0xf3, 0xbd, 0xa5, + 0x6d, 0xf6, 0x96, 0x76, 0xbd, 0xb7, 0xb4, 0xdf, 0xef, 0x4b, 0x0c, 0x41, 0x68, 0x48, 0xf2, 0x34, + 0xa6, 0xc2, 0x3d, 0x6c, 0x66, 0x96, 0x44, 0x0a, 0x32, 0x6f, 0xc8, 0xbd, 0xfa, 0x78, 0x17, 0x00, + 0x00, 0xff, 0xff, 0x42, 0xcb, 0x44, 0x44, 0xb1, 0x02, 0x00, 0x00, } func (m *MonitoringPacketData) Marshal() (dAtA []byte, err error) { diff --git a/pkg/types/validator_set.go b/pkg/types/validator_set.go index 180a0d957..1af3975da 100644 --- a/pkg/types/validator_set.go +++ b/pkg/types/validator_set.go @@ -9,10 +9,10 @@ import ( "gopkg.in/yaml.v2" - ibctmtypes "github.com/cosmos/ibc-go/v6/modules/light-clients/07-tendermint/types" + "github.com/cometbft/cometbft/crypto/ed25519" + tmtypes "github.com/cometbft/cometbft/types" + ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" "github.com/pkg/errors" - "github.com/tendermint/tendermint/crypto/ed25519" - tmtypes "github.com/tendermint/tendermint/types" ) const TypeEd25519 = "tendermint/PubKeyEd25519" diff --git a/proto/buf.gen.gogo.yaml b/proto/buf.gen.gogo.yaml new file mode 100644 index 000000000..fb42506fa --- /dev/null +++ b/proto/buf.gen.gogo.yaml @@ -0,0 +1,9 @@ +version: v1 +plugins: + - name: gocosmos + out: . + opt: + - plugins=grpc,Mgoogle/protobuf/any.proto=github.com/cosmos/cosmos-sdk/codec/types + - name: grpc-gateway + out: . + opt: logtostderr=true,allow_colon_final_segments=true diff --git a/proto/buf.gen.swagger.yaml b/proto/buf.gen.swagger.yaml new file mode 100644 index 000000000..445268440 --- /dev/null +++ b/proto/buf.gen.swagger.yaml @@ -0,0 +1,10 @@ +version: v1 + +plugins: + - name: swagger + out: ../docs/swagger + opt: + - logtostderr=true + - fqn_for_swagger_name=true + - simple_operation_ids=true + strategy: all diff --git a/proto/buf.lock b/proto/buf.lock new file mode 100644 index 000000000..676d0b651 --- /dev/null +++ b/proto/buf.lock @@ -0,0 +1,23 @@ +# Generated by buf. DO NOT EDIT. +version: v1 +deps: + - remote: buf.build + owner: cosmos + repository: cosmos-proto + commit: 1935555c206d4afb9e94615dfd0fad31 + - remote: buf.build + owner: cosmos + repository: cosmos-sdk + commit: 954f7b05f38440fc8250134b15adec47 + - remote: buf.build + owner: cosmos + repository: gogo-proto + commit: 34d970b699f84aa382f3c29773a60836 + - remote: buf.build + owner: cosmos + repository: ics23 + commit: 3c44d8daa8b44059ac744cd17d4a49d7 + - remote: buf.build + owner: googleapis + repository: googleapis + commit: 5ae7f88519b04fe1965da0f8a375a088 diff --git a/proto/buf.yaml b/proto/buf.yaml new file mode 100644 index 000000000..d8adfa6d9 --- /dev/null +++ b/proto/buf.yaml @@ -0,0 +1,26 @@ +version: v1 +name: buf.build/tendermint/spn +deps: + - buf.build/cosmos/cosmos-sdk:954f7b05f38440fc8250134b15adec47 + - buf.build/cosmos/cosmos-proto:1935555c206d4afb9e94615dfd0fad31 + - buf.build/cosmos/gogo-proto:34d970b699f84aa382f3c29773a60836 + - buf.build/googleapis/googleapis:5ae7f88519b04fe1965da0f8a375a088 + - buf.build/cosmos/ics23:3c44d8daa8b44059ac744cd17d4a49d7 +lint: + use: + - DEFAULT + - COMMENTS + - FILE_LOWER_SNAKE_CASE + except: + - UNARY_RPC + - COMMENT_FIELD + - SERVICE_SUFFIX + - PACKAGE_VERSION_SUFFIX + - RPC_REQUEST_STANDARD_NAME + - RPC_REQUEST_RESPONSE_UNIQUE + - RPC_RESPONSE_STANDARD_NAME + - RPC_REQUEST_RESPONSE_UNIQUE + - COMMENT_MESSAGE +breaking: + use: + - FILE diff --git a/proto/launch/chain.proto b/proto/spn/launch/chain.proto similarity index 98% rename from proto/launch/chain.proto rename to proto/spn/launch/chain.proto index 7ddad8b28..da0521240 100644 --- a/proto/launch/chain.proto +++ b/proto/spn/launch/chain.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.launch; +package spn.launch; import "gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; diff --git a/proto/launch/events.proto b/proto/spn/launch/events.proto similarity index 93% rename from proto/launch/events.proto rename to proto/spn/launch/events.proto index 4bac7eb7a..0d69d289c 100644 --- a/proto/launch/events.proto +++ b/proto/spn/launch/events.proto @@ -1,16 +1,16 @@ syntax = "proto3"; -package tendermint.spn.launch; +package spn.launch; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos_proto/cosmos.proto"; import "google/protobuf/timestamp.proto"; -import "launch/chain.proto"; -import "launch/request.proto"; -import "launch/genesis_account.proto"; -import "launch/vesting_account.proto"; -import "launch/genesis_validator.proto"; +import "spn/launch/chain.proto"; +import "spn/launch/request.proto"; +import "spn/launch/genesis_account.proto"; +import "spn/launch/vesting_account.proto"; +import "spn/launch/genesis_validator.proto"; option go_package = "github.com/tendermint/spn/x/launch/types"; diff --git a/proto/launch/genesis.proto b/proto/spn/launch/genesis.proto similarity index 79% rename from proto/launch/genesis.proto rename to proto/spn/launch/genesis.proto index 4451a20dc..580ed8003 100644 --- a/proto/launch/genesis.proto +++ b/proto/spn/launch/genesis.proto @@ -1,13 +1,13 @@ syntax = "proto3"; -package tendermint.spn.launch; +package spn.launch; import "gogoproto/gogo.proto"; -import "launch/request.proto"; -import "launch/vesting_account.proto"; -import "launch/genesis_account.proto"; -import "launch/genesis_validator.proto"; -import "launch/chain.proto"; -import "launch/params.proto"; +import "spn/launch/request.proto"; +import "spn/launch/vesting_account.proto"; +import "spn/launch/genesis_account.proto"; +import "spn/launch/genesis_validator.proto"; +import "spn/launch/chain.proto"; +import "spn/launch/params.proto"; option go_package = "github.com/tendermint/spn/x/launch/types"; diff --git a/proto/launch/genesis_account.proto b/proto/spn/launch/genesis_account.proto similarity index 95% rename from proto/launch/genesis_account.proto rename to proto/spn/launch/genesis_account.proto index 2d6c2d564..1e82af9a6 100644 --- a/proto/launch/genesis_account.proto +++ b/proto/spn/launch/genesis_account.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.launch; +package spn.launch; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; diff --git a/proto/launch/genesis_validator.proto b/proto/spn/launch/genesis_validator.proto similarity index 97% rename from proto/launch/genesis_validator.proto rename to proto/spn/launch/genesis_validator.proto index 0c32b5eaa..f68096881 100644 --- a/proto/launch/genesis_validator.proto +++ b/proto/spn/launch/genesis_validator.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.launch; +package spn.launch; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; diff --git a/proto/launch/params.proto b/proto/spn/launch/params.proto similarity index 97% rename from proto/launch/params.proto rename to proto/spn/launch/params.proto index e95a2ae2c..5f046a359 100644 --- a/proto/launch/params.proto +++ b/proto/spn/launch/params.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.launch; +package spn.launch; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; diff --git a/proto/launch/query.proto b/proto/spn/launch/query.proto similarity index 96% rename from proto/launch/query.proto rename to proto/spn/launch/query.proto index a86b94822..f4400ace8 100644 --- a/proto/launch/query.proto +++ b/proto/spn/launch/query.proto @@ -1,17 +1,17 @@ syntax = "proto3"; -package tendermint.spn.launch; +package spn.launch; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; import "cosmos_proto/cosmos.proto"; -import "launch/request.proto"; -import "launch/vesting_account.proto"; -import "launch/genesis_account.proto"; -import "launch/genesis_validator.proto"; -import "launch/chain.proto"; -import "launch/params.proto"; +import "spn/launch/request.proto"; +import "spn/launch/vesting_account.proto"; +import "spn/launch/genesis_account.proto"; +import "spn/launch/genesis_validator.proto"; +import "spn/launch/chain.proto"; +import "spn/launch/params.proto"; option go_package = "github.com/tendermint/spn/x/launch/types"; diff --git a/proto/launch/request.proto b/proto/spn/launch/request.proto similarity index 87% rename from proto/launch/request.proto rename to proto/spn/launch/request.proto index 2cce47e20..aaf873ac9 100644 --- a/proto/launch/request.proto +++ b/proto/spn/launch/request.proto @@ -1,12 +1,12 @@ syntax = "proto3"; -package tendermint.spn.launch; +package spn.launch; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; -import "launch/genesis_account.proto"; -import "launch/vesting_account.proto"; -import "launch/genesis_validator.proto"; +import "spn/launch/genesis_account.proto"; +import "spn/launch/vesting_account.proto"; +import "spn/launch/genesis_validator.proto"; option go_package = "github.com/tendermint/spn/x/launch/types"; diff --git a/proto/launch/tx.proto b/proto/spn/launch/tx.proto similarity index 97% rename from proto/launch/tx.proto rename to proto/spn/launch/tx.proto index b0f9c0d1a..acd185ecf 100644 --- a/proto/launch/tx.proto +++ b/proto/spn/launch/tx.proto @@ -1,13 +1,13 @@ syntax = "proto3"; -package tendermint.spn.launch; +package spn.launch; import "gogoproto/gogo.proto"; import "google/protobuf/timestamp.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos_proto/cosmos.proto"; -import "launch/chain.proto"; -import "launch/request.proto"; +import "spn/launch/chain.proto"; +import "spn/launch/request.proto"; option go_package = "github.com/tendermint/spn/x/launch/types"; diff --git a/proto/launch/vesting_account.proto b/proto/spn/launch/vesting_account.proto similarity index 97% rename from proto/launch/vesting_account.proto rename to proto/spn/launch/vesting_account.proto index 4f8229255..794ae9f28 100644 --- a/proto/launch/vesting_account.proto +++ b/proto/spn/launch/vesting_account.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.launch; +package spn.launch; option go_package = "github.com/tendermint/spn/x/launch/types"; diff --git a/proto/monitoringc/genesis.proto b/proto/spn/monitoringc/genesis.proto similarity index 73% rename from proto/monitoringc/genesis.proto rename to proto/spn/monitoringc/genesis.proto index ffc4c7890..99b0de86e 100644 --- a/proto/monitoringc/genesis.proto +++ b/proto/spn/monitoringc/genesis.proto @@ -1,13 +1,13 @@ syntax = "proto3"; -package tendermint.spn.monitoringc; +package spn.monitoringc; import "gogoproto/gogo.proto"; -import "monitoringc/params.proto"; -import "monitoringc/verified_client_id.proto"; -import "monitoringc/provider_client_id.proto"; -import "monitoringc/launch_id_from_verified_client_id.proto"; -import "monitoringc/launch_id_from_channel_id.proto"; -import "monitoringc/monitoring_history.proto"; +import "spn/monitoringc/params.proto"; +import "spn/monitoringc/verified_client_id.proto"; +import "spn/monitoringc/provider_client_id.proto"; +import "spn/monitoringc/launch_id_from_verified_client_id.proto"; +import "spn/monitoringc/launch_id_from_channel_id.proto"; +import "spn/monitoringc/monitoring_history.proto"; option go_package = "github.com/tendermint/spn/x/monitoringc/types"; diff --git a/proto/monitoringc/launch_id_from_channel_id.proto b/proto/spn/monitoringc/launch_id_from_channel_id.proto similarity index 82% rename from proto/monitoringc/launch_id_from_channel_id.proto rename to proto/spn/monitoringc/launch_id_from_channel_id.proto index 753e44da0..0f8dc9543 100644 --- a/proto/monitoringc/launch_id_from_channel_id.proto +++ b/proto/spn/monitoringc/launch_id_from_channel_id.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.monitoringc; +package spn.monitoringc; option go_package = "github.com/tendermint/spn/x/monitoringc/types"; diff --git a/proto/monitoringc/launch_id_from_verified_client_id.proto b/proto/spn/monitoringc/launch_id_from_verified_client_id.proto similarity index 83% rename from proto/monitoringc/launch_id_from_verified_client_id.proto rename to proto/spn/monitoringc/launch_id_from_verified_client_id.proto index 00edb30ab..758e11cd9 100644 --- a/proto/monitoringc/launch_id_from_verified_client_id.proto +++ b/proto/spn/monitoringc/launch_id_from_verified_client_id.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.monitoringc; +package spn.monitoringc; option go_package = "github.com/tendermint/spn/x/monitoringc/types"; diff --git a/proto/monitoringc/monitoring_history.proto b/proto/spn/monitoringc/monitoring_history.proto similarity index 56% rename from proto/monitoringc/monitoring_history.proto rename to proto/spn/monitoringc/monitoring_history.proto index 24db11532..f72a62d57 100644 --- a/proto/monitoringc/monitoring_history.proto +++ b/proto/spn/monitoringc/monitoring_history.proto @@ -1,12 +1,12 @@ syntax = "proto3"; -package tendermint.spn.monitoringc; +package spn.monitoringc; import "gogoproto/gogo.proto"; -import "types/monitoring.proto"; +import "spn/types/monitoring.proto"; option go_package = "github.com/tendermint/spn/x/monitoringc/types"; message MonitoringHistory { uint64 launchID = 1; - tendermint.spn.types.MonitoringPacket latestMonitoringPacket = 2 [(gogoproto.nullable) = false]; + spn.types.MonitoringPacket latestMonitoringPacket = 2 [(gogoproto.nullable) = false]; } diff --git a/proto/monitoringc/params.proto b/proto/spn/monitoringc/params.proto similarity index 86% rename from proto/monitoringc/params.proto rename to proto/spn/monitoringc/params.proto index b65e1ae40..4246cf190 100644 --- a/proto/monitoringc/params.proto +++ b/proto/spn/monitoringc/params.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.monitoringc; +package spn.monitoringc; import "gogoproto/gogo.proto"; diff --git a/proto/monitoringc/provider_client_id.proto b/proto/spn/monitoringc/provider_client_id.proto similarity index 82% rename from proto/monitoringc/provider_client_id.proto rename to proto/spn/monitoringc/provider_client_id.proto index 52287834a..a179c6a53 100644 --- a/proto/monitoringc/provider_client_id.proto +++ b/proto/spn/monitoringc/provider_client_id.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.monitoringc; +package spn.monitoringc; option go_package = "github.com/tendermint/spn/x/monitoringc/types"; diff --git a/proto/monitoringc/query.proto b/proto/spn/monitoringc/query.proto similarity index 92% rename from proto/monitoringc/query.proto rename to proto/spn/monitoringc/query.proto index 163475cf5..ee49535e7 100644 --- a/proto/monitoringc/query.proto +++ b/proto/spn/monitoringc/query.proto @@ -1,15 +1,15 @@ syntax = "proto3"; -package tendermint.spn.monitoringc; +package spn.monitoringc; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "monitoringc/params.proto"; -import "monitoringc/provider_client_id.proto"; -import "monitoringc/launch_id_from_verified_client_id.proto"; -import "monitoringc/launch_id_from_channel_id.proto"; -import "monitoringc/monitoring_history.proto"; +import "spn/monitoringc/params.proto"; +import "spn/monitoringc/provider_client_id.proto"; +import "spn/monitoringc/launch_id_from_verified_client_id.proto"; +import "spn/monitoringc/launch_id_from_channel_id.proto"; +import "spn/monitoringc/monitoring_history.proto"; option go_package = "github.com/tendermint/spn/x/monitoringc/types"; diff --git a/proto/monitoringc/tx.proto b/proto/spn/monitoringc/tx.proto similarity index 71% rename from proto/monitoringc/tx.proto rename to proto/spn/monitoringc/tx.proto index a8514c6b6..3bcecd4c8 100644 --- a/proto/monitoringc/tx.proto +++ b/proto/spn/monitoringc/tx.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package tendermint.spn.monitoringc; +package spn.monitoringc; import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; -import "types/ibc.proto"; +import "spn/types/ibc.proto"; option go_package = "github.com/tendermint/spn/x/monitoringc/types"; @@ -15,8 +15,8 @@ service Msg { message MsgCreateClient { string creator = 1; uint64 launchID = 2; - tendermint.spn.types.ConsensusState consensusState = 3 [(gogoproto.nullable) = false]; - tendermint.spn.types.ValidatorSet validatorSet = 4 [(gogoproto.nullable) = false]; + spn.types.ConsensusState consensusState = 3 [(gogoproto.nullable) = false]; + spn.types.ValidatorSet validatorSet = 4 [(gogoproto.nullable) = false]; int64 unbondingPeriod = 5; uint64 revisionHeight = 6; } diff --git a/proto/monitoringc/verified_client_id.proto b/proto/spn/monitoringc/verified_client_id.proto similarity index 83% rename from proto/monitoringc/verified_client_id.proto rename to proto/spn/monitoringc/verified_client_id.proto index f4d7f582d..1bcf22ce6 100644 --- a/proto/monitoringc/verified_client_id.proto +++ b/proto/spn/monitoringc/verified_client_id.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.monitoringc; +package spn.monitoringc; option go_package = "github.com/tendermint/spn/x/monitoringc/types"; diff --git a/proto/monitoringp/connection_channel_id.proto b/proto/spn/monitoringp/connection_channel_id.proto similarity index 80% rename from proto/monitoringp/connection_channel_id.proto rename to proto/spn/monitoringp/connection_channel_id.proto index c8647c4de..c3b6ad467 100644 --- a/proto/monitoringp/connection_channel_id.proto +++ b/proto/spn/monitoringp/connection_channel_id.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.monitoringp; +package spn.monitoringp; option go_package = "github.com/tendermint/spn/x/monitoringp/types"; diff --git a/proto/monitoringp/consumer_client_id.proto b/proto/spn/monitoringp/consumer_client_id.proto similarity index 79% rename from proto/monitoringp/consumer_client_id.proto rename to proto/spn/monitoringp/consumer_client_id.proto index 9e7cac90b..2c4d8b287 100644 --- a/proto/monitoringp/consumer_client_id.proto +++ b/proto/spn/monitoringp/consumer_client_id.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.monitoringp; +package spn.monitoringp; option go_package = "github.com/tendermint/spn/x/monitoringp/types"; diff --git a/proto/monitoringp/genesis.proto b/proto/spn/monitoringp/genesis.proto similarity index 68% rename from proto/monitoringp/genesis.proto rename to proto/spn/monitoringp/genesis.proto index 2384a7e09..250ac4f33 100644 --- a/proto/monitoringp/genesis.proto +++ b/proto/spn/monitoringp/genesis.proto @@ -1,11 +1,11 @@ syntax = "proto3"; -package tendermint.spn.monitoringp; +package spn.monitoringp; import "gogoproto/gogo.proto"; -import "monitoringp/params.proto"; -import "monitoringp/consumer_client_id.proto"; -import "monitoringp/connection_channel_id.proto"; -import "monitoringp/monitoring_info.proto"; +import "spn/monitoringp/params.proto"; +import "spn/monitoringp/consumer_client_id.proto"; +import "spn/monitoringp/connection_channel_id.proto"; +import "spn/monitoringp/monitoring_info.proto"; option go_package = "github.com/tendermint/spn/x/monitoringp/types"; diff --git a/proto/monitoringp/monitoring_info.proto b/proto/spn/monitoringp/monitoring_info.proto similarity index 56% rename from proto/monitoringp/monitoring_info.proto rename to proto/spn/monitoringp/monitoring_info.proto index 5f6e5229c..965b1cb53 100644 --- a/proto/monitoringp/monitoring_info.proto +++ b/proto/spn/monitoringp/monitoring_info.proto @@ -1,12 +1,12 @@ syntax = "proto3"; -package tendermint.spn.monitoringp; +package spn.monitoringp; import "gogoproto/gogo.proto"; -import "types/monitoring.proto"; +import "spn/types/monitoring.proto"; option go_package = "github.com/tendermint/spn/x/monitoringp/types"; message MonitoringInfo { bool transmitted = 1; - tendermint.spn.types.SignatureCounts signatureCounts = 2 [(gogoproto.nullable) = false]; + spn.types.SignatureCounts signatureCounts = 2 [(gogoproto.nullable) = false]; } diff --git a/proto/monitoringp/params.proto b/proto/spn/monitoringp/params.proto similarity index 75% rename from proto/monitoringp/params.proto rename to proto/spn/monitoringp/params.proto index 59d112cde..cb33de288 100644 --- a/proto/monitoringp/params.proto +++ b/proto/spn/monitoringp/params.proto @@ -1,8 +1,8 @@ syntax = "proto3"; -package tendermint.spn.monitoringp; +package spn.monitoringp; import "gogoproto/gogo.proto"; -import "types/ibc.proto"; +import "spn/types/ibc.proto"; option go_package = "github.com/tendermint/spn/x/monitoringp/types"; @@ -12,7 +12,7 @@ message Params { int64 lastBlockHeight = 1; string consumerChainID = 2; - tendermint.spn.types.ConsensusState consumerConsensusState = 3 [(gogoproto.nullable) = false]; + spn.types.ConsensusState consumerConsensusState = 3 [(gogoproto.nullable) = false]; int64 consumerUnbondingPeriod = 4; uint64 consumerRevisionHeight = 5; } diff --git a/proto/monitoringp/query.proto b/proto/spn/monitoringp/query.proto similarity index 89% rename from proto/monitoringp/query.proto rename to proto/spn/monitoringp/query.proto index 707c0df18..41beed390 100644 --- a/proto/monitoringp/query.proto +++ b/proto/spn/monitoringp/query.proto @@ -1,13 +1,13 @@ syntax = "proto3"; -package tendermint.spn.monitoringp; +package spn.monitoringp; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "monitoringp/params.proto"; -import "monitoringp/consumer_client_id.proto"; -import "monitoringp/connection_channel_id.proto"; -import "monitoringp/monitoring_info.proto"; +import "spn/monitoringp/params.proto"; +import "spn/monitoringp/consumer_client_id.proto"; +import "spn/monitoringp/connection_channel_id.proto"; +import "spn/monitoringp/monitoring_info.proto"; option go_package = "github.com/tendermint/spn/x/monitoringp/types"; diff --git a/proto/monitoringp/tx.proto b/proto/spn/monitoringp/tx.proto similarity index 79% rename from proto/monitoringp/tx.proto rename to proto/spn/monitoringp/tx.proto index fb4fddc91..e9710b966 100644 --- a/proto/monitoringp/tx.proto +++ b/proto/spn/monitoringp/tx.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.monitoringp; +package spn.monitoringp; option go_package = "github.com/tendermint/spn/x/monitoringp/types"; diff --git a/proto/participation/auction_used_allocations.proto b/proto/spn/participation/auction_used_allocations.proto similarity index 93% rename from proto/participation/auction_used_allocations.proto rename to proto/spn/participation/auction_used_allocations.proto index 46f377312..fb1ff1f39 100644 --- a/proto/participation/auction_used_allocations.proto +++ b/proto/spn/participation/auction_used_allocations.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.participation; +package spn.participation; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/proto/participation/events.proto b/proto/spn/participation/events.proto similarity index 93% rename from proto/participation/events.proto rename to proto/spn/participation/events.proto index 0e0ec2fbe..8b77f387d 100644 --- a/proto/participation/events.proto +++ b/proto/spn/participation/events.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.participation; +package spn.participation; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/proto/participation/genesis.proto b/proto/spn/participation/genesis.proto similarity index 73% rename from proto/participation/genesis.proto rename to proto/spn/participation/genesis.proto index 64a93955a..3afb8262d 100644 --- a/proto/participation/genesis.proto +++ b/proto/spn/participation/genesis.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package tendermint.spn.participation; +package spn.participation; import "gogoproto/gogo.proto"; -import "participation/params.proto"; -import "participation/used_allocations.proto"; -import "participation/auction_used_allocations.proto"; +import "spn/participation/params.proto"; +import "spn/participation/used_allocations.proto"; +import "spn/participation/auction_used_allocations.proto"; option go_package = "github.com/tendermint/spn/x/participation/types"; diff --git a/proto/participation/params.proto b/proto/spn/participation/params.proto similarity index 97% rename from proto/participation/params.proto rename to proto/spn/participation/params.proto index 259b4b9d3..3018aa62e 100644 --- a/proto/participation/params.proto +++ b/proto/spn/participation/params.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.participation; +package spn.participation; import "gogoproto/gogo.proto"; import "google/protobuf/duration.proto"; diff --git a/proto/participation/query.proto b/proto/spn/participation/query.proto similarity index 96% rename from proto/participation/query.proto rename to proto/spn/participation/query.proto index dfc9ac748..e95d7a019 100644 --- a/proto/participation/query.proto +++ b/proto/spn/participation/query.proto @@ -1,14 +1,14 @@ syntax = "proto3"; -package tendermint.spn.participation; +package spn.participation; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; import "cosmos_proto/cosmos.proto"; -import "participation/params.proto"; -import "participation/used_allocations.proto"; -import "participation/auction_used_allocations.proto"; +import "spn/participation/params.proto"; +import "spn/participation/used_allocations.proto"; +import "spn/participation/auction_used_allocations.proto"; option go_package = "github.com/tendermint/spn/x/participation/types"; diff --git a/proto/participation/tx.proto b/proto/spn/participation/tx.proto similarity index 93% rename from proto/participation/tx.proto rename to proto/spn/participation/tx.proto index 0bf038d91..d8adb8bed 100644 --- a/proto/participation/tx.proto +++ b/proto/spn/participation/tx.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.participation; +package spn.participation; option go_package = "github.com/tendermint/spn/x/participation/types"; diff --git a/proto/participation/used_allocations.proto b/proto/spn/participation/used_allocations.proto similarity index 93% rename from proto/participation/used_allocations.proto rename to proto/spn/participation/used_allocations.proto index 55e64a150..f59c6092d 100644 --- a/proto/participation/used_allocations.proto +++ b/proto/spn/participation/used_allocations.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.participation; +package spn.participation; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/proto/profile/coordinator.proto b/proto/spn/profile/coordinator.proto similarity index 95% rename from proto/profile/coordinator.proto rename to proto/spn/profile/coordinator.proto index e1bc8be2c..03eee7d1f 100644 --- a/proto/profile/coordinator.proto +++ b/proto/spn/profile/coordinator.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.profile; +package spn.profile; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/proto/profile/events.proto b/proto/spn/profile/events.proto similarity index 90% rename from proto/profile/events.proto rename to proto/spn/profile/events.proto index 03611b7cf..7ba4678c1 100644 --- a/proto/profile/events.proto +++ b/proto/spn/profile/events.proto @@ -1,11 +1,11 @@ syntax = "proto3"; -package tendermint.spn.profile; +package spn.profile; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; -import "profile/coordinator.proto"; -import "profile/validator.proto"; +import "spn/profile/coordinator.proto"; +import "spn/profile/validator.proto"; option go_package = "github.com/tendermint/spn/x/profile/types"; diff --git a/proto/profile/genesis.proto b/proto/spn/profile/genesis.proto similarity index 86% rename from proto/profile/genesis.proto rename to proto/spn/profile/genesis.proto index 5f2db7741..6324f77bb 100644 --- a/proto/profile/genesis.proto +++ b/proto/spn/profile/genesis.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package tendermint.spn.profile; +package spn.profile; import "gogoproto/gogo.proto"; -import "profile/validator.proto"; -import "profile/coordinator.proto"; +import "spn/profile/validator.proto"; +import "spn/profile/coordinator.proto"; option go_package = "github.com/tendermint/spn/x/profile/types"; diff --git a/proto/profile/query.proto b/proto/spn/profile/query.proto similarity index 96% rename from proto/profile/query.proto rename to proto/spn/profile/query.proto index 89537e0e0..c88393be6 100644 --- a/proto/profile/query.proto +++ b/proto/spn/profile/query.proto @@ -1,11 +1,11 @@ syntax = "proto3"; -package tendermint.spn.profile; +package spn.profile; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "profile/validator.proto"; -import "profile/coordinator.proto"; +import "spn/profile/validator.proto"; +import "spn/profile/coordinator.proto"; option go_package = "github.com/tendermint/spn/x/profile/types"; diff --git a/proto/profile/tx.proto b/proto/spn/profile/tx.proto similarity index 95% rename from proto/profile/tx.proto rename to proto/spn/profile/tx.proto index 6e14f1303..e86e87d2a 100644 --- a/proto/profile/tx.proto +++ b/proto/spn/profile/tx.proto @@ -1,11 +1,11 @@ syntax = "proto3"; -package tendermint.spn.profile; +package spn.profile; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; -import "profile/coordinator.proto"; -import "profile/validator.proto"; +import "spn/profile/coordinator.proto"; +import "spn/profile/validator.proto"; option go_package = "github.com/tendermint/spn/x/profile/types"; diff --git a/proto/profile/validator.proto b/proto/spn/profile/validator.proto similarity index 95% rename from proto/profile/validator.proto rename to proto/spn/profile/validator.proto index 236e5bffe..a3cf773a2 100644 --- a/proto/profile/validator.proto +++ b/proto/spn/profile/validator.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.profile; +package spn.profile; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/proto/project/events.proto b/proto/spn/project/events.proto similarity index 98% rename from proto/project/events.proto rename to proto/spn/project/events.proto index f9b18c011..81e5ed4d9 100644 --- a/proto/project/events.proto +++ b/proto/spn/project/events.proto @@ -1,11 +1,11 @@ syntax = "proto3"; -package tendermint.spn.project; +package spn.project; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos_proto/cosmos.proto"; -import "project/vesting.proto"; +import "spn/project/vesting.proto"; option go_package = "github.com/tendermint/spn/x/project/types"; diff --git a/proto/project/genesis.proto b/proto/spn/project/genesis.proto similarity index 73% rename from proto/project/genesis.proto rename to proto/spn/project/genesis.proto index 3cdfa7a93..c6be0a2b2 100644 --- a/proto/project/genesis.proto +++ b/proto/spn/project/genesis.proto @@ -1,12 +1,12 @@ syntax = "proto3"; -package tendermint.spn.project; +package spn.project; import "gogoproto/gogo.proto"; -import "project/project_chains.proto"; -import "project/vesting.proto"; -import "project/project.proto"; -import "project/mainnet_account.proto"; -import "project/params.proto"; +import "spn/project/project_chains.proto"; +import "spn/project/vesting.proto"; +import "spn/project/project.proto"; +import "spn/project/mainnet_account.proto"; +import "spn/project/params.proto"; option go_package = "github.com/tendermint/spn/x/project/types"; diff --git a/proto/project/mainnet_account.proto b/proto/spn/project/mainnet_account.proto similarity index 96% rename from proto/project/mainnet_account.proto rename to proto/spn/project/mainnet_account.proto index ecfa375f1..72f66a122 100644 --- a/proto/project/mainnet_account.proto +++ b/proto/spn/project/mainnet_account.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.project; +package spn.project; option go_package = "github.com/tendermint/spn/x/project/types"; diff --git a/proto/project/params.proto b/proto/spn/project/params.proto similarity index 97% rename from proto/project/params.proto rename to proto/spn/project/params.proto index 4af7163c9..d06010252 100644 --- a/proto/project/params.proto +++ b/proto/spn/project/params.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.project; +package spn.project; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; diff --git a/proto/project/project.proto b/proto/spn/project/project.proto similarity index 93% rename from proto/project/project.proto rename to proto/spn/project/project.proto index 160cdec00..527069605 100644 --- a/proto/project/project.proto +++ b/proto/spn/project/project.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package tendermint.spn.project; +package spn.project; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -import "project/special_allocations.proto"; +import "spn/project/special_allocations.proto"; option go_package = "github.com/tendermint/spn/x/project/types"; diff --git a/proto/project/project_chains.proto b/proto/spn/project/project_chains.proto similarity index 84% rename from proto/project/project_chains.proto rename to proto/spn/project/project_chains.proto index a05cb4f90..ee73b5651 100644 --- a/proto/project/project_chains.proto +++ b/proto/spn/project/project_chains.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.project; +package spn.project; option go_package = "github.com/tendermint/spn/x/project/types"; diff --git a/proto/project/query.proto b/proto/spn/project/query.proto similarity index 96% rename from proto/project/query.proto rename to proto/spn/project/query.proto index 3cd5d3df4..869f9aa7c 100644 --- a/proto/project/query.proto +++ b/proto/spn/project/query.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.project; +package spn.project; import "google/api/annotations.proto"; import "cosmos/base/v1beta1/coin.proto"; @@ -7,11 +7,11 @@ import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; -import "project/project_chains.proto"; -import "project/project.proto"; -import "project/vesting.proto"; -import "project/mainnet_account.proto"; -import "project/params.proto"; +import "spn/project/project_chains.proto"; +import "spn/project/project.proto"; +import "spn/project/vesting.proto"; +import "spn/project/mainnet_account.proto"; +import "spn/project/params.proto"; option go_package = "github.com/tendermint/spn/x/project/types"; diff --git a/proto/project/special_allocations.proto b/proto/spn/project/special_allocations.proto similarity index 95% rename from proto/project/special_allocations.proto rename to proto/spn/project/special_allocations.proto index 5645f2c2e..9e84fb444 100644 --- a/proto/project/special_allocations.proto +++ b/proto/spn/project/special_allocations.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.project; +package spn.project; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; diff --git a/proto/project/tx.proto b/proto/spn/project/tx.proto similarity index 97% rename from proto/project/tx.proto rename to proto/spn/project/tx.proto index fca3ed0b3..a5022588f 100644 --- a/proto/project/tx.proto +++ b/proto/spn/project/tx.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package tendermint.spn.project; +package spn.project; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -import "project/vesting.proto"; -import "project/special_allocations.proto"; +import "spn/project/vesting.proto"; +import "spn/project/special_allocations.proto"; option go_package = "github.com/tendermint/spn/x/project/types"; diff --git a/proto/project/vesting.proto b/proto/spn/project/vesting.proto similarity index 96% rename from proto/project/vesting.proto rename to proto/spn/project/vesting.proto index 182c8334a..c7b0f06ef 100644 --- a/proto/project/vesting.proto +++ b/proto/spn/project/vesting.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.project; +package spn.project; import "google/protobuf/timestamp.proto"; diff --git a/proto/reward/events.proto b/proto/spn/reward/events.proto similarity index 91% rename from proto/reward/events.proto rename to proto/spn/reward/events.proto index b0b0e0ad7..eb25fd63c 100644 --- a/proto/reward/events.proto +++ b/proto/spn/reward/events.proto @@ -1,8 +1,8 @@ syntax = "proto3"; -package tendermint.spn.reward; +package spn.reward; import "gogoproto/gogo.proto"; -import "reward/reward_pool.proto"; +import "spn/reward/reward_pool.proto"; import "cosmos/base/v1beta1/coin.proto"; option go_package = "github.com/tendermint/spn/x/reward/types"; diff --git a/proto/reward/genesis.proto b/proto/spn/reward/genesis.proto similarity index 78% rename from proto/reward/genesis.proto rename to proto/spn/reward/genesis.proto index 3c7dab1be..67bf1bbe2 100644 --- a/proto/reward/genesis.proto +++ b/proto/spn/reward/genesis.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package tendermint.spn.reward; +package spn.reward; import "gogoproto/gogo.proto"; -import "reward/params.proto"; -import "reward/reward_pool.proto"; +import "spn/reward/params.proto"; +import "spn/reward/reward_pool.proto"; option go_package = "github.com/tendermint/spn/x/reward/types"; diff --git a/proto/reward/params.proto b/proto/spn/reward/params.proto similarity index 88% rename from proto/reward/params.proto rename to proto/spn/reward/params.proto index 79beaec52..63c356a81 100644 --- a/proto/reward/params.proto +++ b/proto/spn/reward/params.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.reward; +package spn.reward; import "gogoproto/gogo.proto"; diff --git a/proto/reward/query.proto b/proto/spn/reward/query.proto similarity index 94% rename from proto/reward/query.proto rename to proto/spn/reward/query.proto index 034a788f7..d93db95bd 100644 --- a/proto/reward/query.proto +++ b/proto/spn/reward/query.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package tendermint.spn.reward; +package spn.reward; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "reward/params.proto"; -import "reward/reward_pool.proto"; +import "spn/reward/params.proto"; +import "spn/reward/reward_pool.proto"; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/reward/reward_pool.proto b/proto/spn/reward/reward_pool.proto similarity index 96% rename from proto/reward/reward_pool.proto rename to proto/spn/reward/reward_pool.proto index 95a357990..bf6c4e364 100644 --- a/proto/reward/reward_pool.proto +++ b/proto/spn/reward/reward_pool.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.reward; +package spn.reward; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; diff --git a/proto/reward/tx.proto b/proto/spn/reward/tx.proto similarity index 97% rename from proto/reward/tx.proto rename to proto/spn/reward/tx.proto index b6f322d9f..12392cc80 100644 --- a/proto/reward/tx.proto +++ b/proto/spn/reward/tx.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.reward; +package spn.reward; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/types/ibc.proto b/proto/spn/types/ibc.proto similarity index 97% rename from proto/types/ibc.proto rename to proto/spn/types/ibc.proto index 75e246681..fee7de433 100644 --- a/proto/types/ibc.proto +++ b/proto/spn/types/ibc.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.types; +package spn.types; import "gogoproto/gogo.proto"; diff --git a/proto/types/monitoring.proto b/proto/spn/types/monitoring.proto similarity index 97% rename from proto/types/monitoring.proto rename to proto/spn/types/monitoring.proto index 05527f5d2..2d52b7154 100644 --- a/proto/types/monitoring.proto +++ b/proto/spn/types/monitoring.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package tendermint.spn.types; +package spn.types; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/testutil/constructor/constructor.go b/testutil/constructor/constructor.go index f70527717..b24f2da8c 100644 --- a/testutil/constructor/constructor.go +++ b/testutil/constructor/constructor.go @@ -4,9 +4,9 @@ package constructor import ( "testing" + abci "github.com/cometbft/cometbft/abci/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - abci "github.com/tendermint/tendermint/abci/types" spntypes "github.com/tendermint/spn/pkg/types" monitoringptypes "github.com/tendermint/spn/x/monitoringp/types" @@ -20,8 +20,8 @@ type Vote struct { } // LastCommitInfo creates a ABCI LastCommitInfo object for test purpose from a list of vote -func LastCommitInfo(votes ...Vote) abci.LastCommitInfo { - var lci abci.LastCommitInfo +func LastCommitInfo(votes ...Vote) abci.CommitInfo { + var lci abci.CommitInfo // add votes for _, vote := range votes { diff --git a/testutil/encoding/encoding.go b/testutil/encoding/encoding.go new file mode 100644 index 000000000..ab88d5d84 --- /dev/null +++ b/testutil/encoding/encoding.go @@ -0,0 +1,27 @@ +package encoding + +import ( + "github.com/cosmos/cosmos-sdk/codec" + "github.com/cosmos/cosmos-sdk/std" + "github.com/cosmos/cosmos-sdk/x/auth/tx" + "github.com/tendermint/spn/cmd" + "github.com/tendermint/spn/testutil/sample" +) + +// MakeTestEncodingConfig creates a test EncodingConfig for an amino based test configuration. +func MakeTestEncodingConfig() cmd.EncodingConfig { + amino := codec.NewLegacyAmino() + interfaceRegistry := sample.InterfaceRegistry() + marshaler := codec.NewProtoCodec(interfaceRegistry) + txCfg := tx.NewTxConfig(marshaler, tx.DefaultSignModes) + + std.RegisterLegacyAminoCodec(amino) + std.RegisterInterfaces(interfaceRegistry) + + return cmd.EncodingConfig{ + InterfaceRegistry: interfaceRegistry, + Marshaler: marshaler, + TxConfig: txCfg, + Amino: amino, + } +} diff --git a/testutil/gen_app.go b/testutil/gen_app.go index 42903ac31..eec482b32 100644 --- a/testutil/gen_app.go +++ b/testutil/gen_app.go @@ -4,37 +4,41 @@ import ( "time" sdkmath "cosmossdk.io/math" + dbm "github.com/cometbft/cometbft-db" + "github.com/cometbft/cometbft/libs/log" + tmtypes "github.com/cometbft/cometbft/types" + "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/codec" codectypes "github.com/cosmos/cosmos-sdk/codec/types" cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" - "github.com/cosmos/cosmos-sdk/simapp" "github.com/cosmos/cosmos-sdk/testutil/mock" + simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/tendermint/tendermint/libs/log" - tmtypes "github.com/tendermint/tendermint/types" - dbm "github.com/tendermint/tm-db" - spnapp "github.com/tendermint/spn/app" "github.com/tendermint/spn/cmd" ) -func GenApp(withGenesis bool, invCheckPeriod uint) (*spnapp.App, spnapp.GenesisState) { - db := dbm.NewMemDB() - encCdc := cmd.MakeEncodingConfig(spnapp.ModuleBasics) - app := spnapp.New( - log.NewNopLogger(), - db, - nil, - true, - map[int64]bool{}, - simapp.DefaultNodeHome, - invCheckPeriod, - encCdc, - simapp.EmptyAppOptions{}) +func GenApp(chainID string, withGenesis bool, invCheckPeriod uint) (*spnapp.App, spnapp.GenesisState) { + var ( + db = dbm.NewMemDB() + encCdc = cmd.MakeEncodingConfig(spnapp.ModuleBasics) + app = spnapp.New( + log.NewNopLogger(), + db, + nil, + true, + map[int64]bool{}, + spnapp.DefaultNodeHome, + invCheckPeriod, + encCdc, + simtestutil.EmptyAppOptions{}, + baseapp.SetChainID(chainID), + ) + ) originalApp := app.(*spnapp.App) if withGenesis { @@ -116,7 +120,13 @@ func genesisStateWithValSet( }) // update total supply - bankGenesis := banktypes.NewGenesisState(banktypes.DefaultGenesisState().Params, balances, totalSupply, []banktypes.Metadata{}) + bankGenesis := banktypes.NewGenesisState( + banktypes.DefaultGenesisState().Params, + balances, + totalSupply, + []banktypes.Metadata{}, + []banktypes.SendEnabled{}, + ) genesisState[banktypes.ModuleName] = cdc.MustMarshalJSON(bankGenesis) return genesisState diff --git a/testutil/keeper/initializer.go b/testutil/keeper/initializer.go index f766f2bdd..b13a02033 100644 --- a/testutil/keeper/initializer.go +++ b/testutil/keeper/initializer.go @@ -1,6 +1,7 @@ package keeper import ( + tmdb "github.com/cometbft/cometbft-db" "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/store" storetypes "github.com/cosmos/cosmos-sdk/store/types" @@ -20,15 +21,15 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" upgradekeeper "github.com/cosmos/cosmos-sdk/x/upgrade/keeper" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - ibctransfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - ibchost "github.com/cosmos/ibc-go/v6/modules/core/24-host" - ibckeeper "github.com/cosmos/ibc-go/v6/modules/core/keeper" + ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper" + fundraisingkeeper "github.com/tendermint/fundraising/x/fundraising/keeper" + fundraisingtypes "github.com/tendermint/fundraising/x/fundraising/types" + claimkeeper "github.com/ignite/modules/x/claim/keeper" claimtypes "github.com/ignite/modules/x/claim/types" minttypes "github.com/ignite/modules/x/mint/types" - fundraisingkeeper "github.com/tendermint/fundraising/x/fundraising/keeper" - fundraisingtypes "github.com/tendermint/fundraising/x/fundraising/types" - tmdb "github.com/tendermint/tm-db" spntypes "github.com/tendermint/spn/pkg/types" "github.com/tendermint/spn/testutil/sample" @@ -69,14 +70,11 @@ type initializer struct { } func newInitializer() initializer { - cdc := sample.Codec() db := tmdb.NewMemDB() - stateStore := store.NewCommitMultiStore(db) - return initializer{ - Codec: cdc, DB: db, - StateStore: stateStore, + Codec: sample.Codec(), + StateStore: store.NewCommitMultiStore(db), } } @@ -107,37 +105,31 @@ func (i initializer) Param() paramskeeper.Keeper { func (i initializer) Auth(paramKeeper paramskeeper.Keeper) authkeeper.AccountKeeper { storeKey := sdk.NewKVStoreKey(authtypes.StoreKey) - i.StateStore.MountStoreWithDB(storeKey, storetypes.StoreTypeIAVL, i.DB) - paramKeeper.Subspace(authtypes.ModuleName) - authSubspace, _ := paramKeeper.GetSubspace(authtypes.ModuleName) return authkeeper.NewAccountKeeper( i.Codec, storeKey, - authSubspace, authtypes.ProtoBaseAccount, moduleAccountPerms, spntypes.AccountAddressPrefix, + authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) } func (i initializer) Bank(paramKeeper paramskeeper.Keeper, authKeeper authkeeper.AccountKeeper) bankkeeper.Keeper { storeKey := sdk.NewKVStoreKey(banktypes.StoreKey) i.StateStore.MountStoreWithDB(storeKey, storetypes.StoreTypeIAVL, i.DB) - paramKeeper.Subspace(banktypes.ModuleName) - bankSubspace, _ := paramKeeper.GetSubspace(banktypes.ModuleName) - modAccAddrs := ModuleAccountAddrs(moduleAccountPerms) return bankkeeper.NewBaseKeeper( i.Codec, storeKey, authKeeper, - bankSubspace, modAccAddrs, + authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) } @@ -157,7 +149,7 @@ type ProtocolVersionSetter struct{} func (vs ProtocolVersionSetter) SetProtocolVersion(uint64) {} -func (i initializer) Upgrade() upgradekeeper.Keeper { +func (i initializer) Upgrade() *upgradekeeper.Keeper { storeKey := sdk.NewKVStoreKey(upgradetypes.StoreKey) i.StateStore.MountStoreWithDB(storeKey, storetypes.StoreTypeIAVL, i.DB) @@ -178,47 +170,44 @@ func (i initializer) Staking( authKeeper authkeeper.AccountKeeper, bankKeeper bankkeeper.Keeper, paramKeeper paramskeeper.Keeper, -) stakingkeeper.Keeper { +) *stakingkeeper.Keeper { storeKey := sdk.NewKVStoreKey(stakingtypes.StoreKey) i.StateStore.MountStoreWithDB(storeKey, storetypes.StoreTypeIAVL, i.DB) - paramKeeper.Subspace(stakingtypes.ModuleName) - stakingSubspace, _ := paramKeeper.GetSubspace(stakingtypes.ModuleName) return stakingkeeper.NewKeeper( i.Codec, storeKey, authKeeper, bankKeeper, - stakingSubspace, + authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) } func (i initializer) IBC( paramKeeper paramskeeper.Keeper, - stakingKeeper stakingkeeper.Keeper, + stakingKeeper *stakingkeeper.Keeper, capabilityKeeper capabilitykeeper.Keeper, - upgradeKeeper upgradekeeper.Keeper, + upgradeKeeper *upgradekeeper.Keeper, ) *ibckeeper.Keeper { - storeKey := sdk.NewKVStoreKey(ibchost.StoreKey) + storeKey := sdk.NewKVStoreKey(ibcexported.StoreKey) i.StateStore.MountStoreWithDB(storeKey, storetypes.StoreTypeIAVL, i.DB) return ibckeeper.NewKeeper( i.Codec, storeKey, - paramKeeper.Subspace(ibchost.ModuleName), + paramKeeper.Subspace(ibcexported.ModuleName), stakingKeeper, upgradeKeeper, - capabilityKeeper.ScopeToModule(ibchost.ModuleName), + capabilityKeeper.ScopeToModule(ibcexported.ModuleName), ) } func (i initializer) Distribution( authKeeper authkeeper.AccountKeeper, bankKeeper bankkeeper.Keeper, - stakingKeeper stakingkeeper.Keeper, - paramKeeper paramskeeper.Keeper, + stakingKeeper *stakingkeeper.Keeper, ) distrkeeper.Keeper { storeKey := sdk.NewKVStoreKey(distrtypes.StoreKey) i.StateStore.MountStoreWithDB(storeKey, storetypes.StoreTypeIAVL, i.DB) @@ -226,11 +215,11 @@ func (i initializer) Distribution( return distrkeeper.NewKeeper( i.Codec, storeKey, - paramKeeper.Subspace(distrtypes.ModuleName), authKeeper, bankKeeper, stakingKeeper, authtypes.FeeCollectorName, + authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) } @@ -277,9 +266,7 @@ func (i initializer) Project( profileKeeper *profilekeeper.Keeper, bankKeeper bankkeeper.Keeper, distrKeeper distrkeeper.Keeper, - rewardKeeper rewardkeeper.Keeper, paramKeeper paramskeeper.Keeper, - fundraisingKeeper fundraisingkeeper.Keeper, ) *projectkeeper.Keeper { storeKey := sdk.NewKVStoreKey(projecttypes.StoreKey) memStoreKey := storetypes.NewMemoryStoreKey(projecttypes.MemStoreKey) @@ -377,7 +364,7 @@ func (i initializer) Monitoringc( } func (i initializer) Monitoringp( - stakingKeeper stakingkeeper.Keeper, + stakingKeeper *stakingkeeper.Keeper, ibcKeeper ibckeeper.Keeper, capabilityKeeper capabilitykeeper.Keeper, paramKeeper paramskeeper.Keeper, @@ -449,7 +436,7 @@ func (i initializer) Fundraising( func (i initializer) Participation( paramKeeper paramskeeper.Keeper, fundraisingKeeper fundraisingkeeper.Keeper, - stakingKeeper stakingkeeper.Keeper, + stakingKeeper *stakingkeeper.Keeper, ) *participationkeeper.Keeper { storeKey := sdk.NewKVStoreKey(participationtypes.StoreKey) memStoreKey := storetypes.NewMemoryStoreKey(participationtypes.MemStoreKey) diff --git a/testutil/keeper/keeper.go b/testutil/keeper/keeper.go index a93deb485..b3eb69dd0 100644 --- a/testutil/keeper/keeper.go +++ b/testutil/keeper/keeper.go @@ -5,6 +5,8 @@ import ( "testing" "time" + "github.com/cometbft/cometbft/libs/log" + tmproto "github.com/cometbft/cometbft/proto/tendermint/types" sdk "github.com/cosmos/cosmos-sdk/types" authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" @@ -12,16 +14,15 @@ import ( distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - ibcclienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - ibcconnectiontypes "github.com/cosmos/ibc-go/v6/modules/core/03-connection/types" - ibckeeper "github.com/cosmos/ibc-go/v6/modules/core/keeper" - claimkeeper "github.com/ignite/modules/x/claim/keeper" - claimtypes "github.com/ignite/modules/x/claim/types" + ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + ibcconnectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" + ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper" "github.com/stretchr/testify/require" fundraisingkeeper "github.com/tendermint/fundraising/x/fundraising/keeper" fundraisingtypes "github.com/tendermint/fundraising/x/fundraising/types" - "github.com/tendermint/tendermint/libs/log" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" + + claimkeeper "github.com/ignite/modules/x/claim/keeper" + claimtypes "github.com/ignite/modules/x/claim/types" spntypes "github.com/tendermint/spn/pkg/types" "github.com/tendermint/spn/testutil/keeper/mocks" @@ -66,7 +67,7 @@ type TestKeepers struct { BankKeeper bankkeeper.Keeper DistrKeeper distrkeeper.Keeper IBCKeeper *ibckeeper.Keeper - StakingKeeper stakingkeeper.Keeper + StakingKeeper *stakingkeeper.Keeper FundraisingKeeper fundraisingkeeper.Keeper ParticipationKeeper *participationkeeper.Keeper ClaimKeeper *claimkeeper.Keeper @@ -115,14 +116,14 @@ func NewTestSetup(t testing.TB, options ...SetupOption) (sdk.Context, TestKeeper authKeeper := initializer.Auth(paramKeeper) bankKeeper := initializer.Bank(paramKeeper, authKeeper) stakingKeeper := initializer.Staking(authKeeper, bankKeeper, paramKeeper) - distrKeeper := initializer.Distribution(authKeeper, bankKeeper, stakingKeeper, paramKeeper) + distrKeeper := initializer.Distribution(authKeeper, bankKeeper, stakingKeeper) upgradeKeeper := initializer.Upgrade() ibcKeeper := initializer.IBC(paramKeeper, stakingKeeper, *capabilityKeeper, upgradeKeeper) fundraisingKeeper := initializer.Fundraising(paramKeeper, authKeeper, bankKeeper, distrKeeper) profileKeeper := initializer.Profile() launchKeeper := initializer.Launch(profileKeeper, distrKeeper, paramKeeper) rewardKeeper := initializer.Reward(authKeeper, bankKeeper, profileKeeper, launchKeeper, paramKeeper) - projectKeeper := initializer.Project(launchKeeper, profileKeeper, bankKeeper, distrKeeper, *rewardKeeper, paramKeeper, fundraisingKeeper) + projectKeeper := initializer.Project(launchKeeper, profileKeeper, bankKeeper, distrKeeper, paramKeeper) participationKeeper := initializer.Participation(paramKeeper, fundraisingKeeper, stakingKeeper) launchKeeper.SetProjectKeeper(projectKeeper) monitoringConsumerKeeper := initializer.Monitoringc( @@ -221,14 +222,14 @@ func NewTestSetupWithIBCMocks( authKeeper := initializer.Auth(paramKeeper) bankKeeper := initializer.Bank(paramKeeper, authKeeper) stakingKeeper := initializer.Staking(authKeeper, bankKeeper, paramKeeper) - distrKeeper := initializer.Distribution(authKeeper, bankKeeper, stakingKeeper, paramKeeper) + distrKeeper := initializer.Distribution(authKeeper, bankKeeper, stakingKeeper) upgradeKeeper := initializer.Upgrade() ibcKeeper := initializer.IBC(paramKeeper, stakingKeeper, *capabilityKeeper, upgradeKeeper) fundraisingKeeper := initializer.Fundraising(paramKeeper, authKeeper, bankKeeper, distrKeeper) profileKeeper := initializer.Profile() launchKeeper := initializer.Launch(profileKeeper, distrKeeper, paramKeeper) rewardKeeper := initializer.Reward(authKeeper, bankKeeper, profileKeeper, launchKeeper, paramKeeper) - projectKeeper := initializer.Project(launchKeeper, profileKeeper, bankKeeper, distrKeeper, *rewardKeeper, paramKeeper, fundraisingKeeper) + projectKeeper := initializer.Project(launchKeeper, profileKeeper, bankKeeper, distrKeeper, paramKeeper) participationKeeper := initializer.Participation(paramKeeper, fundraisingKeeper, stakingKeeper) launchKeeper.SetProjectKeeper(projectKeeper) monitoringConsumerKeeper := initializer.Monitoringc( diff --git a/testutil/keeper/mock_ibc.go b/testutil/keeper/mock_ibc.go index d86c72328..24a1016b6 100644 --- a/testutil/keeper/mock_ibc.go +++ b/testutil/keeper/mock_ibc.go @@ -3,10 +3,10 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v6/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v6/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v7/modules/core/exported" ) // Connection is an IBC connection end associated to a connection ID diff --git a/testutil/keeper/monitoring_provider.go b/testutil/keeper/monitoring_provider.go index 030ccd5ef..744809f85 100644 --- a/testutil/keeper/monitoring_provider.go +++ b/testutil/keeper/monitoring_provider.go @@ -3,13 +3,13 @@ package keeper import ( "testing" + "github.com/cometbft/cometbft/libs/log" + tmproto "github.com/cometbft/cometbft/proto/tendermint/types" sdk "github.com/cosmos/cosmos-sdk/types" distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" "github.com/stretchr/testify/require" fundraisingtypes "github.com/tendermint/fundraising/x/fundraising/types" - "github.com/tendermint/tendermint/libs/log" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" spntypes "github.com/tendermint/spn/pkg/types" launchkeeper "github.com/tendermint/spn/x/launch/keeper" @@ -42,7 +42,7 @@ func NewTestSetupWithIBCMocksMonitoringp( authKeeper := initializer.Auth(paramKeeper) bankKeeper := initializer.Bank(paramKeeper, authKeeper) stakingKeeper := initializer.Staking(authKeeper, bankKeeper, paramKeeper) - distrKeeper := initializer.Distribution(authKeeper, bankKeeper, stakingKeeper, paramKeeper) + distrKeeper := initializer.Distribution(authKeeper, bankKeeper, stakingKeeper) upgradeKeeper := initializer.Upgrade() ibcKeeper := initializer.IBC(paramKeeper, stakingKeeper, *capabilityKeeper, upgradeKeeper) monitoringProviderKeeper := initializer.Monitoringp( @@ -57,7 +57,7 @@ func NewTestSetupWithIBCMocksMonitoringp( profileKeeper := initializer.Profile() launchKeeper := initializer.Launch(profileKeeper, distrKeeper, paramKeeper) rewardKeeper := initializer.Reward(authKeeper, bankKeeper, profileKeeper, launchKeeper, paramKeeper) - projectKeeper := initializer.Project(launchKeeper, profileKeeper, bankKeeper, distrKeeper, *rewardKeeper, paramKeeper, fundraisingKeeper) + projectKeeper := initializer.Project(launchKeeper, profileKeeper, bankKeeper, distrKeeper, paramKeeper) participationKeeper := initializer.Participation(paramKeeper, fundraisingKeeper, stakingKeeper) launchKeeper.SetProjectKeeper(projectKeeper) diff --git a/testutil/network/network.go b/testutil/network/network.go index c60bc6f24..0cc9bbbdc 100644 --- a/testutil/network/network.go +++ b/testutil/network/network.go @@ -6,20 +6,18 @@ import ( "testing" "time" - "github.com/stretchr/testify/require" - + tmdb "github.com/cometbft/cometbft-db" + tmrand "github.com/cometbft/cometbft/libs/rand" "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/crypto/hd" "github.com/cosmos/cosmos-sdk/crypto/keyring" - pruningtypes "github.com/cosmos/cosmos-sdk/pruning/types" servertypes "github.com/cosmos/cosmos-sdk/server/types" - "github.com/cosmos/cosmos-sdk/simapp" + pruningtypes "github.com/cosmos/cosmos-sdk/store/pruning/types" "github.com/cosmos/cosmos-sdk/testutil/network" + simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - tmrand "github.com/tendermint/tendermint/libs/rand" - tmdb "github.com/tendermint/tm-db" - + "github.com/stretchr/testify/require" "github.com/tendermint/spn/app" "github.com/tendermint/spn/cmd" ) @@ -41,31 +39,35 @@ func New(t *testing.T, cfg network.Config) *network.Network { // DefaultConfig will initialize config for the network with custom application, // genesis and single validator. All other parameters are inherited from cosmos-sdk/testutil/network.DefaultConfig func DefaultConfig() network.Config { - encoding := cmd.MakeEncodingConfig(app.ModuleBasics) + var ( + cdc = cmd.MakeEncodingConfig(app.ModuleBasics) + chainID = "chain-" + tmrand.NewRand().Str(6) + ) return network.Config{ - Codec: encoding.Marshaler, - TxConfig: encoding.TxConfig, - LegacyAmino: encoding.Amino, - InterfaceRegistry: encoding.InterfaceRegistry, + Codec: cdc.Marshaler, + TxConfig: cdc.TxConfig, + LegacyAmino: cdc.Amino, + InterfaceRegistry: cdc.InterfaceRegistry, AccountRetriever: authtypes.AccountRetriever{}, - AppConstructor: func(val network.Validator) servertypes.Application { + AppConstructor: func(val network.ValidatorI) servertypes.Application { return app.New( - val.Ctx.Logger, + val.GetCtx().Logger, tmdb.NewMemDB(), nil, true, map[int64]bool{}, - val.Ctx.Config.RootDir, + val.GetCtx().Config.RootDir, 0, - encoding, - simapp.EmptyAppOptions{}, - baseapp.SetPruning(pruningtypes.NewPruningOptionsFromString(val.AppConfig.Pruning)), - baseapp.SetMinGasPrices(val.AppConfig.MinGasPrices), + cdc, + simtestutil.EmptyAppOptions{}, + baseapp.SetPruning(pruningtypes.NewPruningOptionsFromString(val.GetAppConfig().Pruning)), + baseapp.SetMinGasPrices(val.GetAppConfig().MinGasPrices), + baseapp.SetChainID(chainID), ) }, - GenesisState: app.ModuleBasics.DefaultGenesis(encoding.Marshaler), + GenesisState: app.ModuleBasics.DefaultGenesis(cdc.Marshaler), TimeoutCommit: 2 * time.Second, - ChainID: "chain-" + tmrand.NewRand().Str(6), + ChainID: chainID, NumValidators: 1, BondDenom: sdk.DefaultBondDenom, MinGasPrices: fmt.Sprintf("0.000006%s", sdk.DefaultBondDenom), diff --git a/testutil/networksuite/networksuite.go b/testutil/networksuite/networksuite.go index 217428417..fca257251 100644 --- a/testutil/networksuite/networksuite.go +++ b/testutil/networksuite/networksuite.go @@ -6,9 +6,7 @@ import ( "strconv" sdkmath "cosmossdk.io/math" - sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/gogo/protobuf/proto" "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" @@ -41,8 +39,10 @@ type NetworkTestSuite struct { // SetupSuite setups the local network with a genesis state func (nts *NetworkTestSuite) SetupSuite() { - r := sample.Rand() - cfg := network.DefaultConfig() + var ( + r = sample.Rand() + cfg = network.DefaultConfig() + ) updateGenesisConfigState := func(moduleName string, moduleState proto.Message) { buf, err := cfg.Codec.MarshalJSON(moduleState) diff --git a/testutil/sample/sample.go b/testutil/sample/sample.go index 4ca3b044a..7544dda3c 100644 --- a/testutil/sample/sample.go +++ b/testutil/sample/sample.go @@ -8,20 +8,37 @@ import ( "time" sdkmath "cosmossdk.io/math" + "github.com/cometbft/cometbft/crypto" + "github.com/cometbft/cometbft/crypto/ed25519" "github.com/cosmos/cosmos-sdk/codec" codectypes "github.com/cosmos/cosmos-sdk/codec/types" cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" cosmosed25519 "github.com/cosmos/cosmos-sdk/crypto/keys/ed25519" sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" + vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" + "github.com/cosmos/cosmos-sdk/x/authz" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" + consensusparamtypes "github.com/cosmos/cosmos-sdk/x/consensus/types" + crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types" + distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" + evidencetypes "github.com/cosmos/cosmos-sdk/x/evidence/types" + "github.com/cosmos/cosmos-sdk/x/feegrant" + govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" + minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" + slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - ibctypes "github.com/cosmos/ibc-go/v6/modules/core/types" + upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" + icacontrollertypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/types" + icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" + ibcfeetypes "github.com/cosmos/ibc-go/v7/modules/apps/29-fee/types" + ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + ibctypes "github.com/cosmos/ibc-go/v7/modules/core/types" + ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" "github.com/stretchr/testify/require" fundraising "github.com/tendermint/fundraising/x/fundraising/types" - "github.com/tendermint/tendermint/crypto" - "github.com/tendermint/tendermint/crypto/ed25519" - launch "github.com/tendermint/spn/x/launch/types" monitoringc "github.com/tendermint/spn/x/monitoringc/types" monitoringp "github.com/tendermint/spn/x/monitoringp/types" @@ -29,17 +46,37 @@ import ( profile "github.com/tendermint/spn/x/profile/types" project "github.com/tendermint/spn/x/project/types" reward "github.com/tendermint/spn/x/reward/types" + + claimtypes "github.com/ignite/modules/x/claim/types" ) -// Codec returns a codec with preregistered interfaces -func Codec() codec.Codec { +func InterfaceRegistry() codectypes.InterfaceRegistry { interfaceRegistry := codectypes.NewInterfaceRegistry() cryptocodec.RegisterInterfaces(interfaceRegistry) authtypes.RegisterInterfaces(interfaceRegistry) + authz.RegisterInterfaces(interfaceRegistry) stakingtypes.RegisterInterfaces(interfaceRegistry) banktypes.RegisterInterfaces(interfaceRegistry) ibctypes.RegisterInterfaces(interfaceRegistry) + ibcfeetypes.RegisterInterfaces(interfaceRegistry) + ibcclienttypes.RegisterInterfaces(interfaceRegistry) + ibctm.RegisterInterfaces(interfaceRegistry) + ibctransfertypes.RegisterInterfaces(interfaceRegistry) + icacontrollertypes.RegisterInterfaces(interfaceRegistry) + icatypes.RegisterInterfaces(interfaceRegistry) + channeltypes.RegisterInterfaces(interfaceRegistry) + consensusparamtypes.RegisterInterfaces(interfaceRegistry) + slashingtypes.RegisterInterfaces(interfaceRegistry) + upgradetypes.RegisterInterfaces(interfaceRegistry) + distrtypes.RegisterInterfaces(interfaceRegistry) + vestingtypes.RegisterInterfaces(interfaceRegistry) + claimtypes.RegisterInterfaces(interfaceRegistry) + feegrant.RegisterInterfaces(interfaceRegistry) + govtypes.RegisterInterfaces(interfaceRegistry) + evidencetypes.RegisterInterfaces(interfaceRegistry) + crisistypes.RegisterInterfaces(interfaceRegistry) + launch.RegisterInterfaces(interfaceRegistry) profile.RegisterInterfaces(interfaceRegistry) project.RegisterInterfaces(interfaceRegistry) @@ -47,9 +84,15 @@ func Codec() codec.Codec { monitoringp.RegisterInterfaces(interfaceRegistry) reward.RegisterInterfaces(interfaceRegistry) participation.RegisterInterfaces(interfaceRegistry) + minttypes.RegisterInterfaces(interfaceRegistry) fundraising.RegisterInterfaces(interfaceRegistry) - return codec.NewProtoCodec(interfaceRegistry) + return interfaceRegistry +} + +// Codec returns a codec with preregistered interfaces +func Codec() codec.Codec { + return codec.NewProtoCodec(InterfaceRegistry()) } // Bool returns randomly true or false diff --git a/testutil/simulation/util.go b/testutil/simulation/util.go index 93afe726d..f5e4a7199 100644 --- a/testutil/simulation/util.go +++ b/testutil/simulation/util.go @@ -1,7 +1,7 @@ package simulation import ( - "github.com/cosmos/cosmos-sdk/simapp/helpers" + simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" sdksimulation "github.com/cosmos/cosmos-sdk/x/simulation" @@ -32,7 +32,7 @@ func GenAndDeliverTxWithRandFees(txCtx sdksimulation.OperationInput, gas uint64) // GenAndDeliverTx generates a transactions and delivers it. func GenAndDeliverTx(txCtx sdksimulation.OperationInput, fees sdk.Coins, gas uint64) (simtypes.OperationMsg, []simtypes.FutureOperation, error) { account := txCtx.AccountKeeper.GetAccount(txCtx.Context, txCtx.SimAccount.Address) - tx, err := helpers.GenSignedMockTx( + tx, err := simtestutil.GenSignedMockTx( txCtx.R, txCtx.TxGen, []sdk.Msg{txCtx.Msg}, diff --git a/x/launch/client/cli/query_chain_test.go b/x/launch/client/cli/query_chain_test.go index a3186d262..d5c7687f0 100644 --- a/x/launch/client/cli/query_chain_test.go +++ b/x/launch/client/cli/query_chain_test.go @@ -4,10 +4,10 @@ import ( "fmt" "testing" + tmcli "github.com/cometbft/cometbft/libs/cli" "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/launch/client/cli/query_genesis_account_test.go b/x/launch/client/cli/query_genesis_account_test.go index 250d85dc0..012782b4c 100644 --- a/x/launch/client/cli/query_genesis_account_test.go +++ b/x/launch/client/cli/query_genesis_account_test.go @@ -5,10 +5,10 @@ import ( "strconv" "testing" + tmcli "github.com/cometbft/cometbft/libs/cli" "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/launch/client/cli/query_genesis_validator_test.go b/x/launch/client/cli/query_genesis_validator_test.go index 2183e6dfa..7de632114 100644 --- a/x/launch/client/cli/query_genesis_validator_test.go +++ b/x/launch/client/cli/query_genesis_validator_test.go @@ -5,10 +5,10 @@ import ( "strconv" "testing" + tmcli "github.com/cometbft/cometbft/libs/cli" "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/launch/client/cli/query_param_change_test.go b/x/launch/client/cli/query_param_change_test.go index c937d0039..e81a9605b 100644 --- a/x/launch/client/cli/query_param_change_test.go +++ b/x/launch/client/cli/query_param_change_test.go @@ -5,10 +5,10 @@ import ( "strconv" "testing" + tmcli "github.com/cometbft/cometbft/libs/cli" "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "github.com/tendermint/spn/x/launch/client/cli" "github.com/tendermint/spn/x/launch/types" diff --git a/x/launch/client/cli/query_request_test.go b/x/launch/client/cli/query_request_test.go index 2c67319da..543bd4b0e 100644 --- a/x/launch/client/cli/query_request_test.go +++ b/x/launch/client/cli/query_request_test.go @@ -5,10 +5,10 @@ import ( "strconv" "testing" + tmcli "github.com/cometbft/cometbft/libs/cli" "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/launch/client/cli/query_vesting_account_test.go b/x/launch/client/cli/query_vesting_account_test.go index 7cdfdb585..7e2134df0 100644 --- a/x/launch/client/cli/query_vesting_account_test.go +++ b/x/launch/client/cli/query_vesting_account_test.go @@ -5,10 +5,10 @@ import ( "strconv" "testing" + tmcli "github.com/cometbft/cometbft/libs/cli" "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/launch/keeper/keeper.go b/x/launch/keeper/keeper.go index 0b70f7c64..3914e5fe2 100644 --- a/x/launch/keeper/keeper.go +++ b/x/launch/keeper/keeper.go @@ -3,11 +3,11 @@ package keeper import ( "fmt" + "github.com/cometbft/cometbft/libs/log" "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/tendermint/tendermint/libs/log" "github.com/tendermint/spn/x/launch/types" ) diff --git a/x/launch/keeper/msg_create_chain.go b/x/launch/keeper/msg_create_chain.go index be2575134..197604ef6 100644 --- a/x/launch/keeper/msg_create_chain.go +++ b/x/launch/keeper/msg_create_chain.go @@ -5,6 +5,7 @@ import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" + ignterrors "github.com/ignite/modules/pkg/errors" "github.com/tendermint/spn/x/launch/types" diff --git a/x/launch/keeper/msg_send_request.go b/x/launch/keeper/msg_send_request.go index a970441c4..108cc9636 100644 --- a/x/launch/keeper/msg_send_request.go +++ b/x/launch/keeper/msg_send_request.go @@ -5,6 +5,7 @@ import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" + ignterrors "github.com/ignite/modules/pkg/errors" "github.com/tendermint/spn/x/launch/types" diff --git a/x/launch/keeper/msg_settle_request_test.go b/x/launch/keeper/msg_settle_request_test.go index aed7ae95f..df4836bda 100644 --- a/x/launch/keeper/msg_settle_request_test.go +++ b/x/launch/keeper/msg_settle_request_test.go @@ -4,9 +4,10 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - ignterrors "github.com/ignite/modules/pkg/errors" "github.com/stretchr/testify/require" + ignterrors "github.com/ignite/modules/pkg/errors" + testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" "github.com/tendermint/spn/x/launch/types" diff --git a/x/launch/keeper/request.go b/x/launch/keeper/request.go index 72966ce7e..fd4c1e67f 100644 --- a/x/launch/keeper/request.go +++ b/x/launch/keeper/request.go @@ -7,6 +7,7 @@ import ( sdkerrors "cosmossdk.io/errors" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" + ignterrors "github.com/ignite/modules/pkg/errors" "github.com/tendermint/spn/x/launch/types" diff --git a/x/launch/keeper/request_test.go b/x/launch/keeper/request_test.go index cd7b2f613..692cdb6b4 100644 --- a/x/launch/keeper/request_test.go +++ b/x/launch/keeper/request_test.go @@ -4,9 +4,10 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - ignterrors "github.com/ignite/modules/pkg/errors" "github.com/stretchr/testify/require" + ignterrors "github.com/ignite/modules/pkg/errors" + testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" "github.com/tendermint/spn/x/launch/keeper" diff --git a/x/launch/keeper/validator_set.go b/x/launch/keeper/validator_set.go index b54f668c2..3d688e297 100644 --- a/x/launch/keeper/validator_set.go +++ b/x/launch/keeper/validator_set.go @@ -4,8 +4,8 @@ import ( "encoding/base64" sdkerrors "cosmossdk.io/errors" + tmtypes "github.com/cometbft/cometbft/types" sdk "github.com/cosmos/cosmos-sdk/types" - tmtypes "github.com/tendermint/tendermint/types" "github.com/tendermint/spn/x/launch/types" ) diff --git a/x/launch/keeper/validator_set_test.go b/x/launch/keeper/validator_set_test.go index 67f7ace9e..b4242d661 100644 --- a/x/launch/keeper/validator_set_test.go +++ b/x/launch/keeper/validator_set_test.go @@ -4,10 +4,10 @@ import ( "testing" sdkmath "cosmossdk.io/math" + "github.com/cometbft/cometbft/crypto" + tmtypes "github.com/cometbft/cometbft/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/tendermint/tendermint/crypto" - tmtypes "github.com/tendermint/tendermint/types" testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" diff --git a/x/launch/module.go b/x/launch/module.go index cb1a7c2fd..f5d6edf66 100644 --- a/x/launch/module.go +++ b/x/launch/module.go @@ -5,6 +5,7 @@ import ( "encoding/json" "fmt" + abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" cdctypes "github.com/cosmos/cosmos-sdk/codec/types" @@ -13,7 +14,6 @@ import ( "github.com/gorilla/mux" "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - abci "github.com/tendermint/tendermint/abci/types" "github.com/tendermint/spn/x/launch/client/cli" "github.com/tendermint/spn/x/launch/keeper" @@ -121,19 +121,9 @@ func (am AppModule) Name() string { return am.AppModuleBasic.Name() } -// Route returns the launch module's message routing key. -func (am AppModule) Route() sdk.Route { - return sdk.Route{} -} - // QuerierRoute returns the launch module's query routing key. func (AppModule) QuerierRoute() string { return types.QuerierRoute } -// LegacyQuerierHandler returns the launch module's Querier. -func (am AppModule) LegacyQuerierHandler(_ *codec.LegacyAmino) sdk.Querier { - return nil -} - // RegisterServices registers a GRPC query service to respond to the // module-specific GRPC queries. func (am AppModule) RegisterServices(cfg module.Configurator) { diff --git a/x/launch/module_simulation.go b/x/launch/module_simulation.go index d11af2468..e5def0dd1 100644 --- a/x/launch/module_simulation.go +++ b/x/launch/module_simulation.go @@ -59,13 +59,13 @@ func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedP } // RandomizedParams creates randomized param changes for the simulator -func (am AppModule) RandomizedParams(r *rand.Rand) []simtypes.ParamChange { +func (am AppModule) RandomizedParams(r *rand.Rand) []simtypes.LegacyParamChange { launchParams := sample.LaunchParams(r) - return []simtypes.ParamChange{ - simulation.NewSimParamChange(types.ModuleName, string(types.KeyLaunchTimeRange), func(r *rand.Rand) string { + return []simtypes.LegacyParamChange{ + simulation.NewSimLegacyParamChange(types.ModuleName, string(types.KeyLaunchTimeRange), func(r *rand.Rand) string { return string(types.Amino.MustMarshalJSON(launchParams.LaunchTimeRange)) }), - simulation.NewSimParamChange(types.ModuleName, string(types.KeyChainCreationFee), func(r *rand.Rand) string { + simulation.NewSimLegacyParamChange(types.ModuleName, string(types.KeyChainCreationFee), func(r *rand.Rand) string { return string(types.Amino.MustMarshalJSON(launchParams.ChainCreationFee)) }), } diff --git a/x/launch/simulation/simulation.go b/x/launch/simulation/simulation.go index c36797a01..2497616aa 100644 --- a/x/launch/simulation/simulation.go +++ b/x/launch/simulation/simulation.go @@ -4,12 +4,11 @@ import ( "math/rand" "github.com/cosmos/cosmos-sdk/baseapp" - "github.com/cosmos/cosmos-sdk/simapp/helpers" - simappparams "github.com/cosmos/cosmos-sdk/simapp/params" + simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" sdksimulation "github.com/cosmos/cosmos-sdk/x/simulation" - + "github.com/tendermint/spn/testutil/encoding" "github.com/tendermint/spn/testutil/sample" "github.com/tendermint/spn/testutil/simulation" "github.com/tendermint/spn/x/launch/keeper" @@ -49,7 +48,7 @@ func SimulateMsgCreateChain(ak types.AccountKeeper, bk types.BankKeeper, k keepe txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: &msg, MsgType: msg.Type(), @@ -60,7 +59,7 @@ func SimulateMsgCreateChain(ak types.AccountKeeper, bk types.BankKeeper, k keepe ModuleName: types.ModuleName, CoinsSpentInMsg: creationFee, } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } @@ -112,7 +111,7 @@ func SimulateMsgEditChain(ak types.AccountKeeper, bk types.BankKeeper, k keeper. txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: &msg, MsgType: msg.Type(), @@ -123,7 +122,7 @@ func SimulateMsgEditChain(ak types.AccountKeeper, bk types.BankKeeper, k keeper. ModuleName: types.ModuleName, CoinsSpentInMsg: sdk.NewCoins(), } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } @@ -172,7 +171,7 @@ func SimulateMsgRequestAddGenesisAccount(ak types.AccountKeeper, bk types.BankKe txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: &msg, MsgType: msg.Type(), @@ -183,7 +182,7 @@ func SimulateMsgRequestAddGenesisAccount(ak types.AccountKeeper, bk types.BankKe ModuleName: types.ModuleName, CoinsSpentInMsg: fee, } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } @@ -232,7 +231,7 @@ func SimulateMsgRequestAddVestingAccount(ak types.AccountKeeper, bk types.BankKe txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: &msg, MsgType: msg.Type(), @@ -243,7 +242,7 @@ func SimulateMsgRequestAddVestingAccount(ak types.AccountKeeper, bk types.BankKe ModuleName: types.ModuleName, CoinsSpentInMsg: fee, } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } @@ -315,7 +314,7 @@ func SimulateMsgRequestRemoveAccount(ak types.AccountKeeper, bk types.BankKeeper txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: msg, MsgType: msg.Type(), @@ -326,7 +325,7 @@ func SimulateMsgRequestRemoveAccount(ak types.AccountKeeper, bk types.BankKeeper ModuleName: types.ModuleName, CoinsSpentInMsg: fee, } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } @@ -354,7 +353,7 @@ func SimulateMsgRequestAddValidator(ak types.AccountKeeper, bk types.BankKeeper, txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: &msg, MsgType: msg.Type(), @@ -365,7 +364,7 @@ func SimulateMsgRequestAddValidator(ak types.AccountKeeper, bk types.BankKeeper, ModuleName: types.ModuleName, CoinsSpentInMsg: fee, } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } @@ -390,7 +389,7 @@ func SimulateMsgRequestRemoveValidator(ak types.AccountKeeper, bk types.BankKeep txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: &msg, MsgType: msg.Type(), @@ -401,7 +400,7 @@ func SimulateMsgRequestRemoveValidator(ak types.AccountKeeper, bk types.BankKeep ModuleName: types.ModuleName, CoinsSpentInMsg: fee, } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } @@ -428,7 +427,7 @@ func SimulateMsgRequestParamChange(ak types.AccountKeeper, bk types.BankKeeper, txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: &msg, MsgType: msg.Type(), @@ -439,7 +438,7 @@ func SimulateMsgRequestParamChange(ak types.AccountKeeper, bk types.BankKeeper, ModuleName: types.ModuleName, CoinsSpentInMsg: fee, } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } @@ -464,7 +463,7 @@ func SimulateMsgTriggerLaunch(ak types.AccountKeeper, bk types.BankKeeper, k kee txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: &msg, MsgType: msg.Type(), @@ -475,7 +474,7 @@ func SimulateMsgTriggerLaunch(ak types.AccountKeeper, bk types.BankKeeper, k kee ModuleName: types.ModuleName, CoinsSpentInMsg: sdk.NewCoins(), } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } @@ -512,7 +511,7 @@ func SimulateMsgSettleRequest(ak types.AccountKeeper, bk types.BankKeeper, k kee txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: &msg, MsgType: msg.Type(), @@ -523,7 +522,7 @@ func SimulateMsgSettleRequest(ak types.AccountKeeper, bk types.BankKeeper, k kee ModuleName: types.ModuleName, CoinsSpentInMsg: sdk.NewCoins(), } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } @@ -553,7 +552,7 @@ func SimulateMsgRevertLaunch(ak types.AccountKeeper, bk types.BankKeeper, k keep txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: &msg, MsgType: msg.Type(), @@ -564,7 +563,7 @@ func SimulateMsgRevertLaunch(ak types.AccountKeeper, bk types.BankKeeper, k keep ModuleName: types.ModuleName, CoinsSpentInMsg: sdk.NewCoins(), } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } @@ -596,7 +595,7 @@ func SimulateMsgUpdateLaunchInformation(ak types.AccountKeeper, bk types.BankKee txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: &msg, MsgType: msg.Type(), @@ -607,6 +606,6 @@ func SimulateMsgUpdateLaunchInformation(ak types.AccountKeeper, bk types.BankKee ModuleName: types.ModuleName, CoinsSpentInMsg: sdk.NewCoins(), } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } diff --git a/x/launch/types/chain.pb.go b/x/launch/types/chain.pb.go index 64e735d64..46a629061 100644 --- a/x/launch/types/chain.pb.go +++ b/x/launch/types/chain.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: launch/chain.proto +// source: spn/launch/chain.proto package types @@ -7,9 +7,9 @@ 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" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" @@ -55,7 +55,7 @@ func (m *Chain) Reset() { *m = Chain{} } func (m *Chain) String() string { return proto.CompactTextString(m) } func (*Chain) ProtoMessage() {} func (*Chain) Descriptor() ([]byte, []int) { - return fileDescriptor_36e96f39bc2e1bde, []int{0} + return fileDescriptor_8b919b922fe97a70, []int{0} } func (m *Chain) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -209,7 +209,7 @@ func (m *InitialGenesis) Reset() { *m = InitialGenesis{} } func (m *InitialGenesis) String() string { return proto.CompactTextString(m) } func (*InitialGenesis) ProtoMessage() {} func (*InitialGenesis) Descriptor() ([]byte, []int) { - return fileDescriptor_36e96f39bc2e1bde, []int{1} + return fileDescriptor_8b919b922fe97a70, []int{1} } func (m *InitialGenesis) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -304,7 +304,7 @@ func (m *DefaultInitialGenesis) Reset() { *m = DefaultInitialGenesis{} } func (m *DefaultInitialGenesis) String() string { return proto.CompactTextString(m) } func (*DefaultInitialGenesis) ProtoMessage() {} func (*DefaultInitialGenesis) Descriptor() ([]byte, []int) { - return fileDescriptor_36e96f39bc2e1bde, []int{2} + return fileDescriptor_8b919b922fe97a70, []int{2} } func (m *DefaultInitialGenesis) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -343,7 +343,7 @@ func (m *GenesisURL) Reset() { *m = GenesisURL{} } func (m *GenesisURL) String() string { return proto.CompactTextString(m) } func (*GenesisURL) ProtoMessage() {} func (*GenesisURL) Descriptor() ([]byte, []int) { - return fileDescriptor_36e96f39bc2e1bde, []int{3} + return fileDescriptor_8b919b922fe97a70, []int{3} } func (m *GenesisURL) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -396,7 +396,7 @@ func (m *GenesisConfig) Reset() { *m = GenesisConfig{} } func (m *GenesisConfig) String() string { return proto.CompactTextString(m) } func (*GenesisConfig) ProtoMessage() {} func (*GenesisConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_36e96f39bc2e1bde, []int{4} + return fileDescriptor_8b919b922fe97a70, []int{4} } func (m *GenesisConfig) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -433,61 +433,61 @@ func (m *GenesisConfig) GetFile() string { } func init() { - proto.RegisterType((*Chain)(nil), "tendermint.spn.launch.Chain") - proto.RegisterType((*InitialGenesis)(nil), "tendermint.spn.launch.InitialGenesis") - proto.RegisterType((*DefaultInitialGenesis)(nil), "tendermint.spn.launch.DefaultInitialGenesis") - proto.RegisterType((*GenesisURL)(nil), "tendermint.spn.launch.GenesisURL") - proto.RegisterType((*GenesisConfig)(nil), "tendermint.spn.launch.GenesisConfig") -} - -func init() { proto.RegisterFile("launch/chain.proto", fileDescriptor_36e96f39bc2e1bde) } - -var fileDescriptor_36e96f39bc2e1bde = []byte{ - // 699 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0xcd, 0x6e, 0xd3, 0x4a, - 0x14, 0x8e, 0x93, 0x34, 0x37, 0x39, 0x69, 0xd2, 0x6a, 0xee, 0xed, 0x65, 0x88, 0x90, 0x13, 0x42, - 0x01, 0x2f, 0xc0, 0xa6, 0x41, 0x62, 0x4f, 0x12, 0xa9, 0x89, 0x54, 0x24, 0x64, 0xca, 0x06, 0x56, - 0x13, 0x7b, 0xe2, 0x0c, 0xc4, 0x33, 0x91, 0x67, 0x5c, 0xc1, 0x5b, 0x54, 0x42, 0x6c, 0x79, 0x00, - 0x9e, 0xa4, 0xcb, 0x2e, 0x59, 0xb5, 0xa8, 0x7d, 0x0b, 0x56, 0xc8, 0x63, 0xa7, 0xf9, 0x51, 0x8a, - 0x58, 0xf9, 0xcc, 0x77, 0xbe, 0xf3, 0x37, 0xf3, 0x1d, 0x03, 0x9a, 0x92, 0x98, 0x7b, 0x13, 0xc7, - 0x9b, 0x10, 0xc6, 0xed, 0x59, 0x24, 0x94, 0x40, 0x7b, 0x8a, 0x72, 0x9f, 0x46, 0x21, 0xe3, 0xca, - 0x96, 0x33, 0x6e, 0xa7, 0x94, 0xc6, 0x7f, 0x81, 0x08, 0x84, 0x66, 0x38, 0x89, 0x95, 0x92, 0x1b, - 0xcd, 0x40, 0x88, 0x60, 0x4a, 0x1d, 0x7d, 0x1a, 0xc5, 0x63, 0x47, 0xb1, 0x90, 0x4a, 0x45, 0xc2, - 0x59, 0x46, 0x30, 0x3d, 0x21, 0x43, 0x21, 0x9d, 0x11, 0x91, 0xd4, 0x39, 0x39, 0x18, 0x51, 0x45, - 0x0e, 0x1c, 0x4f, 0xcc, 0xab, 0xb5, 0xbf, 0x96, 0x60, 0xab, 0x97, 0x54, 0x47, 0x0d, 0x28, 0xa7, - 0xa5, 0x86, 0x7d, 0x6c, 0xb4, 0x0c, 0xab, 0xe8, 0xde, 0x9c, 0xd1, 0x3e, 0xd4, 0x3c, 0x21, 0x22, - 0x9f, 0x71, 0xa2, 0x44, 0x34, 0xec, 0xe3, 0xbc, 0x26, 0xac, 0x82, 0xe8, 0x11, 0xd4, 0x03, 0xca, - 0xa9, 0x64, 0x52, 0x67, 0x1c, 0xf6, 0x71, 0xa1, 0x65, 0x58, 0x15, 0x77, 0x0d, 0x45, 0xf7, 0xa0, - 0xe2, 0x45, 0x94, 0x28, 0xea, 0xbf, 0x54, 0xb8, 0xd8, 0x32, 0xac, 0x82, 0xbb, 0x00, 0x12, 0xaf, - 0x14, 0x71, 0xe4, 0xd1, 0xb7, 0xee, 0x11, 0xde, 0xd2, 0x09, 0x16, 0x00, 0x32, 0x01, 0xd2, 0xc3, - 0x80, 0xc8, 0x09, 0x2e, 0x69, 0xf7, 0x12, 0x82, 0xde, 0x40, 0x9d, 0x71, 0xa6, 0x18, 0x99, 0x1e, - 0xa6, 0x45, 0xf1, 0x3f, 0x2d, 0xc3, 0xaa, 0x76, 0x1e, 0xda, 0x1b, 0xaf, 0xd5, 0x1e, 0xae, 0x90, - 0xbb, 0xc5, 0xb3, 0x8b, 0x66, 0xce, 0x5d, 0x4b, 0x91, 0x14, 0x9d, 0x10, 0xf9, 0x3a, 0x12, 0x1f, - 0xa8, 0xa7, 0x70, 0xb9, 0x65, 0x58, 0x65, 0x77, 0x09, 0x49, 0x5a, 0x9e, 0xa5, 0xe6, 0xb0, 0x8f, - 0x2b, 0xfa, 0x6a, 0x16, 0x40, 0xe2, 0x65, 0xf2, 0x15, 0x61, 0x9c, 0x53, 0x85, 0x41, 0x07, 0x2f, - 0x00, 0x64, 0xc1, 0x4e, 0xda, 0xca, 0x71, 0xc4, 0x82, 0x80, 0x46, 0xd4, 0xc7, 0x55, 0xcd, 0x59, - 0x87, 0x51, 0x1f, 0x20, 0x83, 0x58, 0x48, 0xf1, 0xb6, 0x1e, 0xab, 0x61, 0xa7, 0x02, 0xb0, 0xe7, - 0x02, 0xb0, 0x8f, 0xe7, 0x02, 0xe8, 0x96, 0x93, 0x59, 0x4e, 0x2f, 0x9b, 0x86, 0xbb, 0x14, 0x87, - 0x5e, 0xc0, 0xff, 0x9e, 0xe0, 0x32, 0x0e, 0x69, 0xe4, 0xd2, 0x13, 0x26, 0x99, 0xe0, 0x03, 0xca, - 0x82, 0x89, 0xc2, 0x35, 0xfd, 0x12, 0xb7, 0x78, 0xd1, 0x33, 0xf8, 0x37, 0x14, 0x9c, 0x29, 0x11, - 0x31, 0x1e, 0xf4, 0x04, 0xe7, 0xd4, 0x53, 0xd4, 0xc7, 0x75, 0xdd, 0xeb, 0x26, 0x17, 0xfa, 0x66, - 0x40, 0x9d, 0x78, 0x9e, 0x88, 0xb9, 0xea, 0x92, 0x29, 0xe1, 0x1e, 0xc5, 0x3b, 0xad, 0x82, 0x55, - 0xed, 0xdc, 0xb5, 0x53, 0x51, 0xda, 0x89, 0x28, 0xed, 0x4c, 0x94, 0x76, 0x4f, 0x30, 0xde, 0x7d, - 0x9f, 0xf4, 0xfc, 0xeb, 0xa2, 0xf9, 0x38, 0x60, 0x6a, 0x12, 0x8f, 0x6c, 0x4f, 0x84, 0x4e, 0xa6, - 0xe0, 0xf4, 0xf3, 0x54, 0xfa, 0x1f, 0x1d, 0xf5, 0x79, 0x46, 0xa5, 0x0e, 0xf8, 0x7e, 0xd9, 0xb4, - 0xfe, 0x92, 0x2a, 0xdd, 0xb5, 0x6e, 0x12, 0xc5, 0x87, 0x54, 0x11, 0x9f, 0x28, 0x82, 0x77, 0x5b, - 0x86, 0xb5, 0xed, 0xde, 0x9c, 0xdb, 0x5f, 0xf2, 0x50, 0x5f, 0xd5, 0x06, 0xf2, 0x61, 0xcf, 0xa7, - 0x63, 0x12, 0x4f, 0xd5, 0xaa, 0x43, 0x6f, 0x4b, 0xb5, 0xf3, 0xe4, 0x16, 0x85, 0xf5, 0x37, 0xc5, - 0x0c, 0x72, 0xee, 0xe6, 0x64, 0xa8, 0x07, 0x90, 0xad, 0x4b, 0xa2, 0xff, 0xbc, 0x4e, 0x7d, 0xff, - 0x96, 0xd4, 0x87, 0x37, 0xc4, 0x41, 0xce, 0x5d, 0x0a, 0x43, 0x47, 0x50, 0x9b, 0xef, 0x9c, 0xe0, - 0x63, 0x16, 0xe8, 0x45, 0xac, 0x76, 0xf6, 0xff, 0x9c, 0x27, 0xe5, 0x0e, 0x72, 0xee, 0x6a, 0x70, - 0xb7, 0x0c, 0xa5, 0x74, 0xc3, 0xda, 0x77, 0x60, 0x6f, 0xe3, 0x38, 0xed, 0x0e, 0xc0, 0xa2, 0x19, - 0xb4, 0x0b, 0x85, 0x38, 0x9a, 0xea, 0x7b, 0xa9, 0xb8, 0x89, 0x89, 0x10, 0x14, 0x27, 0xc9, 0xc2, - 0xe6, 0x35, 0xa4, 0xed, 0xf6, 0x03, 0xa8, 0xad, 0x14, 0x4e, 0x48, 0x63, 0x36, 0xa5, 0x59, 0x9c, - 0xb6, 0xbb, 0xdd, 0xb3, 0x2b, 0xd3, 0x38, 0xbf, 0x32, 0x8d, 0x9f, 0x57, 0xa6, 0x71, 0x7a, 0x6d, - 0xe6, 0xce, 0xaf, 0xcd, 0xdc, 0x8f, 0x6b, 0x33, 0xf7, 0x6e, 0xf9, 0xdd, 0x17, 0x63, 0x39, 0x72, - 0xc6, 0x9d, 0x4f, 0x4e, 0xf6, 0x5f, 0xd5, 0xaf, 0x3f, 0x2a, 0xe9, 0xe5, 0x78, 0xfe, 0x3b, 0x00, - 0x00, 0xff, 0xff, 0x50, 0xbc, 0x7c, 0x64, 0x6e, 0x05, 0x00, 0x00, + proto.RegisterType((*Chain)(nil), "spn.launch.Chain") + proto.RegisterType((*InitialGenesis)(nil), "spn.launch.InitialGenesis") + proto.RegisterType((*DefaultInitialGenesis)(nil), "spn.launch.DefaultInitialGenesis") + proto.RegisterType((*GenesisURL)(nil), "spn.launch.GenesisURL") + proto.RegisterType((*GenesisConfig)(nil), "spn.launch.GenesisConfig") +} + +func init() { proto.RegisterFile("spn/launch/chain.proto", fileDescriptor_8b919b922fe97a70) } + +var fileDescriptor_8b919b922fe97a70 = []byte{ + // 694 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0xcd, 0x6e, 0xd3, 0x40, + 0x10, 0x8e, 0x9b, 0x34, 0x24, 0x93, 0x26, 0xad, 0x16, 0x5a, 0x96, 0x08, 0x39, 0x21, 0x20, 0xf0, + 0x05, 0x9b, 0x06, 0x09, 0x71, 0x6d, 0x1a, 0xa9, 0x89, 0x04, 0x12, 0xb2, 0xca, 0x01, 0x38, 0x6d, + 0xec, 0x8d, 0xb3, 0x10, 0xef, 0x46, 0xde, 0x75, 0x05, 0xaf, 0xc0, 0xa9, 0x4f, 0xc0, 0x03, 0xf0, + 0x24, 0x3d, 0xf6, 0xc8, 0xa9, 0x45, 0xed, 0x1b, 0x70, 0xe4, 0x84, 0x76, 0x9d, 0x34, 0x3f, 0x04, + 0x89, 0x93, 0x67, 0xbf, 0xf9, 0xe6, 0x67, 0x77, 0xbe, 0x31, 0xec, 0xc9, 0x09, 0xf7, 0xc6, 0x24, + 0xe5, 0xc1, 0xc8, 0x0b, 0x46, 0x84, 0x71, 0x77, 0x92, 0x08, 0x25, 0x10, 0xc8, 0x09, 0x77, 0x33, + 0xbc, 0x7e, 0x27, 0x12, 0x91, 0x30, 0xb0, 0xa7, 0xad, 0x8c, 0x51, 0x6f, 0x44, 0x42, 0x44, 0x63, + 0xea, 0x99, 0xd3, 0x20, 0x1d, 0x7a, 0x8a, 0xc5, 0x54, 0x2a, 0x12, 0x4f, 0xa6, 0x04, 0x3b, 0x10, + 0x32, 0x16, 0xd2, 0x1b, 0x10, 0x49, 0xbd, 0x93, 0xfd, 0x01, 0x55, 0x64, 0xdf, 0x0b, 0xc4, 0xac, + 0x44, 0xeb, 0x6b, 0x11, 0x36, 0x0f, 0x75, 0x49, 0x54, 0x87, 0x52, 0x56, 0xaa, 0xdf, 0xc5, 0x56, + 0xd3, 0x72, 0x0a, 0xfe, 0xcd, 0x19, 0x3d, 0x82, 0x6a, 0x20, 0x44, 0x12, 0x32, 0x4e, 0x94, 0x48, + 0xfa, 0x5d, 0xbc, 0x61, 0x08, 0xcb, 0x20, 0x7a, 0x0c, 0xb5, 0x88, 0x72, 0x2a, 0x99, 0x34, 0x19, + 0xfb, 0x5d, 0x9c, 0x6f, 0x5a, 0x4e, 0xd9, 0x5f, 0x41, 0xd1, 0x7d, 0x28, 0x07, 0x09, 0x25, 0x8a, + 0x86, 0x07, 0x0a, 0x17, 0x9a, 0x96, 0x93, 0xf7, 0xe7, 0x80, 0xf6, 0x4a, 0x91, 0x26, 0x01, 0x7d, + 0xeb, 0xbf, 0xc2, 0x9b, 0x26, 0xc1, 0x1c, 0x40, 0x36, 0x40, 0x76, 0xe8, 0x11, 0x39, 0xc2, 0x45, + 0xe3, 0x5e, 0x40, 0x50, 0x0f, 0x6a, 0x8c, 0x33, 0xc5, 0xc8, 0xf8, 0x28, 0x2b, 0x8a, 0x6f, 0x35, + 0x2d, 0xa7, 0xd2, 0xae, 0xbb, 0xf3, 0xb7, 0x74, 0xfb, 0x4b, 0x8c, 0x4e, 0xe1, 0xec, 0xa2, 0x91, + 0xf3, 0x57, 0xe2, 0x74, 0xa5, 0x11, 0x91, 0x6f, 0x12, 0xf1, 0x91, 0x06, 0x0a, 0x97, 0x9a, 0x96, + 0x53, 0xf2, 0x17, 0x10, 0xdd, 0xe7, 0x24, 0x33, 0xfb, 0x5d, 0x5c, 0x36, 0xef, 0x31, 0x07, 0xb4, + 0x97, 0xc9, 0xd7, 0x84, 0x71, 0x4e, 0x15, 0x06, 0x13, 0x3c, 0x07, 0x90, 0x03, 0xdb, 0x59, 0x2b, + 0xc7, 0x09, 0x8b, 0x22, 0x9a, 0xd0, 0x10, 0x57, 0x0c, 0x67, 0x15, 0x46, 0x5d, 0x80, 0x29, 0xc4, + 0x62, 0x8a, 0xb7, 0xa6, 0x77, 0xc9, 0xa6, 0xee, 0xce, 0xa6, 0xee, 0x1e, 0xcf, 0xa6, 0xde, 0x29, + 0xe9, 0xbb, 0x9c, 0x5e, 0x36, 0x2c, 0x7f, 0x21, 0x0e, 0xbd, 0x80, 0xbd, 0x40, 0x70, 0x99, 0xc6, + 0x34, 0xf1, 0xe9, 0x09, 0x93, 0x4c, 0xf0, 0x1e, 0x65, 0xd1, 0x48, 0xe1, 0xaa, 0x79, 0xfe, 0x7f, + 0x78, 0xd1, 0x33, 0xb8, 0x1d, 0x0b, 0xce, 0x94, 0x48, 0x18, 0x8f, 0x0e, 0x05, 0xe7, 0x34, 0x50, + 0x34, 0xc4, 0x35, 0xd3, 0xeb, 0x3a, 0x17, 0xfa, 0x66, 0x41, 0x8d, 0x04, 0x81, 0x48, 0xb9, 0xea, + 0x90, 0x31, 0xe1, 0x01, 0xc5, 0xdb, 0xcd, 0xbc, 0x53, 0x69, 0xdf, 0x73, 0x33, 0x25, 0xba, 0x5a, + 0x89, 0xee, 0x54, 0x89, 0xee, 0xa1, 0x60, 0xbc, 0xf3, 0x41, 0xf7, 0xfc, 0xfb, 0xa2, 0xf1, 0x24, + 0x62, 0x6a, 0x94, 0x0e, 0xdc, 0x40, 0xc4, 0xde, 0x54, 0xb6, 0xd9, 0xe7, 0xa9, 0x0c, 0x3f, 0x79, + 0xea, 0xcb, 0x84, 0x4a, 0x13, 0xf0, 0xfd, 0xb2, 0xe1, 0xfc, 0x27, 0x55, 0xfa, 0x2b, 0xdd, 0x68, + 0x99, 0xc7, 0x54, 0x91, 0x90, 0x28, 0x82, 0x77, 0x9a, 0x96, 0xb3, 0xe5, 0xdf, 0x9c, 0x5b, 0xbf, + 0x2c, 0xa8, 0x2d, 0x6b, 0x03, 0xbd, 0x83, 0xdd, 0x90, 0x0e, 0x49, 0x3a, 0x56, 0xcb, 0x0e, 0xb3, + 0x22, 0x95, 0xf6, 0x83, 0x45, 0x59, 0x75, 0xd7, 0x11, 0x7b, 0x39, 0x7f, 0x7d, 0x06, 0xf4, 0x12, + 0x60, 0xba, 0x18, 0x5a, 0xe9, 0x1b, 0x26, 0xdf, 0xde, 0x62, 0xbe, 0xa3, 0x1b, 0x6f, 0x2f, 0xe7, + 0x2f, 0x70, 0xd1, 0x01, 0x54, 0x67, 0x2b, 0x25, 0xf8, 0x90, 0x45, 0x66, 0xcf, 0xf4, 0x13, 0xff, + 0x1d, 0x9c, 0x11, 0x7a, 0x39, 0x7f, 0x39, 0xa2, 0x53, 0x82, 0x62, 0xb6, 0x35, 0xad, 0xbb, 0xb0, + 0xbb, 0xb6, 0xf1, 0x56, 0x1b, 0x60, 0xde, 0x01, 0xda, 0x81, 0x7c, 0x9a, 0x8c, 0xcd, 0xb5, 0xcb, + 0xbe, 0x36, 0x11, 0x82, 0xc2, 0x48, 0x2f, 0xe1, 0x86, 0x81, 0x8c, 0xdd, 0x7a, 0x08, 0xd5, 0xa5, + 0xc2, 0x9a, 0x34, 0x64, 0x63, 0x3a, 0x8d, 0x33, 0x76, 0xa7, 0x73, 0x76, 0x65, 0x5b, 0xe7, 0x57, + 0xb6, 0xf5, 0xf3, 0xca, 0xb6, 0x4e, 0xaf, 0xed, 0xdc, 0xf9, 0xb5, 0x9d, 0xfb, 0x71, 0x6d, 0xe7, + 0xde, 0x2f, 0x8e, 0x55, 0x51, 0x1e, 0xd2, 0x24, 0x66, 0x5c, 0x79, 0xfa, 0xf7, 0xf8, 0x79, 0xf6, + 0x83, 0x34, 0xc3, 0x1d, 0x14, 0x8d, 0xf6, 0x9f, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0x54, 0x31, + 0x4a, 0xf8, 0x3b, 0x05, 0x00, 0x00, } func (m *Chain) Marshal() (dAtA []byte, err error) { @@ -548,7 +548,7 @@ func (m *Chain) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x68 } - n1, err1 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.LaunchTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.LaunchTime):]) + n1, err1 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.LaunchTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.LaunchTime):]) if err1 != nil { return 0, err1 } @@ -877,7 +877,7 @@ func (m *Chain) Size() (n int) { if m.LaunchTriggered { n += 2 } - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.LaunchTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.LaunchTime) n += 1 + l + sovChain(uint64(l)) if m.ConsumerRevisionHeight != 0 { n += 1 + sovChain(uint64(m.ConsumerRevisionHeight)) @@ -1314,7 +1314,7 @@ func (m *Chain) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.LaunchTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.LaunchTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/launch/types/events.pb.go b/x/launch/types/events.pb.go index 2f7a93ff0..0497dca17 100644 --- a/x/launch/types/events.pb.go +++ b/x/launch/types/events.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: launch/events.proto +// source: spn/launch/events.proto package types @@ -8,9 +8,9 @@ import ( _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" @@ -40,7 +40,7 @@ func (m *EventChainCreated) Reset() { *m = EventChainCreated{} } func (m *EventChainCreated) String() string { return proto.CompactTextString(m) } func (*EventChainCreated) ProtoMessage() {} func (*EventChainCreated) Descriptor() ([]byte, []int) { - return fileDescriptor_bb8579c84a3d4015, []int{0} + return fileDescriptor_0bbfde18c498fc1f, []int{0} } func (m *EventChainCreated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -99,7 +99,7 @@ func (m *EventRequestCreated) Reset() { *m = EventRequestCreated{} } func (m *EventRequestCreated) String() string { return proto.CompactTextString(m) } func (*EventRequestCreated) ProtoMessage() {} func (*EventRequestCreated) Descriptor() ([]byte, []int) { - return fileDescriptor_bb8579c84a3d4015, []int{1} + return fileDescriptor_0bbfde18c498fc1f, []int{1} } func (m *EventRequestCreated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -152,7 +152,7 @@ func (m *EventRequestSettled) Reset() { *m = EventRequestSettled{} } func (m *EventRequestSettled) String() string { return proto.CompactTextString(m) } func (*EventRequestSettled) ProtoMessage() {} func (*EventRequestSettled) Descriptor() ([]byte, []int) { - return fileDescriptor_bb8579c84a3d4015, []int{2} + return fileDescriptor_0bbfde18c498fc1f, []int{2} } func (m *EventRequestSettled) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -213,7 +213,7 @@ func (m *EventGenesisAccountAdded) Reset() { *m = EventGenesisAccountAdd func (m *EventGenesisAccountAdded) String() string { return proto.CompactTextString(m) } func (*EventGenesisAccountAdded) ProtoMessage() {} func (*EventGenesisAccountAdded) Descriptor() ([]byte, []int) { - return fileDescriptor_bb8579c84a3d4015, []int{3} + return fileDescriptor_0bbfde18c498fc1f, []int{3} } func (m *EventGenesisAccountAdded) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -281,7 +281,7 @@ func (m *EventVestingAccountAdded) Reset() { *m = EventVestingAccountAdd func (m *EventVestingAccountAdded) String() string { return proto.CompactTextString(m) } func (*EventVestingAccountAdded) ProtoMessage() {} func (*EventVestingAccountAdded) Descriptor() ([]byte, []int) { - return fileDescriptor_bb8579c84a3d4015, []int{4} + return fileDescriptor_0bbfde18c498fc1f, []int{4} } func (m *EventVestingAccountAdded) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -354,7 +354,7 @@ func (m *EventValidatorAdded) Reset() { *m = EventValidatorAdded{} } func (m *EventValidatorAdded) String() string { return proto.CompactTextString(m) } func (*EventValidatorAdded) ProtoMessage() {} func (*EventValidatorAdded) Descriptor() ([]byte, []int) { - return fileDescriptor_bb8579c84a3d4015, []int{5} + return fileDescriptor_0bbfde18c498fc1f, []int{5} } func (m *EventValidatorAdded) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -456,7 +456,7 @@ func (m *EventAccountRemoved) Reset() { *m = EventAccountRemoved{} } func (m *EventAccountRemoved) String() string { return proto.CompactTextString(m) } func (*EventAccountRemoved) ProtoMessage() {} func (*EventAccountRemoved) Descriptor() ([]byte, []int) { - return fileDescriptor_bb8579c84a3d4015, []int{6} + return fileDescriptor_0bbfde18c498fc1f, []int{6} } func (m *EventAccountRemoved) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -518,7 +518,7 @@ func (m *EventValidatorRemoved) Reset() { *m = EventValidatorRemoved{} } func (m *EventValidatorRemoved) String() string { return proto.CompactTextString(m) } func (*EventValidatorRemoved) ProtoMessage() {} func (*EventValidatorRemoved) Descriptor() ([]byte, []int) { - return fileDescriptor_bb8579c84a3d4015, []int{7} + return fileDescriptor_0bbfde18c498fc1f, []int{7} } func (m *EventValidatorRemoved) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -593,7 +593,7 @@ func (m *EventParamChanged) Reset() { *m = EventParamChanged{} } func (m *EventParamChanged) String() string { return proto.CompactTextString(m) } func (*EventParamChanged) ProtoMessage() {} func (*EventParamChanged) Descriptor() ([]byte, []int) { - return fileDescriptor_bb8579c84a3d4015, []int{8} + return fileDescriptor_0bbfde18c498fc1f, []int{8} } func (m *EventParamChanged) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -659,7 +659,7 @@ func (m *EventLaunchTriggered) Reset() { *m = EventLaunchTriggered{} } func (m *EventLaunchTriggered) String() string { return proto.CompactTextString(m) } func (*EventLaunchTriggered) ProtoMessage() {} func (*EventLaunchTriggered) Descriptor() ([]byte, []int) { - return fileDescriptor_bb8579c84a3d4015, []int{9} + return fileDescriptor_0bbfde18c498fc1f, []int{9} } func (m *EventLaunchTriggered) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -710,7 +710,7 @@ func (m *EventLaunchReverted) Reset() { *m = EventLaunchReverted{} } func (m *EventLaunchReverted) String() string { return proto.CompactTextString(m) } func (*EventLaunchReverted) ProtoMessage() {} func (*EventLaunchReverted) Descriptor() ([]byte, []int) { - return fileDescriptor_bb8579c84a3d4015, []int{10} + return fileDescriptor_0bbfde18c498fc1f, []int{10} } func (m *EventLaunchReverted) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -747,78 +747,77 @@ func (m *EventLaunchReverted) GetLaunchID() uint64 { } func init() { - proto.RegisterType((*EventChainCreated)(nil), "tendermint.spn.launch.EventChainCreated") - proto.RegisterType((*EventRequestCreated)(nil), "tendermint.spn.launch.EventRequestCreated") - proto.RegisterType((*EventRequestSettled)(nil), "tendermint.spn.launch.EventRequestSettled") - proto.RegisterType((*EventGenesisAccountAdded)(nil), "tendermint.spn.launch.EventGenesisAccountAdded") - proto.RegisterType((*EventVestingAccountAdded)(nil), "tendermint.spn.launch.EventVestingAccountAdded") - proto.RegisterType((*EventValidatorAdded)(nil), "tendermint.spn.launch.EventValidatorAdded") - proto.RegisterType((*EventAccountRemoved)(nil), "tendermint.spn.launch.EventAccountRemoved") - proto.RegisterType((*EventValidatorRemoved)(nil), "tendermint.spn.launch.EventValidatorRemoved") - proto.RegisterType((*EventParamChanged)(nil), "tendermint.spn.launch.EventParamChanged") - proto.RegisterType((*EventLaunchTriggered)(nil), "tendermint.spn.launch.EventLaunchTriggered") - proto.RegisterType((*EventLaunchReverted)(nil), "tendermint.spn.launch.EventLaunchReverted") -} - -func init() { proto.RegisterFile("launch/events.proto", fileDescriptor_bb8579c84a3d4015) } - -var fileDescriptor_bb8579c84a3d4015 = []byte{ - // 867 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x3f, 0x8f, 0x1b, 0x45, - 0x14, 0xbf, 0x3d, 0xfb, 0xee, 0xec, 0x49, 0x08, 0x62, 0xe3, 0xc0, 0xc6, 0x44, 0xeb, 0x93, 0x05, - 0xc2, 0x4d, 0x76, 0x75, 0x87, 0x90, 0xa8, 0x90, 0xce, 0x36, 0x0a, 0x16, 0x08, 0xac, 0xb5, 0x75, - 0x05, 0x14, 0xd1, 0x78, 0xf7, 0x65, 0xbd, 0x64, 0x77, 0x66, 0x99, 0x99, 0xb5, 0x92, 0x96, 0x0e, - 0x89, 0x22, 0xdf, 0x80, 0x82, 0x8e, 0x86, 0x86, 0x6f, 0x40, 0x93, 0x32, 0xa2, 0xa2, 0x4a, 0xd0, - 0xdd, 0x67, 0xa0, 0xa1, 0x42, 0xf3, 0x67, 0x7d, 0xb6, 0x15, 0x9f, 0xcd, 0x89, 0xab, 0x76, 0xde, - 0xbf, 0x79, 0x6f, 0x7e, 0xef, 0xf7, 0x76, 0x06, 0xdd, 0x4e, 0x71, 0x41, 0xc2, 0xa9, 0x0f, 0x33, - 0x20, 0x82, 0x7b, 0x39, 0xa3, 0x82, 0xda, 0x77, 0x04, 0x90, 0x08, 0x58, 0x96, 0x10, 0xe1, 0xf1, - 0x9c, 0x78, 0xda, 0xa7, 0xd9, 0x88, 0x69, 0x4c, 0x95, 0x87, 0x2f, 0x57, 0xda, 0xb9, 0xe9, 0x86, - 0x94, 0x67, 0x94, 0xfb, 0x13, 0xcc, 0xc1, 0x9f, 0x1d, 0x4d, 0x40, 0xe0, 0x23, 0x3f, 0xa4, 0x09, - 0x31, 0xf6, 0xbb, 0xda, 0xfe, 0x50, 0x07, 0x6a, 0xc1, 0x98, 0x5a, 0x31, 0xa5, 0x71, 0x0a, 0xbe, - 0x92, 0x26, 0xc5, 0x23, 0x5f, 0x24, 0x19, 0x70, 0x81, 0xb3, 0xdc, 0x38, 0xd8, 0xa6, 0xba, 0x70, - 0x8a, 0xe7, 0xfb, 0x35, 0x8c, 0x8e, 0xc1, 0x77, 0x05, 0x70, 0x61, 0xb4, 0xf7, 0x8c, 0x36, 0x06, - 0x02, 0x3c, 0xe1, 0x0f, 0x71, 0x18, 0xd2, 0x82, 0xac, 0x5a, 0x67, 0xc0, 0x45, 0x42, 0xe2, 0x15, - 0xab, 0xbb, 0x12, 0x3b, 0xc3, 0x69, 0x12, 0x61, 0x41, 0x99, 0xb6, 0xb7, 0x7f, 0xb2, 0xd0, 0x5b, - 0x9f, 0x4a, 0x7c, 0x7a, 0xb2, 0x8c, 0x1e, 0x03, 0x2c, 0x20, 0xb2, 0x9b, 0xa8, 0xa6, 0xe3, 0x06, - 0x7d, 0xc7, 0x3a, 0xb4, 0x3a, 0xd5, 0x60, 0x2e, 0xdb, 0x9f, 0x21, 0x3b, 0xa4, 0x94, 0x45, 0x09, - 0x91, 0xdb, 0x9c, 0x44, 0x11, 0x03, 0xce, 0x9d, 0xdd, 0x43, 0xab, 0x53, 0xef, 0x3a, 0x7f, 0xfc, - 0x76, 0xbf, 0x61, 0x60, 0x30, 0x96, 0x91, 0x60, 0x09, 0x89, 0x83, 0xd7, 0xc4, 0xd8, 0xef, 0xa1, - 0x37, 0x16, 0xb4, 0x83, 0xbe, 0x53, 0x51, 0xa9, 0x96, 0x95, 0x6d, 0x8a, 0x6e, 0xab, 0x02, 0x03, - 0x8d, 0x49, 0x59, 0xa2, 0x83, 0x0e, 0x42, 0xb9, 0xa4, 0x4c, 0x55, 0x58, 0x0f, 0x4a, 0xd1, 0xfe, - 0x04, 0x1d, 0x18, 0xfc, 0x54, 0x55, 0x37, 0x8e, 0x5d, 0xef, 0xb5, 0x3d, 0xf7, 0xcc, 0x8e, 0xdd, - 0xea, 0xf3, 0x97, 0xad, 0x9d, 0xa0, 0x0c, 0x6a, 0x3f, 0x5e, 0x4e, 0x38, 0x02, 0x21, 0xd2, 0x0d, - 0x98, 0xdc, 0x43, 0x75, 0x13, 0x3d, 0xe8, 0xab, 0xa4, 0xd5, 0xe0, 0x42, 0x21, 0x23, 0x71, 0x9e, - 0x33, 0x3a, 0x83, 0x48, 0x1d, 0xb1, 0x16, 0xcc, 0xe5, 0xf6, 0xef, 0xbb, 0xc8, 0x51, 0xd9, 0x1e, - 0xe8, 0x06, 0x9d, 0xe8, 0xee, 0x9d, 0x44, 0xd1, 0x86, 0x94, 0xc7, 0xe8, 0x00, 0x6f, 0x89, 0x7d, - 0xe9, 0x68, 0xff, 0x68, 0xa1, 0x3d, 0xc9, 0x5e, 0xee, 0x54, 0x0e, 0x2b, 0x9d, 0x1b, 0xc7, 0x77, - 0x3d, 0xe3, 0x2f, 0xf9, 0xed, 0x19, 0x7e, 0x7b, 0x3d, 0x9a, 0x90, 0xee, 0x37, 0x12, 0x93, 0x7f, - 0x5e, 0xb6, 0x3e, 0x88, 0x13, 0x31, 0x2d, 0x26, 0x5e, 0x48, 0x33, 0xc3, 0x6f, 0xf3, 0xb9, 0xcf, - 0xa3, 0xc7, 0xbe, 0x78, 0x9a, 0x03, 0x57, 0x01, 0xbf, 0xbc, 0x6a, 0x75, 0xb6, 0x74, 0xe5, 0x81, - 0x2e, 0x62, 0x0d, 0x93, 0xaa, 0xff, 0x9d, 0x49, 0xed, 0x1f, 0x4a, 0x14, 0x4f, 0xf5, 0x10, 0x5c, - 0x2b, 0x8a, 0x23, 0x74, 0xcb, 0xcc, 0xda, 0x57, 0xb9, 0x48, 0xa8, 0x42, 0x53, 0xd2, 0xec, 0xfd, - 0x35, 0x34, 0x3b, 0x5d, 0x72, 0x36, 0x6c, 0x5b, 0xd9, 0xe2, 0x7f, 0xc4, 0xe2, 0xe7, 0x8a, 0xe1, - 0xef, 0x69, 0x39, 0xea, 0xd7, 0x03, 0x43, 0x03, 0xed, 0xc5, 0x40, 0xc6, 0x4f, 0xd4, 0xe9, 0x6f, - 0x06, 0x5a, 0xb0, 0x5d, 0x84, 0x42, 0x4a, 0xf8, 0xb0, 0x98, 0x7c, 0x0e, 0x4f, 0x55, 0xfd, 0x37, - 0x83, 0x05, 0x8d, 0xfd, 0x00, 0xdd, 0xe2, 0x90, 0x3e, 0xea, 0x43, 0x0a, 0x31, 0x96, 0x47, 0x77, - 0xf6, 0x14, 0x78, 0x97, 0x50, 0xd1, 0x00, 0xb6, 0x1c, 0x66, 0x7f, 0x84, 0xaa, 0x39, 0x00, 0x73, - 0xf6, 0x55, 0xf8, 0xbb, 0x6b, 0xb0, 0x1f, 0x02, 0x30, 0xb3, 0x81, 0x72, 0x97, 0xf5, 0x4d, 0x31, - 0x1f, 0x32, 0xfa, 0x2d, 0x84, 0xc2, 0x39, 0x50, 0xd3, 0xb8, 0xa0, 0x91, 0x93, 0x9c, 0xeb, 0xe5, - 0xa0, 0xef, 0xd4, 0xf4, 0x24, 0xcf, 0x15, 0x6b, 0xba, 0x54, 0xbf, 0x42, 0x97, 0x7e, 0xb5, 0x4c, - 0x97, 0x0c, 0x55, 0x03, 0xc8, 0xe4, 0xff, 0x60, 0xb1, 0x13, 0xd6, 0xb6, 0x9d, 0x58, 0xec, 0xec, - 0xee, 0x56, 0x7f, 0xeb, 0xca, 0x15, 0x2a, 0xfe, 0xdb, 0x42, 0x77, 0x96, 0x79, 0x55, 0xd6, 0xfc, - 0x31, 0x7a, 0xc7, 0x5c, 0x2f, 0x17, 0x94, 0xd3, 0xa7, 0x32, 0xbf, 0xe6, 0x75, 0xe6, 0x4b, 0x2b, - 0x5f, 0xee, 0x54, 0xe5, 0xf2, 0x4e, 0x55, 0xb7, 0xeb, 0xd4, 0xde, 0x15, 0xce, 0xcd, 0xcd, 0x05, - 0x39, 0xc4, 0x0c, 0x67, 0xbd, 0x29, 0x26, 0xf1, 0x86, 0x61, 0x7a, 0x1b, 0xed, 0x67, 0x34, 0x2a, - 0x52, 0xd0, 0xb3, 0x14, 0x18, 0x49, 0x0e, 0x4c, 0x2e, 0xf7, 0xd0, 0xe8, 0x07, 0x5a, 0x90, 0xda, - 0x19, 0x4e, 0x0b, 0x30, 0xb3, 0xa2, 0x85, 0xf6, 0xf7, 0x16, 0x6a, 0xa8, 0xac, 0x5f, 0xa8, 0x5d, - 0xc7, 0x2c, 0x89, 0x63, 0x60, 0x1b, 0x12, 0x7f, 0x89, 0xde, 0xd4, 0xeb, 0x71, 0x92, 0xc1, 0x48, - 0x3e, 0x35, 0xcc, 0x05, 0xd8, 0xf4, 0xf4, 0x63, 0xc4, 0x2b, 0x1f, 0x23, 0xde, 0xb8, 0x7c, 0x8c, - 0x74, 0x6b, 0x72, 0x38, 0x9e, 0xbd, 0x6a, 0x59, 0xc1, 0x6a, 0x70, 0xfb, 0xc8, 0x50, 0x54, 0xd7, - 0x10, 0xc0, 0x0c, 0xd8, 0x86, 0xc7, 0x41, 0xb7, 0xfb, 0xfc, 0xcc, 0xb5, 0x5e, 0x9c, 0xb9, 0xd6, - 0x5f, 0x67, 0xae, 0xf5, 0xec, 0xdc, 0xdd, 0x79, 0x71, 0xee, 0xee, 0xfc, 0x79, 0xee, 0xee, 0x7c, - 0xbd, 0x78, 0x3b, 0x5c, 0xcc, 0xaa, 0xcf, 0x73, 0xe2, 0x3f, 0xf1, 0xcd, 0x23, 0x45, 0xdd, 0x11, - 0x93, 0x7d, 0x55, 0xe5, 0x87, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x2e, 0x75, 0xb9, 0x7f, 0xbf, - 0x09, 0x00, 0x00, + proto.RegisterType((*EventChainCreated)(nil), "spn.launch.EventChainCreated") + proto.RegisterType((*EventRequestCreated)(nil), "spn.launch.EventRequestCreated") + proto.RegisterType((*EventRequestSettled)(nil), "spn.launch.EventRequestSettled") + proto.RegisterType((*EventGenesisAccountAdded)(nil), "spn.launch.EventGenesisAccountAdded") + proto.RegisterType((*EventVestingAccountAdded)(nil), "spn.launch.EventVestingAccountAdded") + proto.RegisterType((*EventValidatorAdded)(nil), "spn.launch.EventValidatorAdded") + proto.RegisterType((*EventAccountRemoved)(nil), "spn.launch.EventAccountRemoved") + proto.RegisterType((*EventValidatorRemoved)(nil), "spn.launch.EventValidatorRemoved") + proto.RegisterType((*EventParamChanged)(nil), "spn.launch.EventParamChanged") + proto.RegisterType((*EventLaunchTriggered)(nil), "spn.launch.EventLaunchTriggered") + proto.RegisterType((*EventLaunchReverted)(nil), "spn.launch.EventLaunchReverted") +} + +func init() { proto.RegisterFile("spn/launch/events.proto", fileDescriptor_0bbfde18c498fc1f) } + +var fileDescriptor_0bbfde18c498fc1f = []byte{ + // 863 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x3d, 0x8f, 0x1b, 0x45, + 0x18, 0xbe, 0x3d, 0xfb, 0xbe, 0x26, 0x21, 0xc0, 0xc6, 0x24, 0x1b, 0x0b, 0xad, 0xad, 0x15, 0x12, + 0x16, 0x52, 0x76, 0x75, 0x97, 0x86, 0xf6, 0x6c, 0xa3, 0xc4, 0x02, 0x81, 0xb5, 0x67, 0x5d, 0x01, + 0x45, 0x34, 0xde, 0x7d, 0xb3, 0x5e, 0xb2, 0x3b, 0xb3, 0xcc, 0xcc, 0x5a, 0x49, 0x4b, 0x4d, 0x91, + 0x92, 0x8e, 0x9e, 0x86, 0x86, 0x7f, 0x40, 0x93, 0x32, 0xa2, 0xa2, 0x4a, 0xd0, 0xdd, 0x6f, 0xa0, + 0xa1, 0x40, 0x68, 0x3e, 0xd6, 0xb7, 0x3e, 0xdd, 0x9d, 0xcd, 0x89, 0x54, 0xde, 0xf7, 0x6b, 0xe6, + 0x99, 0xe7, 0x7d, 0x5e, 0xcf, 0xa0, 0xbb, 0xbc, 0x20, 0x41, 0x86, 0x4b, 0x12, 0xcd, 0x02, 0x98, + 0x03, 0x11, 0xdc, 0x2f, 0x18, 0x15, 0xd4, 0x46, 0xbc, 0x20, 0xbe, 0x0e, 0xb4, 0x5b, 0x09, 0x4d, + 0xa8, 0x72, 0x07, 0xf2, 0x4b, 0x67, 0xb4, 0xdd, 0x88, 0xf2, 0x9c, 0xf2, 0x60, 0x8a, 0x39, 0x04, + 0xf3, 0xfd, 0x29, 0x08, 0xbc, 0x1f, 0x44, 0x34, 0x25, 0x26, 0x7e, 0x4f, 0xc7, 0x1f, 0xeb, 0x42, + 0x6d, 0x98, 0x50, 0x27, 0xa1, 0x34, 0xc9, 0x20, 0x50, 0xd6, 0xb4, 0x7c, 0x12, 0x88, 0x34, 0x07, + 0x2e, 0x70, 0x5e, 0x98, 0x84, 0x3b, 0x35, 0x58, 0xd1, 0x0c, 0x2f, 0xd6, 0x74, 0x6a, 0x7e, 0x06, + 0xdf, 0x95, 0xc0, 0x85, 0x89, 0x74, 0x6b, 0x91, 0x04, 0x08, 0xf0, 0x94, 0x3f, 0xc6, 0x51, 0x44, + 0x4b, 0x72, 0x51, 0xc6, 0x1c, 0xb8, 0x48, 0x49, 0x72, 0x2e, 0xc3, 0xbb, 0x60, 0x8d, 0x39, 0xce, + 0xd2, 0x18, 0x0b, 0xca, 0x74, 0x8e, 0xf7, 0x93, 0x85, 0xde, 0xff, 0x4c, 0x12, 0x35, 0x90, 0xb0, + 0x06, 0x0c, 0xb0, 0x80, 0xd8, 0x6e, 0xa3, 0x5d, 0x5d, 0x37, 0x1a, 0x3a, 0x56, 0xd7, 0xea, 0x35, + 0xc3, 0x85, 0x6d, 0x3f, 0x42, 0x76, 0x44, 0x29, 0x8b, 0x53, 0x22, 0x97, 0x39, 0x8c, 0x63, 0x06, + 0x9c, 0x3b, 0x9b, 0x5d, 0xab, 0xb7, 0xd7, 0x77, 0x7e, 0xff, 0xf5, 0x7e, 0xcb, 0x50, 0x63, 0x22, + 0x47, 0x82, 0xa5, 0x24, 0x09, 0x2f, 0xa8, 0xb1, 0x3f, 0x42, 0xef, 0xd4, 0xbc, 0xa3, 0xa1, 0xd3, + 0x50, 0x5b, 0x2d, 0x3b, 0xbd, 0x18, 0xdd, 0x56, 0x00, 0x43, 0xcd, 0x4f, 0x05, 0xd1, 0x41, 0x3b, + 0x91, 0xfc, 0xa4, 0x4c, 0x21, 0xdc, 0x0b, 0x2b, 0xd3, 0x7e, 0x80, 0x76, 0x0c, 0x97, 0x0a, 0xd5, + 0x8d, 0x83, 0xdb, 0xfe, 0x59, 0xf3, 0x7d, 0xb3, 0x4c, 0xbf, 0xf9, 0xf2, 0x75, 0x67, 0x23, 0xac, + 0x32, 0xbd, 0xa7, 0xcb, 0xbb, 0x1c, 0x81, 0x10, 0xd9, 0x0a, 0x22, 0x3e, 0x44, 0x7b, 0xa6, 0x7a, + 0x34, 0x54, 0x3b, 0x35, 0xc3, 0x33, 0x87, 0xac, 0xc4, 0x45, 0xc1, 0xe8, 0x1c, 0x62, 0x75, 0xae, + 0xdd, 0x70, 0x61, 0x7b, 0xbf, 0x6d, 0x22, 0x47, 0xed, 0xf6, 0x50, 0x77, 0xe5, 0x50, 0xb7, 0xed, + 0x30, 0x8e, 0x57, 0x6c, 0x79, 0x80, 0x76, 0xf0, 0x9a, 0x84, 0x57, 0x89, 0xf6, 0x0f, 0x16, 0xda, + 0x92, 0x32, 0xe6, 0x4e, 0xa3, 0xdb, 0xe8, 0xdd, 0x38, 0xb8, 0xe7, 0x9b, 0x7c, 0x29, 0x74, 0xdf, + 0x08, 0xdd, 0x1f, 0xd0, 0x94, 0xf4, 0xbf, 0x91, 0x9c, 0xfc, 0xfd, 0xba, 0xf3, 0x71, 0x92, 0x8a, + 0x59, 0x39, 0xf5, 0x23, 0x9a, 0x1b, 0xa1, 0x9b, 0x9f, 0xfb, 0x3c, 0x7e, 0x1a, 0x88, 0xe7, 0x05, + 0x70, 0x55, 0xf0, 0xf3, 0x9b, 0x4e, 0x6f, 0xcd, 0x54, 0x1e, 0x6a, 0x10, 0x97, 0xc8, 0xa7, 0xf9, + 0xdf, 0xe5, 0xe3, 0xfd, 0x63, 0x19, 0x16, 0x8f, 0xb5, 0xfa, 0xdf, 0x2a, 0x8b, 0x8f, 0xd0, 0x2d, + 0x33, 0x64, 0x5f, 0x15, 0x22, 0xa5, 0x8a, 0x4d, 0xa9, 0xad, 0x76, 0x5d, 0x5b, 0xc7, 0x4b, 0x19, + 0x46, 0x62, 0xe7, 0xea, 0xfe, 0x47, 0x02, 0x7e, 0x6c, 0x18, 0xd1, 0x1e, 0x57, 0x43, 0xfd, 0x76, + 0xce, 0xde, 0x42, 0x5b, 0x09, 0x90, 0xc9, 0x33, 0x75, 0xe4, 0x9b, 0xa1, 0x36, 0x6c, 0x17, 0xa1, + 0x88, 0x12, 0x3e, 0x2e, 0xa7, 0x9f, 0xc3, 0x73, 0x85, 0xff, 0x66, 0x58, 0xf3, 0xd8, 0x0f, 0xd1, + 0x2d, 0x0e, 0xd9, 0x93, 0x21, 0x64, 0x90, 0x60, 0x79, 0x74, 0x67, 0x4b, 0x31, 0x76, 0x85, 0xfe, + 0x0c, 0x61, 0xcb, 0x65, 0xf6, 0x27, 0xa8, 0x59, 0x00, 0x30, 0x67, 0x5b, 0x95, 0xbf, 0x57, 0x27, + 0x7c, 0x0c, 0xc0, 0x4c, 0x95, 0xca, 0x91, 0xa0, 0x66, 0x98, 0x8f, 0x19, 0xfd, 0x16, 0x22, 0xe1, + 0xec, 0xa8, 0xb9, 0xab, 0x79, 0xe4, 0xcc, 0x16, 0xfa, 0x73, 0x34, 0x74, 0x76, 0xf5, 0xcc, 0x2e, + 0x1c, 0x97, 0xb4, 0x66, 0xef, 0x1a, 0xad, 0xf9, 0xc5, 0x32, 0xad, 0x31, 0xa2, 0x0c, 0x21, 0x97, + 0x93, 0x5f, 0xa7, 0xdf, 0x5a, 0x97, 0xfe, 0x7a, 0x3b, 0x37, 0xd7, 0xfa, 0x33, 0x6e, 0x5c, 0x03, + 0xf1, 0x5f, 0x16, 0xfa, 0x60, 0x59, 0x4c, 0x15, 0xe6, 0x4f, 0xd1, 0x5d, 0x73, 0x7b, 0x9c, 0xe9, + 0x4c, 0x9f, 0xca, 0xfc, 0xf3, 0x5e, 0x16, 0xbe, 0x12, 0xf9, 0x72, 0xa7, 0x1a, 0x57, 0x77, 0xaa, + 0xb9, 0x5e, 0xa7, 0xb6, 0xae, 0x71, 0x6e, 0x6e, 0xee, 0xbf, 0x31, 0x66, 0x38, 0x1f, 0xcc, 0x30, + 0x49, 0x56, 0x4c, 0xd0, 0x1d, 0xb4, 0x9d, 0xd3, 0xb8, 0xcc, 0x40, 0x0f, 0x50, 0x68, 0x2c, 0x39, + 0x25, 0x85, 0x5c, 0x43, 0xb3, 0x1f, 0x6a, 0x43, 0x7a, 0xe7, 0x38, 0x2b, 0xc1, 0x0c, 0x88, 0x36, + 0xbc, 0xef, 0x2d, 0xd4, 0x52, 0xbb, 0x7e, 0xa1, 0x56, 0x9d, 0xb0, 0x34, 0x49, 0x80, 0xad, 0xd8, + 0xf8, 0x4b, 0xf4, 0xae, 0xfe, 0x9e, 0xa4, 0x39, 0x1c, 0xc9, 0xd7, 0x85, 0xb9, 0xdf, 0xda, 0xbe, + 0x7e, 0x7f, 0xf8, 0xd5, 0xfb, 0xc3, 0x9f, 0x54, 0xef, 0x8f, 0xfe, 0xae, 0x1c, 0x8e, 0x17, 0x6f, + 0x3a, 0x56, 0x78, 0xbe, 0xd8, 0xdb, 0x37, 0x12, 0xd5, 0x18, 0x42, 0x98, 0x03, 0x5b, 0x71, 0xf7, + 0xf7, 0xfb, 0x2f, 0x4f, 0x5c, 0xeb, 0xd5, 0x89, 0x6b, 0xfd, 0x79, 0xe2, 0x5a, 0x2f, 0x4e, 0xdd, + 0x8d, 0x57, 0xa7, 0xee, 0xc6, 0x1f, 0xa7, 0xee, 0xc6, 0xd7, 0xf5, 0x7b, 0x40, 0x00, 0x89, 0x81, + 0xe5, 0x29, 0x11, 0x81, 0x7c, 0x81, 0x3c, 0xab, 0xde, 0x20, 0xea, 0x36, 0x98, 0x6e, 0x2b, 0x94, + 0x0f, 0xfe, 0x0d, 0x00, 0x00, 0xff, 0xff, 0xe3, 0xab, 0xb7, 0xc2, 0xab, 0x09, 0x00, 0x00, } func (m *EventChainCreated) Marshal() (dAtA []byte, err error) { @@ -1311,7 +1310,7 @@ func (m *EventLaunchTriggered) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - n5, err5 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.LaunchTimeStamp, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.LaunchTimeStamp):]) + n5, err5 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.LaunchTimeStamp, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.LaunchTimeStamp):]) if err5 != nil { return 0, err5 } @@ -1583,7 +1582,7 @@ func (m *EventLaunchTriggered) Size() (n int) { if m.LaunchID != 0 { n += 1 + sovEvents(uint64(m.LaunchID)) } - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.LaunchTimeStamp) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.LaunchTimeStamp) n += 1 + l + sovEvents(uint64(l)) return n } @@ -3137,7 +3136,7 @@ func (m *EventLaunchTriggered) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.LaunchTimeStamp, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.LaunchTimeStamp, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/launch/types/genesis.pb.go b/x/launch/types/genesis.pb.go index 8fe6e496a..2d459ae14 100644 --- a/x/launch/types/genesis.pb.go +++ b/x/launch/types/genesis.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: launch/genesis.proto +// source: spn/launch/genesis.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -40,7 +40,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_02cd66d27edc51cd, []int{0} + return fileDescriptor_89744ce2268ead99, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -141,7 +141,7 @@ func (m *RequestCounter) Reset() { *m = RequestCounter{} } func (m *RequestCounter) String() string { return proto.CompactTextString(m) } func (*RequestCounter) ProtoMessage() {} func (*RequestCounter) Descriptor() ([]byte, []int) { - return fileDescriptor_02cd66d27edc51cd, []int{1} + return fileDescriptor_89744ce2268ead99, []int{1} } func (m *RequestCounter) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -185,42 +185,42 @@ func (m *RequestCounter) GetCounter() uint64 { } func init() { - proto.RegisterType((*GenesisState)(nil), "tendermint.spn.launch.GenesisState") - proto.RegisterType((*RequestCounter)(nil), "tendermint.spn.launch.RequestCounter") -} - -func init() { proto.RegisterFile("launch/genesis.proto", fileDescriptor_02cd66d27edc51cd) } - -var fileDescriptor_02cd66d27edc51cd = []byte{ - // 448 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x93, 0xcd, 0x8e, 0xd3, 0x30, - 0x10, 0xc7, 0x13, 0xb6, 0x9b, 0x2d, 0xde, 0x0a, 0x84, 0x59, 0x24, 0xab, 0x5a, 0x4c, 0x15, 0x09, - 0x91, 0x53, 0x22, 0x2d, 0x37, 0xb8, 0x40, 0x8b, 0x58, 0x21, 0x71, 0x40, 0x41, 0xec, 0x01, 0x0e, - 0xc8, 0x4d, 0xad, 0x24, 0x52, 0xeb, 0x84, 0xd8, 0xa9, 0xe0, 0x2d, 0x78, 0x01, 0xde, 0xa7, 0xc7, - 0x1e, 0x39, 0x21, 0xd4, 0xbe, 0x08, 0x8a, 0x3d, 0x49, 0x95, 0xb0, 0xcd, 0xcd, 0x9e, 0xf9, 0xcf, - 0x6f, 0x3e, 0x3c, 0x46, 0x17, 0x4b, 0x56, 0x8a, 0x28, 0x09, 0x62, 0x2e, 0xb8, 0x4c, 0xa5, 0x9f, - 0x17, 0x99, 0xca, 0xf0, 0x23, 0xc5, 0xc5, 0x82, 0x17, 0xab, 0x54, 0x28, 0x5f, 0xe6, 0xc2, 0x37, - 0xa2, 0xf1, 0x45, 0x9c, 0xc5, 0x99, 0x56, 0x04, 0xd5, 0xc9, 0x88, 0xc7, 0x35, 0xa2, 0xe0, 0xdf, - 0x4a, 0x2e, 0x15, 0x58, 0x2f, 0xc1, 0xba, 0xe6, 0x52, 0xa5, 0x22, 0xfe, 0xca, 0xa2, 0x28, 0x2b, - 0x45, 0xd7, 0x0b, 0x69, 0x3b, 0x5e, 0xda, 0xf1, 0xae, 0xd9, 0x32, 0x5d, 0x30, 0x95, 0x15, 0xe0, - 0xc7, 0xe0, 0x8f, 0x12, 0x96, 0x0a, 0xb0, 0x3d, 0x04, 0x5b, 0xce, 0x0a, 0xb6, 0x82, 0x3e, 0xdc, - 0x5f, 0xa7, 0x68, 0x74, 0x6d, 0x20, 0x1f, 0x15, 0x53, 0x1c, 0xbf, 0x40, 0x8e, 0x0e, 0x92, 0xc4, - 0x9e, 0x9c, 0x78, 0xe7, 0x57, 0x97, 0xfe, 0xad, 0x9d, 0xfa, 0xb3, 0x4a, 0x34, 0x1d, 0x6c, 0xfe, - 0x3c, 0xb1, 0x42, 0x88, 0xc0, 0x2e, 0x1a, 0xe9, 0xd3, 0xac, 0xaa, 0x94, 0x17, 0xe4, 0xce, 0xc4, - 0xf6, 0x06, 0x61, 0xcb, 0x86, 0x3f, 0xa1, 0xfb, 0x50, 0xf4, 0x6b, 0xd3, 0x91, 0x24, 0x27, 0x3a, - 0xd1, 0xd3, 0x23, 0x89, 0xae, 0x5b, 0x6a, 0xc8, 0xd8, 0x65, 0x54, 0x58, 0x98, 0x63, 0x83, 0x1d, - 0xf4, 0x62, 0x6f, 0x5a, 0xea, 0x1a, 0xdb, 0x61, 0xe0, 0x2f, 0xe8, 0x01, 0x64, 0xba, 0xa9, 0x27, - 0x2c, 0xc9, 0xa9, 0x06, 0x3f, 0xeb, 0xaf, 0xb7, 0xd1, 0x03, 0xfa, 0x7f, 0x0e, 0x7e, 0x8f, 0x46, - 0xfa, 0x2d, 0x66, 0x09, 0x13, 0x31, 0x97, 0xc4, 0xd1, 0x5c, 0xf7, 0x08, 0xf7, 0xc3, 0x41, 0x0a, - 0xc8, 0x56, 0x34, 0x7e, 0x85, 0x86, 0xb0, 0x5f, 0x92, 0x9c, 0x69, 0x12, 0x3d, 0x42, 0x0a, 0x8d, - 0x0c, 0x28, 0x4d, 0x54, 0x35, 0x43, 0x38, 0xc3, 0x63, 0x49, 0x32, 0xec, 0x9d, 0x61, 0xd8, 0x52, - 0xd7, 0x33, 0xec, 0x30, 0xf0, 0x4b, 0xe4, 0x98, 0x95, 0x23, 0x77, 0x27, 0xb6, 0x77, 0x7e, 0xf5, - 0xb8, 0xaf, 0x41, 0x59, 0xaf, 0x94, 0x09, 0x71, 0xdf, 0xa2, 0x7b, 0xed, 0x2c, 0x78, 0x8c, 0x86, - 0x26, 0xe0, 0xdd, 0x1b, 0x62, 0xeb, 0x05, 0x6b, 0xee, 0x98, 0xa0, 0xb3, 0xa8, 0xb5, 0x7b, 0xf5, - 0x75, 0x3a, 0xdd, 0xec, 0xa8, 0xbd, 0xdd, 0x51, 0xfb, 0xef, 0x8e, 0xda, 0x3f, 0xf7, 0xd4, 0xda, - 0xee, 0xa9, 0xf5, 0x7b, 0x4f, 0xad, 0xcf, 0x5e, 0x9c, 0xaa, 0xa4, 0x9c, 0xfb, 0x51, 0xb6, 0x0a, - 0x0e, 0x85, 0x05, 0x32, 0x17, 0xc1, 0xf7, 0x00, 0xbe, 0x8c, 0xfa, 0x91, 0x73, 0x39, 0x77, 0xf4, - 0x97, 0x79, 0xfe, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x68, 0x0b, 0x06, 0x8e, 0x12, 0x04, 0x00, 0x00, + proto.RegisterType((*GenesisState)(nil), "spn.launch.GenesisState") + proto.RegisterType((*RequestCounter)(nil), "spn.launch.RequestCounter") +} + +func init() { proto.RegisterFile("spn/launch/genesis.proto", fileDescriptor_89744ce2268ead99) } + +var fileDescriptor_89744ce2268ead99 = []byte{ + // 440 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x92, 0xcf, 0x6e, 0xd4, 0x30, + 0x10, 0xc6, 0x13, 0x1a, 0xd2, 0xc5, 0x5d, 0x81, 0x6a, 0x10, 0xb5, 0x22, 0x14, 0xa2, 0x9c, 0x72, + 0x4a, 0x50, 0x11, 0x0f, 0xd0, 0x5d, 0x44, 0x05, 0xa7, 0x2a, 0x48, 0x3d, 0x70, 0x41, 0x6e, 0x6a, + 0x25, 0x91, 0xba, 0x4e, 0x88, 0x9d, 0x15, 0xbc, 0x05, 0x2f, 0x85, 0xb4, 0xc7, 0x3d, 0x72, 0x42, + 0x68, 0xf7, 0x45, 0xaa, 0xd8, 0x93, 0x6c, 0xfe, 0xec, 0xcd, 0x9e, 0xf9, 0xbe, 0x9f, 0xc7, 0xa3, + 0x0f, 0x11, 0x51, 0xf2, 0xe8, 0x81, 0xd6, 0x3c, 0xc9, 0xa2, 0x94, 0x71, 0x26, 0x72, 0x11, 0x96, + 0x55, 0x21, 0x0b, 0x8c, 0x44, 0xc9, 0x43, 0xdd, 0x71, 0x5e, 0xa5, 0x45, 0x5a, 0xa8, 0x72, 0xd4, + 0x9c, 0xb4, 0xc2, 0xe9, 0x7b, 0x2b, 0xf6, 0xa3, 0x66, 0x42, 0x42, 0xc7, 0xeb, 0x75, 0xd6, 0x4c, + 0xc8, 0x9c, 0xa7, 0xdf, 0x69, 0x92, 0x14, 0x35, 0x3f, 0xa6, 0x80, 0x77, 0x47, 0x0a, 0xff, 0x88, + 0x62, 0x4d, 0x1f, 0xf2, 0x7b, 0x2a, 0x8b, 0x0a, 0x34, 0xaf, 0x7b, 0x9a, 0x24, 0xa3, 0x39, 0x87, + 0xfa, 0x45, 0xaf, 0x5e, 0xd2, 0x8a, 0xae, 0xe0, 0x53, 0xfe, 0x1f, 0x0b, 0xcd, 0xaf, 0x35, 0xec, + 0xab, 0xa4, 0x92, 0xe1, 0x08, 0xd9, 0xca, 0x28, 0x88, 0xe9, 0x9d, 0x04, 0x67, 0x97, 0xe7, 0xe1, + 0xe1, 0xdb, 0xe1, 0xb2, 0xe9, 0x2c, 0xac, 0xcd, 0xbf, 0xb7, 0x46, 0x0c, 0x32, 0xec, 0xa3, 0xb9, + 0x3a, 0x2d, 0x9b, 0x51, 0x59, 0x45, 0x9e, 0x78, 0x66, 0x60, 0xc5, 0x83, 0x1a, 0xfe, 0x82, 0x5e, + 0xc0, 0xc4, 0x57, 0xfa, 0x4b, 0x82, 0x9c, 0x28, 0xba, 0xd3, 0xa7, 0x5f, 0x0f, 0x24, 0xf0, 0xcc, + 0xd8, 0xd8, 0xb0, 0x60, 0x83, 0x1d, 0xcb, 0x9a, 0xb2, 0x6e, 0x07, 0x92, 0x96, 0x35, 0x32, 0xe2, + 0x1b, 0x74, 0x0e, 0xf8, 0xdb, 0x76, 0x91, 0x82, 0x3c, 0x55, 0xb4, 0x37, 0x47, 0x26, 0xeb, 0x44, + 0xc0, 0x9b, 0x9a, 0xf1, 0x15, 0x9a, 0xab, 0xfd, 0x2e, 0x33, 0xca, 0x53, 0x26, 0x88, 0xad, 0x60, + 0x17, 0x7d, 0xd8, 0xcd, 0xa1, 0x0f, 0x9c, 0x81, 0x05, 0x7f, 0x40, 0x33, 0x08, 0x8f, 0x20, 0xa7, + 0xca, 0xfe, 0xb2, 0x6f, 0x8f, 0x75, 0x0f, 0xac, 0x9d, 0xb4, 0xd9, 0x0b, 0x9c, 0x61, 0xeb, 0x82, + 0xcc, 0xa6, 0x7b, 0x89, 0x07, 0x92, 0x76, 0x2f, 0x23, 0x23, 0x7e, 0x87, 0x6c, 0x9d, 0x12, 0xf2, + 0xcc, 0x33, 0x83, 0xb3, 0x4b, 0x3c, 0x99, 0x5f, 0xb4, 0x29, 0xd0, 0x3a, 0xff, 0x13, 0x7a, 0x3e, + 0x44, 0x63, 0x07, 0xcd, 0xb4, 0xe1, 0xf3, 0x47, 0x62, 0xaa, 0x4c, 0x74, 0x77, 0x4c, 0xd0, 0x69, + 0x32, 0x88, 0x4b, 0x7b, 0x5d, 0x2c, 0x36, 0x3b, 0xd7, 0xdc, 0xee, 0x5c, 0xf3, 0xff, 0xce, 0x35, + 0x7f, 0xef, 0x5d, 0x63, 0xbb, 0x77, 0x8d, 0xbf, 0x7b, 0xd7, 0xf8, 0x16, 0xa4, 0xb9, 0xcc, 0xea, + 0xbb, 0x30, 0x29, 0x56, 0x91, 0x64, 0xfc, 0x9e, 0x55, 0xab, 0x9c, 0xcb, 0xa8, 0x09, 0xf6, 0xcf, + 0x36, 0xda, 0xf2, 0x57, 0xc9, 0xc4, 0x9d, 0xad, 0xa2, 0xfd, 0xfe, 0x31, 0x00, 0x00, 0xff, 0xff, + 0x5b, 0x1f, 0xda, 0xdf, 0xcb, 0x03, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/launch/types/genesis_account.pb.go b/x/launch/types/genesis_account.pb.go index d3cbfb1e0..353a3bebc 100644 --- a/x/launch/types/genesis_account.pb.go +++ b/x/launch/types/genesis_account.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: launch/genesis_account.proto +// source: spn/launch/genesis_account.proto package types @@ -8,8 +8,8 @@ import ( _ "github.com/cosmos/cosmos-proto" _ "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" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -36,7 +36,7 @@ func (m *GenesisAccount) Reset() { *m = GenesisAccount{} } func (m *GenesisAccount) String() string { return proto.CompactTextString(m) } func (*GenesisAccount) ProtoMessage() {} func (*GenesisAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_44cd378858027518, []int{0} + return fileDescriptor_a63281ffeb418941, []int{0} } func (m *GenesisAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -87,33 +87,33 @@ func (m *GenesisAccount) GetCoins() github_com_cosmos_cosmos_sdk_types.Coins { } func init() { - proto.RegisterType((*GenesisAccount)(nil), "tendermint.spn.launch.GenesisAccount") + proto.RegisterType((*GenesisAccount)(nil), "spn.launch.GenesisAccount") } -func init() { proto.RegisterFile("launch/genesis_account.proto", fileDescriptor_44cd378858027518) } +func init() { proto.RegisterFile("spn/launch/genesis_account.proto", fileDescriptor_a63281ffeb418941) } -var fileDescriptor_44cd378858027518 = []byte{ - // 315 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x91, 0x3d, 0x4e, 0xc3, 0x30, - 0x14, 0xc7, 0x63, 0xca, 0x67, 0x90, 0x18, 0xa2, 0x22, 0xa5, 0x15, 0x72, 0x2b, 0x16, 0xb2, 0xd4, - 0x56, 0xcb, 0x09, 0x1a, 0x90, 0x10, 0x6b, 0xd9, 0x60, 0xa8, 0x12, 0xc7, 0x4a, 0x2d, 0xa8, 0x1d, - 0xe5, 0x39, 0x08, 0xee, 0xc0, 0xc0, 0x39, 0x98, 0x39, 0x44, 0xc7, 0x8a, 0x89, 0xa9, 0xa0, 0xe4, - 0x00, 0xec, 0x4c, 0x28, 0xb1, 0xf9, 0x18, 0x99, 0xec, 0xa7, 0xff, 0xef, 0x3d, 0xff, 0xf4, 0xec, - 0x1e, 0xdc, 0x44, 0x85, 0x64, 0x33, 0x9a, 0x72, 0xc9, 0x41, 0xc0, 0x34, 0x62, 0x4c, 0x15, 0x52, - 0x93, 0x2c, 0x57, 0x5a, 0x79, 0xfb, 0x9a, 0xcb, 0x84, 0xe7, 0x73, 0x21, 0x35, 0x81, 0x4c, 0x12, - 0x03, 0x77, 0xdb, 0xa9, 0x4a, 0x55, 0x43, 0xd0, 0xfa, 0x66, 0xe0, 0x2e, 0x66, 0x0a, 0xe6, 0x0a, - 0x68, 0x1c, 0x01, 0xa7, 0xb7, 0xc3, 0x98, 0xeb, 0x68, 0x48, 0x99, 0x12, 0xd2, 0xe6, 0x1d, 0x93, - 0x4f, 0x4d, 0xa3, 0x29, 0x4c, 0x74, 0xf8, 0x81, 0xdc, 0xbd, 0x33, 0x63, 0x30, 0x36, 0x02, 0x5e, - 0xd7, 0xdd, 0x36, 0xaf, 0x9d, 0x9f, 0xfa, 0xa8, 0x8f, 0x82, 0xf5, 0xc9, 0x4f, 0xed, 0x8d, 0xdc, - 0xad, 0x28, 0x49, 0x72, 0x0e, 0xe0, 0xaf, 0xf5, 0x51, 0xb0, 0x13, 0xfa, 0x2f, 0xcf, 0x83, 0xb6, - 0x9d, 0x38, 0x36, 0xc9, 0x85, 0xce, 0x85, 0x4c, 0x27, 0xdf, 0xa0, 0xf7, 0x80, 0xdc, 0x8d, 0x5a, - 0x06, 0xfc, 0x56, 0xbf, 0x15, 0xec, 0x8e, 0x3a, 0xc4, 0xf2, 0xb5, 0x2e, 0xb1, 0xba, 0xe4, 0x44, - 0x09, 0x19, 0x5e, 0x2d, 0x56, 0x3d, 0xe7, 0x73, 0xd5, 0x3b, 0x4a, 0x85, 0x9e, 0x15, 0x31, 0x61, - 0x6a, 0x6e, 0x75, 0xed, 0x31, 0x80, 0xe4, 0x9a, 0xea, 0xfb, 0x8c, 0x43, 0xd3, 0xf0, 0xf4, 0xd6, - 0x0b, 0xfe, 0x89, 0xc2, 0xc4, 0x48, 0x84, 0xe1, 0xa2, 0xc4, 0x68, 0x59, 0x62, 0xf4, 0x5e, 0x62, - 0xf4, 0x58, 0x61, 0x67, 0x59, 0x61, 0xe7, 0xb5, 0xc2, 0xce, 0xe5, 0xdf, 0x51, 0xbf, 0xeb, 0xa7, - 0x90, 0x49, 0x7a, 0x47, 0xed, 0x6f, 0x35, 0x03, 0xe3, 0xcd, 0x66, 0x79, 0xc7, 0x5f, 0x01, 0x00, - 0x00, 0xff, 0xff, 0xd6, 0xb9, 0x55, 0xa5, 0xc4, 0x01, 0x00, 0x00, +var fileDescriptor_a63281ffeb418941 = []byte{ + // 313 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x91, 0x3f, 0x4e, 0xc3, 0x30, + 0x14, 0xc6, 0x63, 0xca, 0x5f, 0x23, 0x31, 0x44, 0x1d, 0xd2, 0x0e, 0x6e, 0xc4, 0x42, 0x96, 0xda, + 0x6a, 0x39, 0x41, 0x03, 0x12, 0x62, 0x2d, 0x1b, 0x0c, 0x55, 0xe2, 0x58, 0xa9, 0x05, 0xb5, 0xa3, + 0x3c, 0x17, 0xc1, 0x1d, 0x18, 0x38, 0x07, 0x33, 0x87, 0xe8, 0x58, 0x31, 0x31, 0x15, 0xd4, 0x1c, + 0x80, 0x9d, 0x09, 0x25, 0x76, 0x11, 0x23, 0x93, 0xfd, 0xfc, 0x7d, 0xef, 0x7d, 0x3f, 0xf9, 0xe1, + 0x10, 0x0a, 0xc5, 0xee, 0x92, 0xb9, 0xe2, 0x53, 0x96, 0x0b, 0x25, 0x40, 0xc2, 0x24, 0xe1, 0x5c, + 0xcf, 0x95, 0xa1, 0x45, 0xa9, 0x8d, 0xf6, 0x31, 0x14, 0x8a, 0x5a, 0x47, 0xb7, 0x9d, 0xeb, 0x5c, + 0x37, 0xcf, 0xac, 0xbe, 0x59, 0x47, 0x97, 0x70, 0x0d, 0x33, 0x0d, 0x2c, 0x4d, 0x40, 0xb0, 0xfb, + 0x41, 0x2a, 0x4c, 0x32, 0x60, 0x5c, 0x4b, 0xe5, 0xf4, 0x8e, 0xd5, 0x27, 0xb6, 0xd1, 0x16, 0x56, + 0x3a, 0xfe, 0x42, 0xf8, 0xe8, 0xc2, 0xc6, 0x8e, 0x6c, 0xaa, 0xdf, 0xc5, 0xfb, 0x36, 0xed, 0xf2, + 0x3c, 0x40, 0x21, 0x8a, 0xb6, 0xc7, 0xbf, 0xb5, 0x3f, 0xc4, 0x7b, 0x49, 0x96, 0x95, 0x02, 0x20, + 0xd8, 0x0a, 0x51, 0x74, 0x10, 0x07, 0x6f, 0xaf, 0xfd, 0xb6, 0x9b, 0x38, 0xb2, 0xca, 0x95, 0x29, + 0xa5, 0xca, 0xc7, 0x1b, 0xa3, 0xff, 0x84, 0xf0, 0x4e, 0x0d, 0x03, 0x41, 0x2b, 0x6c, 0x45, 0x87, + 0xc3, 0x0e, 0x75, 0xfe, 0x1a, 0x97, 0x3a, 0x5c, 0x7a, 0xa6, 0xa5, 0x8a, 0x6f, 0x16, 0xab, 0x9e, + 0xf7, 0xbd, 0xea, 0x9d, 0xe4, 0xd2, 0x4c, 0xe7, 0x29, 0xe5, 0x7a, 0xe6, 0x70, 0xdd, 0xd1, 0x87, + 0xec, 0x96, 0x99, 0xc7, 0x42, 0x40, 0xd3, 0xf0, 0xf2, 0xd1, 0x8b, 0xfe, 0x69, 0x85, 0xb1, 0x85, + 0x88, 0xe3, 0xc5, 0x9a, 0xa0, 0xe5, 0x9a, 0xa0, 0xcf, 0x35, 0x41, 0xcf, 0x15, 0xf1, 0x96, 0x15, + 0xf1, 0xde, 0x2b, 0xe2, 0x5d, 0xff, 0x1d, 0x65, 0x84, 0xca, 0x44, 0x39, 0x93, 0xca, 0xb0, 0x7a, + 0x41, 0x0f, 0x9b, 0x15, 0x35, 0x03, 0xd3, 0xdd, 0xe6, 0xf3, 0x4e, 0x7f, 0x02, 0x00, 0x00, 0xff, + 0xff, 0x97, 0x6f, 0x62, 0xfc, 0xbd, 0x01, 0x00, 0x00, } func (m *GenesisAccount) Marshal() (dAtA []byte, err error) { diff --git a/x/launch/types/genesis_validator.pb.go b/x/launch/types/genesis_validator.pb.go index 810423465..7f525a9a4 100644 --- a/x/launch/types/genesis_validator.pb.go +++ b/x/launch/types/genesis_validator.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: launch/genesis_validator.proto +// source: spn/launch/genesis_validator.proto package types @@ -7,8 +7,8 @@ import ( fmt "fmt" _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -38,7 +38,7 @@ func (m *GenesisValidator) Reset() { *m = GenesisValidator{} } func (m *GenesisValidator) String() string { return proto.CompactTextString(m) } func (*GenesisValidator) ProtoMessage() {} func (*GenesisValidator) Descriptor() ([]byte, []int) { - return fileDescriptor_da7a6c7c23ebd0c1, []int{0} + return fileDescriptor_f72ea5e081d21a4f, []int{0} } func (m *GenesisValidator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -122,7 +122,7 @@ func (m *Peer) Reset() { *m = Peer{} } func (m *Peer) String() string { return proto.CompactTextString(m) } func (*Peer) ProtoMessage() {} func (*Peer) Descriptor() ([]byte, []int) { - return fileDescriptor_da7a6c7c23ebd0c1, []int{1} + return fileDescriptor_f72ea5e081d21a4f, []int{1} } func (m *Peer) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -224,7 +224,7 @@ func (m *Peer_HTTPTunnel) Reset() { *m = Peer_HTTPTunnel{} } func (m *Peer_HTTPTunnel) String() string { return proto.CompactTextString(m) } func (*Peer_HTTPTunnel) ProtoMessage() {} func (*Peer_HTTPTunnel) Descriptor() ([]byte, []int) { - return fileDescriptor_da7a6c7c23ebd0c1, []int{1, 0} + return fileDescriptor_f72ea5e081d21a4f, []int{1, 0} } func (m *Peer_HTTPTunnel) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -274,7 +274,7 @@ func (m *Peer_EmptyConnection) Reset() { *m = Peer_EmptyConnection{} } func (m *Peer_EmptyConnection) String() string { return proto.CompactTextString(m) } func (*Peer_EmptyConnection) ProtoMessage() {} func (*Peer_EmptyConnection) Descriptor() ([]byte, []int) { - return fileDescriptor_da7a6c7c23ebd0c1, []int{1, 1} + return fileDescriptor_f72ea5e081d21a4f, []int{1, 1} } func (m *Peer_EmptyConnection) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -304,46 +304,48 @@ func (m *Peer_EmptyConnection) XXX_DiscardUnknown() { var xxx_messageInfo_Peer_EmptyConnection proto.InternalMessageInfo func init() { - proto.RegisterType((*GenesisValidator)(nil), "tendermint.spn.launch.GenesisValidator") - proto.RegisterType((*Peer)(nil), "tendermint.spn.launch.Peer") - proto.RegisterType((*Peer_HTTPTunnel)(nil), "tendermint.spn.launch.Peer.HTTPTunnel") - proto.RegisterType((*Peer_EmptyConnection)(nil), "tendermint.spn.launch.Peer.EmptyConnection") + proto.RegisterType((*GenesisValidator)(nil), "spn.launch.GenesisValidator") + proto.RegisterType((*Peer)(nil), "spn.launch.Peer") + proto.RegisterType((*Peer_HTTPTunnel)(nil), "spn.launch.Peer.HTTPTunnel") + proto.RegisterType((*Peer_EmptyConnection)(nil), "spn.launch.Peer.EmptyConnection") } -func init() { proto.RegisterFile("launch/genesis_validator.proto", fileDescriptor_da7a6c7c23ebd0c1) } +func init() { + proto.RegisterFile("spn/launch/genesis_validator.proto", fileDescriptor_f72ea5e081d21a4f) +} -var fileDescriptor_da7a6c7c23ebd0c1 = []byte{ - // 476 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x52, 0xcd, 0x6e, 0xd3, 0x40, - 0x10, 0xb6, 0x83, 0x5b, 0xe8, 0xa4, 0x2a, 0xb0, 0x0a, 0x92, 0x1b, 0x24, 0x63, 0xf5, 0x80, 0x2c, - 0x21, 0xd6, 0x6a, 0x10, 0x17, 0x6e, 0x49, 0x8b, 0x1a, 0xc4, 0x25, 0x32, 0x11, 0x07, 0x2e, 0x95, - 0x7f, 0x06, 0x67, 0x25, 0x7b, 0xd7, 0xf2, 0x6e, 0xaa, 0xe6, 0x2d, 0x38, 0x72, 0xe6, 0x19, 0x78, - 0x88, 0x1e, 0x2b, 0x4e, 0x9c, 0x10, 0x4a, 0x5e, 0x04, 0x79, 0xd7, 0x69, 0xa2, 0x08, 0xf5, 0xb6, - 0x33, 0xf3, 0x7d, 0xdf, 0xcc, 0x37, 0xb3, 0xe0, 0x15, 0xf1, 0x9c, 0xa7, 0xb3, 0x30, 0x47, 0x8e, - 0x92, 0xc9, 0xcb, 0xab, 0xb8, 0x60, 0x59, 0xac, 0x44, 0x4d, 0xab, 0x5a, 0x28, 0x41, 0x9e, 0x29, - 0xe4, 0x19, 0xd6, 0x25, 0xe3, 0x8a, 0xca, 0x8a, 0x53, 0x03, 0xef, 0xf7, 0x72, 0x91, 0x0b, 0x8d, - 0x08, 0x9b, 0x97, 0x01, 0xf7, 0xbd, 0x54, 0xc8, 0x52, 0xc8, 0x30, 0x89, 0x25, 0x86, 0x57, 0xa7, - 0x09, 0xaa, 0xf8, 0x34, 0x4c, 0x05, 0xe3, 0x6d, 0xfd, 0xd8, 0xd4, 0x2f, 0x0d, 0xd1, 0x04, 0xa6, - 0x74, 0xf2, 0xbd, 0x03, 0x4f, 0x2e, 0xcc, 0x0c, 0x9f, 0xd7, 0x23, 0x90, 0x3e, 0x3c, 0x32, 0xfd, - 0x3e, 0x9c, 0xbb, 0xb6, 0x6f, 0x07, 0x4e, 0x74, 0x17, 0x93, 0x01, 0x3c, 0x8c, 0xb3, 0xac, 0x46, - 0x29, 0xdd, 0x8e, 0x6f, 0x07, 0x07, 0x23, 0xf7, 0xd7, 0xcf, 0xd7, 0xbd, 0x56, 0x73, 0x68, 0x2a, - 0x9f, 0x54, 0xcd, 0x78, 0x1e, 0xad, 0x81, 0xa4, 0x07, 0x7b, 0x39, 0xf2, 0xe9, 0xb5, 0xfb, 0xc0, - 0xb7, 0x83, 0xc3, 0xc8, 0x04, 0xc4, 0x03, 0x48, 0x05, 0x97, 0x93, 0x79, 0xf2, 0x11, 0x17, 0xae, - 0xa3, 0x4b, 0x5b, 0x19, 0x72, 0x01, 0x47, 0x12, 0x8b, 0xaf, 0xe7, 0x58, 0x60, 0x1e, 0x2b, 0x26, - 0xb8, 0xbb, 0xe7, 0xdb, 0x41, 0x77, 0x70, 0x4c, 0xdb, 0x6e, 0x8d, 0x5d, 0xda, 0xda, 0xa5, 0x67, - 0x82, 0xf1, 0x91, 0x73, 0xf3, 0xe7, 0x85, 0x15, 0xed, 0xd0, 0xc8, 0x5b, 0x70, 0x2a, 0xc4, 0xda, - 0xdd, 0xd7, 0xf4, 0xe7, 0xf4, 0xbf, 0xab, 0xa5, 0x13, 0xc4, 0xba, 0x15, 0xd0, 0xf0, 0x93, 0x1f, - 0x1d, 0x70, 0x9a, 0x24, 0x39, 0x82, 0x0e, 0xcb, 0xf4, 0x22, 0x0e, 0xa2, 0x0e, 0xcb, 0x88, 0x0f, - 0xa0, 0xd2, 0x6a, 0xb8, 0xbd, 0x85, 0xb1, 0x15, 0x6d, 0xe5, 0xc8, 0x18, 0x60, 0xa6, 0x54, 0x35, - 0x9d, 0x73, 0x8e, 0x85, 0x76, 0xdd, 0x1d, 0xbc, 0xbc, 0xa7, 0x2f, 0x1d, 0x4f, 0xa7, 0x13, 0x83, - 0x6e, 0x94, 0x36, 0x5c, 0x32, 0x04, 0x87, 0x0b, 0x8e, 0x7a, 0x3d, 0xdd, 0xc1, 0xab, 0xfb, 0x34, - 0xde, 0x97, 0x95, 0x5a, 0x9c, 0x09, 0xce, 0x31, 0x6d, 0x6c, 0x8f, 0xad, 0x48, 0x53, 0xfb, 0xef, - 0x00, 0x36, 0xf2, 0x84, 0x80, 0xc3, 0xe3, 0x12, 0x5b, 0x3b, 0xfa, 0x4d, 0xdc, 0x9d, 0x9b, 0xde, - 0x5d, 0xae, 0xff, 0x14, 0x1e, 0xef, 0xc8, 0x8e, 0x0e, 0xf5, 0xd9, 0xd6, 0xd1, 0xe8, 0x66, 0xe9, - 0xd9, 0xb7, 0x4b, 0xcf, 0xfe, 0xbb, 0xf4, 0xec, 0x6f, 0x2b, 0xcf, 0xba, 0x5d, 0x79, 0xd6, 0xef, - 0x95, 0x67, 0x7d, 0x09, 0x72, 0xa6, 0x66, 0xf3, 0x84, 0xa6, 0xa2, 0x0c, 0x37, 0x53, 0x87, 0xb2, - 0xe2, 0xe1, 0x75, 0xd8, 0xfe, 0x7e, 0xb5, 0xa8, 0x50, 0x26, 0xfb, 0xfa, 0x2b, 0xbe, 0xf9, 0x17, - 0x00, 0x00, 0xff, 0xff, 0xef, 0xc9, 0x08, 0x5b, 0x14, 0x03, 0x00, 0x00, +var fileDescriptor_f72ea5e081d21a4f = []byte{ + // 470 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x52, 0x4d, 0x6f, 0xd3, 0x40, + 0x10, 0xb5, 0x8d, 0x5b, 0xe8, 0xa4, 0x2a, 0x65, 0x95, 0x83, 0x6b, 0x24, 0x63, 0xe5, 0x64, 0x21, + 0x61, 0xab, 0x41, 0xe2, 0x80, 0xc4, 0xa1, 0x69, 0x51, 0x83, 0xb8, 0x44, 0x26, 0xe2, 0xc0, 0xa5, + 0xf2, 0xc7, 0xe0, 0xac, 0x64, 0xef, 0x5a, 0xde, 0x4d, 0xd5, 0xfc, 0x07, 0x90, 0xf8, 0x31, 0xfc, + 0x88, 0x1e, 0x2b, 0x4e, 0x9c, 0x10, 0x4a, 0xfe, 0x08, 0xf2, 0xae, 0xf3, 0xa1, 0x70, 0xf3, 0xcc, + 0x7b, 0x6f, 0x9e, 0xdf, 0xce, 0xc0, 0x40, 0xd4, 0x2c, 0x2a, 0x93, 0x39, 0xcb, 0x66, 0x51, 0x81, + 0x0c, 0x05, 0x15, 0x37, 0xb7, 0x49, 0x49, 0xf3, 0x44, 0xf2, 0x26, 0xac, 0x1b, 0x2e, 0x39, 0x01, + 0x51, 0xb3, 0x50, 0x73, 0xdc, 0x7e, 0xc1, 0x0b, 0xae, 0xda, 0x51, 0xfb, 0xa5, 0x19, 0xae, 0x97, + 0x71, 0x51, 0x71, 0x11, 0xa5, 0x89, 0xc0, 0xe8, 0xf6, 0x3c, 0x45, 0x99, 0x9c, 0x47, 0x19, 0xa7, + 0xac, 0xc3, 0xcf, 0x34, 0x7e, 0xa3, 0x85, 0xba, 0xd0, 0xd0, 0xe0, 0xbb, 0x05, 0xa7, 0xd7, 0xda, + 0xf8, 0xf3, 0xda, 0x97, 0xb8, 0xf0, 0x44, 0xfb, 0x7d, 0xb8, 0x72, 0x4c, 0xdf, 0x0c, 0xec, 0x78, + 0x53, 0x93, 0x21, 0x3c, 0x4e, 0xf2, 0xbc, 0x41, 0x21, 0x1c, 0xcb, 0x37, 0x83, 0xa3, 0x91, 0xf3, + 0xeb, 0xe7, 0xab, 0x7e, 0x37, 0xf3, 0x42, 0x23, 0x9f, 0x64, 0x43, 0x59, 0x11, 0xaf, 0x89, 0xa4, + 0x0f, 0x07, 0x05, 0xb2, 0xe9, 0x9d, 0xf3, 0xc8, 0x37, 0x83, 0xe3, 0x58, 0x17, 0xc4, 0x03, 0xc8, + 0x38, 0x13, 0x93, 0x79, 0xfa, 0x11, 0x17, 0x8e, 0xad, 0xa0, 0x9d, 0x0e, 0xb9, 0x86, 0x13, 0x81, + 0xe5, 0xd7, 0x2b, 0x2c, 0xb1, 0x48, 0x24, 0xe5, 0xcc, 0x39, 0xf0, 0xcd, 0xa0, 0x37, 0x3c, 0x0b, + 0x3b, 0xb7, 0x36, 0x6e, 0xd8, 0xc5, 0x0d, 0x2f, 0x39, 0x65, 0x23, 0xfb, 0xfe, 0xcf, 0x0b, 0x23, + 0xde, 0x93, 0x91, 0x97, 0x60, 0xd7, 0x88, 0x8d, 0x73, 0xa8, 0xe4, 0xa7, 0xe1, 0xf6, 0x3d, 0xc3, + 0x09, 0x62, 0xd3, 0xa9, 0x14, 0x67, 0xf0, 0xcd, 0x02, 0xbb, 0x6d, 0x92, 0x13, 0xb0, 0x68, 0xae, + 0xd2, 0x1f, 0xc5, 0x16, 0xcd, 0x89, 0x0f, 0x20, 0xb3, 0xfa, 0x62, 0x37, 0xfa, 0xd8, 0x88, 0x77, + 0x7a, 0xe4, 0x1d, 0xc0, 0x4c, 0xca, 0x7a, 0x3a, 0x67, 0x0c, 0x4b, 0x15, 0xb5, 0x37, 0x7c, 0xbe, + 0x6f, 0x16, 0x8e, 0xa7, 0xd3, 0x89, 0xa6, 0xb4, 0xf2, 0xad, 0x80, 0xbc, 0x01, 0x9b, 0x71, 0x86, + 0xea, 0x21, 0x7a, 0x43, 0xff, 0x3f, 0xe1, 0xfb, 0xaa, 0x96, 0x8b, 0x4b, 0xce, 0x18, 0x66, 0x6d, + 0xaa, 0xb1, 0x11, 0x2b, 0xbe, 0xfb, 0x16, 0x60, 0x3b, 0x93, 0x10, 0xb0, 0x59, 0x52, 0x61, 0xf7, + 0xe3, 0xea, 0x9b, 0x38, 0x7b, 0x2b, 0xdb, 0x2c, 0xc6, 0x7d, 0x06, 0x4f, 0xf7, 0xc6, 0x8e, 0x8e, + 0xd5, 0x56, 0xd6, 0xd5, 0xe8, 0x7e, 0xe9, 0x99, 0x0f, 0x4b, 0xcf, 0xfc, 0xbb, 0xf4, 0xcc, 0x1f, + 0x2b, 0xcf, 0x78, 0x58, 0x79, 0xc6, 0xef, 0x95, 0x67, 0x7c, 0x09, 0x0a, 0x2a, 0x67, 0xf3, 0x34, + 0xcc, 0x78, 0x15, 0x49, 0x64, 0x39, 0x36, 0x15, 0x65, 0x32, 0x6a, 0xef, 0xf9, 0x6e, 0x7d, 0xd1, + 0x72, 0x51, 0xa3, 0x48, 0x0f, 0xd5, 0xa5, 0xbd, 0xfe, 0x17, 0x00, 0x00, 0xff, 0xff, 0x64, 0xe2, + 0x98, 0x89, 0xec, 0x02, 0x00, 0x00, } func (m *GenesisValidator) Marshal() (dAtA []byte, err error) { diff --git a/x/launch/types/params.pb.go b/x/launch/types/params.pb.go index c2ce93f92..7b5a45add 100644 --- a/x/launch/types/params.pb.go +++ b/x/launch/types/params.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: launch/params.proto +// source: spn/launch/params.proto package types @@ -7,9 +7,9 @@ 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" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" _ "google.golang.org/protobuf/types/known/durationpb" io "io" math "math" @@ -42,7 +42,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_b8f73d6645a211b2, []int{0} + return fileDescriptor_849132336bdb896c, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -115,7 +115,7 @@ func (m *LaunchTimeRange) Reset() { *m = LaunchTimeRange{} } func (m *LaunchTimeRange) String() string { return proto.CompactTextString(m) } func (*LaunchTimeRange) ProtoMessage() {} func (*LaunchTimeRange) Descriptor() ([]byte, []int) { - return fileDescriptor_b8f73d6645a211b2, []int{1} + return fileDescriptor_849132336bdb896c, []int{1} } func (m *LaunchTimeRange) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -159,42 +159,42 @@ func (m *LaunchTimeRange) GetMaxLaunchTime() time.Duration { } func init() { - proto.RegisterType((*Params)(nil), "tendermint.spn.launch.Params") - proto.RegisterType((*LaunchTimeRange)(nil), "tendermint.spn.launch.LaunchTimeRange") -} - -func init() { proto.RegisterFile("launch/params.proto", fileDescriptor_b8f73d6645a211b2) } - -var fileDescriptor_b8f73d6645a211b2 = []byte{ - // 436 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x93, 0x3f, 0x6f, 0xd4, 0x30, - 0x18, 0xc6, 0xe3, 0x36, 0x54, 0xc8, 0x15, 0x2a, 0x04, 0x90, 0x42, 0x87, 0xe4, 0xd4, 0x01, 0x6e, - 0x00, 0x5b, 0x85, 0x8d, 0x31, 0x2d, 0x48, 0x48, 0x45, 0x42, 0x11, 0x62, 0x80, 0xc9, 0x49, 0x5e, - 0x12, 0x8b, 0x8b, 0x1d, 0x6c, 0xa7, 0xba, 0x7e, 0x0b, 0x26, 0x54, 0x36, 0xc4, 0x82, 0xc4, 0x27, - 0xe9, 0xd8, 0x91, 0xa9, 0x87, 0xee, 0xbe, 0x05, 0x13, 0x8a, 0x93, 0xd3, 0xe5, 0xee, 0x18, 0x8e, - 0x89, 0x29, 0x7f, 0xde, 0xe7, 0x7d, 0xde, 0x9f, 0x1e, 0xbf, 0xc6, 0xb7, 0x47, 0xac, 0x16, 0x69, - 0x41, 0x2b, 0xa6, 0x58, 0xa9, 0x49, 0xa5, 0xa4, 0x91, 0xde, 0x5d, 0x03, 0x22, 0x03, 0x55, 0x72, - 0x61, 0x88, 0xae, 0x04, 0x69, 0x35, 0xfb, 0x77, 0x72, 0x99, 0x4b, 0xab, 0xa0, 0xcd, 0x5b, 0x2b, - 0xde, 0x0f, 0x52, 0xa9, 0x4b, 0xa9, 0x69, 0xc2, 0x34, 0xd0, 0xd3, 0xc3, 0x04, 0x0c, 0x3b, 0xa4, - 0xa9, 0xe4, 0x62, 0x5e, 0xcf, 0xa5, 0xcc, 0x47, 0x40, 0xed, 0x57, 0x52, 0xbf, 0xa7, 0x59, 0xad, - 0x98, 0xe1, 0xb2, 0xab, 0x1f, 0x7c, 0x71, 0xf1, 0xce, 0x2b, 0x3b, 0xdd, 0x7b, 0x83, 0xf7, 0xda, - 0x51, 0xaf, 0x79, 0x09, 0x31, 0x13, 0x39, 0xf8, 0x68, 0x80, 0x86, 0xbb, 0x8f, 0xef, 0x93, 0xbf, - 0x12, 0x91, 0x93, 0x65, 0x75, 0xe4, 0x5e, 0x5c, 0x85, 0x4e, 0xbc, 0x6a, 0xe2, 0x3d, 0xc3, 0xbb, - 0x0a, 0x4e, 0x41, 0x99, 0x63, 0x18, 0xb1, 0x33, 0x7f, 0xcb, 0x7a, 0xde, 0x23, 0x2d, 0x18, 0x99, - 0x83, 0x91, 0xe3, 0x0e, 0x2c, 0xba, 0xde, 0xd8, 0x9c, 0x4f, 0x42, 0x14, 0xf7, 0xfb, 0xbc, 0x6f, - 0x08, 0xdf, 0x4c, 0x0b, 0xc6, 0xc5, 0x91, 0x02, 0x2b, 0x7c, 0x0e, 0xe0, 0x6f, 0x0f, 0xb6, 0xad, - 0x59, 0x9b, 0x02, 0x69, 0x52, 0x20, 0x5d, 0x0a, 0xe4, 0x48, 0x72, 0x11, 0xbd, 0x6b, 0xcc, 0x7e, - 0x5f, 0x85, 0x0f, 0x72, 0x6e, 0x8a, 0x3a, 0x21, 0xa9, 0x2c, 0x69, 0x17, 0x59, 0xfb, 0x78, 0xa4, - 0xb3, 0x0f, 0xd4, 0x9c, 0x55, 0xa0, 0x6d, 0xc3, 0x8f, 0x49, 0x38, 0xdc, 0x50, 0xaa, 0xe3, 0x35, - 0x1e, 0xef, 0x33, 0xc2, 0x58, 0xc1, 0xc7, 0x1a, 0xb4, 0x69, 0xf0, 0xdc, 0xff, 0x8a, 0xd7, 0x23, - 0xf1, 0x1e, 0xe2, 0x5b, 0x25, 0x1b, 0xbf, 0x04, 0xc3, 0x32, 0x66, 0xd8, 0x09, 0x88, 0xdc, 0x14, - 0xfe, 0xb5, 0x01, 0x1a, 0xba, 0xf1, 0x7a, 0xe1, 0xa9, 0x7b, 0xfe, 0x35, 0x74, 0x0e, 0xbe, 0x23, - 0xbc, 0xb7, 0x72, 0xc6, 0xde, 0x0b, 0x7c, 0xa3, 0xe4, 0x62, 0xf1, 0xb7, 0x5b, 0x91, 0x8d, 0x8e, - 0x73, 0xb9, 0xd3, 0x5a, 0xb1, 0x71, 0xcf, 0x6a, 0xeb, 0x5f, 0xac, 0xfa, 0x9d, 0x51, 0x74, 0x31, - 0x0d, 0xd0, 0xe5, 0x34, 0x40, 0xbf, 0xa6, 0x01, 0xfa, 0x34, 0x0b, 0x9c, 0xcb, 0x59, 0xe0, 0xfc, - 0x9c, 0x05, 0xce, 0xdb, 0x7e, 0x5a, 0x8b, 0x2d, 0xa6, 0xba, 0x12, 0x74, 0x4c, 0xbb, 0xdb, 0x67, - 0x33, 0x4b, 0x76, 0xec, 0xbc, 0x27, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x8c, 0x6f, 0xdd, 0xf3, - 0x94, 0x03, 0x00, 0x00, + proto.RegisterType((*Params)(nil), "spn.launch.Params") + proto.RegisterType((*LaunchTimeRange)(nil), "spn.launch.LaunchTimeRange") +} + +func init() { proto.RegisterFile("spn/launch/params.proto", fileDescriptor_849132336bdb896c) } + +var fileDescriptor_849132336bdb896c = []byte{ + // 433 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x93, 0x31, 0x6f, 0xd3, 0x40, + 0x14, 0xc7, 0x7d, 0xad, 0xa9, 0xd0, 0x55, 0xa8, 0x60, 0x21, 0x61, 0x8a, 0x64, 0x47, 0x5d, 0xc8, + 0x00, 0x77, 0x2a, 0x6c, 0x8c, 0x6e, 0x41, 0x42, 0x14, 0x09, 0x59, 0x4c, 0x30, 0x9d, 0xed, 0x87, + 0x7d, 0x22, 0xbe, 0x33, 0x77, 0xe7, 0x2a, 0xfd, 0x12, 0x88, 0x09, 0x75, 0x44, 0x2c, 0x48, 0x7c, + 0x92, 0x8e, 0x1d, 0x99, 0x12, 0x94, 0x7c, 0x0b, 0x26, 0xe4, 0xb3, 0xa3, 0x38, 0xc9, 0x12, 0x26, + 0x26, 0xdb, 0xf7, 0xde, 0xff, 0xff, 0x7e, 0xef, 0x9d, 0x1f, 0xbe, 0xa7, 0x2b, 0x41, 0x47, 0xac, + 0x16, 0x69, 0x41, 0x2b, 0xa6, 0x58, 0xa9, 0x49, 0xa5, 0xa4, 0x91, 0x1e, 0xd6, 0x95, 0x20, 0x6d, + 0xe0, 0xf0, 0x6e, 0x2e, 0x73, 0x69, 0x8f, 0x69, 0xf3, 0xd6, 0x66, 0x1c, 0x06, 0xa9, 0xd4, 0xa5, + 0xd4, 0x34, 0x61, 0x1a, 0xe8, 0xf9, 0x71, 0x02, 0x86, 0x1d, 0xd3, 0x54, 0x72, 0xb1, 0x88, 0xe7, + 0x52, 0xe6, 0x23, 0xa0, 0xf6, 0x2b, 0xa9, 0x3f, 0xd0, 0xac, 0x56, 0xcc, 0x70, 0xd9, 0xc5, 0x8f, + 0x3e, 0xbb, 0x78, 0xef, 0x8d, 0x2d, 0xe9, 0xbd, 0xc2, 0x07, 0x6d, 0xa9, 0xb7, 0xbc, 0x84, 0x98, + 0x89, 0x1c, 0x7c, 0x34, 0x40, 0xc3, 0xfd, 0x27, 0x0f, 0xc8, 0x12, 0x83, 0x9c, 0xad, 0xa6, 0x44, + 0xee, 0xd5, 0x24, 0x74, 0xe2, 0x75, 0xa5, 0xf7, 0x1c, 0xef, 0x2b, 0x38, 0x07, 0x65, 0x4e, 0x61, + 0xc4, 0x2e, 0xfc, 0x1d, 0x6b, 0x74, 0x9f, 0xb4, 0x34, 0x64, 0x41, 0x43, 0x4e, 0x3b, 0x9a, 0xe8, + 0x66, 0x63, 0x73, 0x39, 0x0d, 0x51, 0xdc, 0xd7, 0x79, 0xdf, 0x11, 0xbe, 0x9d, 0x16, 0x8c, 0x8b, + 0x13, 0x05, 0x36, 0xf1, 0x05, 0x80, 0xbf, 0x3b, 0xd8, 0xb5, 0x66, 0x6d, 0xeb, 0xa4, 0x69, 0x9d, + 0x74, 0xad, 0x93, 0x13, 0xc9, 0x45, 0xf4, 0xbe, 0x31, 0xfb, 0x33, 0x09, 0x1f, 0xe6, 0xdc, 0x14, + 0x75, 0x42, 0x52, 0x59, 0xd2, 0x6e, 0x4e, 0xed, 0xe3, 0xb1, 0xce, 0x3e, 0x52, 0x73, 0x51, 0x81, + 0xb6, 0x82, 0x9f, 0xd3, 0x70, 0xb8, 0x65, 0xaa, 0x8e, 0x37, 0x78, 0xbc, 0xaf, 0x08, 0x63, 0x05, + 0x9f, 0x6a, 0xd0, 0xa6, 0xc1, 0x73, 0xff, 0x2b, 0x5e, 0x8f, 0xc4, 0x7b, 0x84, 0xef, 0x94, 0x6c, + 0xfc, 0x1a, 0x0c, 0xcb, 0x98, 0x61, 0x67, 0x20, 0x72, 0x53, 0xf8, 0x37, 0x06, 0x68, 0xe8, 0xc6, + 0x9b, 0x81, 0x67, 0xee, 0xe5, 0xb7, 0xd0, 0x39, 0xfa, 0x81, 0xf0, 0xc1, 0xda, 0x1d, 0x7b, 0x2f, + 0xf1, 0xad, 0x92, 0x8b, 0xe5, 0x69, 0xf7, 0x5f, 0x6c, 0x75, 0x9d, 0xab, 0x4a, 0x6b, 0xc5, 0xc6, + 0x3d, 0xab, 0x9d, 0x7f, 0xb1, 0xea, 0x2b, 0xa3, 0xe8, 0x6a, 0x16, 0xa0, 0xeb, 0x59, 0x80, 0x7e, + 0xcf, 0x02, 0xf4, 0x65, 0x1e, 0x38, 0xd7, 0xf3, 0xc0, 0xf9, 0x35, 0x0f, 0x9c, 0x77, 0xfd, 0x69, + 0x19, 0x10, 0x19, 0xa8, 0x92, 0x0b, 0x43, 0x9b, 0x2d, 0x1b, 0x2f, 0xf6, 0xcc, 0xce, 0x2c, 0xd9, + 0xb3, 0xf5, 0x9e, 0xfe, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x7c, 0x56, 0x7c, 0x98, 0x82, 0x03, 0x00, + 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { @@ -250,7 +250,7 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { dAtA[i] = 0x1a } } - n1, err1 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.RevertDelay, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.RevertDelay):]) + n1, err1 := github_com_cosmos_gogoproto_types.StdDurationMarshalTo(m.RevertDelay, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.RevertDelay):]) if err1 != nil { return 0, err1 } @@ -291,7 +291,7 @@ func (m *LaunchTimeRange) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - n3, err3 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.MaxLaunchTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.MaxLaunchTime):]) + n3, err3 := github_com_cosmos_gogoproto_types.StdDurationMarshalTo(m.MaxLaunchTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.MaxLaunchTime):]) if err3 != nil { return 0, err3 } @@ -299,7 +299,7 @@ func (m *LaunchTimeRange) MarshalToSizedBuffer(dAtA []byte) (int, error) { i = encodeVarintParams(dAtA, i, uint64(n3)) i-- dAtA[i] = 0x12 - n4, err4 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.MinLaunchTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.MinLaunchTime):]) + n4, err4 := github_com_cosmos_gogoproto_types.StdDurationMarshalTo(m.MinLaunchTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.MinLaunchTime):]) if err4 != nil { return 0, err4 } @@ -329,7 +329,7 @@ func (m *Params) Size() (n int) { _ = l l = m.LaunchTimeRange.Size() n += 1 + l + sovParams(uint64(l)) - l = github_com_gogo_protobuf_types.SizeOfStdDuration(m.RevertDelay) + l = github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.RevertDelay) n += 1 + l + sovParams(uint64(l)) if len(m.ChainCreationFee) > 0 { for _, e := range m.ChainCreationFee { @@ -355,9 +355,9 @@ func (m *LaunchTimeRange) Size() (n int) { } var l int _ = l - l = github_com_gogo_protobuf_types.SizeOfStdDuration(m.MinLaunchTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.MinLaunchTime) n += 1 + l + sovParams(uint64(l)) - l = github_com_gogo_protobuf_types.SizeOfStdDuration(m.MaxLaunchTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.MaxLaunchTime) n += 1 + l + sovParams(uint64(l)) return n } @@ -459,7 +459,7 @@ func (m *Params) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(&m.RevertDelay, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdDurationUnmarshal(&m.RevertDelay, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -629,7 +629,7 @@ func (m *LaunchTimeRange) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(&m.MinLaunchTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdDurationUnmarshal(&m.MinLaunchTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -662,7 +662,7 @@ func (m *LaunchTimeRange) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(&m.MaxLaunchTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdDurationUnmarshal(&m.MaxLaunchTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/launch/types/query.pb.go b/x/launch/types/query.pb.go index 82ff1e0ac..e36f3f2e3 100644 --- a/x/launch/types/query.pb.go +++ b/x/launch/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: launch/query.proto +// source: spn/launch/query.proto package types @@ -8,9 +8,9 @@ import ( fmt "fmt" _ "github.com/cosmos/cosmos-proto" query "github.com/cosmos/cosmos-sdk/types/query" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -39,7 +39,7 @@ func (m *QueryGetChainRequest) Reset() { *m = QueryGetChainRequest{} } func (m *QueryGetChainRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetChainRequest) ProtoMessage() {} func (*QueryGetChainRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{0} + return fileDescriptor_1032ea7977e72b4c, []int{0} } func (m *QueryGetChainRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -83,7 +83,7 @@ func (m *QueryGetChainResponse) Reset() { *m = QueryGetChainResponse{} } func (m *QueryGetChainResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetChainResponse) ProtoMessage() {} func (*QueryGetChainResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{1} + return fileDescriptor_1032ea7977e72b4c, []int{1} } func (m *QueryGetChainResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -127,7 +127,7 @@ func (m *QueryAllChainRequest) Reset() { *m = QueryAllChainRequest{} } func (m *QueryAllChainRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllChainRequest) ProtoMessage() {} func (*QueryAllChainRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{2} + return fileDescriptor_1032ea7977e72b4c, []int{2} } func (m *QueryAllChainRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -172,7 +172,7 @@ func (m *QueryAllChainResponse) Reset() { *m = QueryAllChainResponse{} } func (m *QueryAllChainResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllChainResponse) ProtoMessage() {} func (*QueryAllChainResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{3} + return fileDescriptor_1032ea7977e72b4c, []int{3} } func (m *QueryAllChainResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -224,7 +224,7 @@ func (m *QueryGetGenesisAccountRequest) Reset() { *m = QueryGetGenesisAc func (m *QueryGetGenesisAccountRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetGenesisAccountRequest) ProtoMessage() {} func (*QueryGetGenesisAccountRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{4} + return fileDescriptor_1032ea7977e72b4c, []int{4} } func (m *QueryGetGenesisAccountRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -275,7 +275,7 @@ func (m *QueryGetGenesisAccountResponse) Reset() { *m = QueryGetGenesisA func (m *QueryGetGenesisAccountResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetGenesisAccountResponse) ProtoMessage() {} func (*QueryGetGenesisAccountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{5} + return fileDescriptor_1032ea7977e72b4c, []int{5} } func (m *QueryGetGenesisAccountResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -320,7 +320,7 @@ func (m *QueryAllGenesisAccountRequest) Reset() { *m = QueryAllGenesisAc func (m *QueryAllGenesisAccountRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllGenesisAccountRequest) ProtoMessage() {} func (*QueryAllGenesisAccountRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{6} + return fileDescriptor_1032ea7977e72b4c, []int{6} } func (m *QueryAllGenesisAccountRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -372,7 +372,7 @@ func (m *QueryAllGenesisAccountResponse) Reset() { *m = QueryAllGenesisA func (m *QueryAllGenesisAccountResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllGenesisAccountResponse) ProtoMessage() {} func (*QueryAllGenesisAccountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{7} + return fileDescriptor_1032ea7977e72b4c, []int{7} } func (m *QueryAllGenesisAccountResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -424,7 +424,7 @@ func (m *QueryGetVestingAccountRequest) Reset() { *m = QueryGetVestingAc func (m *QueryGetVestingAccountRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetVestingAccountRequest) ProtoMessage() {} func (*QueryGetVestingAccountRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{8} + return fileDescriptor_1032ea7977e72b4c, []int{8} } func (m *QueryGetVestingAccountRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -475,7 +475,7 @@ func (m *QueryGetVestingAccountResponse) Reset() { *m = QueryGetVestingA func (m *QueryGetVestingAccountResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetVestingAccountResponse) ProtoMessage() {} func (*QueryGetVestingAccountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{9} + return fileDescriptor_1032ea7977e72b4c, []int{9} } func (m *QueryGetVestingAccountResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -520,7 +520,7 @@ func (m *QueryAllVestingAccountRequest) Reset() { *m = QueryAllVestingAc func (m *QueryAllVestingAccountRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllVestingAccountRequest) ProtoMessage() {} func (*QueryAllVestingAccountRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{10} + return fileDescriptor_1032ea7977e72b4c, []int{10} } func (m *QueryAllVestingAccountRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -572,7 +572,7 @@ func (m *QueryAllVestingAccountResponse) Reset() { *m = QueryAllVestingA func (m *QueryAllVestingAccountResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllVestingAccountResponse) ProtoMessage() {} func (*QueryAllVestingAccountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{11} + return fileDescriptor_1032ea7977e72b4c, []int{11} } func (m *QueryAllVestingAccountResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -624,7 +624,7 @@ func (m *QueryGetGenesisValidatorRequest) Reset() { *m = QueryGetGenesis func (m *QueryGetGenesisValidatorRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetGenesisValidatorRequest) ProtoMessage() {} func (*QueryGetGenesisValidatorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{12} + return fileDescriptor_1032ea7977e72b4c, []int{12} } func (m *QueryGetGenesisValidatorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -675,7 +675,7 @@ func (m *QueryGetGenesisValidatorResponse) Reset() { *m = QueryGetGenesi func (m *QueryGetGenesisValidatorResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetGenesisValidatorResponse) ProtoMessage() {} func (*QueryGetGenesisValidatorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{13} + return fileDescriptor_1032ea7977e72b4c, []int{13} } func (m *QueryGetGenesisValidatorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -720,7 +720,7 @@ func (m *QueryAllGenesisValidatorRequest) Reset() { *m = QueryAllGenesis func (m *QueryAllGenesisValidatorRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllGenesisValidatorRequest) ProtoMessage() {} func (*QueryAllGenesisValidatorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{14} + return fileDescriptor_1032ea7977e72b4c, []int{14} } func (m *QueryAllGenesisValidatorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -772,7 +772,7 @@ func (m *QueryAllGenesisValidatorResponse) Reset() { *m = QueryAllGenesi func (m *QueryAllGenesisValidatorResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllGenesisValidatorResponse) ProtoMessage() {} func (*QueryAllGenesisValidatorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{15} + return fileDescriptor_1032ea7977e72b4c, []int{15} } func (m *QueryAllGenesisValidatorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -824,7 +824,7 @@ func (m *QueryGetRequestRequest) Reset() { *m = QueryGetRequestRequest{} func (m *QueryGetRequestRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRequestRequest) ProtoMessage() {} func (*QueryGetRequestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{16} + return fileDescriptor_1032ea7977e72b4c, []int{16} } func (m *QueryGetRequestRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -875,7 +875,7 @@ func (m *QueryGetRequestResponse) Reset() { *m = QueryGetRequestResponse func (m *QueryGetRequestResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRequestResponse) ProtoMessage() {} func (*QueryGetRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{17} + return fileDescriptor_1032ea7977e72b4c, []int{17} } func (m *QueryGetRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -920,7 +920,7 @@ func (m *QueryAllRequestRequest) Reset() { *m = QueryAllRequestRequest{} func (m *QueryAllRequestRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllRequestRequest) ProtoMessage() {} func (*QueryAllRequestRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{18} + return fileDescriptor_1032ea7977e72b4c, []int{18} } func (m *QueryAllRequestRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -972,7 +972,7 @@ func (m *QueryAllRequestResponse) Reset() { *m = QueryAllRequestResponse func (m *QueryAllRequestResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllRequestResponse) ProtoMessage() {} func (*QueryAllRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{19} + return fileDescriptor_1032ea7977e72b4c, []int{19} } func (m *QueryAllRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1023,7 +1023,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{20} + return fileDescriptor_1032ea7977e72b4c, []int{20} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1061,7 +1061,7 @@ 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_16d1d5d3029eb866, []int{21} + return fileDescriptor_1032ea7977e72b4c, []int{21} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1106,7 +1106,7 @@ func (m *QueryAllParamChangeRequest) Reset() { *m = QueryAllParamChangeR func (m *QueryAllParamChangeRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllParamChangeRequest) ProtoMessage() {} func (*QueryAllParamChangeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{22} + return fileDescriptor_1032ea7977e72b4c, []int{22} } func (m *QueryAllParamChangeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1158,7 +1158,7 @@ func (m *QueryAllParamChangeResponse) Reset() { *m = QueryAllParamChange func (m *QueryAllParamChangeResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllParamChangeResponse) ProtoMessage() {} func (*QueryAllParamChangeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_16d1d5d3029eb866, []int{23} + return fileDescriptor_1032ea7977e72b4c, []int{23} } func (m *QueryAllParamChangeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1202,107 +1202,106 @@ func (m *QueryAllParamChangeResponse) GetPagination() *query.PageResponse { } func init() { - proto.RegisterType((*QueryGetChainRequest)(nil), "tendermint.spn.launch.QueryGetChainRequest") - proto.RegisterType((*QueryGetChainResponse)(nil), "tendermint.spn.launch.QueryGetChainResponse") - proto.RegisterType((*QueryAllChainRequest)(nil), "tendermint.spn.launch.QueryAllChainRequest") - proto.RegisterType((*QueryAllChainResponse)(nil), "tendermint.spn.launch.QueryAllChainResponse") - proto.RegisterType((*QueryGetGenesisAccountRequest)(nil), "tendermint.spn.launch.QueryGetGenesisAccountRequest") - proto.RegisterType((*QueryGetGenesisAccountResponse)(nil), "tendermint.spn.launch.QueryGetGenesisAccountResponse") - proto.RegisterType((*QueryAllGenesisAccountRequest)(nil), "tendermint.spn.launch.QueryAllGenesisAccountRequest") - proto.RegisterType((*QueryAllGenesisAccountResponse)(nil), "tendermint.spn.launch.QueryAllGenesisAccountResponse") - proto.RegisterType((*QueryGetVestingAccountRequest)(nil), "tendermint.spn.launch.QueryGetVestingAccountRequest") - proto.RegisterType((*QueryGetVestingAccountResponse)(nil), "tendermint.spn.launch.QueryGetVestingAccountResponse") - proto.RegisterType((*QueryAllVestingAccountRequest)(nil), "tendermint.spn.launch.QueryAllVestingAccountRequest") - proto.RegisterType((*QueryAllVestingAccountResponse)(nil), "tendermint.spn.launch.QueryAllVestingAccountResponse") - proto.RegisterType((*QueryGetGenesisValidatorRequest)(nil), "tendermint.spn.launch.QueryGetGenesisValidatorRequest") - proto.RegisterType((*QueryGetGenesisValidatorResponse)(nil), "tendermint.spn.launch.QueryGetGenesisValidatorResponse") - proto.RegisterType((*QueryAllGenesisValidatorRequest)(nil), "tendermint.spn.launch.QueryAllGenesisValidatorRequest") - proto.RegisterType((*QueryAllGenesisValidatorResponse)(nil), "tendermint.spn.launch.QueryAllGenesisValidatorResponse") - proto.RegisterType((*QueryGetRequestRequest)(nil), "tendermint.spn.launch.QueryGetRequestRequest") - proto.RegisterType((*QueryGetRequestResponse)(nil), "tendermint.spn.launch.QueryGetRequestResponse") - proto.RegisterType((*QueryAllRequestRequest)(nil), "tendermint.spn.launch.QueryAllRequestRequest") - proto.RegisterType((*QueryAllRequestResponse)(nil), "tendermint.spn.launch.QueryAllRequestResponse") - proto.RegisterType((*QueryParamsRequest)(nil), "tendermint.spn.launch.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "tendermint.spn.launch.QueryParamsResponse") - proto.RegisterType((*QueryAllParamChangeRequest)(nil), "tendermint.spn.launch.QueryAllParamChangeRequest") - proto.RegisterType((*QueryAllParamChangeResponse)(nil), "tendermint.spn.launch.QueryAllParamChangeResponse") -} - -func init() { proto.RegisterFile("launch/query.proto", fileDescriptor_16d1d5d3029eb866) } - -var fileDescriptor_16d1d5d3029eb866 = []byte{ - // 1129 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0xcd, 0x6f, 0xdc, 0x44, - 0x14, 0xcf, 0x74, 0x9b, 0xa4, 0x7d, 0xa0, 0x28, 0x4c, 0xb6, 0x50, 0x4c, 0xe2, 0x54, 0x16, 0x25, - 0x4d, 0x4b, 0x6c, 0xed, 0xa6, 0x69, 0x41, 0x51, 0x40, 0x9b, 0x94, 0x46, 0x95, 0x38, 0xb4, 0x5b, - 0xa9, 0x52, 0x39, 0x50, 0x39, 0x1b, 0xcb, 0xb1, 0xe4, 0xd8, 0xce, 0x8e, 0x37, 0xa2, 0x2a, 0x91, - 0x10, 0x08, 0x2e, 0x5c, 0x90, 0x7a, 0xe3, 0xc0, 0x81, 0x0b, 0x37, 0x4e, 0xbd, 0x21, 0x71, 0x00, - 0x09, 0x15, 0x4e, 0x15, 0x5c, 0x38, 0x21, 0x94, 0xf0, 0x87, 0xa0, 0x9d, 0x79, 0xde, 0xdd, 0xf1, - 0xfa, 0x33, 0xdd, 0xf4, 0x96, 0xf5, 0xbc, 0x8f, 0xdf, 0xc7, 0xdb, 0xcc, 0xf3, 0x02, 0x75, 0xcd, - 0x8e, 0xd7, 0xda, 0x31, 0xf6, 0x3a, 0x56, 0xfb, 0xa1, 0x1e, 0xb4, 0xfd, 0xd0, 0xa7, 0xe7, 0x42, - 0xcb, 0xdb, 0xb6, 0xda, 0xbb, 0x8e, 0x17, 0xea, 0x2c, 0xf0, 0x74, 0x11, 0xa2, 0x54, 0x6d, 0xdf, - 0xf6, 0x79, 0x84, 0xd1, 0xfd, 0x4b, 0x04, 0x2b, 0xb3, 0xb6, 0xef, 0xdb, 0xae, 0x65, 0x98, 0x81, - 0x63, 0x98, 0x9e, 0xe7, 0x87, 0x66, 0xe8, 0xf8, 0x1e, 0xc3, 0xd3, 0xcb, 0x2d, 0x9f, 0xed, 0xfa, - 0xcc, 0xd8, 0x32, 0x99, 0x25, 0x7a, 0x18, 0xfb, 0xb5, 0x2d, 0x2b, 0x34, 0x6b, 0x46, 0x60, 0xda, - 0x8e, 0xc7, 0x83, 0x31, 0xf6, 0x75, 0x11, 0xfb, 0x40, 0xb4, 0x10, 0x1f, 0xf0, 0xa8, 0x8a, 0x28, - 0xdb, 0xd6, 0x5e, 0xc7, 0x62, 0x61, 0xd4, 0x1a, 0x9f, 0xee, 0x5b, 0x2c, 0x74, 0x3c, 0xfb, 0x81, - 0xd9, 0x6a, 0xf9, 0x1d, 0x2f, 0x7e, 0x6a, 0x5b, 0x9e, 0xc5, 0x1c, 0x16, 0x3b, 0x55, 0x63, 0xa7, - 0xfb, 0xa6, 0xeb, 0x6c, 0x9b, 0xa1, 0xdf, 0xc6, 0xf3, 0x48, 0x97, 0xd6, 0x8e, 0xe9, 0x44, 0x00, - 0x67, 0xf0, 0x59, 0x60, 0xb6, 0xcd, 0x5d, 0x84, 0xa6, 0xd5, 0xa1, 0x7a, 0xa7, 0xcb, 0x6b, 0xd3, - 0x0a, 0x37, 0xba, 0xb1, 0x4d, 0x01, 0x91, 0x2a, 0x70, 0x46, 0x84, 0xdf, 0xba, 0x71, 0x9e, 0x5c, - 0x20, 0x97, 0x4e, 0x37, 0x7b, 0x9f, 0xb5, 0x3b, 0x70, 0x2e, 0x96, 0xc3, 0x02, 0xdf, 0x63, 0x16, - 0x7d, 0x07, 0xc6, 0x79, 0x43, 0x9e, 0xf1, 0x52, 0x7d, 0x56, 0x4f, 0x74, 0x42, 0xe7, 0x49, 0xeb, - 0xa7, 0x9f, 0xfe, 0x33, 0x3f, 0xd6, 0x14, 0x09, 0xda, 0xc7, 0x08, 0xa3, 0xe1, 0xba, 0x12, 0x8c, - 0x9b, 0x00, 0x7d, 0xa1, 0xb1, 0xec, 0x5b, 0x3a, 0x8a, 0xdb, 0x75, 0x45, 0x17, 0xce, 0xa3, 0x2b, - 0xfa, 0x6d, 0xd3, 0xb6, 0x30, 0xb7, 0x39, 0x90, 0xa9, 0x7d, 0x4b, 0x10, 0x73, 0xbf, 0xc1, 0x30, - 0xe6, 0x4a, 0x29, 0xcc, 0x74, 0x53, 0xc2, 0x76, 0x8a, 0x63, 0x5b, 0xc8, 0xc5, 0x26, 0xda, 0x4a, - 0xe0, 0x7c, 0x98, 0x8b, 0xf4, 0xdc, 0x14, 0x7e, 0x36, 0x84, 0xd9, 0x05, 0xcc, 0xa0, 0x75, 0x98, - 0x34, 0xb7, 0xb7, 0xdb, 0x16, 0x63, 0x1c, 0xc2, 0xd9, 0xf5, 0xf3, 0x7f, 0x3e, 0x59, 0xaa, 0x22, - 0x8a, 0x86, 0x38, 0xb9, 0x1b, 0xb6, 0x1d, 0xcf, 0x6e, 0x46, 0x81, 0x5a, 0x07, 0xd4, 0xb4, 0x86, - 0xa8, 0xca, 0x5d, 0x98, 0xb2, 0xa5, 0x13, 0xd4, 0xfe, 0x62, 0x8a, 0x3c, 0x72, 0x19, 0xd4, 0x29, - 0x56, 0x42, 0xfb, 0x82, 0x20, 0xd1, 0x86, 0xeb, 0x96, 0x27, 0x7a, 0x33, 0x41, 0xee, 0xe3, 0x8c, - 0xc2, 0xcf, 0x04, 0xd9, 0x27, 0xa0, 0xc8, 0x60, 0x5f, 0x79, 0x4e, 0xf6, 0x27, 0x32, 0x2e, 0xf7, - 0xc4, 0xbf, 0x8e, 0x17, 0x37, 0x2e, 0xf1, 0x86, 0x7d, 0xc1, 0xf6, 0xa5, 0x93, 0x9c, 0x71, 0x91, - 0xcb, 0x44, 0x82, 0xc9, 0x25, 0xa4, 0x71, 0x29, 0x4f, 0xf4, 0x24, 0xc6, 0xa5, 0x04, 0xfb, 0xca, - 0x73, 0xb2, 0x1f, 0xdd, 0xb8, 0xec, 0xc1, 0x7c, 0xec, 0xcb, 0x7e, 0x2f, 0xba, 0x2c, 0x4e, 0x6a, - 0x60, 0x0e, 0xe0, 0x42, 0x7a, 0x4b, 0x14, 0xed, 0x3e, 0x4c, 0xdb, 0xb1, 0x33, 0x1c, 0x9a, 0x85, - 0xec, 0x6f, 0x59, 0x2f, 0x1c, 0x85, 0x1b, 0x2a, 0xa3, 0x7d, 0x49, 0x90, 0x72, 0xff, 0x1b, 0x5e, - 0x8a, 0xf2, 0xa8, 0x46, 0xe7, 0x37, 0x82, 0x3a, 0x24, 0xe2, 0xc8, 0xd4, 0xa1, 0x32, 0x02, 0x1d, - 0x46, 0x37, 0x42, 0x4d, 0x78, 0x35, 0xf2, 0x33, 0xe2, 0x59, 0x40, 0xc6, 0x59, 0x38, 0x8b, 0x0b, - 0xcf, 0xad, 0x1b, 0xbc, 0xfb, 0xe9, 0x66, 0xff, 0x81, 0x76, 0x1f, 0x5e, 0x1b, 0xaa, 0x89, 0x92, - 0xbc, 0x07, 0x93, 0x18, 0x87, 0x13, 0xa1, 0xa6, 0x28, 0x81, 0x89, 0x28, 0x40, 0x94, 0xa4, 0x7d, - 0x8a, 0x70, 0x1b, 0xae, 0x5b, 0x02, 0xee, 0xa8, 0x5c, 0xff, 0x9e, 0x20, 0xb3, 0xc1, 0xf6, 0x49, - 0xcc, 0x2a, 0xa5, 0x99, 0x8d, 0xce, 0xd1, 0x2a, 0x50, 0x8e, 0xf1, 0x36, 0xdf, 0x05, 0xb1, 0x9b, - 0xd6, 0x84, 0x19, 0xe9, 0x29, 0xa2, 0x5e, 0x85, 0x09, 0xb1, 0x33, 0xa2, 0x1d, 0x73, 0x29, 0xa0, - 0x45, 0x1a, 0x62, 0xc6, 0x14, 0xed, 0x33, 0x02, 0x4a, 0x24, 0x07, 0x0f, 0xd8, 0xd8, 0x31, 0xbd, - 0x9e, 0x72, 0x2f, 0xc4, 0x91, 0x27, 0x04, 0xde, 0x48, 0x84, 0x80, 0xfc, 0x3e, 0x84, 0x97, 0x83, - 0xfe, 0x63, 0x86, 0xd6, 0x68, 0x59, 0x2c, 0x45, 0x28, 0x52, 0x95, 0xb2, 0x47, 0xe6, 0x51, 0xfd, - 0xf7, 0x69, 0x18, 0xe7, 0xb0, 0xe9, 0x63, 0x02, 0xe3, 0x7c, 0x01, 0xa5, 0x57, 0x52, 0x40, 0x25, - 0xed, 0xf0, 0xca, 0xdb, 0xc5, 0x82, 0x45, 0x6b, 0xcd, 0xf8, 0xfc, 0xaf, 0xff, 0x1e, 0x9f, 0x5a, - 0xa4, 0x0b, 0x46, 0x3f, 0xcb, 0x60, 0x81, 0x67, 0x0c, 0xbe, 0x4a, 0x18, 0x8f, 0x22, 0x77, 0x0e, - 0xe8, 0xd7, 0x04, 0xce, 0xf0, 0x12, 0x0d, 0xd7, 0xcd, 0x06, 0x16, 0xdb, 0xea, 0xb3, 0x81, 0xc5, - 0x37, 0x74, 0xed, 0x4d, 0x0e, 0x4c, 0xa5, 0xb3, 0x59, 0xc0, 0xe8, 0x2f, 0x04, 0xa6, 0xe4, 0x3d, - 0x8c, 0x5e, 0xcd, 0xe1, 0x9f, 0xb8, 0x83, 0x2a, 0x2b, 0x25, 0xb3, 0x10, 0xe5, 0x06, 0x47, 0xb9, - 0x46, 0x57, 0x53, 0x50, 0xc6, 0xde, 0xe3, 0x06, 0x84, 0x34, 0x1e, 0xe1, 0xbd, 0x79, 0x40, 0x7f, - 0x22, 0xf0, 0x8a, 0x5c, 0xbf, 0xab, 0xed, 0xd5, 0x1c, 0xb9, 0x8e, 0xc1, 0x23, 0x75, 0xf7, 0xd5, - 0xde, 0xe5, 0x3c, 0x96, 0x69, 0xad, 0x34, 0x0f, 0x6e, 0x81, 0xbc, 0xdb, 0xe4, 0x5a, 0x90, 0xb8, - 0xd7, 0xe5, 0x5a, 0x90, 0xbc, 0x87, 0xe5, 0x5a, 0x10, 0x7b, 0xd1, 0x4e, 0xb7, 0x40, 0xae, 0x5f, - 0xc4, 0x82, 0x63, 0xf0, 0x48, 0xdd, 0x27, 0x73, 0x2d, 0x48, 0xe7, 0x41, 0xff, 0x20, 0x30, 0x1d, - 0xdf, 0x0f, 0xe8, 0xb5, 0x62, 0x13, 0x1d, 0xdf, 0x91, 0x94, 0xeb, 0xa5, 0xf3, 0x90, 0xc0, 0x07, - 0x9c, 0xc0, 0xfb, 0x74, 0x2d, 0x67, 0x86, 0x7a, 0xbf, 0x5a, 0x24, 0x5b, 0xf1, 0x2b, 0x81, 0x99, - 0x78, 0x8f, 0xae, 0x19, 0xd7, 0x8a, 0x4d, 0x76, 0x39, 0x3e, 0x19, 0x3b, 0x9a, 0xb6, 0xca, 0xf9, - 0xac, 0xd0, 0xe5, 0x63, 0xf0, 0xa1, 0x3f, 0x12, 0x98, 0x1a, 0xb8, 0x33, 0xba, 0x04, 0x6a, 0x39, - 0x40, 0x86, 0xef, 0x49, 0xa5, 0x5e, 0x26, 0x05, 0x61, 0xaf, 0x70, 0xd8, 0x06, 0x5d, 0x4a, 0x81, - 0x3d, 0x70, 0x6d, 0x0d, 0x02, 0xfe, 0x81, 0xc0, 0x64, 0x74, 0x3d, 0x2f, 0xe5, 0x8c, 0x80, 0xbc, - 0x5f, 0x29, 0x7a, 0xd1, 0x70, 0x44, 0xb8, 0xc6, 0x11, 0x5e, 0xa7, 0x2b, 0x29, 0x08, 0x71, 0xef, - 0x91, 0xc6, 0xa3, 0xb7, 0x42, 0x1e, 0xd0, 0xef, 0x08, 0x00, 0x96, 0xec, 0xca, 0xba, 0x94, 0xa3, - 0x51, 0x19, 0xb0, 0xc3, 0xcb, 0x9b, 0x56, 0xe3, 0x60, 0xaf, 0xd0, 0xc5, 0xc2, 0x60, 0xe9, 0x57, - 0x04, 0x26, 0xc4, 0x56, 0x44, 0x17, 0xb3, 0xba, 0x49, 0x6b, 0x98, 0x72, 0xb9, 0x48, 0x28, 0x82, - 0xba, 0xc8, 0x41, 0xcd, 0xd3, 0xb9, 0x2c, 0x8f, 0xd9, 0xfa, 0xfa, 0xd3, 0x43, 0x95, 0x3c, 0x3b, - 0x54, 0xc9, 0xbf, 0x87, 0x2a, 0xf9, 0xe6, 0x48, 0x1d, 0x7b, 0x76, 0xa4, 0x8e, 0xfd, 0x7d, 0xa4, - 0x8e, 0x7d, 0x74, 0xc9, 0x76, 0xc2, 0x9d, 0xce, 0x96, 0xde, 0xf2, 0x77, 0xe3, 0x25, 0x3e, 0x89, - 0x8a, 0x84, 0x0f, 0x03, 0x8b, 0x6d, 0x4d, 0xf0, 0x5f, 0x0c, 0x97, 0xff, 0x0f, 0x00, 0x00, 0xff, - 0xff, 0x94, 0x14, 0xb6, 0xce, 0x74, 0x15, 0x00, 0x00, + proto.RegisterType((*QueryGetChainRequest)(nil), "spn.launch.QueryGetChainRequest") + proto.RegisterType((*QueryGetChainResponse)(nil), "spn.launch.QueryGetChainResponse") + proto.RegisterType((*QueryAllChainRequest)(nil), "spn.launch.QueryAllChainRequest") + proto.RegisterType((*QueryAllChainResponse)(nil), "spn.launch.QueryAllChainResponse") + proto.RegisterType((*QueryGetGenesisAccountRequest)(nil), "spn.launch.QueryGetGenesisAccountRequest") + proto.RegisterType((*QueryGetGenesisAccountResponse)(nil), "spn.launch.QueryGetGenesisAccountResponse") + proto.RegisterType((*QueryAllGenesisAccountRequest)(nil), "spn.launch.QueryAllGenesisAccountRequest") + proto.RegisterType((*QueryAllGenesisAccountResponse)(nil), "spn.launch.QueryAllGenesisAccountResponse") + proto.RegisterType((*QueryGetVestingAccountRequest)(nil), "spn.launch.QueryGetVestingAccountRequest") + proto.RegisterType((*QueryGetVestingAccountResponse)(nil), "spn.launch.QueryGetVestingAccountResponse") + proto.RegisterType((*QueryAllVestingAccountRequest)(nil), "spn.launch.QueryAllVestingAccountRequest") + proto.RegisterType((*QueryAllVestingAccountResponse)(nil), "spn.launch.QueryAllVestingAccountResponse") + proto.RegisterType((*QueryGetGenesisValidatorRequest)(nil), "spn.launch.QueryGetGenesisValidatorRequest") + proto.RegisterType((*QueryGetGenesisValidatorResponse)(nil), "spn.launch.QueryGetGenesisValidatorResponse") + proto.RegisterType((*QueryAllGenesisValidatorRequest)(nil), "spn.launch.QueryAllGenesisValidatorRequest") + proto.RegisterType((*QueryAllGenesisValidatorResponse)(nil), "spn.launch.QueryAllGenesisValidatorResponse") + proto.RegisterType((*QueryGetRequestRequest)(nil), "spn.launch.QueryGetRequestRequest") + proto.RegisterType((*QueryGetRequestResponse)(nil), "spn.launch.QueryGetRequestResponse") + proto.RegisterType((*QueryAllRequestRequest)(nil), "spn.launch.QueryAllRequestRequest") + proto.RegisterType((*QueryAllRequestResponse)(nil), "spn.launch.QueryAllRequestResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "spn.launch.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "spn.launch.QueryParamsResponse") + proto.RegisterType((*QueryAllParamChangeRequest)(nil), "spn.launch.QueryAllParamChangeRequest") + proto.RegisterType((*QueryAllParamChangeResponse)(nil), "spn.launch.QueryAllParamChangeResponse") +} + +func init() { proto.RegisterFile("spn/launch/query.proto", fileDescriptor_1032ea7977e72b4c) } + +var fileDescriptor_1032ea7977e72b4c = []byte{ + // 1116 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x98, 0xcf, 0x6f, 0xdc, 0x44, + 0x14, 0xc7, 0x33, 0xdd, 0xfc, 0x68, 0x1f, 0x28, 0x6a, 0x27, 0xa1, 0x09, 0x26, 0x75, 0xc2, 0x00, + 0x4d, 0xd3, 0x90, 0x35, 0x49, 0x14, 0x21, 0x54, 0x45, 0x68, 0x93, 0x92, 0xd0, 0x4b, 0x55, 0x16, + 0xa9, 0x07, 0x0e, 0x54, 0xce, 0xc6, 0x72, 0x8c, 0x1c, 0xdb, 0xb1, 0xbd, 0x11, 0x55, 0x89, 0x84, + 0x40, 0x48, 0xdc, 0x00, 0x71, 0x80, 0x7f, 0x80, 0x03, 0x12, 0x9c, 0xe8, 0x0d, 0x89, 0x73, 0x8f, + 0x15, 0x5c, 0x38, 0x21, 0x94, 0xf0, 0x87, 0xa0, 0x9d, 0x79, 0xde, 0xf5, 0x78, 0xc7, 0x5e, 0xef, + 0x6a, 0x93, 0x5b, 0x76, 0xe6, 0xcd, 0xbc, 0xcf, 0xf7, 0xfb, 0xde, 0xda, 0x6f, 0x03, 0xd7, 0xa3, + 0xc0, 0x33, 0x5c, 0xb3, 0xe9, 0x35, 0x0e, 0x8c, 0xa3, 0xa6, 0x15, 0x3e, 0xae, 0x06, 0xa1, 0x1f, + 0xfb, 0x14, 0xa2, 0xc0, 0xab, 0x8a, 0x75, 0x6d, 0xda, 0xf6, 0x6d, 0x9f, 0x2f, 0x1b, 0xad, 0xbf, + 0x44, 0x84, 0x36, 0x67, 0xfb, 0xbe, 0xed, 0x5a, 0x86, 0x19, 0x38, 0x86, 0xe9, 0x79, 0x7e, 0x6c, + 0xc6, 0x8e, 0xef, 0x45, 0xb8, 0x7b, 0xbb, 0xe1, 0x47, 0x87, 0x7e, 0x64, 0xec, 0x99, 0x91, 0x25, + 0x2e, 0x36, 0x8e, 0x57, 0xf7, 0xac, 0xd8, 0x5c, 0x35, 0x02, 0xd3, 0x76, 0x3c, 0x1e, 0x8c, 0xb1, + 0x2f, 0x8b, 0xd8, 0x47, 0x22, 0x85, 0xf8, 0x80, 0x5b, 0xb3, 0x29, 0xbc, 0xd0, 0x3a, 0x6a, 0x5a, + 0x51, 0x8c, 0x3b, 0x0b, 0xa9, 0x9d, 0x63, 0x2b, 0x8a, 0x1d, 0xcf, 0x7e, 0x64, 0x36, 0x1a, 0x7e, + 0xd3, 0x53, 0x45, 0xd8, 0x96, 0x67, 0x45, 0x4e, 0x94, 0x89, 0x60, 0x8a, 0x88, 0x63, 0xd3, 0x75, + 0xf6, 0xcd, 0xd8, 0x0f, 0x31, 0x26, 0x6d, 0x50, 0xe3, 0xc0, 0x74, 0x12, 0xe8, 0x99, 0xd4, 0x7a, + 0x60, 0x86, 0xe6, 0x21, 0x22, 0xb3, 0x35, 0x98, 0xfe, 0xa0, 0xa5, 0x77, 0xd7, 0x8a, 0xb7, 0x5b, + 0xf1, 0x75, 0x81, 0x4d, 0x35, 0xb8, 0x2c, 0xc2, 0xef, 0xdd, 0x9d, 0x25, 0x0b, 0xe4, 0xd6, 0x68, + 0xbd, 0xfd, 0x99, 0xed, 0xc0, 0x4b, 0x99, 0x33, 0x51, 0xe0, 0x7b, 0x91, 0x45, 0x57, 0x60, 0x8c, + 0x27, 0xe5, 0x27, 0x5e, 0x58, 0xbb, 0x56, 0xed, 0x94, 0xa5, 0xca, 0x23, 0xb7, 0x46, 0x9f, 0xfd, + 0x33, 0x3f, 0x52, 0x17, 0x51, 0xec, 0x63, 0xcc, 0x5d, 0x73, 0x5d, 0x29, 0xf7, 0x0e, 0x40, 0xc7, + 0x75, 0xbc, 0xeb, 0x66, 0x15, 0x9d, 0x6e, 0x95, 0xa8, 0x2a, 0x6a, 0x8f, 0x25, 0xaa, 0x3e, 0x30, + 0x6d, 0x0b, 0xcf, 0xd6, 0x53, 0x27, 0xd9, 0x37, 0x04, 0x41, 0x3b, 0x09, 0xba, 0x41, 0x2b, 0xbd, + 0x41, 0xe9, 0xae, 0x04, 0x74, 0x89, 0x03, 0x2d, 0xf6, 0x04, 0x12, 0xb9, 0x24, 0x22, 0x1f, 0x6e, + 0x24, 0xce, 0xed, 0x8a, 0x0a, 0xd6, 0x44, 0x89, 0x4b, 0xd8, 0x4e, 0xd7, 0x60, 0xc2, 0xdc, 0xdf, + 0x0f, 0xad, 0x28, 0xe2, 0x08, 0x57, 0xb6, 0x66, 0xff, 0x7c, 0xba, 0x32, 0x8d, 0x14, 0x35, 0xb1, + 0xf3, 0x61, 0x1c, 0x3a, 0x9e, 0x5d, 0x4f, 0x02, 0xd9, 0x27, 0xa0, 0xe7, 0x25, 0x44, 0x2b, 0xde, + 0x87, 0x49, 0x5b, 0xda, 0x41, 0xc3, 0xb5, 0xb4, 0x27, 0xf2, 0x59, 0x34, 0x27, 0x73, 0x8e, 0x7d, + 0x49, 0x50, 0x5d, 0xcd, 0x75, 0xfb, 0x57, 0xb7, 0xa3, 0xf0, 0x78, 0x90, 0xa2, 0xff, 0x46, 0x50, + 0xb2, 0x82, 0xa2, 0x40, 0x72, 0x65, 0x10, 0xc9, 0xe7, 0xd2, 0x18, 0x0f, 0xc5, 0xe3, 0xe1, 0xe2, + 0x1a, 0x23, 0x9b, 0xb0, 0xe3, 0xd2, 0xb1, 0xb4, 0xa3, 0x6a, 0x0c, 0xf9, 0x6c, 0xe2, 0x92, 0x7c, + 0x4e, 0x6a, 0x8c, 0xfe, 0xd5, 0x9d, 0x47, 0x63, 0xf4, 0x21, 0xb9, 0x32, 0x88, 0xe4, 0xe1, 0x35, + 0xc6, 0x11, 0xcc, 0x67, 0xbe, 0xc0, 0x0f, 0x93, 0x47, 0xfe, 0x79, 0xb5, 0x46, 0x08, 0x0b, 0xf9, + 0x29, 0xd1, 0xa9, 0xfb, 0x70, 0xd5, 0xce, 0xec, 0x61, 0x7b, 0xcc, 0x29, 0xbe, 0x44, 0xed, 0x18, + 0x74, 0xab, 0xeb, 0x2c, 0xfb, 0x8a, 0xa0, 0xce, 0xce, 0xb7, 0xb6, 0x2f, 0x9d, 0xc3, 0x6a, 0x92, + 0xdf, 0x09, 0x8a, 0x57, 0x72, 0x14, 0x8a, 0xaf, 0x0c, 0x2a, 0x7e, 0x78, 0xcd, 0x52, 0x87, 0xeb, + 0x49, 0xe5, 0x12, 0x71, 0x25, 0xbc, 0x9b, 0x83, 0x2b, 0x38, 0xac, 0xdc, 0xbb, 0xcb, 0xb3, 0x8f, + 0xd6, 0x3b, 0x0b, 0xec, 0x3e, 0xcc, 0x74, 0xdd, 0x89, 0x3e, 0xac, 0xc3, 0x04, 0xc6, 0x61, 0xed, + 0xa7, 0xd2, 0xf2, 0x31, 0x1a, 0x55, 0x27, 0x91, 0xec, 0x33, 0x64, 0xac, 0xb9, 0x6e, 0x1f, 0x8c, + 0xc3, 0xaa, 0xef, 0x0f, 0x04, 0xe5, 0xa4, 0xd3, 0xab, 0xe4, 0x54, 0xca, 0xc9, 0x19, 0x5e, 0xed, + 0xa6, 0x81, 0x72, 0xb0, 0x07, 0x7c, 0x3a, 0xc3, 0x6c, 0x6c, 0x17, 0xa6, 0xa4, 0x55, 0x44, 0x7d, + 0x0b, 0xc6, 0xc5, 0x14, 0x87, 0xc6, 0xd3, 0x34, 0xa9, 0x88, 0x45, 0x50, 0x8c, 0x63, 0x9f, 0x13, + 0xd0, 0x12, 0xe1, 0x3c, 0x60, 0xfb, 0xc0, 0xf4, 0xda, 0x1e, 0x5d, 0x88, 0xf7, 0x3f, 0x13, 0x78, + 0x45, 0x89, 0x80, 0xa2, 0x6a, 0xf0, 0x62, 0xd0, 0x59, 0x8e, 0xb0, 0x08, 0x33, 0x5d, 0xd2, 0xc4, + 0x3e, 0xea, 0x93, 0x8e, 0x0c, 0xad, 0x1a, 0x6b, 0x7f, 0x4c, 0xc2, 0x18, 0x67, 0xa5, 0x27, 0x30, + 0xc6, 0x27, 0x42, 0xba, 0x90, 0x06, 0x51, 0xcd, 0xcc, 0xda, 0xab, 0x05, 0x11, 0x22, 0x07, 0x33, + 0xbe, 0xf8, 0xeb, 0xbf, 0xef, 0x2f, 0x2d, 0xd1, 0x45, 0x23, 0xb6, 0xbc, 0x7d, 0x2b, 0x3c, 0x74, + 0xbc, 0xd8, 0xc8, 0xce, 0xec, 0xc6, 0x93, 0xc4, 0xfb, 0x13, 0xda, 0x84, 0xcb, 0xfc, 0x86, 0x9a, + 0xeb, 0x2a, 0x08, 0x32, 0x93, 0xb3, 0x82, 0x20, 0x3b, 0xfa, 0xb2, 0xd7, 0x39, 0x81, 0x4e, 0xe7, + 0x8a, 0x08, 0xe8, 0x2f, 0x04, 0x26, 0xe5, 0x09, 0x88, 0x2e, 0xa9, 0xd4, 0x29, 0xe7, 0x3c, 0xed, + 0x76, 0x99, 0x50, 0xe4, 0xd9, 0xe6, 0x3c, 0x9b, 0xf4, 0x4e, 0x0e, 0x4f, 0xe6, 0xb7, 0x50, 0xca, + 0x1b, 0xe3, 0x09, 0xbe, 0xb1, 0x4e, 0xe8, 0x4f, 0x04, 0xae, 0xc9, 0xf7, 0xb7, 0xfc, 0x5a, 0x52, + 0xb9, 0x51, 0x96, 0x38, 0x77, 0x7c, 0x64, 0xef, 0x70, 0xe2, 0x75, 0xba, 0xda, 0x37, 0x31, 0xb7, + 0x55, 0x9e, 0x1f, 0xd4, 0xb6, 0x2a, 0xa7, 0x24, 0xb5, 0xad, 0xea, 0x51, 0xa6, 0xa7, 0xad, 0x99, + 0x1f, 0xa1, 0xf9, 0xb6, 0xca, 0xf7, 0xe7, 0xda, 0x5a, 0x96, 0x38, 0x77, 0xf8, 0xea, 0x69, 0x6b, + 0x3e, 0x31, 0x7d, 0x4a, 0xe0, 0x6a, 0xf6, 0x6d, 0x4b, 0x97, 0x0b, 0x9a, 0x30, 0x3b, 0x5b, 0x68, + 0x6f, 0x96, 0x0b, 0x46, 0xd4, 0xf7, 0x38, 0xea, 0xbb, 0x74, 0xb3, 0x47, 0x07, 0xb4, 0x7f, 0x9d, + 0xab, 0xed, 0xfd, 0x95, 0xc0, 0x54, 0x36, 0x47, 0xcb, 0xe0, 0xe5, 0x82, 0x66, 0x2c, 0x41, 0x5e, + 0x30, 0xba, 0xb0, 0x3b, 0x9c, 0x7c, 0x83, 0xae, 0x0f, 0x40, 0x4e, 0x7f, 0x24, 0x30, 0x99, 0x7a, + 0x02, 0xb7, 0x50, 0x6f, 0xaa, 0xb2, 0x77, 0xbf, 0x5f, 0xb4, 0xc5, 0x9e, 0x71, 0x08, 0xb8, 0xc1, + 0x01, 0x0d, 0xba, 0x92, 0x03, 0x98, 0x7a, 0xdc, 0xa7, 0xd1, 0xbe, 0x23, 0x30, 0x91, 0xbc, 0xcb, + 0x98, 0xaa, 0x96, 0xf2, 0xac, 0xa1, 0xbd, 0x56, 0x18, 0x83, 0x2c, 0x9b, 0x9c, 0xe5, 0x6d, 0xba, + 0x91, 0xc3, 0x82, 0x33, 0x80, 0x54, 0xdc, 0xf6, 0xe0, 0x74, 0x42, 0xbf, 0x26, 0x00, 0x78, 0x65, + 0xcb, 0x2a, 0xa6, 0xb2, 0xa0, 0x27, 0x56, 0xf7, 0x9c, 0xc2, 0x56, 0x39, 0xd6, 0x32, 0x5d, 0x2a, + 0x8d, 0x45, 0x03, 0x18, 0x17, 0x53, 0x01, 0xd5, 0xbb, 0x32, 0x48, 0x03, 0x87, 0x36, 0x9f, 0xbb, + 0x8f, 0xd9, 0xdf, 0xe0, 0xd9, 0xe7, 0xe9, 0x8d, 0xa2, 0x02, 0x45, 0x5b, 0x5b, 0xcf, 0x4e, 0x75, + 0xf2, 0xfc, 0x54, 0x27, 0xff, 0x9e, 0xea, 0xe4, 0xdb, 0x33, 0x7d, 0xe4, 0xf9, 0x99, 0x3e, 0xf2, + 0xf7, 0x99, 0x3e, 0xf2, 0xd1, 0x2d, 0xdb, 0x89, 0x0f, 0x9a, 0x7b, 0xd5, 0x86, 0x7f, 0x98, 0xbd, + 0xe2, 0xd3, 0xe4, 0x92, 0xf8, 0x71, 0x60, 0x45, 0x7b, 0xe3, 0xfc, 0x5f, 0x54, 0xeb, 0xff, 0x07, + 0x00, 0x00, 0xff, 0xff, 0x58, 0x7c, 0x3b, 0x07, 0xf6, 0x13, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1353,7 +1352,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Chain(ctx context.Context, in *QueryGetChainRequest, opts ...grpc.CallOption) (*QueryGetChainResponse, error) { out := new(QueryGetChainResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Query/Chain", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Query/Chain", in, out, opts...) if err != nil { return nil, err } @@ -1362,7 +1361,7 @@ func (c *queryClient) Chain(ctx context.Context, in *QueryGetChainRequest, opts func (c *queryClient) ChainAll(ctx context.Context, in *QueryAllChainRequest, opts ...grpc.CallOption) (*QueryAllChainResponse, error) { out := new(QueryAllChainResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Query/ChainAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Query/ChainAll", in, out, opts...) if err != nil { return nil, err } @@ -1371,7 +1370,7 @@ func (c *queryClient) ChainAll(ctx context.Context, in *QueryAllChainRequest, op func (c *queryClient) GenesisAccount(ctx context.Context, in *QueryGetGenesisAccountRequest, opts ...grpc.CallOption) (*QueryGetGenesisAccountResponse, error) { out := new(QueryGetGenesisAccountResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Query/GenesisAccount", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Query/GenesisAccount", in, out, opts...) if err != nil { return nil, err } @@ -1380,7 +1379,7 @@ func (c *queryClient) GenesisAccount(ctx context.Context, in *QueryGetGenesisAcc func (c *queryClient) GenesisAccountAll(ctx context.Context, in *QueryAllGenesisAccountRequest, opts ...grpc.CallOption) (*QueryAllGenesisAccountResponse, error) { out := new(QueryAllGenesisAccountResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Query/GenesisAccountAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Query/GenesisAccountAll", in, out, opts...) if err != nil { return nil, err } @@ -1389,7 +1388,7 @@ func (c *queryClient) GenesisAccountAll(ctx context.Context, in *QueryAllGenesis func (c *queryClient) VestingAccount(ctx context.Context, in *QueryGetVestingAccountRequest, opts ...grpc.CallOption) (*QueryGetVestingAccountResponse, error) { out := new(QueryGetVestingAccountResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Query/VestingAccount", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Query/VestingAccount", in, out, opts...) if err != nil { return nil, err } @@ -1398,7 +1397,7 @@ func (c *queryClient) VestingAccount(ctx context.Context, in *QueryGetVestingAcc func (c *queryClient) VestingAccountAll(ctx context.Context, in *QueryAllVestingAccountRequest, opts ...grpc.CallOption) (*QueryAllVestingAccountResponse, error) { out := new(QueryAllVestingAccountResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Query/VestingAccountAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Query/VestingAccountAll", in, out, opts...) if err != nil { return nil, err } @@ -1407,7 +1406,7 @@ func (c *queryClient) VestingAccountAll(ctx context.Context, in *QueryAllVesting func (c *queryClient) GenesisValidator(ctx context.Context, in *QueryGetGenesisValidatorRequest, opts ...grpc.CallOption) (*QueryGetGenesisValidatorResponse, error) { out := new(QueryGetGenesisValidatorResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Query/GenesisValidator", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Query/GenesisValidator", in, out, opts...) if err != nil { return nil, err } @@ -1416,7 +1415,7 @@ func (c *queryClient) GenesisValidator(ctx context.Context, in *QueryGetGenesisV func (c *queryClient) GenesisValidatorAll(ctx context.Context, in *QueryAllGenesisValidatorRequest, opts ...grpc.CallOption) (*QueryAllGenesisValidatorResponse, error) { out := new(QueryAllGenesisValidatorResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Query/GenesisValidatorAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Query/GenesisValidatorAll", in, out, opts...) if err != nil { return nil, err } @@ -1425,7 +1424,7 @@ func (c *queryClient) GenesisValidatorAll(ctx context.Context, in *QueryAllGenes func (c *queryClient) ParamChangeAll(ctx context.Context, in *QueryAllParamChangeRequest, opts ...grpc.CallOption) (*QueryAllParamChangeResponse, error) { out := new(QueryAllParamChangeResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Query/ParamChangeAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Query/ParamChangeAll", in, out, opts...) if err != nil { return nil, err } @@ -1434,7 +1433,7 @@ func (c *queryClient) ParamChangeAll(ctx context.Context, in *QueryAllParamChang func (c *queryClient) Request(ctx context.Context, in *QueryGetRequestRequest, opts ...grpc.CallOption) (*QueryGetRequestResponse, error) { out := new(QueryGetRequestResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Query/Request", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Query/Request", in, out, opts...) if err != nil { return nil, err } @@ -1443,7 +1442,7 @@ func (c *queryClient) Request(ctx context.Context, in *QueryGetRequestRequest, o func (c *queryClient) RequestAll(ctx context.Context, in *QueryAllRequestRequest, opts ...grpc.CallOption) (*QueryAllRequestResponse, error) { out := new(QueryAllRequestResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Query/RequestAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Query/RequestAll", in, out, opts...) if err != nil { return nil, err } @@ -1452,7 +1451,7 @@ func (c *queryClient) RequestAll(ctx context.Context, in *QueryAllRequestRequest func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -1542,7 +1541,7 @@ func _Query_Chain_Handler(srv interface{}, ctx context.Context, dec func(interfa } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Query/Chain", + FullMethod: "/spn.launch.Query/Chain", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Chain(ctx, req.(*QueryGetChainRequest)) @@ -1560,7 +1559,7 @@ func _Query_ChainAll_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Query/ChainAll", + FullMethod: "/spn.launch.Query/ChainAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ChainAll(ctx, req.(*QueryAllChainRequest)) @@ -1578,7 +1577,7 @@ func _Query_GenesisAccount_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Query/GenesisAccount", + FullMethod: "/spn.launch.Query/GenesisAccount", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).GenesisAccount(ctx, req.(*QueryGetGenesisAccountRequest)) @@ -1596,7 +1595,7 @@ func _Query_GenesisAccountAll_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Query/GenesisAccountAll", + FullMethod: "/spn.launch.Query/GenesisAccountAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).GenesisAccountAll(ctx, req.(*QueryAllGenesisAccountRequest)) @@ -1614,7 +1613,7 @@ func _Query_VestingAccount_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Query/VestingAccount", + FullMethod: "/spn.launch.Query/VestingAccount", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).VestingAccount(ctx, req.(*QueryGetVestingAccountRequest)) @@ -1632,7 +1631,7 @@ func _Query_VestingAccountAll_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Query/VestingAccountAll", + FullMethod: "/spn.launch.Query/VestingAccountAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).VestingAccountAll(ctx, req.(*QueryAllVestingAccountRequest)) @@ -1650,7 +1649,7 @@ func _Query_GenesisValidator_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Query/GenesisValidator", + FullMethod: "/spn.launch.Query/GenesisValidator", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).GenesisValidator(ctx, req.(*QueryGetGenesisValidatorRequest)) @@ -1668,7 +1667,7 @@ func _Query_GenesisValidatorAll_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Query/GenesisValidatorAll", + FullMethod: "/spn.launch.Query/GenesisValidatorAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).GenesisValidatorAll(ctx, req.(*QueryAllGenesisValidatorRequest)) @@ -1686,7 +1685,7 @@ func _Query_ParamChangeAll_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Query/ParamChangeAll", + FullMethod: "/spn.launch.Query/ParamChangeAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ParamChangeAll(ctx, req.(*QueryAllParamChangeRequest)) @@ -1704,7 +1703,7 @@ func _Query_Request_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Query/Request", + FullMethod: "/spn.launch.Query/Request", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Request(ctx, req.(*QueryGetRequestRequest)) @@ -1722,7 +1721,7 @@ func _Query_RequestAll_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Query/RequestAll", + FullMethod: "/spn.launch.Query/RequestAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).RequestAll(ctx, req.(*QueryAllRequestRequest)) @@ -1740,7 +1739,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Query/Params", + FullMethod: "/spn.launch.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -1749,7 +1748,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "tendermint.spn.launch.Query", + ServiceName: "spn.launch.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1802,7 +1801,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "launch/query.proto", + Metadata: "spn/launch/query.proto", } func (m *QueryGetChainRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/launch/types/query.pb.gw.go b/x/launch/types/query.pb.gw.go index bd28aa7e6..83336967c 100644 --- a/x/launch/types/query.pb.gw.go +++ b/x/launch/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: launch/query.proto +// source: spn/launch/query.proto /* Package types is a reverse proxy. @@ -1372,29 +1372,29 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Chain_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "launch", "chain", "launchID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Chain_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "launch", "chain", "launchID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_ChainAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "launch", "chain"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_ChainAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "launch", "chain"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_GenesisAccount_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"tendermint", "spn", "launch", "genesis_account", "launchID", "address"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_GenesisAccount_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"tendermint", "spn", "launch", "genesis_account", "launchID", "address"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_GenesisAccountAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "launch", "genesis_account", "launchID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_GenesisAccountAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "launch", "genesis_account", "launchID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_VestingAccount_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"tendermint", "spn", "launch", "vesting_account", "launchID", "address"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_VestingAccount_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"tendermint", "spn", "launch", "vesting_account", "launchID", "address"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_VestingAccountAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "launch", "vesting_account", "launchID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_VestingAccountAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "launch", "vesting_account", "launchID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_GenesisValidator_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"tendermint", "spn", "launch", "genesis_validator", "launchID", "address"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_GenesisValidator_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"tendermint", "spn", "launch", "genesis_validator", "launchID", "address"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_GenesisValidatorAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "launch", "genesis_validator", "launchID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_GenesisValidatorAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "launch", "genesis_validator", "launchID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_ParamChangeAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "launch", "paramChange", "launchID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_ParamChangeAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "launch", "paramChange", "launchID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Request_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"tendermint", "spn", "launch", "request", "launchID", "requestID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Request_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"tendermint", "spn", "launch", "request", "launchID", "requestID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RequestAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "launch", "request", "launchID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RequestAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "launch", "request", "launchID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "launch", "params"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "launch", "params"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/launch/types/request.pb.go b/x/launch/types/request.pb.go index 6c34c6dd1..51c79816c 100644 --- a/x/launch/types/request.pb.go +++ b/x/launch/types/request.pb.go @@ -1,13 +1,13 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: launch/request.proto +// source: spn/launch/request.proto package types import ( fmt "fmt" _ "github.com/cosmos/cosmos-proto" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -49,7 +49,7 @@ func (x Request_Status) String() string { } func (Request_Status) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_028e4b0ce31bf039, []int{0, 0} + return fileDescriptor_7845b3945cf8e950, []int{0, 0} } type Request struct { @@ -58,14 +58,14 @@ type Request struct { Creator string `protobuf:"bytes,3,opt,name=creator,proto3" json:"creator,omitempty"` CreatedAt int64 `protobuf:"varint,4,opt,name=createdAt,proto3" json:"createdAt,omitempty"` Content RequestContent `protobuf:"bytes,5,opt,name=content,proto3" json:"content"` - Status Request_Status `protobuf:"varint,6,opt,name=status,proto3,enum=tendermint.spn.launch.Request_Status" json:"status,omitempty"` + Status Request_Status `protobuf:"varint,6,opt,name=status,proto3,enum=spn.launch.Request_Status" json:"status,omitempty"` } func (m *Request) Reset() { *m = Request{} } func (m *Request) String() string { return proto.CompactTextString(m) } func (*Request) ProtoMessage() {} func (*Request) Descriptor() ([]byte, []int) { - return fileDescriptor_028e4b0ce31bf039, []int{0} + return fileDescriptor_7845b3945cf8e950, []int{0} } func (m *Request) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -151,7 +151,7 @@ func (m *RequestContent) Reset() { *m = RequestContent{} } func (m *RequestContent) String() string { return proto.CompactTextString(m) } func (*RequestContent) ProtoMessage() {} func (*RequestContent) Descriptor() ([]byte, []int) { - return fileDescriptor_028e4b0ce31bf039, []int{1} + return fileDescriptor_7845b3945cf8e950, []int{1} } func (m *RequestContent) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -281,7 +281,7 @@ func (m *AccountRemoval) Reset() { *m = AccountRemoval{} } func (m *AccountRemoval) String() string { return proto.CompactTextString(m) } func (*AccountRemoval) ProtoMessage() {} func (*AccountRemoval) Descriptor() ([]byte, []int) { - return fileDescriptor_028e4b0ce31bf039, []int{2} + return fileDescriptor_7845b3945cf8e950, []int{2} } func (m *AccountRemoval) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -325,7 +325,7 @@ func (m *ValidatorRemoval) Reset() { *m = ValidatorRemoval{} } func (m *ValidatorRemoval) String() string { return proto.CompactTextString(m) } func (*ValidatorRemoval) ProtoMessage() {} func (*ValidatorRemoval) Descriptor() ([]byte, []int) { - return fileDescriptor_028e4b0ce31bf039, []int{3} + return fileDescriptor_7845b3945cf8e950, []int{3} } func (m *ValidatorRemoval) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -372,7 +372,7 @@ func (m *ParamChange) Reset() { *m = ParamChange{} } func (m *ParamChange) String() string { return proto.CompactTextString(m) } func (*ParamChange) ProtoMessage() {} func (*ParamChange) Descriptor() ([]byte, []int) { - return fileDescriptor_028e4b0ce31bf039, []int{4} + return fileDescriptor_7845b3945cf8e950, []int{4} } func (m *ParamChange) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -430,56 +430,56 @@ func (m *ParamChange) GetValue() []byte { } func init() { - proto.RegisterEnum("tendermint.spn.launch.Request_Status", Request_Status_name, Request_Status_value) - proto.RegisterType((*Request)(nil), "tendermint.spn.launch.Request") - proto.RegisterType((*RequestContent)(nil), "tendermint.spn.launch.RequestContent") - proto.RegisterType((*AccountRemoval)(nil), "tendermint.spn.launch.AccountRemoval") - proto.RegisterType((*ValidatorRemoval)(nil), "tendermint.spn.launch.ValidatorRemoval") - proto.RegisterType((*ParamChange)(nil), "tendermint.spn.launch.ParamChange") -} - -func init() { proto.RegisterFile("launch/request.proto", fileDescriptor_028e4b0ce31bf039) } - -var fileDescriptor_028e4b0ce31bf039 = []byte{ - // 603 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0x4f, 0x6f, 0xd3, 0x3e, - 0x18, 0x4e, 0xba, 0xae, 0x5d, 0xdd, 0xa9, 0xaa, 0xac, 0xfe, 0x7e, 0x0a, 0xd3, 0x14, 0xaa, 0x48, - 0x88, 0x5e, 0x48, 0x45, 0xb9, 0x70, 0xe1, 0xd0, 0xae, 0x61, 0x1b, 0x42, 0x5b, 0xe5, 0x41, 0x0f, - 0x5c, 0x26, 0x2f, 0xb1, 0xb2, 0x48, 0x89, 0x5d, 0x62, 0xa7, 0x82, 0x3b, 0x1f, 0x80, 0x0f, 0xb3, - 0x0f, 0xb1, 0xe3, 0xc4, 0x89, 0x13, 0x42, 0xdb, 0x17, 0x41, 0xb1, 0x9d, 0x76, 0x09, 0xac, 0x70, - 0xcb, 0xeb, 0xf7, 0x79, 0x9e, 0x3c, 0xef, 0x1f, 0x1b, 0xf4, 0x62, 0x9c, 0x51, 0xff, 0x72, 0x98, - 0x92, 0x8f, 0x19, 0xe1, 0xc2, 0x5d, 0xa4, 0x4c, 0x30, 0xf8, 0x9f, 0x20, 0x34, 0x20, 0x69, 0x12, - 0x51, 0xe1, 0xf2, 0x05, 0x75, 0x15, 0x68, 0xaf, 0x17, 0xb2, 0x90, 0x49, 0xc4, 0x30, 0xff, 0x52, - 0xe0, 0xbd, 0x47, 0x3e, 0xe3, 0x09, 0xe3, 0xe7, 0x2a, 0xa1, 0x02, 0x9d, 0xda, 0xd7, 0xea, 0x21, - 0xa1, 0x84, 0x47, 0xfc, 0x1c, 0xfb, 0x3e, 0xcb, 0xa8, 0xa8, 0x64, 0x97, 0x84, 0x8b, 0x88, 0x86, - 0x95, 0xac, 0x5d, 0xe1, 0x2e, 0x71, 0x1c, 0x05, 0x58, 0xb0, 0x54, 0xe5, 0x9d, 0xab, 0x1a, 0x68, - 0x22, 0xe5, 0x1a, 0xee, 0x81, 0x1d, 0x85, 0x3e, 0x9e, 0x5a, 0x66, 0xdf, 0x1c, 0xd4, 0xd1, 0x2a, - 0x86, 0xfb, 0xa0, 0xa5, 0x8b, 0x3b, 0x9e, 0x5a, 0x35, 0x99, 0x5c, 0x1f, 0x40, 0x0b, 0x34, 0xfd, - 0x94, 0xe4, 0xb2, 0xd6, 0x56, 0xdf, 0x1c, 0xb4, 0x50, 0x11, 0xe6, 0x3c, 0xf9, 0x49, 0x82, 0xb1, - 0xb0, 0xea, 0x7d, 0x73, 0xb0, 0x85, 0xd6, 0x07, 0xd0, 0x03, 0x4d, 0x9f, 0x51, 0x41, 0xa8, 0xb0, - 0xb6, 0xfb, 0xe6, 0xa0, 0x3d, 0x7a, 0xe2, 0xfe, 0xb1, 0x67, 0xae, 0xb6, 0x78, 0xa0, 0xc0, 0x93, - 0xfa, 0xf5, 0x8f, 0xc7, 0x06, 0x2a, 0xb8, 0xf0, 0x15, 0x68, 0x70, 0x81, 0x45, 0xc6, 0xad, 0x46, - 0xdf, 0x1c, 0x74, 0xfe, 0xa6, 0xe2, 0x9e, 0x49, 0x30, 0xd2, 0x24, 0xe7, 0x39, 0x68, 0xa8, 0x13, - 0xd8, 0x06, 0xcd, 0x99, 0x77, 0x32, 0x3d, 0x3e, 0x39, 0xec, 0x1a, 0x70, 0x17, 0xec, 0x8c, 0x67, - 0x33, 0x74, 0x3a, 0xf7, 0xa6, 0x5d, 0x33, 0x8f, 0x90, 0xf7, 0xc6, 0x3b, 0x78, 0xe7, 0x4d, 0xbb, - 0x35, 0xe7, 0x4b, 0x1d, 0x74, 0xca, 0x9e, 0xe0, 0x29, 0xe8, 0xe8, 0x26, 0x8f, 0xd5, 0x04, 0x64, - 0x0f, 0x1f, 0x2e, 0xe9, 0xb0, 0x04, 0x3e, 0x32, 0x50, 0x85, 0x9e, 0x0b, 0xea, 0x99, 0x16, 0x82, - 0xb5, 0x8d, 0x82, 0xf3, 0x12, 0x38, 0x17, 0x2c, 0xd3, 0xe1, 0x7b, 0xd0, 0xd5, 0xbf, 0x98, 0x17, - 0x5b, 0x20, 0xc7, 0xd5, 0x1e, 0x3d, 0xdd, 0xec, 0x71, 0x05, 0x3f, 0x32, 0xd0, 0x6f, 0x12, 0xb9, - 0x4f, 0xbd, 0x73, 0x88, 0x24, 0x6c, 0x89, 0x63, 0x39, 0xe7, 0x87, 0x7d, 0x8e, 0x4b, 0xe0, 0xdc, - 0x67, 0x99, 0x9e, 0xfb, 0x5c, 0xad, 0x69, 0x21, 0xb9, 0xbd, 0xd1, 0xe7, 0xbc, 0x02, 0xcf, 0x7d, - 0x56, 0x25, 0xe0, 0x6b, 0xd0, 0x5e, 0xe0, 0x14, 0x27, 0x07, 0x97, 0x98, 0x86, 0x44, 0xae, 0x4a, - 0x7b, 0xe4, 0x3c, 0xa0, 0x38, 0x5b, 0x23, 0x8f, 0x0c, 0x74, 0x9f, 0x38, 0x69, 0xad, 0x96, 0xd6, - 0x99, 0x82, 0x4e, 0xb9, 0x1a, 0x38, 0x02, 0x4d, 0x1c, 0x04, 0x29, 0xe1, 0x5c, 0x8e, 0xbf, 0x35, - 0xb1, 0xbe, 0x5d, 0x3d, 0xeb, 0xe9, 0xeb, 0x3c, 0x56, 0x99, 0x33, 0x91, 0x46, 0x34, 0x44, 0x05, - 0xd0, 0x79, 0x0b, 0xba, 0xd5, 0x02, 0xe0, 0x4b, 0x00, 0x96, 0x38, 0x1e, 0xff, 0xa3, 0xd4, 0x3d, - 0xac, 0x93, 0x80, 0xf6, 0x3d, 0xf3, 0x1b, 0x2f, 0xf5, 0xff, 0xa0, 0x91, 0xb0, 0x20, 0x8b, 0x89, - 0xdc, 0xac, 0x16, 0xd2, 0x11, 0xec, 0x81, 0x6d, 0x59, 0xb0, 0xbe, 0xcc, 0x2a, 0xc8, 0x4f, 0x97, - 0x38, 0xce, 0x88, 0x1c, 0xef, 0x2e, 0x52, 0xc1, 0x64, 0x72, 0x7d, 0x6b, 0x9b, 0x37, 0xb7, 0xb6, - 0xf9, 0xf3, 0xd6, 0x36, 0xbf, 0xde, 0xd9, 0xc6, 0xcd, 0x9d, 0x6d, 0x7c, 0xbf, 0xb3, 0x8d, 0x0f, - 0x83, 0x30, 0x12, 0x97, 0xd9, 0x85, 0xeb, 0xb3, 0x64, 0xb8, 0x6e, 0xf2, 0x90, 0x2f, 0xe8, 0xf0, - 0xd3, 0x50, 0x3f, 0x4b, 0xe2, 0xf3, 0x82, 0xf0, 0x8b, 0x86, 0x7c, 0x8b, 0x5e, 0xfc, 0x0a, 0x00, - 0x00, 0xff, 0xff, 0xaf, 0xb0, 0xc9, 0x21, 0x47, 0x05, 0x00, 0x00, + proto.RegisterEnum("spn.launch.Request_Status", Request_Status_name, Request_Status_value) + proto.RegisterType((*Request)(nil), "spn.launch.Request") + proto.RegisterType((*RequestContent)(nil), "spn.launch.RequestContent") + proto.RegisterType((*AccountRemoval)(nil), "spn.launch.AccountRemoval") + proto.RegisterType((*ValidatorRemoval)(nil), "spn.launch.ValidatorRemoval") + proto.RegisterType((*ParamChange)(nil), "spn.launch.ParamChange") +} + +func init() { proto.RegisterFile("spn/launch/request.proto", fileDescriptor_7845b3945cf8e950) } + +var fileDescriptor_7845b3945cf8e950 = []byte{ + // 599 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x94, 0xcf, 0x6e, 0xd3, 0x40, + 0x10, 0xc6, 0xed, 0xb4, 0x4d, 0x9a, 0x4d, 0x15, 0x45, 0xab, 0x0a, 0x4c, 0x54, 0x85, 0xc8, 0x27, + 0x5f, 0x70, 0x44, 0xb8, 0x20, 0x38, 0x39, 0x75, 0xd4, 0x3f, 0x42, 0x25, 0xda, 0xa2, 0x1c, 0xb8, + 0x54, 0x5b, 0x7b, 0xe5, 0x5a, 0xb2, 0x77, 0x83, 0x77, 0x1d, 0xc1, 0x5b, 0xf0, 0x04, 0x3c, 0x05, + 0x4f, 0xc0, 0xa9, 0xc7, 0x8a, 0x13, 0x27, 0x84, 0xda, 0x17, 0x41, 0xbb, 0x6b, 0x27, 0xb1, 0x1b, + 0x21, 0x6e, 0x9e, 0x99, 0xdf, 0x7c, 0xfa, 0xbc, 0x33, 0xbb, 0xc0, 0xe2, 0x0b, 0x3a, 0x4a, 0x70, + 0x4e, 0x83, 0x9b, 0x51, 0x46, 0x3e, 0xe5, 0x84, 0x0b, 0x77, 0x91, 0x31, 0xc1, 0x20, 0xe0, 0x0b, + 0xea, 0xea, 0x4a, 0xff, 0x30, 0x62, 0x11, 0x53, 0xe9, 0x91, 0xfc, 0xd2, 0x44, 0xff, 0x59, 0xc0, + 0x78, 0xca, 0xf8, 0x95, 0x2e, 0xe8, 0xa0, 0x28, 0x0d, 0x37, 0x64, 0x23, 0x42, 0x09, 0x8f, 0xf9, + 0x15, 0x0e, 0x02, 0x96, 0x53, 0xb1, 0x85, 0x58, 0x12, 0x2e, 0x62, 0x1a, 0xd5, 0x08, 0x7b, 0x8b, + 0xc6, 0x12, 0x27, 0x71, 0x88, 0x05, 0xcb, 0x34, 0x63, 0x7f, 0x6b, 0x80, 0x16, 0xd2, 0xb6, 0x61, + 0x1f, 0xec, 0x6b, 0xfa, 0xcc, 0xb7, 0xcc, 0xa1, 0xe9, 0xec, 0xa2, 0x55, 0x0c, 0x8f, 0x40, 0xbb, + 0xf8, 0xbb, 0x33, 0xdf, 0x6a, 0xa8, 0xe2, 0x3a, 0x01, 0x2d, 0xd0, 0x0a, 0x32, 0x22, 0x65, 0xad, + 0x9d, 0xa1, 0xe9, 0xb4, 0x51, 0x19, 0xca, 0x3e, 0xf5, 0x49, 0x42, 0x4f, 0x58, 0xbb, 0x43, 0xd3, + 0xd9, 0x41, 0xeb, 0x04, 0x7c, 0x03, 0x5a, 0x01, 0xa3, 0x82, 0x50, 0x61, 0xed, 0x0d, 0x4d, 0xa7, + 0x33, 0xee, 0xbb, 0xeb, 0x43, 0x73, 0x0b, 0x5f, 0xc7, 0x9a, 0x98, 0xec, 0xde, 0xfe, 0x7e, 0x6e, + 0xa0, 0xb2, 0x01, 0x8e, 0x41, 0x93, 0x0b, 0x2c, 0x72, 0x6e, 0x35, 0x87, 0xa6, 0xd3, 0xdd, 0xda, + 0xea, 0x5e, 0x2a, 0x02, 0x15, 0xa4, 0xfd, 0x12, 0x34, 0x75, 0x06, 0x76, 0x40, 0x6b, 0x36, 0xbd, + 0xf0, 0xcf, 0x2e, 0x4e, 0x7a, 0x06, 0x3c, 0x00, 0xfb, 0xde, 0x6c, 0x86, 0xde, 0xcf, 0xa7, 0x7e, + 0xcf, 0x94, 0x11, 0x9a, 0x9e, 0x4f, 0x8f, 0x3f, 0x4c, 0xfd, 0x5e, 0xc3, 0xfe, 0xb1, 0x03, 0xba, + 0x55, 0x23, 0xd0, 0x07, 0xdd, 0xe2, 0x38, 0x3d, 0x7d, 0xde, 0xea, 0xb4, 0x6a, 0xe6, 0x4f, 0x2a, + 0xc4, 0xa9, 0x81, 0x6a, 0x3d, 0x52, 0xa5, 0x18, 0x5b, 0xa9, 0xd2, 0x78, 0xac, 0x32, 0xaf, 0x10, + 0x52, 0xa5, 0xda, 0x03, 0xcf, 0x41, 0xaf, 0xd0, 0x9d, 0x97, 0x93, 0x55, 0x23, 0xe8, 0x8c, 0x8f, + 0xb6, 0xb8, 0x59, 0x31, 0xa7, 0x06, 0x7a, 0xd4, 0x27, 0x1d, 0x15, 0x0b, 0x84, 0x48, 0xca, 0x96, + 0x38, 0x51, 0x03, 0xab, 0x39, 0xf2, 0x2a, 0x84, 0x74, 0x54, 0xed, 0x91, 0x8e, 0x56, 0x4b, 0x56, + 0xea, 0xec, 0x3d, 0x76, 0x34, 0xaf, 0x31, 0xd2, 0x51, 0xbd, 0x0f, 0xbe, 0x05, 0x9d, 0x05, 0xce, + 0x70, 0x7a, 0x7c, 0x83, 0x69, 0x44, 0xd4, 0xa0, 0x3b, 0xe3, 0xa7, 0x9b, 0x32, 0xb3, 0x75, 0xf9, + 0xd4, 0x40, 0x9b, 0xf4, 0xa4, 0xbd, 0x5a, 0x2e, 0xdb, 0x07, 0xdd, 0xaa, 0x6f, 0x38, 0x06, 0x2d, + 0x1c, 0x86, 0x19, 0xe1, 0x5c, 0x0d, 0xaf, 0x3d, 0xb1, 0x7e, 0x7e, 0x7f, 0x71, 0x58, 0x5c, 0x41, + 0x4f, 0x57, 0x2e, 0x45, 0x16, 0xd3, 0x08, 0x95, 0xa0, 0xfd, 0x0e, 0xf4, 0xea, 0xae, 0xe1, 0x6b, + 0x00, 0x96, 0x38, 0xf1, 0xfe, 0x53, 0x6a, 0x83, 0xb5, 0x53, 0xd0, 0xd9, 0x30, 0xff, 0xcf, 0xcb, + 0xf7, 0x04, 0x34, 0x53, 0x16, 0xe6, 0x09, 0x51, 0x2b, 0xd2, 0x46, 0x45, 0x04, 0x0f, 0xc1, 0x9e, + 0xfa, 0xe1, 0xe2, 0xd2, 0xe9, 0x40, 0x66, 0x97, 0x38, 0xc9, 0x89, 0x9a, 0xde, 0x01, 0xd2, 0xc1, + 0x64, 0x72, 0x7b, 0x3f, 0x30, 0xef, 0xee, 0x07, 0xe6, 0x9f, 0xfb, 0x81, 0xf9, 0xf5, 0x61, 0x60, + 0xdc, 0x3d, 0x0c, 0x8c, 0x5f, 0x0f, 0x03, 0xe3, 0xa3, 0x13, 0xc5, 0xe2, 0x26, 0xbf, 0x76, 0x03, + 0x96, 0x8e, 0x04, 0xa1, 0x21, 0xc9, 0xd2, 0x98, 0x8a, 0x91, 0x7c, 0x3c, 0x3e, 0x97, 0xcf, 0x87, + 0xf8, 0xb2, 0x20, 0xfc, 0xba, 0xa9, 0xde, 0x8c, 0x57, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x50, + 0x97, 0x9d, 0x49, 0xf4, 0x04, 0x00, 0x00, } func (m *Request) Marshal() (dAtA []byte, err error) { diff --git a/x/launch/types/tx.pb.go b/x/launch/types/tx.pb.go index e00304ace..392910be5 100644 --- a/x/launch/types/tx.pb.go +++ b/x/launch/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: launch/tx.proto +// source: spn/launch/tx.proto package types @@ -9,10 +9,10 @@ import ( _ "github.com/cosmos/cosmos-proto" _ "github.com/cosmos/cosmos-sdk/types" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -51,7 +51,7 @@ func (m *MsgCreateChain) Reset() { *m = MsgCreateChain{} } func (m *MsgCreateChain) String() string { return proto.CompactTextString(m) } func (*MsgCreateChain) ProtoMessage() {} func (*MsgCreateChain) Descriptor() ([]byte, []int) { - return fileDescriptor_6adab5ffa522f022, []int{0} + return fileDescriptor_ef1bc2a1950b8046, []int{0} } func (m *MsgCreateChain) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -151,7 +151,7 @@ func (m *MsgCreateChainResponse) Reset() { *m = MsgCreateChainResponse{} func (m *MsgCreateChainResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateChainResponse) ProtoMessage() {} func (*MsgCreateChainResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6adab5ffa522f022, []int{1} + return fileDescriptor_ef1bc2a1950b8046, []int{1} } func (m *MsgCreateChainResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -199,7 +199,7 @@ func (m *MsgEditChain) Reset() { *m = MsgEditChain{} } func (m *MsgEditChain) String() string { return proto.CompactTextString(m) } func (*MsgEditChain) ProtoMessage() {} func (*MsgEditChain) Descriptor() ([]byte, []int) { - return fileDescriptor_6adab5ffa522f022, []int{2} + return fileDescriptor_ef1bc2a1950b8046, []int{2} } func (m *MsgEditChain) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -270,7 +270,7 @@ func (m *MsgEditChainResponse) Reset() { *m = MsgEditChainResponse{} } func (m *MsgEditChainResponse) String() string { return proto.CompactTextString(m) } func (*MsgEditChainResponse) ProtoMessage() {} func (*MsgEditChainResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6adab5ffa522f022, []int{3} + return fileDescriptor_ef1bc2a1950b8046, []int{3} } func (m *MsgEditChainResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -312,7 +312,7 @@ func (m *MsgUpdateLaunchInformation) Reset() { *m = MsgUpdateLaunchInfor func (m *MsgUpdateLaunchInformation) String() string { return proto.CompactTextString(m) } func (*MsgUpdateLaunchInformation) ProtoMessage() {} func (*MsgUpdateLaunchInformation) Descriptor() ([]byte, []int) { - return fileDescriptor_6adab5ffa522f022, []int{4} + return fileDescriptor_ef1bc2a1950b8046, []int{4} } func (m *MsgUpdateLaunchInformation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -390,7 +390,7 @@ func (m *MsgUpdateLaunchInformationResponse) Reset() { *m = MsgUpdateLau func (m *MsgUpdateLaunchInformationResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateLaunchInformationResponse) ProtoMessage() {} func (*MsgUpdateLaunchInformationResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6adab5ffa522f022, []int{5} + return fileDescriptor_ef1bc2a1950b8046, []int{5} } func (m *MsgUpdateLaunchInformationResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -429,7 +429,7 @@ func (m *MsgSendRequest) Reset() { *m = MsgSendRequest{} } func (m *MsgSendRequest) String() string { return proto.CompactTextString(m) } func (*MsgSendRequest) ProtoMessage() {} func (*MsgSendRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6adab5ffa522f022, []int{6} + return fileDescriptor_ef1bc2a1950b8046, []int{6} } func (m *MsgSendRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -488,7 +488,7 @@ func (m *MsgSendRequestResponse) Reset() { *m = MsgSendRequestResponse{} func (m *MsgSendRequestResponse) String() string { return proto.CompactTextString(m) } func (*MsgSendRequestResponse) ProtoMessage() {} func (*MsgSendRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6adab5ffa522f022, []int{7} + return fileDescriptor_ef1bc2a1950b8046, []int{7} } func (m *MsgSendRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -542,7 +542,7 @@ func (m *MsgSettleRequest) Reset() { *m = MsgSettleRequest{} } func (m *MsgSettleRequest) String() string { return proto.CompactTextString(m) } func (*MsgSettleRequest) ProtoMessage() {} func (*MsgSettleRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6adab5ffa522f022, []int{8} + return fileDescriptor_ef1bc2a1950b8046, []int{8} } func (m *MsgSettleRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -606,7 +606,7 @@ func (m *MsgSettleRequestResponse) Reset() { *m = MsgSettleRequestRespon func (m *MsgSettleRequestResponse) String() string { return proto.CompactTextString(m) } func (*MsgSettleRequestResponse) ProtoMessage() {} func (*MsgSettleRequestResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6adab5ffa522f022, []int{9} + return fileDescriptor_ef1bc2a1950b8046, []int{9} } func (m *MsgSettleRequestResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -645,7 +645,7 @@ func (m *MsgTriggerLaunch) Reset() { *m = MsgTriggerLaunch{} } func (m *MsgTriggerLaunch) String() string { return proto.CompactTextString(m) } func (*MsgTriggerLaunch) ProtoMessage() {} func (*MsgTriggerLaunch) Descriptor() ([]byte, []int) { - return fileDescriptor_6adab5ffa522f022, []int{10} + return fileDescriptor_ef1bc2a1950b8046, []int{10} } func (m *MsgTriggerLaunch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -702,7 +702,7 @@ func (m *MsgTriggerLaunchResponse) Reset() { *m = MsgTriggerLaunchRespon func (m *MsgTriggerLaunchResponse) String() string { return proto.CompactTextString(m) } func (*MsgTriggerLaunchResponse) ProtoMessage() {} func (*MsgTriggerLaunchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6adab5ffa522f022, []int{11} + return fileDescriptor_ef1bc2a1950b8046, []int{11} } func (m *MsgTriggerLaunchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -740,7 +740,7 @@ func (m *MsgRevertLaunch) Reset() { *m = MsgRevertLaunch{} } func (m *MsgRevertLaunch) String() string { return proto.CompactTextString(m) } func (*MsgRevertLaunch) ProtoMessage() {} func (*MsgRevertLaunch) Descriptor() ([]byte, []int) { - return fileDescriptor_6adab5ffa522f022, []int{12} + return fileDescriptor_ef1bc2a1950b8046, []int{12} } func (m *MsgRevertLaunch) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -790,7 +790,7 @@ func (m *MsgRevertLaunchResponse) Reset() { *m = MsgRevertLaunchResponse func (m *MsgRevertLaunchResponse) String() string { return proto.CompactTextString(m) } func (*MsgRevertLaunchResponse) ProtoMessage() {} func (*MsgRevertLaunchResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6adab5ffa522f022, []int{13} + return fileDescriptor_ef1bc2a1950b8046, []int{13} } func (m *MsgRevertLaunchResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -820,86 +820,85 @@ func (m *MsgRevertLaunchResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgRevertLaunchResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgCreateChain)(nil), "tendermint.spn.launch.MsgCreateChain") - proto.RegisterType((*MsgCreateChainResponse)(nil), "tendermint.spn.launch.MsgCreateChainResponse") - proto.RegisterType((*MsgEditChain)(nil), "tendermint.spn.launch.MsgEditChain") - proto.RegisterType((*MsgEditChainResponse)(nil), "tendermint.spn.launch.MsgEditChainResponse") - proto.RegisterType((*MsgUpdateLaunchInformation)(nil), "tendermint.spn.launch.MsgUpdateLaunchInformation") - proto.RegisterType((*MsgUpdateLaunchInformationResponse)(nil), "tendermint.spn.launch.MsgUpdateLaunchInformationResponse") - proto.RegisterType((*MsgSendRequest)(nil), "tendermint.spn.launch.MsgSendRequest") - proto.RegisterType((*MsgSendRequestResponse)(nil), "tendermint.spn.launch.MsgSendRequestResponse") - proto.RegisterType((*MsgSettleRequest)(nil), "tendermint.spn.launch.MsgSettleRequest") - proto.RegisterType((*MsgSettleRequestResponse)(nil), "tendermint.spn.launch.MsgSettleRequestResponse") - proto.RegisterType((*MsgTriggerLaunch)(nil), "tendermint.spn.launch.MsgTriggerLaunch") - proto.RegisterType((*MsgTriggerLaunchResponse)(nil), "tendermint.spn.launch.MsgTriggerLaunchResponse") - proto.RegisterType((*MsgRevertLaunch)(nil), "tendermint.spn.launch.MsgRevertLaunch") - proto.RegisterType((*MsgRevertLaunchResponse)(nil), "tendermint.spn.launch.MsgRevertLaunchResponse") -} - -func init() { proto.RegisterFile("launch/tx.proto", fileDescriptor_6adab5ffa522f022) } - -var fileDescriptor_6adab5ffa522f022 = []byte{ - // 945 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x4f, 0x6f, 0xe3, 0x44, - 0x14, 0xaf, 0x9b, 0xb4, 0x4d, 0x5f, 0x4a, 0x17, 0x59, 0x65, 0xd7, 0xb5, 0x56, 0x49, 0x64, 0x60, - 0x37, 0x12, 0xaa, 0x4d, 0x0b, 0x17, 0xb8, 0x35, 0xed, 0x0a, 0x2a, 0x6d, 0xa4, 0x95, 0xdb, 0xbd, - 0x2c, 0x42, 0x68, 0x62, 0x4f, 0x9d, 0x81, 0x64, 0xc6, 0x78, 0x26, 0xd5, 0xf2, 0x09, 0x38, 0x21, - 0xf6, 0xc8, 0x89, 0x0f, 0xb0, 0x27, 0x0e, 0x7c, 0x88, 0x3d, 0xae, 0x38, 0x71, 0xda, 0x45, 0xed, - 0x85, 0x4f, 0xc0, 0x81, 0x13, 0xf2, 0xcc, 0xd8, 0xb1, 0xdd, 0xc6, 0x64, 0x85, 0x38, 0x25, 0xf3, - 0xe6, 0xf7, 0xde, 0xfb, 0xbd, 0xbf, 0x63, 0xb8, 0x35, 0x41, 0x33, 0x1a, 0x8c, 0x3d, 0xf1, 0xd4, - 0x8d, 0x13, 0x26, 0x98, 0xf9, 0x8e, 0xc0, 0x34, 0xc4, 0xc9, 0x94, 0x50, 0xe1, 0xf2, 0x98, 0xba, - 0xea, 0xde, 0xde, 0x89, 0x58, 0xc4, 0x24, 0xc2, 0x4b, 0xff, 0x29, 0xb0, 0xdd, 0x8d, 0x18, 0x8b, - 0x26, 0xd8, 0x93, 0xa7, 0xd1, 0xec, 0xdc, 0x13, 0x64, 0x8a, 0xb9, 0x40, 0xd3, 0x58, 0x03, 0x3a, - 0x01, 0xe3, 0x53, 0xc6, 0xbd, 0x11, 0xe2, 0xd8, 0xbb, 0xd8, 0x1f, 0x61, 0x81, 0xf6, 0xbd, 0x80, - 0x11, 0xaa, 0xef, 0x77, 0xd5, 0xfd, 0x57, 0xca, 0xb2, 0x3a, 0xe8, 0x2b, 0x53, 0x33, 0x0b, 0xc6, - 0x28, 0x87, 0xef, 0x68, 0x59, 0x82, 0xbf, 0x9d, 0x61, 0x2e, 0x94, 0xd4, 0xf9, 0xb3, 0x01, 0xdb, - 0x43, 0x1e, 0x1d, 0x25, 0x18, 0x09, 0x7c, 0x94, 0xc2, 0xcd, 0x1e, 0xb4, 0x03, 0xc6, 0x92, 0x90, - 0x50, 0x24, 0x58, 0x62, 0x19, 0x3d, 0xa3, 0xbf, 0xe9, 0x17, 0x45, 0xe6, 0x3d, 0xd8, 0x8e, 0x30, - 0xc5, 0x9c, 0x70, 0xa9, 0x71, 0x72, 0x6c, 0xad, 0x4a, 0x50, 0x45, 0x6a, 0xde, 0x85, 0x4d, 0xce, - 0x66, 0x49, 0x80, 0x1f, 0xfb, 0x0f, 0xad, 0x86, 0x84, 0xcc, 0x05, 0x66, 0x07, 0x40, 0x1d, 0x3e, - 0x47, 0x7c, 0x6c, 0x35, 0xe5, 0x75, 0x41, 0x62, 0x9e, 0xc2, 0x36, 0xa1, 0x44, 0x10, 0x34, 0xf9, - 0x4c, 0x99, 0xb5, 0xd6, 0x7a, 0x46, 0xbf, 0x7d, 0xf0, 0xbe, 0x7b, 0x63, 0x9a, 0xdd, 0x93, 0x12, - 0x78, 0xd0, 0x7c, 0xf1, 0xaa, 0xbb, 0xe2, 0x57, 0x4c, 0xa4, 0x4e, 0xc7, 0x88, 0x3f, 0x4a, 0xd8, - 0xd7, 0x38, 0x10, 0xd6, 0x7a, 0xcf, 0xe8, 0xb7, 0xfc, 0x82, 0x24, 0xa5, 0x1c, 0xab, 0xbf, 0x27, - 0xc7, 0xd6, 0x46, 0xcf, 0xe8, 0x37, 0xfd, 0xb9, 0xc0, 0xfc, 0xd9, 0x80, 0xed, 0xc3, 0x20, 0x60, - 0x33, 0x2a, 0x06, 0x68, 0x82, 0x68, 0x80, 0xad, 0x56, 0xaf, 0xd1, 0x6f, 0x1f, 0xec, 0xba, 0x3a, - 0xff, 0x69, 0xb1, 0x5c, 0x5d, 0x2c, 0xf7, 0x88, 0x11, 0x3a, 0xf8, 0x22, 0xe5, 0xf1, 0xf7, 0xab, - 0xee, 0xfd, 0x88, 0x88, 0xf1, 0x6c, 0xe4, 0x06, 0x6c, 0xaa, 0x8b, 0xa5, 0x7f, 0xf6, 0x78, 0xf8, - 0x8d, 0x27, 0xbe, 0x8b, 0x31, 0x97, 0x0a, 0xcf, 0x5f, 0x77, 0xfb, 0x4b, 0x42, 0xb9, 0x5f, 0x61, - 0x63, 0xda, 0xd0, 0x9a, 0x62, 0x81, 0x42, 0x24, 0x90, 0xb5, 0xd9, 0x33, 0xfa, 0x5b, 0x7e, 0x7e, - 0x76, 0x3e, 0x86, 0xdb, 0xe5, 0x4a, 0xfb, 0x98, 0xc7, 0x8c, 0x72, 0xa9, 0xa5, 0x72, 0x78, 0x72, - 0x2c, 0xcb, 0xdd, 0xf4, 0xf3, 0xb3, 0xf3, 0xdc, 0x80, 0xad, 0x21, 0x8f, 0x1e, 0x84, 0x44, 0x2c, - 0xdb, 0x1e, 0x45, 0x73, 0xab, 0x65, 0x73, 0xa6, 0x03, 0x5b, 0x1c, 0x8b, 0x47, 0x79, 0x8a, 0x1b, - 0xb2, 0x02, 0x25, 0x59, 0xb9, 0x06, 0xcd, 0x6a, 0x0d, 0x8a, 0x21, 0xae, 0x55, 0x42, 0xbc, 0x0d, - 0x3b, 0x45, 0xae, 0x59, 0x80, 0xce, 0x8f, 0xab, 0x60, 0x0f, 0x79, 0xf4, 0x38, 0x0e, 0x91, 0xc0, - 0x0f, 0x15, 0x17, 0x7a, 0xce, 0x92, 0x29, 0x12, 0x84, 0xfd, 0xd7, 0x90, 0xae, 0x4f, 0x43, 0xe3, - 0xdf, 0xa7, 0xa1, 0x59, 0x3f, 0x0d, 0x6b, 0xd7, 0xa6, 0x61, 0x78, 0x6d, 0x1a, 0xd6, 0xdf, 0x60, - 0x1a, 0xaa, 0x73, 0xe0, 0xbc, 0x07, 0xce, 0xe2, 0x84, 0xe4, 0x79, 0xfb, 0xc1, 0x90, 0xdb, 0xe1, - 0x14, 0xd3, 0xd0, 0x57, 0x6b, 0xc3, 0xb4, 0x60, 0x23, 0x48, 0x5b, 0x28, 0xcf, 0x53, 0x76, 0xac, - 0xcd, 0xd1, 0x03, 0xd8, 0x08, 0x18, 0x15, 0x98, 0x0a, 0x99, 0x9c, 0xc5, 0xb4, 0xb5, 0x9b, 0x23, - 0x05, 0xd6, 0x43, 0x9c, 0xe9, 0x3a, 0x4f, 0x64, 0x0b, 0x17, 0xe8, 0xe4, 0x2d, 0x7c, 0x17, 0x36, - 0xf5, 0x62, 0xcb, 0x7b, 0x78, 0x2e, 0x48, 0xbb, 0x0e, 0xcd, 0x04, 0x3b, 0x8c, 0xe3, 0x84, 0x5d, - 0xe0, 0x50, 0xd2, 0x6b, 0xf9, 0x25, 0x99, 0xf3, 0x93, 0x01, 0x6f, 0x4b, 0xe3, 0x42, 0x4c, 0x70, - 0x16, 0xed, 0x87, 0xb0, 0xce, 0x49, 0x44, 0xb1, 0x0e, 0x76, 0x60, 0xfd, 0xf6, 0xeb, 0xde, 0x8e, - 0x1e, 0xf5, 0xc3, 0x30, 0x4c, 0x30, 0xe7, 0xa7, 0x22, 0x21, 0x34, 0xf2, 0x35, 0xae, 0x36, 0x0b, - 0x25, 0x92, 0x8d, 0x2a, 0x49, 0x0b, 0x36, 0x90, 0x22, 0x23, 0xbb, 0xa3, 0xe5, 0x67, 0x47, 0xc7, - 0x06, 0xab, 0xca, 0x2c, 0x2f, 0xd1, 0x2f, 0x8a, 0xf6, 0x59, 0x42, 0xa2, 0x08, 0x27, 0xaa, 0x94, - 0xe6, 0xa7, 0x37, 0x34, 0x74, 0x0d, 0xf7, 0xa5, 0x5b, 0xfd, 0x18, 0x40, 0xfd, 0x3f, 0x23, 0x53, - 0xac, 0x2b, 0x69, 0xbb, 0xea, 0x21, 0x73, 0xb3, 0x87, 0xcc, 0x3d, 0xcb, 0x1e, 0xb2, 0x41, 0x2b, - 0x2d, 0xdf, 0xb3, 0xd7, 0x5d, 0xc3, 0x2f, 0xe8, 0xe9, 0x70, 0x4a, 0x8c, 0xf3, 0x70, 0x08, 0xdc, - 0x1a, 0xf2, 0xc8, 0xc7, 0x17, 0x38, 0x11, 0xff, 0x6f, 0x30, 0xce, 0x2e, 0xdc, 0xa9, 0xb8, 0xca, - 0x58, 0x1c, 0xfc, 0xb5, 0x06, 0x8d, 0x21, 0x8f, 0xcc, 0x00, 0xda, 0xc5, 0x97, 0x71, 0x51, 0xd3, - 0x96, 0xd7, 0xaa, 0xbd, 0xb7, 0x14, 0x2c, 0x6f, 0xdd, 0x2f, 0x61, 0x73, 0xbe, 0x5d, 0xdf, 0x5d, - 0xac, 0x9b, 0x83, 0xec, 0x0f, 0x96, 0x00, 0xe5, 0xe6, 0xbf, 0x37, 0xe0, 0xce, 0xa2, 0xc5, 0xb7, - 0xbf, 0xd8, 0xd0, 0x02, 0x15, 0xfb, 0x93, 0x37, 0x56, 0xc9, 0x99, 0x04, 0xd0, 0x2e, 0x6e, 0x92, - 0x9a, 0x6c, 0x16, 0x60, 0x75, 0xd9, 0xbc, 0x69, 0x11, 0x10, 0x78, 0xab, 0x3c, 0xc2, 0xf7, 0xeb, - 0xf4, 0x0b, 0x40, 0xdb, 0x5b, 0x12, 0x58, 0x74, 0x55, 0x1e, 0xbb, 0x1a, 0x57, 0x25, 0x60, 0x9d, - 0xab, 0x1b, 0xc7, 0xc2, 0x3c, 0x87, 0xad, 0xd2, 0x4c, 0xdc, 0x5b, 0x6c, 0xa0, 0x88, 0xb3, 0xdd, - 0xe5, 0x70, 0x99, 0x9f, 0xc1, 0xe0, 0xc5, 0x65, 0xc7, 0x78, 0x79, 0xd9, 0x31, 0xfe, 0xb8, 0xec, - 0x18, 0xcf, 0xae, 0x3a, 0x2b, 0x2f, 0xaf, 0x3a, 0x2b, 0xbf, 0x5f, 0x75, 0x56, 0x9e, 0x14, 0xbf, - 0x49, 0xe6, 0x36, 0x3d, 0x1e, 0x53, 0xef, 0xa9, 0x97, 0x7d, 0x08, 0xa7, 0x5f, 0x26, 0xa3, 0x75, - 0xb9, 0x08, 0x3e, 0xfa, 0x27, 0x00, 0x00, 0xff, 0xff, 0x29, 0x60, 0xb3, 0xc3, 0x1f, 0x0b, 0x00, - 0x00, + proto.RegisterType((*MsgCreateChain)(nil), "spn.launch.MsgCreateChain") + proto.RegisterType((*MsgCreateChainResponse)(nil), "spn.launch.MsgCreateChainResponse") + proto.RegisterType((*MsgEditChain)(nil), "spn.launch.MsgEditChain") + proto.RegisterType((*MsgEditChainResponse)(nil), "spn.launch.MsgEditChainResponse") + proto.RegisterType((*MsgUpdateLaunchInformation)(nil), "spn.launch.MsgUpdateLaunchInformation") + proto.RegisterType((*MsgUpdateLaunchInformationResponse)(nil), "spn.launch.MsgUpdateLaunchInformationResponse") + proto.RegisterType((*MsgSendRequest)(nil), "spn.launch.MsgSendRequest") + proto.RegisterType((*MsgSendRequestResponse)(nil), "spn.launch.MsgSendRequestResponse") + proto.RegisterType((*MsgSettleRequest)(nil), "spn.launch.MsgSettleRequest") + proto.RegisterType((*MsgSettleRequestResponse)(nil), "spn.launch.MsgSettleRequestResponse") + proto.RegisterType((*MsgTriggerLaunch)(nil), "spn.launch.MsgTriggerLaunch") + proto.RegisterType((*MsgTriggerLaunchResponse)(nil), "spn.launch.MsgTriggerLaunchResponse") + proto.RegisterType((*MsgRevertLaunch)(nil), "spn.launch.MsgRevertLaunch") + proto.RegisterType((*MsgRevertLaunchResponse)(nil), "spn.launch.MsgRevertLaunchResponse") +} + +func init() { proto.RegisterFile("spn/launch/tx.proto", fileDescriptor_ef1bc2a1950b8046) } + +var fileDescriptor_ef1bc2a1950b8046 = []byte{ + // 932 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x3f, 0x6f, 0xdb, 0x46, + 0x14, 0x37, 0x2d, 0xd9, 0x96, 0x9e, 0x5c, 0xb7, 0x60, 0x0d, 0x87, 0x66, 0x0d, 0x49, 0x60, 0x83, + 0x54, 0x4b, 0xc8, 0xc6, 0xed, 0x94, 0xcd, 0xb2, 0x8b, 0xc4, 0x40, 0x04, 0x18, 0xb4, 0xb3, 0xa4, + 0x43, 0x71, 0x22, 0x2f, 0xd4, 0xb5, 0xd2, 0x1d, 0xc3, 0x3b, 0x19, 0xe9, 0x5a, 0xf4, 0x03, 0x64, + 0xec, 0xd4, 0x0f, 0x90, 0xa9, 0x43, 0x3f, 0x44, 0xc6, 0xa0, 0x53, 0x81, 0xa2, 0x49, 0x61, 0x7f, + 0x8b, 0x4e, 0x05, 0xef, 0x48, 0xea, 0x48, 0x59, 0xb2, 0x80, 0x22, 0x93, 0xf8, 0xfe, 0xde, 0xef, + 0xbd, 0xf7, 0x7b, 0x77, 0x82, 0x4f, 0x79, 0x4c, 0xbd, 0x31, 0x9a, 0xd2, 0x60, 0xe4, 0x89, 0x97, + 0x6e, 0x9c, 0x30, 0xc1, 0x4c, 0xe0, 0x31, 0x75, 0x95, 0xd2, 0xde, 0x8d, 0x58, 0xc4, 0xa4, 0xda, + 0x4b, 0xbf, 0x94, 0x87, 0xdd, 0x89, 0x18, 0x8b, 0xc6, 0xd8, 0x93, 0xd2, 0x70, 0xfa, 0xdc, 0x13, + 0x64, 0x82, 0xb9, 0x40, 0x93, 0x38, 0x73, 0x68, 0x07, 0x8c, 0x4f, 0x18, 0xf7, 0x86, 0x88, 0x63, + 0xef, 0xf2, 0xc1, 0x10, 0x0b, 0xf4, 0xc0, 0x0b, 0x18, 0xa1, 0x99, 0x7d, 0x5f, 0xd9, 0xbf, 0x53, + 0x99, 0x95, 0x90, 0x99, 0xf6, 0x34, 0x48, 0xc1, 0x08, 0x15, 0x21, 0x96, 0xa6, 0x4f, 0xf0, 0x8b, + 0x29, 0xe6, 0x42, 0x59, 0x9c, 0xbf, 0x6b, 0xb0, 0x33, 0xe0, 0xd1, 0x71, 0x82, 0x91, 0xc0, 0xc7, + 0x69, 0x88, 0xd9, 0x85, 0x56, 0xc0, 0x58, 0x12, 0x12, 0x8a, 0x04, 0x4b, 0x2c, 0xa3, 0x6b, 0xf4, + 0x9a, 0xbe, 0xae, 0x32, 0xef, 0xc1, 0x4e, 0x84, 0x29, 0xe6, 0x84, 0xcb, 0x88, 0xd3, 0x13, 0x6b, + 0x5d, 0x3a, 0x55, 0xb4, 0xe6, 0x01, 0x34, 0x39, 0x9b, 0x26, 0x01, 0x7e, 0xea, 0x3f, 0xb1, 0x6a, + 0xd2, 0x65, 0xa6, 0x30, 0xdb, 0x00, 0x4a, 0x78, 0x8c, 0xf8, 0xc8, 0xaa, 0x4b, 0xb3, 0xa6, 0x31, + 0x1f, 0xc3, 0x0e, 0xa1, 0x44, 0x10, 0x34, 0x7e, 0xa4, 0xd2, 0x5a, 0x1b, 0x5d, 0xa3, 0xd7, 0x3a, + 0xb4, 0xdd, 0x59, 0x8f, 0xdd, 0xd3, 0x92, 0x47, 0xbf, 0xfe, 0xe6, 0x5d, 0x67, 0xcd, 0xaf, 0xc4, + 0xa5, 0x27, 0x8d, 0x10, 0x3f, 0x4b, 0xd8, 0xf7, 0x38, 0x10, 0xd6, 0x66, 0xd7, 0xe8, 0x35, 0x7c, + 0x4d, 0x93, 0xe2, 0x8c, 0xd5, 0xe7, 0xe9, 0x89, 0xb5, 0xd5, 0x35, 0x7a, 0x75, 0x7f, 0xa6, 0x30, + 0x7f, 0x35, 0x60, 0xe7, 0x28, 0x08, 0xd8, 0x94, 0x8a, 0x3e, 0x1a, 0x23, 0x1a, 0x60, 0xab, 0xd1, + 0xad, 0xf5, 0x5a, 0x87, 0xfb, 0x6e, 0xd6, 0xfc, 0x74, 0x52, 0x6e, 0x36, 0x29, 0xf7, 0x98, 0x11, + 0xda, 0xff, 0x36, 0xc5, 0xf1, 0xef, 0xbb, 0xce, 0x17, 0x11, 0x11, 0xa3, 0xe9, 0xd0, 0x0d, 0xd8, + 0x24, 0x9b, 0x54, 0xf6, 0x73, 0x9f, 0x87, 0x3f, 0x78, 0xe2, 0xc7, 0x18, 0x73, 0x19, 0xf0, 0xfa, + 0x7d, 0xa7, 0xb7, 0xa2, 0x2b, 0xf7, 0x2b, 0x68, 0x4c, 0x1b, 0x1a, 0x13, 0x2c, 0x50, 0x88, 0x04, + 0xb2, 0x9a, 0x5d, 0xa3, 0xb7, 0xed, 0x17, 0xb2, 0xf3, 0x35, 0xec, 0x95, 0xc7, 0xeb, 0x63, 0x1e, + 0x33, 0xca, 0x65, 0x94, 0xea, 0xe1, 0xe9, 0x89, 0x9c, 0x71, 0xdd, 0x2f, 0x64, 0xe7, 0xb5, 0x01, + 0xdb, 0x03, 0x1e, 0x7d, 0x13, 0x12, 0xb1, 0x2a, 0x27, 0xf4, 0x74, 0xeb, 0xe5, 0x74, 0xa6, 0x03, + 0xdb, 0x1c, 0x8b, 0xb3, 0xa2, 0xc5, 0x35, 0x39, 0x81, 0x92, 0xae, 0x3c, 0x83, 0x7a, 0x75, 0x06, + 0x7a, 0x89, 0x1b, 0x95, 0x12, 0xf7, 0x60, 0x57, 0xc7, 0x9a, 0x17, 0xe8, 0xfc, 0xbc, 0x0e, 0xf6, + 0x80, 0x47, 0x4f, 0xe3, 0x10, 0x09, 0xfc, 0x44, 0x61, 0xa1, 0xcf, 0x59, 0x32, 0x41, 0x82, 0xb0, + 0xff, 0x5b, 0xd2, 0xfc, 0x0a, 0xd4, 0x6e, 0x5f, 0x81, 0xfa, 0xf2, 0x15, 0xd8, 0x98, 0x5b, 0x81, + 0xfe, 0xdc, 0x0a, 0x6c, 0xde, 0xb6, 0x02, 0x55, 0xf2, 0x3b, 0x77, 0xc1, 0x59, 0xdc, 0x85, 0xa2, + 0x59, 0x3f, 0x19, 0xf2, 0x1e, 0x38, 0xc7, 0x34, 0xf4, 0xd5, 0x05, 0x61, 0x5a, 0xb0, 0x15, 0xa4, + 0xbc, 0x29, 0x9a, 0x93, 0x8b, 0x4b, 0x1b, 0xf3, 0x10, 0xb6, 0x02, 0x46, 0x05, 0xa6, 0x42, 0x76, + 0xa4, 0x82, 0x35, 0xcb, 0x7d, 0xac, 0x3c, 0xb2, 0x75, 0xcd, 0x03, 0x9c, 0x67, 0x92, 0xac, 0x1a, + 0x86, 0x82, 0xac, 0x07, 0xd0, 0xcc, 0xee, 0xad, 0x82, 0xad, 0x33, 0x45, 0xca, 0x2f, 0x34, 0x15, + 0xec, 0x28, 0x8e, 0x13, 0x76, 0x89, 0x43, 0x89, 0xa9, 0xe1, 0x97, 0x74, 0xce, 0x2f, 0x06, 0x7c, + 0x22, 0x93, 0x0b, 0x31, 0xc6, 0x79, 0x89, 0x5f, 0xc2, 0x26, 0x27, 0x11, 0xc5, 0x59, 0x85, 0x7d, + 0xeb, 0x8f, 0xdf, 0xef, 0xef, 0x66, 0x4b, 0x7d, 0x14, 0x86, 0x09, 0xe6, 0xfc, 0x5c, 0x24, 0x84, + 0x46, 0x7e, 0xe6, 0xb7, 0xb4, 0xf4, 0x12, 0xc8, 0x5a, 0x15, 0xa4, 0x05, 0x5b, 0x48, 0x81, 0x91, + 0x3c, 0x68, 0xf8, 0xb9, 0xe8, 0xd8, 0x60, 0x55, 0x91, 0x15, 0x73, 0xf9, 0x4d, 0xc1, 0xbe, 0x48, + 0x48, 0x14, 0xe1, 0x44, 0xcd, 0xcf, 0x7c, 0x78, 0x03, 0x75, 0x97, 0x60, 0x5f, 0x99, 0xd4, 0x27, + 0x00, 0xea, 0xfb, 0x82, 0x4c, 0x70, 0x31, 0x3e, 0xf5, 0x5e, 0xb9, 0xf9, 0x7b, 0xe5, 0x5e, 0xe4, + 0xef, 0x55, 0xbf, 0x91, 0x8e, 0xef, 0xd5, 0xfb, 0x8e, 0xe1, 0x6b, 0x71, 0x59, 0x39, 0x25, 0xc4, + 0x45, 0x39, 0x04, 0x3e, 0x1e, 0xf0, 0xc8, 0xc7, 0x97, 0x38, 0x11, 0x1f, 0xb6, 0x18, 0x67, 0x1f, + 0xee, 0x54, 0x8e, 0xca, 0x51, 0x1c, 0xfe, 0x55, 0x87, 0xda, 0x80, 0x47, 0xe6, 0x00, 0x5a, 0xfa, + 0xc3, 0x57, 0x62, 0x6a, 0xf9, 0xd6, 0xb4, 0x9d, 0xc5, 0xb6, 0x82, 0xa4, 0x8f, 0xa0, 0x39, 0xbb, + 0x31, 0xad, 0x4a, 0x40, 0x61, 0xb1, 0xbb, 0x8b, 0x2c, 0x45, 0xa2, 0x17, 0x70, 0x67, 0xd1, 0xad, + 0x75, 0xaf, 0x12, 0xbc, 0xc0, 0xcf, 0x76, 0x57, 0xf3, 0x2b, 0x8e, 0x1c, 0x40, 0x4b, 0xdf, 0xfd, + 0x6a, 0x2b, 0x34, 0xdb, 0x5c, 0x2b, 0x6e, 0xda, 0xd7, 0x73, 0xf8, 0xa8, 0xbc, 0x69, 0x07, 0x73, + 0x41, 0x9a, 0xd5, 0xbe, 0xbb, 0xcc, 0xaa, 0x27, 0x2d, 0xef, 0x41, 0x35, 0x69, 0xc9, 0x3a, 0x97, + 0xf4, 0x46, 0x46, 0x9a, 0x67, 0xb0, 0x5d, 0xa2, 0xe3, 0x67, 0x95, 0x28, 0xdd, 0x68, 0x7f, 0xbe, + 0xc4, 0x98, 0x67, 0xec, 0xf7, 0xdf, 0x5c, 0xb5, 0x8d, 0xb7, 0x57, 0x6d, 0xe3, 0x9f, 0xab, 0xb6, + 0xf1, 0xea, 0xba, 0xbd, 0xf6, 0xf6, 0xba, 0xbd, 0xf6, 0xe7, 0x75, 0x7b, 0xed, 0x99, 0xfe, 0xc4, + 0x0b, 0x4c, 0x43, 0x9c, 0x4c, 0x08, 0x15, 0x5e, 0xfa, 0xe7, 0xec, 0x65, 0xf1, 0x4f, 0x32, 0x7d, + 0xe8, 0x87, 0x9b, 0x72, 0xdb, 0xbe, 0xfa, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x21, 0x24, 0x5c, 0x78, + 0x64, 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -933,7 +932,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) CreateChain(ctx context.Context, in *MsgCreateChain, opts ...grpc.CallOption) (*MsgCreateChainResponse, error) { out := new(MsgCreateChainResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Msg/CreateChain", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Msg/CreateChain", in, out, opts...) if err != nil { return nil, err } @@ -942,7 +941,7 @@ func (c *msgClient) CreateChain(ctx context.Context, in *MsgCreateChain, opts .. func (c *msgClient) EditChain(ctx context.Context, in *MsgEditChain, opts ...grpc.CallOption) (*MsgEditChainResponse, error) { out := new(MsgEditChainResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Msg/EditChain", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Msg/EditChain", in, out, opts...) if err != nil { return nil, err } @@ -951,7 +950,7 @@ func (c *msgClient) EditChain(ctx context.Context, in *MsgEditChain, opts ...grp func (c *msgClient) UpdateLaunchInformation(ctx context.Context, in *MsgUpdateLaunchInformation, opts ...grpc.CallOption) (*MsgUpdateLaunchInformationResponse, error) { out := new(MsgUpdateLaunchInformationResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Msg/UpdateLaunchInformation", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Msg/UpdateLaunchInformation", in, out, opts...) if err != nil { return nil, err } @@ -960,7 +959,7 @@ func (c *msgClient) UpdateLaunchInformation(ctx context.Context, in *MsgUpdateLa func (c *msgClient) SendRequest(ctx context.Context, in *MsgSendRequest, opts ...grpc.CallOption) (*MsgSendRequestResponse, error) { out := new(MsgSendRequestResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Msg/SendRequest", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Msg/SendRequest", in, out, opts...) if err != nil { return nil, err } @@ -969,7 +968,7 @@ func (c *msgClient) SendRequest(ctx context.Context, in *MsgSendRequest, opts .. func (c *msgClient) SettleRequest(ctx context.Context, in *MsgSettleRequest, opts ...grpc.CallOption) (*MsgSettleRequestResponse, error) { out := new(MsgSettleRequestResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Msg/SettleRequest", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Msg/SettleRequest", in, out, opts...) if err != nil { return nil, err } @@ -978,7 +977,7 @@ func (c *msgClient) SettleRequest(ctx context.Context, in *MsgSettleRequest, opt func (c *msgClient) TriggerLaunch(ctx context.Context, in *MsgTriggerLaunch, opts ...grpc.CallOption) (*MsgTriggerLaunchResponse, error) { out := new(MsgTriggerLaunchResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Msg/TriggerLaunch", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Msg/TriggerLaunch", in, out, opts...) if err != nil { return nil, err } @@ -987,7 +986,7 @@ func (c *msgClient) TriggerLaunch(ctx context.Context, in *MsgTriggerLaunch, opt func (c *msgClient) RevertLaunch(ctx context.Context, in *MsgRevertLaunch, opts ...grpc.CallOption) (*MsgRevertLaunchResponse, error) { out := new(MsgRevertLaunchResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.launch.Msg/RevertLaunch", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.launch.Msg/RevertLaunch", in, out, opts...) if err != nil { return nil, err } @@ -1045,7 +1044,7 @@ func _Msg_CreateChain_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Msg/CreateChain", + FullMethod: "/spn.launch.Msg/CreateChain", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).CreateChain(ctx, req.(*MsgCreateChain)) @@ -1063,7 +1062,7 @@ func _Msg_EditChain_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Msg/EditChain", + FullMethod: "/spn.launch.Msg/EditChain", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).EditChain(ctx, req.(*MsgEditChain)) @@ -1081,7 +1080,7 @@ func _Msg_UpdateLaunchInformation_Handler(srv interface{}, ctx context.Context, } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Msg/UpdateLaunchInformation", + FullMethod: "/spn.launch.Msg/UpdateLaunchInformation", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateLaunchInformation(ctx, req.(*MsgUpdateLaunchInformation)) @@ -1099,7 +1098,7 @@ func _Msg_SendRequest_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Msg/SendRequest", + FullMethod: "/spn.launch.Msg/SendRequest", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).SendRequest(ctx, req.(*MsgSendRequest)) @@ -1117,7 +1116,7 @@ func _Msg_SettleRequest_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Msg/SettleRequest", + FullMethod: "/spn.launch.Msg/SettleRequest", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).SettleRequest(ctx, req.(*MsgSettleRequest)) @@ -1135,7 +1134,7 @@ func _Msg_TriggerLaunch_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Msg/TriggerLaunch", + FullMethod: "/spn.launch.Msg/TriggerLaunch", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).TriggerLaunch(ctx, req.(*MsgTriggerLaunch)) @@ -1153,7 +1152,7 @@ func _Msg_RevertLaunch_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.launch.Msg/RevertLaunch", + FullMethod: "/spn.launch.Msg/RevertLaunch", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).RevertLaunch(ctx, req.(*MsgRevertLaunch)) @@ -1162,7 +1161,7 @@ func _Msg_RevertLaunch_Handler(srv interface{}, ctx context.Context, dec func(in } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "tendermint.spn.launch.Msg", + ServiceName: "spn.launch.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1195,7 +1194,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "launch/tx.proto", + Metadata: "spn/launch/tx.proto", } func (m *MsgCreateChain) Marshal() (dAtA []byte, err error) { @@ -1670,7 +1669,7 @@ func (m *MsgTriggerLaunch) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - n4, err4 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.LaunchTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.LaunchTime):]) + n4, err4 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.LaunchTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.LaunchTime):]) if err4 != nil { return 0, err4 } @@ -1993,7 +1992,7 @@ func (m *MsgTriggerLaunch) Size() (n int) { if m.LaunchID != 0 { n += 1 + sovTx(uint64(m.LaunchID)) } - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.LaunchTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.LaunchTime) n += 1 + l + sovTx(uint64(l)) return n } @@ -3454,7 +3453,7 @@ func (m *MsgTriggerLaunch) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.LaunchTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.LaunchTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/launch/types/vesting_account.pb.go b/x/launch/types/vesting_account.pb.go index c0d1d2ed6..0302999f9 100644 --- a/x/launch/types/vesting_account.pb.go +++ b/x/launch/types/vesting_account.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: launch/vesting_account.proto +// source: spn/launch/vesting_account.proto package types @@ -8,9 +8,9 @@ import ( _ "github.com/cosmos/cosmos-proto" _ "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" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" @@ -40,7 +40,7 @@ func (m *VestingAccount) Reset() { *m = VestingAccount{} } func (m *VestingAccount) String() string { return proto.CompactTextString(m) } func (*VestingAccount) ProtoMessage() {} func (*VestingAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_afe88fc74ba91b11, []int{0} + return fileDescriptor_db19ff708781896c, []int{0} } func (m *VestingAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -100,7 +100,7 @@ func (m *VestingOptions) Reset() { *m = VestingOptions{} } func (m *VestingOptions) String() string { return proto.CompactTextString(m) } func (*VestingOptions) ProtoMessage() {} func (*VestingOptions) Descriptor() ([]byte, []int) { - return fileDescriptor_afe88fc74ba91b11, []int{1} + return fileDescriptor_db19ff708781896c, []int{1} } func (m *VestingOptions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -175,7 +175,7 @@ func (m *DelayedVesting) Reset() { *m = DelayedVesting{} } func (m *DelayedVesting) String() string { return proto.CompactTextString(m) } func (*DelayedVesting) ProtoMessage() {} func (*DelayedVesting) Descriptor() ([]byte, []int) { - return fileDescriptor_afe88fc74ba91b11, []int{2} + return fileDescriptor_db19ff708781896c, []int{2} } func (m *DelayedVesting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -226,45 +226,44 @@ func (m *DelayedVesting) GetEndTime() time.Time { } func init() { - proto.RegisterType((*VestingAccount)(nil), "tendermint.spn.launch.VestingAccount") - proto.RegisterType((*VestingOptions)(nil), "tendermint.spn.launch.VestingOptions") - proto.RegisterType((*DelayedVesting)(nil), "tendermint.spn.launch.DelayedVesting") -} - -func init() { proto.RegisterFile("launch/vesting_account.proto", fileDescriptor_afe88fc74ba91b11) } - -var fileDescriptor_afe88fc74ba91b11 = []byte{ - // 466 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x93, 0xb1, 0x6e, 0xd4, 0x30, - 0x18, 0xc7, 0xe3, 0x5e, 0xc5, 0xb5, 0x2e, 0xba, 0xc1, 0x2a, 0x52, 0x7a, 0x42, 0xc9, 0xa9, 0x12, - 0x22, 0x4b, 0x6d, 0xf5, 0xd8, 0x91, 0x6a, 0x3a, 0xc0, 0x54, 0x29, 0xad, 0x3a, 0xc0, 0x50, 0x39, - 0x89, 0x49, 0x2d, 0x12, 0x3b, 0x8a, 0x9d, 0x8a, 0x6e, 0x3c, 0xc2, 0xcd, 0x3c, 0x02, 0x33, 0xbc, - 0x43, 0xc7, 0x8a, 0x89, 0xa9, 0x45, 0x77, 0x6f, 0xc1, 0x84, 0x12, 0x3b, 0x85, 0x54, 0x20, 0xb1, - 0x31, 0x25, 0xce, 0xff, 0xff, 0xe5, 0xfb, 0xe5, 0xfb, 0x7f, 0x81, 0x8f, 0x0b, 0xd6, 0xc8, 0xf4, - 0x9c, 0x5c, 0x70, 0x6d, 0x84, 0xcc, 0xcf, 0x58, 0x9a, 0xaa, 0x46, 0x1a, 0x5c, 0xd5, 0xca, 0x28, - 0xf4, 0xc8, 0x70, 0x99, 0xf1, 0xba, 0x14, 0xd2, 0x60, 0x5d, 0x49, 0x6c, 0xcd, 0xd3, 0xed, 0x5c, - 0xe5, 0xaa, 0x73, 0x90, 0xf6, 0xce, 0x9a, 0xa7, 0x41, 0xaa, 0x74, 0xa9, 0x34, 0x49, 0x98, 0xe6, - 0xe4, 0x62, 0x3f, 0xe1, 0x86, 0xed, 0x93, 0x54, 0x09, 0xe9, 0xf4, 0x1d, 0xab, 0x9f, 0xd9, 0x42, - 0x7b, 0x70, 0x52, 0x98, 0x2b, 0x95, 0x17, 0x9c, 0x74, 0xa7, 0xa4, 0x79, 0x4b, 0x8c, 0x28, 0xb9, - 0x36, 0xac, 0xac, 0xac, 0x61, 0xf7, 0x0b, 0x80, 0x93, 0x53, 0x8b, 0x78, 0x60, 0x09, 0xd1, 0x14, - 0x6e, 0x58, 0x9c, 0x57, 0x87, 0x3e, 0x98, 0x81, 0x68, 0x3d, 0xbe, 0x3b, 0xa3, 0x39, 0x1c, 0xb3, - 0x2c, 0xab, 0xb9, 0xd6, 0xfe, 0xda, 0x0c, 0x44, 0x9b, 0xd4, 0xff, 0xfa, 0x79, 0x6f, 0xdb, 0xb5, - 0x3c, 0xb0, 0xca, 0xb1, 0xa9, 0x85, 0xcc, 0xe3, 0xde, 0x88, 0x8e, 0xe1, 0xc4, 0x0d, 0xe1, 0xa8, - 0x32, 0x42, 0x49, 0xed, 0x8f, 0x66, 0x20, 0xda, 0x9a, 0x3f, 0xc1, 0x7f, 0x1c, 0x02, 0x3e, 0x1d, - 0x98, 0xe9, 0xfa, 0xd5, 0x4d, 0xe8, 0xc5, 0xf7, 0x5e, 0xb1, 0x5b, 0xdc, 0x61, 0xbb, 0x27, 0xe8, - 0x08, 0x4e, 0x32, 0x5e, 0xb0, 0x4b, 0x9e, 0x39, 0xa1, 0x83, 0xff, 0x7b, 0x9b, 0xc3, 0x81, 0xf9, - 0xa5, 0x17, 0xdf, 0x2b, 0xa7, 0x9b, 0x70, 0xac, 0x5c, 0xb7, 0x0f, 0x23, 0x38, 0x19, 0xfa, 0xd1, - 0x47, 0x00, 0x1f, 0x1a, 0x65, 0x58, 0x41, 0x59, 0xc1, 0x64, 0xca, 0x7d, 0x30, 0x1b, 0x45, 0x5b, - 0xf3, 0x1d, 0xec, 0x86, 0xd1, 0x86, 0x85, 0x5d, 0x58, 0xf8, 0x85, 0x12, 0x92, 0xbe, 0x69, 0x3f, - 0xe4, 0xc7, 0x4d, 0xf8, 0x34, 0x17, 0xe6, 0xbc, 0x49, 0x70, 0xaa, 0x4a, 0x17, 0x96, 0xbb, 0xec, - 0xe9, 0xec, 0x1d, 0x31, 0x97, 0x15, 0xd7, 0x5d, 0xc1, 0xa7, 0xdb, 0x30, 0xfa, 0x47, 0xab, 0x8e, - 0x07, 0x2c, 0x68, 0x01, 0xe0, 0xd8, 0x0d, 0xcc, 0x5f, 0xfb, 0xaf, 0x5c, 0x3d, 0x06, 0x7a, 0x0e, - 0xc7, 0x5c, 0x66, 0x27, 0xa2, 0xe4, 0x2e, 0xfe, 0x29, 0xb6, 0xbb, 0x89, 0xfb, 0xdd, 0xc4, 0x27, - 0xfd, 0x6e, 0xd2, 0x8d, 0x16, 0x69, 0x71, 0x1b, 0x82, 0xb8, 0x2f, 0xa2, 0xf4, 0x6a, 0x19, 0x80, - 0xeb, 0x65, 0x00, 0xbe, 0x2f, 0x03, 0xb0, 0x58, 0x05, 0xde, 0xf5, 0x2a, 0xf0, 0xbe, 0xad, 0x02, - 0xef, 0xf5, 0xef, 0x30, 0xbf, 0xa2, 0x26, 0xba, 0x92, 0xe4, 0x3d, 0x71, 0x7f, 0x61, 0x87, 0x94, - 0x3c, 0xe8, 0x5a, 0x3d, 0xfb, 0x19, 0x00, 0x00, 0xff, 0xff, 0x07, 0x37, 0x15, 0x5e, 0x9c, 0x03, - 0x00, 0x00, + proto.RegisterType((*VestingAccount)(nil), "spn.launch.VestingAccount") + proto.RegisterType((*VestingOptions)(nil), "spn.launch.VestingOptions") + proto.RegisterType((*DelayedVesting)(nil), "spn.launch.DelayedVesting") +} + +func init() { proto.RegisterFile("spn/launch/vesting_account.proto", fileDescriptor_db19ff708781896c) } + +var fileDescriptor_db19ff708781896c = []byte{ + // 458 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x93, 0x31, 0x6f, 0xd4, 0x30, + 0x14, 0xc7, 0xe3, 0x5e, 0xc5, 0xb5, 0x2e, 0xba, 0xc1, 0xea, 0x90, 0xde, 0x90, 0x44, 0x5d, 0xc8, + 0x52, 0x5b, 0x3d, 0x76, 0xa4, 0x9a, 0x1b, 0xca, 0x84, 0x14, 0xaa, 0x0e, 0x30, 0x54, 0x4e, 0x62, + 0x52, 0x8b, 0xc4, 0x8e, 0xce, 0x4e, 0x45, 0x37, 0x3e, 0xc2, 0xcd, 0x7c, 0x84, 0xce, 0x7c, 0x88, + 0x8e, 0x15, 0x13, 0x53, 0x8b, 0xee, 0xbe, 0x05, 0x13, 0x4a, 0xec, 0x1c, 0xe4, 0x26, 0x36, 0xa6, + 0xe4, 0xf9, 0xfd, 0xff, 0x79, 0xbf, 0x97, 0xf7, 0x0c, 0x23, 0x5d, 0x4b, 0x52, 0xb2, 0x46, 0x66, + 0xd7, 0xe4, 0x86, 0x6b, 0x23, 0x64, 0x71, 0xc5, 0xb2, 0x4c, 0x35, 0xd2, 0xe0, 0x7a, 0xa1, 0x8c, + 0x42, 0x50, 0xd7, 0x12, 0x5b, 0xc5, 0xf4, 0xb0, 0x50, 0x85, 0xea, 0x8e, 0x49, 0xfb, 0x66, 0x15, + 0xd3, 0x20, 0x53, 0xba, 0x52, 0x9a, 0xa4, 0x4c, 0x73, 0x72, 0x73, 0x9a, 0x72, 0xc3, 0x4e, 0x49, + 0xa6, 0x84, 0x74, 0xf9, 0x23, 0x9b, 0xbf, 0xb2, 0x46, 0x1b, 0xb8, 0x54, 0x58, 0x28, 0x55, 0x94, + 0x9c, 0x74, 0x51, 0xda, 0x7c, 0x24, 0x46, 0x54, 0x5c, 0x1b, 0x56, 0xd5, 0x56, 0x70, 0x7c, 0x07, + 0xe0, 0xe4, 0xd2, 0x72, 0x9d, 0x59, 0x2c, 0x34, 0x85, 0x7b, 0x16, 0xe7, 0xcd, 0xdc, 0x07, 0x11, + 0x88, 0x77, 0x93, 0x4d, 0x8c, 0x66, 0x70, 0xcc, 0xf2, 0x7c, 0xc1, 0xb5, 0xf6, 0x77, 0x22, 0x10, + 0xef, 0x53, 0xff, 0xfb, 0xb7, 0x93, 0x43, 0x57, 0xf2, 0xcc, 0x66, 0xde, 0x99, 0x85, 0x90, 0x45, + 0xd2, 0x0b, 0xd1, 0x39, 0x9c, 0xb8, 0xce, 0xdf, 0xd6, 0x46, 0x28, 0xa9, 0xfd, 0x51, 0x04, 0xe2, + 0x83, 0xd9, 0x14, 0xff, 0xe9, 0x1c, 0x5f, 0x0e, 0x14, 0x74, 0xf7, 0xfe, 0x31, 0xf4, 0x92, 0x2d, + 0xdf, 0x31, 0xdb, 0xb0, 0xba, 0x13, 0x34, 0x87, 0x93, 0x9c, 0x97, 0xec, 0x96, 0xe7, 0x2e, 0xd1, + 0x11, 0x6f, 0x7d, 0x7b, 0x3e, 0x50, 0x9c, 0x7b, 0xc9, 0x96, 0x87, 0xee, 0xc3, 0xb1, 0x72, 0x25, + 0xbe, 0x8c, 0xe0, 0x64, 0xa8, 0x47, 0x5f, 0x01, 0x7c, 0x6e, 0x94, 0x61, 0x25, 0x65, 0x25, 0x93, + 0x19, 0xf7, 0x41, 0x34, 0x8a, 0x0f, 0x66, 0x47, 0xd8, 0xb5, 0xdd, 0x8e, 0x05, 0xbb, 0xb1, 0xe0, + 0xd7, 0x4a, 0x48, 0xfa, 0xa1, 0xa5, 0xff, 0xf5, 0x18, 0xbe, 0x28, 0x84, 0xb9, 0x6e, 0x52, 0x9c, + 0xa9, 0xca, 0x8d, 0xc5, 0x3d, 0x4e, 0x74, 0xfe, 0x89, 0x98, 0xdb, 0x9a, 0xeb, 0xce, 0x70, 0xf7, + 0x14, 0xc6, 0xff, 0x28, 0xd5, 0xc9, 0x80, 0x05, 0x2d, 0x01, 0x1c, 0xbb, 0xbf, 0xe4, 0xef, 0xfc, + 0x57, 0xae, 0x1e, 0x03, 0xbd, 0x82, 0x63, 0x2e, 0xf3, 0x0b, 0x51, 0xf1, 0xcd, 0xa0, 0xed, 0x16, + 0xe2, 0x7e, 0x0b, 0xf1, 0x45, 0xbf, 0x85, 0x74, 0xaf, 0x45, 0x5a, 0x3e, 0x85, 0x20, 0xe9, 0x4d, + 0x94, 0xde, 0xaf, 0x02, 0xf0, 0xb0, 0x0a, 0xc0, 0xcf, 0x55, 0x00, 0x96, 0xeb, 0xc0, 0x7b, 0x58, + 0x07, 0xde, 0x8f, 0x75, 0xe0, 0xbd, 0xff, 0x1b, 0xc6, 0x70, 0x99, 0xf3, 0x45, 0x25, 0xa4, 0x21, + 0xed, 0x15, 0xfb, 0xdc, 0x5f, 0xb2, 0x0e, 0x29, 0x7d, 0xd6, 0x95, 0x7a, 0xf9, 0x3b, 0x00, 0x00, + 0xff, 0xff, 0x52, 0x5f, 0x8e, 0xbc, 0x7f, 0x03, 0x00, 0x00, } func (m *VestingAccount) Marshal() (dAtA []byte, err error) { @@ -385,7 +384,7 @@ func (m *DelayedVesting) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - n3, err3 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.EndTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.EndTime):]) + n3, err3 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.EndTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.EndTime):]) if err3 != nil { return 0, err3 } @@ -495,7 +494,7 @@ func (m *DelayedVesting) Size() (n int) { n += 1 + l + sovVestingAccount(uint64(l)) } } - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.EndTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.EndTime) n += 1 + l + sovVestingAccount(uint64(l)) return n } @@ -851,7 +850,7 @@ func (m *DelayedVesting) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.EndTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.EndTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/monitoringc/client/cli/query.go b/x/monitoringc/client/cli/query.go index 126b12d0d..863c2f8d3 100644 --- a/x/monitoringc/client/cli/query.go +++ b/x/monitoringc/client/cli/query.go @@ -5,7 +5,6 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/spf13/cobra" - "github.com/tendermint/spn/x/monitoringc/types" ) diff --git a/x/monitoringc/client/cli/query_launch_id_from_channel_id_test.go b/x/monitoringc/client/cli/query_launch_id_from_channel_id_test.go index 6f7efd3ec..290aa0509 100644 --- a/x/monitoringc/client/cli/query_launch_id_from_channel_id_test.go +++ b/x/monitoringc/client/cli/query_launch_id_from_channel_id_test.go @@ -5,10 +5,10 @@ import ( "strconv" "testing" + tmcli "github.com/cometbft/cometbft/libs/cli" "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/monitoringc/client/cli/query_monitoring_history_test.go b/x/monitoringc/client/cli/query_monitoring_history_test.go index c0043f7de..36fd751f4 100644 --- a/x/monitoringc/client/cli/query_monitoring_history_test.go +++ b/x/monitoringc/client/cli/query_monitoring_history_test.go @@ -5,9 +5,9 @@ import ( "strconv" "testing" + tmcli "github.com/cometbft/cometbft/libs/cli" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/monitoringc/client/cli/query_provider_client_id_test.go b/x/monitoringc/client/cli/query_provider_client_id_test.go index 4d1e588fa..1b324e59f 100644 --- a/x/monitoringc/client/cli/query_provider_client_id_test.go +++ b/x/monitoringc/client/cli/query_provider_client_id_test.go @@ -5,10 +5,10 @@ import ( "strconv" "testing" + tmcli "github.com/cometbft/cometbft/libs/cli" "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/monitoringc/client/cli/query_verified_client_ids_test.go b/x/monitoringc/client/cli/query_verified_client_ids_test.go index cab7f50de..f6a6d3122 100644 --- a/x/monitoringc/client/cli/query_verified_client_ids_test.go +++ b/x/monitoringc/client/cli/query_verified_client_ids_test.go @@ -5,9 +5,9 @@ import ( "strconv" "testing" + tmcli "github.com/cometbft/cometbft/libs/cli" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/monitoringc/keeper/handshake.go b/x/monitoringc/keeper/handshake.go index 326739033..3ae7a1066 100644 --- a/x/monitoringc/keeper/handshake.go +++ b/x/monitoringc/keeper/handshake.go @@ -3,11 +3,11 @@ package keeper import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - connectiontypes "github.com/cosmos/ibc-go/v6/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - ignterrors "github.com/ignite/modules/pkg/errors" - + connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" "github.com/tendermint/spn/x/monitoringc/types" + + ignterrors "github.com/ignite/modules/pkg/errors" ) // VerifyClientIDFromConnID verifies if the client ID associated with the provided connection ID diff --git a/x/monitoringc/keeper/handshake_test.go b/x/monitoringc/keeper/handshake_test.go index 47108fb5e..8630d6297 100644 --- a/x/monitoringc/keeper/handshake_test.go +++ b/x/monitoringc/keeper/handshake_test.go @@ -4,14 +4,14 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - connectiontypes "github.com/cosmos/ibc-go/v6/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - ignterrors "github.com/ignite/modules/pkg/errors" + connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" "github.com/stretchr/testify/require" - testkeeper "github.com/tendermint/spn/testutil/keeper" launchtypes "github.com/tendermint/spn/x/launch/types" "github.com/tendermint/spn/x/monitoringc/types" + + ignterrors "github.com/ignite/modules/pkg/errors" ) // testSetupWithFooClient returns a test setup with monitoring keeper containing necessary IBC mocks for a client with ID foo diff --git a/x/monitoringc/keeper/invariants.go b/x/monitoringc/keeper/invariants.go index 590e7af15..3cf29b8d8 100644 --- a/x/monitoringc/keeper/invariants.go +++ b/x/monitoringc/keeper/invariants.go @@ -4,7 +4,6 @@ import ( "fmt" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/tendermint/spn/x/monitoringc/types" ) diff --git a/x/monitoringc/keeper/invariants_test.go b/x/monitoringc/keeper/invariants_test.go index c067e8811..02e254d02 100644 --- a/x/monitoringc/keeper/invariants_test.go +++ b/x/monitoringc/keeper/invariants_test.go @@ -3,11 +3,9 @@ package keeper_test import ( "testing" - "github.com/tendermint/spn/testutil/sample" - "github.com/stretchr/testify/require" - testkeeper "github.com/tendermint/spn/testutil/keeper" + "github.com/tendermint/spn/testutil/sample" "github.com/tendermint/spn/x/monitoringc/keeper" "github.com/tendermint/spn/x/monitoringc/types" ) diff --git a/x/monitoringc/keeper/keeper.go b/x/monitoringc/keeper/keeper.go index 833227d64..3ae2db642 100644 --- a/x/monitoringc/keeper/keeper.go +++ b/x/monitoringc/keeper/keeper.go @@ -3,14 +3,14 @@ package keeper import ( "fmt" + "github.com/cometbft/cometbft/libs/log" "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" capabilitykeeper "github.com/cosmos/cosmos-sdk/x/capability/keeper" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - host "github.com/cosmos/ibc-go/v6/modules/core/24-host" - "github.com/tendermint/tendermint/libs/log" + host "github.com/cosmos/ibc-go/v7/modules/core/24-host" "github.com/tendermint/spn/x/monitoringc/types" ) diff --git a/x/monitoringc/keeper/monitoring_packet.go b/x/monitoringc/keeper/monitoring_packet.go index dd81b28ef..d03fed99d 100644 --- a/x/monitoringc/keeper/monitoring_packet.go +++ b/x/monitoringc/keeper/monitoring_packet.go @@ -5,7 +5,7 @@ import ( "fmt" sdk "github.com/cosmos/cosmos-sdk/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" spntypes "github.com/tendermint/spn/pkg/types" "github.com/tendermint/spn/x/monitoringc/types" diff --git a/x/monitoringc/keeper/monitoring_packet_test.go b/x/monitoringc/keeper/monitoring_packet_test.go index bde457073..7b14f82da 100644 --- a/x/monitoringc/keeper/monitoring_packet_test.go +++ b/x/monitoringc/keeper/monitoring_packet_test.go @@ -3,12 +3,10 @@ package keeper_test import ( "testing" - tc "github.com/tendermint/spn/testutil/constructor" - - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" "github.com/stretchr/testify/require" - spntypes "github.com/tendermint/spn/pkg/types" + tc "github.com/tendermint/spn/testutil/constructor" testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" "github.com/tendermint/spn/x/monitoringc/types" diff --git a/x/monitoringc/keeper/msg_create_client.go b/x/monitoringc/keeper/msg_create_client.go index 719a6b484..50e595f4d 100644 --- a/x/monitoringc/keeper/msg_create_client.go +++ b/x/monitoringc/keeper/msg_create_client.go @@ -5,16 +5,16 @@ import ( "time" sdkerrors "cosmossdk.io/errors" + "github.com/cometbft/cometbft/light" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - committypes "github.com/cosmos/ibc-go/v6/modules/core/23-commitment/types" - ibctmtypes "github.com/cosmos/ibc-go/v6/modules/light-clients/07-tendermint/types" - ignterrors "github.com/ignite/modules/pkg/errors" - "github.com/tendermint/tendermint/light" - + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + committypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" + ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" "github.com/tendermint/spn/pkg/chainid" launchtypes "github.com/tendermint/spn/x/launch/types" "github.com/tendermint/spn/x/monitoringc/types" + + ignterrors "github.com/ignite/modules/pkg/errors" ) func (k msgServer) CreateClient(goCtx context.Context, msg *types.MsgCreateClient) (*types.MsgCreateClientResponse, error) { @@ -97,7 +97,5 @@ func (k msgServer) initializeClientState( clienttypes.NewHeight(revisionNumber, revisionHeight), committypes.GetSDKSpecs(), []string{"upgrade", "upgradedIBCState"}, - true, - true, ), nil } diff --git a/x/monitoringc/keeper/msg_create_client_test.go b/x/monitoringc/keeper/msg_create_client_test.go index 4a17a2fb8..662dd1214 100644 --- a/x/monitoringc/keeper/msg_create_client_test.go +++ b/x/monitoringc/keeper/msg_create_client_test.go @@ -6,16 +6,16 @@ import ( "time" sdk "github.com/cosmos/cosmos-sdk/types" - ibctmtypes "github.com/cosmos/ibc-go/v6/modules/light-clients/07-tendermint/types" - ignterrors "github.com/ignite/modules/pkg/errors" + ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" "github.com/stretchr/testify/require" - spntypes "github.com/tendermint/spn/pkg/types" testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" launchtypes "github.com/tendermint/spn/x/launch/types" "github.com/tendermint/spn/x/monitoringc/types" profiletypes "github.com/tendermint/spn/x/profile/types" + + ignterrors "github.com/ignite/modules/pkg/errors" ) func Test_msgServer_CreateClient(t *testing.T) { diff --git a/x/monitoringc/module.go b/x/monitoringc/module.go index 95d0dbff7..6e88bc3a3 100644 --- a/x/monitoringc/module.go +++ b/x/monitoringc/module.go @@ -5,16 +5,16 @@ import ( "encoding/json" "fmt" + abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" cdctypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" + porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" "github.com/gorilla/mux" "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - abci "github.com/tendermint/tendermint/abci/types" "github.com/tendermint/spn/x/monitoringc/client/cli" "github.com/tendermint/spn/x/monitoringc/keeper" @@ -123,19 +123,9 @@ func (am AppModule) Name() string { return am.AppModuleBasic.Name() } -// Route returns the monitoringc module's message routing key. -func (am AppModule) Route() sdk.Route { - return sdk.Route{} -} - // QuerierRoute returns the monitoringc module's query routing key. func (AppModule) QuerierRoute() string { return types.QuerierRoute } -// LegacyQuerierHandler returns the monitoringc module's Querier. -func (am AppModule) LegacyQuerierHandler(_ *codec.LegacyAmino) sdk.Querier { - return nil -} - // RegisterServices registers a GRPC query service to respond to the // module-specific GRPC queries. func (am AppModule) RegisterServices(cfg module.Configurator) { diff --git a/x/monitoringc/module_ibc.go b/x/monitoringc/module_ibc.go index dd242f855..18ef465b0 100644 --- a/x/monitoringc/module_ibc.go +++ b/x/monitoringc/module_ibc.go @@ -6,10 +6,10 @@ import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/v6/modules/core/24-host" - ibcexported "github.com/cosmos/ibc-go/v6/modules/core/exported" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v7/modules/core/24-host" + ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" spntypes "github.com/tendermint/spn/pkg/types" "github.com/tendermint/spn/x/monitoringc/types" diff --git a/x/monitoringc/module_simulation.go b/x/monitoringc/module_simulation.go index 9a02dc5ec..f36d85829 100644 --- a/x/monitoringc/module_simulation.go +++ b/x/monitoringc/module_simulation.go @@ -40,8 +40,8 @@ func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedP } // RandomizedParams creates randomized param changes for the simulator -func (am AppModule) RandomizedParams(_ *rand.Rand) []simtypes.ParamChange { - return []simtypes.ParamChange{} +func (am AppModule) RandomizedParams(_ *rand.Rand) []simtypes.LegacyParamChange { + return []simtypes.LegacyParamChange{} } // RegisterStoreDecoder registers a decoder diff --git a/x/monitoringc/types/expected_keepers.go b/x/monitoringc/types/expected_keepers.go index 0eafaec12..d35f9f3b7 100644 --- a/x/monitoringc/types/expected_keepers.go +++ b/x/monitoringc/types/expected_keepers.go @@ -1,14 +1,14 @@ package types import ( + tmtypes "github.com/cometbft/cometbft/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/auth/types" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v6/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v6/modules/core/exported" - tmtypes "github.com/tendermint/tendermint/types" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v7/modules/core/exported" spntypes "github.com/tendermint/spn/pkg/types" launchtypes "github.com/tendermint/spn/x/launch/types" diff --git a/x/monitoringc/types/genesis.go b/x/monitoringc/types/genesis.go index 8f21dda95..8867c46f6 100644 --- a/x/monitoringc/types/genesis.go +++ b/x/monitoringc/types/genesis.go @@ -3,7 +3,7 @@ package types import ( "fmt" - host "github.com/cosmos/ibc-go/v6/modules/core/24-host" + host "github.com/cosmos/ibc-go/v7/modules/core/24-host" ) // DefaultGenesis returns the default Capability genesis state diff --git a/x/monitoringc/types/genesis.pb.go b/x/monitoringc/types/genesis.pb.go index 59a6a8c23..bd706813c 100644 --- a/x/monitoringc/types/genesis.pb.go +++ b/x/monitoringc/types/genesis.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: monitoringc/genesis.proto +// source: spn/monitoringc/genesis.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -38,7 +38,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_10c269cb89bd5f03, []int{0} + return fileDescriptor_52d090ea36f3cb90, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -117,40 +117,40 @@ func (m *GenesisState) GetParams() Params { } func init() { - proto.RegisterType((*GenesisState)(nil), "tendermint.spn.monitoringc.GenesisState") + proto.RegisterType((*GenesisState)(nil), "spn.monitoringc.GenesisState") } -func init() { proto.RegisterFile("monitoringc/genesis.proto", fileDescriptor_10c269cb89bd5f03) } +func init() { proto.RegisterFile("spn/monitoringc/genesis.proto", fileDescriptor_52d090ea36f3cb90) } -var fileDescriptor_10c269cb89bd5f03 = []byte{ - // 426 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x41, 0x8f, 0xd2, 0x40, - 0x18, 0x86, 0x5b, 0x81, 0x12, 0x07, 0x2f, 0x56, 0xa3, 0xb5, 0x89, 0x95, 0x10, 0x0f, 0x24, 0x4a, - 0x1b, 0xe1, 0xe2, 0xd1, 0x00, 0x11, 0x9b, 0x68, 0x62, 0x30, 0xf1, 0xe0, 0xa5, 0x96, 0x76, 0x68, - 0x27, 0xa1, 0x33, 0xcd, 0xcc, 0x40, 0xe4, 0xee, 0xd1, 0x83, 0x3f, 0x8b, 0x23, 0x47, 0x4f, 0x66, - 0x03, 0x7f, 0x64, 0xd3, 0x69, 0xd9, 0x76, 0x0b, 0xed, 0xee, 0x6d, 0x08, 0xef, 0xfb, 0x3c, 0x5f, - 0xbe, 0x99, 0x82, 0x17, 0x11, 0xc1, 0x88, 0x13, 0x8a, 0x70, 0xe0, 0x59, 0x01, 0xc4, 0x90, 0x21, - 0x66, 0xc6, 0x94, 0x70, 0xa2, 0xea, 0x1c, 0x62, 0x1f, 0xd2, 0x08, 0x61, 0x6e, 0xb2, 0x18, 0x9b, - 0x85, 0xa4, 0xfe, 0x34, 0x20, 0x01, 0x11, 0x31, 0x2b, 0x39, 0xa5, 0x0d, 0x5d, 0x2b, 0xc2, 0x62, - 0x97, 0xba, 0x51, 0xc6, 0xd2, 0x5f, 0x17, 0xff, 0xd9, 0x40, 0x8a, 0x96, 0x08, 0xfa, 0x8e, 0xb7, - 0x42, 0x10, 0x73, 0x07, 0xf9, 0x97, 0x52, 0x31, 0x25, 0x1b, 0xe4, 0x43, 0x7a, 0x96, 0x1a, 0x15, - 0x53, 0x2b, 0x77, 0x8d, 0xbd, 0xd0, 0x41, 0xbe, 0xb3, 0xa4, 0x24, 0x72, 0x2a, 0xd1, 0x6f, 0x6a, - 0x4a, 0x5e, 0xe8, 0x62, 0x0c, 0x57, 0x15, 0x73, 0xe4, 0x67, 0x27, 0x44, 0x8c, 0x13, 0xba, 0x4d, - 0x53, 0xbd, 0x3f, 0x2d, 0xf0, 0x68, 0x96, 0x6e, 0xec, 0x1b, 0x77, 0x39, 0x54, 0x9f, 0x83, 0x76, - 0x4c, 0x68, 0x22, 0xd5, 0xe4, 0xae, 0xdc, 0x7f, 0x38, 0x57, 0x92, 0x9f, 0xb6, 0xaf, 0xfe, 0x04, - 0x8f, 0x4f, 0x83, 0x4d, 0xc4, 0x5c, 0xf6, 0x94, 0x69, 0x0f, 0xba, 0x8d, 0x7e, 0x67, 0xf8, 0xd6, - 0xac, 0xde, 0xb2, 0xf9, 0xbd, 0x54, 0x1a, 0x37, 0x77, 0xff, 0x5f, 0x49, 0xf3, 0x73, 0x58, 0x62, - 0x38, 0xed, 0x2b, 0x37, 0x34, 0xee, 0x36, 0x7c, 0x2d, 0x95, 0x4e, 0x86, 0x33, 0x98, 0xfa, 0x5b, - 0x06, 0x2f, 0xd3, 0xbd, 0xd9, 0x53, 0xf6, 0x91, 0x92, 0xa8, 0x3c, 0x9c, 0xd6, 0x14, 0xba, 0xf7, - 0x75, 0xba, 0xcf, 0x19, 0xe0, 0x52, 0x3f, 0x53, 0xd7, 0x4b, 0x54, 0x02, 0x9e, 0xdd, 0x0a, 0x4c, - 0xd2, 0xbb, 0xb3, 0xa7, 0x5a, 0x4b, 0xe8, 0xdf, 0xdd, 0x57, 0x7f, 0x53, 0xcc, 0xbc, 0x15, 0x58, - 0x15, 0x82, 0x27, 0x39, 0xe2, 0x93, 0x78, 0x00, 0x08, 0x32, 0x4d, 0x11, 0xb6, 0x41, 0x9d, 0xed, - 0x4b, 0xa9, 0xb6, 0xcd, 0x4c, 0x97, 0x78, 0xea, 0x07, 0xa0, 0xa4, 0x1f, 0x8c, 0xd6, 0xee, 0xca, - 0xfd, 0xce, 0xb0, 0x57, 0x7b, 0x6b, 0x22, 0x99, 0xe1, 0xb2, 0xde, 0x78, 0xb6, 0x3b, 0x18, 0xf2, - 0xfe, 0x60, 0xc8, 0x57, 0x07, 0x43, 0xfe, 0x7b, 0x34, 0xa4, 0xfd, 0xd1, 0x90, 0xfe, 0x1d, 0x0d, - 0xe9, 0xc7, 0x20, 0x40, 0x3c, 0x5c, 0x2f, 0x4c, 0x8f, 0x44, 0x56, 0x4e, 0xb5, 0x58, 0x8c, 0xad, - 0x5f, 0x56, 0xf1, 0xa9, 0xf3, 0x6d, 0x0c, 0xd9, 0x42, 0x11, 0xcf, 0x7b, 0x74, 0x1d, 0x00, 0x00, - 0xff, 0xff, 0xe9, 0xe9, 0x4c, 0x80, 0x1b, 0x04, 0x00, 0x00, +var fileDescriptor_52d090ea36f3cb90 = []byte{ + // 419 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x93, 0x41, 0xcf, 0xd2, 0x30, + 0x18, 0xc7, 0x37, 0xc1, 0x11, 0x8b, 0x89, 0x71, 0x1a, 0x59, 0x88, 0x4c, 0xe4, 0x60, 0x76, 0x61, + 0x4b, 0x30, 0xc6, 0x3b, 0x10, 0x71, 0x89, 0x26, 0x06, 0xa3, 0x07, 0x2e, 0xcb, 0xd8, 0xca, 0xd6, + 0x84, 0xb5, 0x4b, 0x5b, 0x88, 0xfb, 0x16, 0x7e, 0x2c, 0xbc, 0x71, 0xf4, 0x64, 0x0c, 0x7c, 0x11, + 0xb3, 0x6e, 0xc8, 0x4b, 0xc7, 0x78, 0x6f, 0x5d, 0x9e, 0x5f, 0x7f, 0xff, 0x27, 0x4f, 0x9f, 0x81, + 0x1e, 0x4b, 0xb1, 0x93, 0x10, 0x8c, 0x38, 0xa1, 0x08, 0x47, 0x81, 0x13, 0x41, 0x0c, 0x19, 0x62, + 0x76, 0x4a, 0x09, 0x27, 0xfa, 0x13, 0x96, 0x62, 0xfb, 0x4e, 0xb9, 0xfb, 0x3c, 0x22, 0x11, 0x11, + 0x35, 0x27, 0x3f, 0x15, 0x58, 0xf7, 0xa5, 0x6c, 0x49, 0x7d, 0xea, 0x27, 0xa5, 0xa4, 0x6b, 0xc9, + 0xd5, 0x2d, 0xa4, 0x68, 0x85, 0x60, 0xe8, 0x05, 0x6b, 0x04, 0x31, 0xf7, 0x50, 0x58, 0x47, 0xa6, + 0x94, 0x6c, 0x51, 0x08, 0x69, 0x85, 0x7c, 0x2f, 0x93, 0x6b, 0x7f, 0x83, 0x83, 0xd8, 0x43, 0xa1, + 0xb7, 0xa2, 0x24, 0xf1, 0x6a, 0x23, 0x9c, 0x7b, 0x2e, 0x06, 0xb1, 0x8f, 0x31, 0x5c, 0xdf, 0xe8, + 0xe9, 0x7c, 0xf6, 0x62, 0xc4, 0x38, 0xa1, 0x59, 0x41, 0x0e, 0x7e, 0x35, 0xc1, 0xe3, 0x59, 0x31, + 0xbe, 0xaf, 0xdc, 0xe7, 0x50, 0xef, 0x80, 0x56, 0x4a, 0x68, 0x1e, 0x6e, 0xa8, 0x7d, 0xd5, 0x7a, + 0x34, 0xd7, 0xf2, 0x4f, 0x37, 0xd4, 0xbf, 0x81, 0xa7, 0xa7, 0x06, 0x27, 0xa2, 0x3f, 0x77, 0xca, + 0x8c, 0x07, 0xfd, 0x86, 0xd5, 0x1e, 0xbd, 0xb6, 0xa5, 0x91, 0xdb, 0xdf, 0x25, 0x72, 0xdc, 0xdc, + 0xfd, 0x79, 0xa5, 0xcc, 0xab, 0x86, 0x5c, 0x7b, 0x1a, 0xd8, 0x59, 0xdb, 0xa8, 0xd1, 0x7e, 0x91, + 0xc8, 0x93, 0xb6, 0x62, 0xd0, 0x33, 0xd0, 0x2b, 0x86, 0xe4, 0x4e, 0xd9, 0x07, 0x4a, 0x12, 0xb9, + 0x21, 0xa3, 0x29, 0x22, 0x86, 0x95, 0x88, 0x4f, 0xe5, 0xad, 0x6b, 0x97, 0xca, 0xb8, 0xdb, 0x66, + 0x3d, 0x04, 0x2f, 0x2e, 0x80, 0x49, 0xf1, 0x3a, 0xee, 0xd4, 0x78, 0x28, 0x32, 0xdf, 0xdc, 0xcc, + 0xfc, 0x4f, 0x97, 0x61, 0x35, 0x2e, 0x7d, 0x01, 0x9e, 0x9d, 0x15, 0x1f, 0xc5, 0x9b, 0x22, 0xc8, + 0x0c, 0x4d, 0x44, 0x0c, 0x2a, 0x11, 0x9f, 0x25, 0x36, 0x2b, 0xf5, 0xd7, 0x24, 0xfa, 0x3b, 0xa0, + 0x15, 0x3f, 0x83, 0xd1, 0xea, 0xab, 0x56, 0x7b, 0xd4, 0xa9, 0x3e, 0x84, 0x28, 0x97, 0x8e, 0x12, + 0x1e, 0xcf, 0x76, 0x07, 0x53, 0xdd, 0x1f, 0x4c, 0xf5, 0xef, 0xc1, 0x54, 0x7f, 0x1e, 0x4d, 0x65, + 0x7f, 0x34, 0x95, 0xdf, 0x47, 0x53, 0x59, 0x0c, 0x23, 0xc4, 0xe3, 0xcd, 0xd2, 0x0e, 0x48, 0xe2, + 0x70, 0x88, 0x43, 0x48, 0x13, 0x84, 0xb9, 0x58, 0xeb, 0x1f, 0x17, 0x7b, 0xca, 0xb3, 0x14, 0xb2, + 0xa5, 0x26, 0x76, 0xf3, 0xed, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x65, 0x8b, 0x20, 0x5a, 0xe9, + 0x03, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/monitoringc/types/launch_id_from_channel_id.pb.go b/x/monitoringc/types/launch_id_from_channel_id.pb.go index 6030b66a1..0153f581b 100644 --- a/x/monitoringc/types/launch_id_from_channel_id.pb.go +++ b/x/monitoringc/types/launch_id_from_channel_id.pb.go @@ -1,11 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: monitoringc/launch_id_from_channel_id.proto +// source: spn/monitoringc/launch_id_from_channel_id.proto package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -31,7 +31,7 @@ func (m *LaunchIDFromChannelID) Reset() { *m = LaunchIDFromChannelID{} } func (m *LaunchIDFromChannelID) String() string { return proto.CompactTextString(m) } func (*LaunchIDFromChannelID) ProtoMessage() {} func (*LaunchIDFromChannelID) Descriptor() ([]byte, []int) { - return fileDescriptor_956d1104c251c97c, []int{0} + return fileDescriptor_a03e8149f64ce63c, []int{0} } func (m *LaunchIDFromChannelID) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -75,28 +75,28 @@ func (m *LaunchIDFromChannelID) GetLaunchID() uint64 { } func init() { - proto.RegisterType((*LaunchIDFromChannelID)(nil), "tendermint.spn.monitoringc.LaunchIDFromChannelID") + proto.RegisterType((*LaunchIDFromChannelID)(nil), "spn.monitoringc.LaunchIDFromChannelID") } func init() { - proto.RegisterFile("monitoringc/launch_id_from_channel_id.proto", fileDescriptor_956d1104c251c97c) + proto.RegisterFile("spn/monitoringc/launch_id_from_channel_id.proto", fileDescriptor_a03e8149f64ce63c) } -var fileDescriptor_956d1104c251c97c = []byte{ - // 200 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0xce, 0xcd, 0xcf, 0xcb, - 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x4f, 0xd6, 0xcf, 0x49, 0x2c, 0xcd, 0x4b, 0xce, 0x88, 0xcf, - 0x4c, 0x89, 0x4f, 0x2b, 0xca, 0xcf, 0x8d, 0x4f, 0xce, 0x48, 0xcc, 0xcb, 0x4b, 0xcd, 0x89, 0xcf, - 0x4c, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x2a, 0x49, 0xcd, 0x4b, 0x49, 0x2d, 0xca, - 0xcd, 0xcc, 0x2b, 0xd1, 0x2b, 0x2e, 0xc8, 0xd3, 0x43, 0xd2, 0xab, 0x14, 0xc8, 0x25, 0xea, 0x03, - 0xd6, 0xee, 0xe9, 0xe2, 0x56, 0x94, 0x9f, 0xeb, 0x0c, 0xd1, 0xeb, 0xe9, 0x22, 0x24, 0xc3, 0xc5, - 0x99, 0x0c, 0xe3, 0x48, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x06, 0x21, 0x04, 0x84, 0xa4, 0xb8, 0x38, - 0x72, 0xa0, 0xda, 0x24, 0x98, 0x14, 0x18, 0x35, 0x58, 0x82, 0xe0, 0x7c, 0x27, 0xf7, 0x13, 0x8f, - 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, - 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xd2, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, - 0x4b, 0xce, 0xcf, 0xd5, 0x47, 0xb8, 0x49, 0xbf, 0xb8, 0x20, 0x4f, 0xbf, 0x42, 0x1f, 0xd9, 0x47, - 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0xe7, 0x1b, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, - 0x60, 0x4a, 0x76, 0x09, 0xed, 0x00, 0x00, 0x00, +var fileDescriptor_a03e8149f64ce63c = []byte{ + // 197 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x2f, 0x2e, 0xc8, 0xd3, + 0xcf, 0xcd, 0xcf, 0xcb, 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x4f, 0xd6, 0xcf, 0x49, 0x2c, 0xcd, + 0x4b, 0xce, 0x88, 0xcf, 0x4c, 0x89, 0x4f, 0x2b, 0xca, 0xcf, 0x8d, 0x4f, 0xce, 0x48, 0xcc, 0xcb, + 0x4b, 0xcd, 0x89, 0xcf, 0x4c, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x2f, 0x2e, 0xc8, + 0xd3, 0x43, 0xd2, 0xa0, 0x14, 0xc8, 0x25, 0xea, 0x03, 0xd6, 0xe3, 0xe9, 0xe2, 0x56, 0x94, 0x9f, + 0xeb, 0x0c, 0xd1, 0xe0, 0xe9, 0x22, 0x24, 0xc3, 0xc5, 0x99, 0x0c, 0xe3, 0x48, 0x30, 0x2a, 0x30, + 0x6a, 0x70, 0x06, 0x21, 0x04, 0x84, 0xa4, 0xb8, 0x38, 0x72, 0xa0, 0xda, 0x24, 0x98, 0x14, 0x18, + 0x35, 0x58, 0x82, 0xe0, 0x7c, 0x27, 0xf7, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, + 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, + 0x88, 0xd2, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x2f, 0x49, 0xcd, + 0x4b, 0x49, 0x2d, 0xca, 0xcd, 0xcc, 0x2b, 0x01, 0x7b, 0xa2, 0x02, 0xc5, 0x1b, 0x25, 0x95, 0x05, + 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0x37, 0x1b, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x30, 0xd3, 0x09, + 0xf0, 0xe6, 0x00, 0x00, 0x00, } func (m *LaunchIDFromChannelID) Marshal() (dAtA []byte, err error) { diff --git a/x/monitoringc/types/launch_id_from_verified_client_id.pb.go b/x/monitoringc/types/launch_id_from_verified_client_id.pb.go index 70e0bad23..de4123cad 100644 --- a/x/monitoringc/types/launch_id_from_verified_client_id.pb.go +++ b/x/monitoringc/types/launch_id_from_verified_client_id.pb.go @@ -1,11 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: monitoringc/launch_id_from_verified_client_id.proto +// source: spn/monitoringc/launch_id_from_verified_client_id.proto package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -31,7 +31,7 @@ func (m *LaunchIDFromVerifiedClientID) Reset() { *m = LaunchIDFromVerifi func (m *LaunchIDFromVerifiedClientID) String() string { return proto.CompactTextString(m) } func (*LaunchIDFromVerifiedClientID) ProtoMessage() {} func (*LaunchIDFromVerifiedClientID) Descriptor() ([]byte, []int) { - return fileDescriptor_3633b2cfbe631aa2, []int{0} + return fileDescriptor_11a900beb38434ce, []int{0} } func (m *LaunchIDFromVerifiedClientID) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -75,29 +75,28 @@ func (m *LaunchIDFromVerifiedClientID) GetLaunchID() uint64 { } func init() { - proto.RegisterType((*LaunchIDFromVerifiedClientID)(nil), "tendermint.spn.monitoringc.LaunchIDFromVerifiedClientID") + proto.RegisterType((*LaunchIDFromVerifiedClientID)(nil), "spn.monitoringc.LaunchIDFromVerifiedClientID") } func init() { - proto.RegisterFile("monitoringc/launch_id_from_verified_client_id.proto", fileDescriptor_3633b2cfbe631aa2) + proto.RegisterFile("spn/monitoringc/launch_id_from_verified_client_id.proto", fileDescriptor_11a900beb38434ce) } -var fileDescriptor_3633b2cfbe631aa2 = []byte{ - // 209 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x32, 0xce, 0xcd, 0xcf, 0xcb, - 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x4f, 0xd6, 0xcf, 0x49, 0x2c, 0xcd, 0x4b, 0xce, 0x88, 0xcf, - 0x4c, 0x89, 0x4f, 0x2b, 0xca, 0xcf, 0x8d, 0x2f, 0x4b, 0x2d, 0xca, 0x4c, 0xcb, 0x4c, 0x4d, 0x89, - 0x4f, 0xce, 0xc9, 0x4c, 0xcd, 0x2b, 0x89, 0xcf, 0x4c, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, - 0x92, 0x2a, 0x49, 0xcd, 0x4b, 0x49, 0x2d, 0xca, 0xcd, 0xcc, 0x2b, 0xd1, 0x2b, 0x2e, 0xc8, 0xd3, - 0x43, 0x32, 0x43, 0x29, 0x8c, 0x4b, 0xc6, 0x07, 0x6c, 0x8c, 0xa7, 0x8b, 0x5b, 0x51, 0x7e, 0x6e, - 0x18, 0xd4, 0x0c, 0x67, 0xb0, 0x11, 0x9e, 0x2e, 0x42, 0x52, 0x5c, 0x1c, 0xc9, 0x50, 0xb6, 0x04, - 0xa3, 0x02, 0xa3, 0x06, 0x67, 0x10, 0x9c, 0x0f, 0x92, 0xcb, 0x81, 0xea, 0x95, 0x60, 0x52, 0x60, - 0xd4, 0x60, 0x09, 0x82, 0xf3, 0x9d, 0xdc, 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, 0x4a, 0x37, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0xe1, 0x30, - 0xfd, 0xe2, 0x82, 0x3c, 0xfd, 0x0a, 0x7d, 0x64, 0xef, 0x95, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, - 0x81, 0xfd, 0x60, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xfd, 0xa9, 0xd8, 0xc8, 0xfa, 0x00, 0x00, - 0x00, +var fileDescriptor_11a900beb38434ce = []byte{ + // 207 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x32, 0x2f, 0x2e, 0xc8, 0xd3, + 0xcf, 0xcd, 0xcf, 0xcb, 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x4f, 0xd6, 0xcf, 0x49, 0x2c, 0xcd, + 0x4b, 0xce, 0x88, 0xcf, 0x4c, 0x89, 0x4f, 0x2b, 0xca, 0xcf, 0x8d, 0x2f, 0x4b, 0x2d, 0xca, 0x4c, + 0xcb, 0x4c, 0x4d, 0x89, 0x4f, 0xce, 0xc9, 0x4c, 0xcd, 0x2b, 0x89, 0xcf, 0x4c, 0xd1, 0x2b, 0x28, + 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x2f, 0x2e, 0xc8, 0xd3, 0x43, 0xd2, 0xa8, 0x14, 0xc6, 0x25, 0xe3, + 0x03, 0xd6, 0xeb, 0xe9, 0xe2, 0x56, 0x94, 0x9f, 0x1b, 0x06, 0xd5, 0xe8, 0x0c, 0xd6, 0xe7, 0xe9, + 0x22, 0x24, 0xc5, 0xc5, 0x91, 0x0c, 0x65, 0x4b, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x06, 0xc1, 0xf9, + 0x20, 0xb9, 0x1c, 0xa8, 0x5e, 0x09, 0x26, 0x05, 0x46, 0x0d, 0x96, 0x20, 0x38, 0xdf, 0xc9, 0xfd, + 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, + 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, + 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x4b, 0x52, 0xf3, 0x52, 0x52, 0x8b, 0x72, 0x33, 0xf3, 0x4a, + 0xf4, 0x41, 0x3e, 0xaa, 0x40, 0xf1, 0x53, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0xe1, + 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6e, 0xed, 0x48, 0x0a, 0xf3, 0x00, 0x00, 0x00, } func (m *LaunchIDFromVerifiedClientID) Marshal() (dAtA []byte, err error) { diff --git a/x/monitoringc/types/monitoring_history.pb.go b/x/monitoringc/types/monitoring_history.pb.go index e37a51993..791ee185d 100644 --- a/x/monitoringc/types/monitoring_history.pb.go +++ b/x/monitoringc/types/monitoring_history.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: monitoringc/monitoring_history.proto +// source: spn/monitoringc/monitoring_history.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" types "github.com/tendermint/spn/pkg/types" io "io" math "math" @@ -33,7 +33,7 @@ func (m *MonitoringHistory) Reset() { *m = MonitoringHistory{} } func (m *MonitoringHistory) String() string { return proto.CompactTextString(m) } func (*MonitoringHistory) ProtoMessage() {} func (*MonitoringHistory) Descriptor() ([]byte, []int) { - return fileDescriptor_9f9d38c755bb5fca, []int{0} + return fileDescriptor_92d31d6b61e1c48c, []int{0} } func (m *MonitoringHistory) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -77,30 +77,30 @@ func (m *MonitoringHistory) GetLatestMonitoringPacket() types.MonitoringPacket { } func init() { - proto.RegisterType((*MonitoringHistory)(nil), "tendermint.spn.monitoringc.MonitoringHistory") + proto.RegisterType((*MonitoringHistory)(nil), "spn.monitoringc.MonitoringHistory") } func init() { - proto.RegisterFile("monitoringc/monitoring_history.proto", fileDescriptor_9f9d38c755bb5fca) + proto.RegisterFile("spn/monitoringc/monitoring_history.proto", fileDescriptor_92d31d6b61e1c48c) } -var fileDescriptor_9f9d38c755bb5fca = []byte{ - // 232 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc9, 0xcd, 0xcf, 0xcb, - 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x4f, 0xd6, 0x47, 0xb0, 0xe3, 0x33, 0x32, 0x8b, 0x4b, 0xf2, - 0x8b, 0x2a, 0xf5, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0xa4, 0x4a, 0x52, 0xf3, 0x52, 0x52, 0x8b, - 0x72, 0x33, 0xf3, 0x4a, 0xf4, 0x8a, 0x0b, 0xf2, 0xf4, 0x90, 0x34, 0x49, 0x89, 0xa4, 0xe7, 0xa7, - 0xe7, 0x83, 0x95, 0xe9, 0x83, 0x58, 0x10, 0x1d, 0x52, 0x62, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x48, - 0x26, 0x42, 0xc4, 0x95, 0xa6, 0x32, 0x72, 0x09, 0xfa, 0xc2, 0x05, 0x3d, 0x20, 0xb6, 0x08, 0x49, - 0x71, 0x71, 0xe4, 0x24, 0x96, 0xe6, 0x25, 0x67, 0x78, 0xba, 0x48, 0x30, 0x2a, 0x30, 0x6a, 0xb0, - 0x04, 0xc1, 0xf9, 0x42, 0x29, 0x5c, 0x62, 0x39, 0x89, 0x25, 0xa9, 0xc5, 0x25, 0x08, 0x6d, 0x01, - 0x89, 0xc9, 0xd9, 0xa9, 0x25, 0x12, 0x4c, 0x0a, 0x8c, 0x1a, 0xdc, 0x46, 0x6a, 0x7a, 0x68, 0x8e, - 0x03, 0xdb, 0xac, 0x87, 0xae, 0xda, 0x89, 0xe5, 0xc4, 0x3d, 0x79, 0x86, 0x20, 0x1c, 0x66, 0x39, - 0xb9, 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, 0x6e, 0x7a, 0x66, 0x49, - 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0xc2, 0x26, 0xfd, 0xe2, 0x82, 0x3c, 0xfd, 0x0a, - 0x7d, 0xe4, 0xd0, 0x03, 0xdb, 0x9b, 0xc4, 0x06, 0xf6, 0xa7, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, - 0x2e, 0xfb, 0x09, 0x0c, 0x59, 0x01, 0x00, 0x00, +var fileDescriptor_92d31d6b61e1c48c = []byte{ + // 231 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x28, 0x2e, 0xc8, 0xd3, + 0xcf, 0xcd, 0xcf, 0xcb, 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x4f, 0x46, 0x62, 0xc7, 0x67, 0x64, + 0x16, 0x97, 0xe4, 0x17, 0x55, 0xea, 0x15, 0x14, 0xe5, 0x97, 0xe4, 0x0b, 0xf1, 0x17, 0x17, 0xe4, + 0xe9, 0x21, 0xa9, 0x94, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xcb, 0xe9, 0x83, 0x58, 0x10, 0x65, + 0x52, 0x52, 0x20, 0x03, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x91, 0x8c, 0x82, 0xc8, 0x29, 0x75, 0x31, + 0x72, 0x09, 0xfa, 0xc2, 0x05, 0x3d, 0x20, 0xc6, 0x0b, 0x49, 0x71, 0x71, 0xe4, 0x24, 0x96, 0xe6, + 0x25, 0x67, 0x78, 0xba, 0x48, 0x30, 0x2a, 0x30, 0x6a, 0xb0, 0x04, 0xc1, 0xf9, 0x42, 0x91, 0x5c, + 0x62, 0x39, 0x89, 0x25, 0xa9, 0xc5, 0x25, 0x08, 0x6d, 0x01, 0x89, 0xc9, 0xd9, 0xa9, 0x25, 0x12, + 0x4c, 0x0a, 0x8c, 0x1a, 0xdc, 0x46, 0xd2, 0x7a, 0x20, 0x57, 0x81, 0xad, 0xd3, 0x43, 0x57, 0xe2, + 0xc4, 0x72, 0xe2, 0x9e, 0x3c, 0x43, 0x10, 0x0e, 0x03, 0x9c, 0xdc, 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, 0x4a, 0x37, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, + 0x57, 0xbf, 0x24, 0x35, 0x2f, 0x25, 0xb5, 0x28, 0x37, 0x33, 0xaf, 0x44, 0x1f, 0xe4, 0xb1, 0x0a, + 0x94, 0xb0, 0x02, 0xdb, 0x9b, 0xc4, 0x06, 0xf6, 0x9c, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x37, + 0x80, 0x4a, 0xe7, 0x4b, 0x01, 0x00, 0x00, } func (m *MonitoringHistory) Marshal() (dAtA []byte, err error) { diff --git a/x/monitoringc/types/params.pb.go b/x/monitoringc/types/params.pb.go index 847de1c4f..9f98d6412 100644 --- a/x/monitoringc/types/params.pb.go +++ b/x/monitoringc/types/params.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: monitoringc/params.proto +// source: spn/monitoringc/params.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -30,7 +30,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_2fa3c7fce9c0a9eb, []int{0} + return fileDescriptor_55151a425c39e3af, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -60,23 +60,23 @@ func (m *Params) XXX_DiscardUnknown() { var xxx_messageInfo_Params proto.InternalMessageInfo func init() { - proto.RegisterType((*Params)(nil), "tendermint.spn.monitoringc.Params") + proto.RegisterType((*Params)(nil), "spn.monitoringc.Params") } -func init() { proto.RegisterFile("monitoringc/params.proto", fileDescriptor_2fa3c7fce9c0a9eb) } +func init() { proto.RegisterFile("spn/monitoringc/params.proto", fileDescriptor_55151a425c39e3af) } -var fileDescriptor_2fa3c7fce9c0a9eb = []byte{ - // 157 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xc8, 0xcd, 0xcf, 0xcb, - 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x4f, 0xd6, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, - 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x2a, 0x49, 0xcd, 0x4b, 0x49, 0x2d, 0xca, 0xcd, 0xcc, 0x2b, - 0xd1, 0x2b, 0x2e, 0xc8, 0xd3, 0x43, 0x52, 0x28, 0x25, 0x92, 0x9e, 0x9f, 0x9e, 0x0f, 0x56, 0xa6, - 0x0f, 0x62, 0x41, 0x74, 0x28, 0xf1, 0x71, 0xb1, 0x05, 0x80, 0x4d, 0xb0, 0x62, 0x99, 0xb1, 0x40, - 0x9e, 0xc1, 0xc9, 0xfd, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, - 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x74, 0xd3, - 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x11, 0xd6, 0xe8, 0x17, 0x17, 0xe4, - 0xe9, 0x57, 0xe8, 0x23, 0xbb, 0xa8, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x6c, 0xbe, 0x31, - 0x20, 0x00, 0x00, 0xff, 0xff, 0x9d, 0x71, 0x34, 0x97, 0xad, 0x00, 0x00, 0x00, +var fileDescriptor_55151a425c39e3af = []byte{ + // 155 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x29, 0x2e, 0xc8, 0xd3, + 0xcf, 0xcd, 0xcf, 0xcb, 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x4f, 0xd6, 0x2f, 0x48, 0x2c, 0x4a, + 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x2f, 0x2e, 0xc8, 0xd3, 0x43, 0x92, + 0x95, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xcb, 0xe9, 0x83, 0x58, 0x10, 0x65, 0x4a, 0x7c, 0x5c, + 0x6c, 0x01, 0x60, 0x6d, 0x56, 0x2c, 0x33, 0x16, 0xc8, 0x33, 0x38, 0xb9, 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, 0x6e, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, + 0x7e, 0xae, 0x7e, 0x49, 0x6a, 0x5e, 0x4a, 0x6a, 0x51, 0x6e, 0x66, 0x5e, 0x89, 0x3e, 0xc8, 0x11, + 0x15, 0x28, 0xce, 0x28, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0x9b, 0x6f, 0x0c, 0x08, 0x00, + 0x00, 0xff, 0xff, 0xfa, 0x4b, 0xd7, 0x30, 0xa6, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/monitoringc/types/provider_client_id.pb.go b/x/monitoringc/types/provider_client_id.pb.go index ed5559915..c6868907e 100644 --- a/x/monitoringc/types/provider_client_id.pb.go +++ b/x/monitoringc/types/provider_client_id.pb.go @@ -1,11 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: monitoringc/provider_client_id.proto +// source: spn/monitoringc/provider_client_id.proto package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -31,7 +31,7 @@ func (m *ProviderClientID) Reset() { *m = ProviderClientID{} } func (m *ProviderClientID) String() string { return proto.CompactTextString(m) } func (*ProviderClientID) ProtoMessage() {} func (*ProviderClientID) Descriptor() ([]byte, []int) { - return fileDescriptor_2afc3f894325fb0c, []int{0} + return fileDescriptor_6c123fa021955fe4, []int{0} } func (m *ProviderClientID) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -75,27 +75,27 @@ func (m *ProviderClientID) GetClientID() string { } func init() { - proto.RegisterType((*ProviderClientID)(nil), "tendermint.spn.monitoringc.ProviderClientID") + proto.RegisterType((*ProviderClientID)(nil), "spn.monitoringc.ProviderClientID") } func init() { - proto.RegisterFile("monitoringc/provider_client_id.proto", fileDescriptor_2afc3f894325fb0c) + proto.RegisterFile("spn/monitoringc/provider_client_id.proto", fileDescriptor_6c123fa021955fe4) } -var fileDescriptor_2afc3f894325fb0c = []byte{ - // 190 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc9, 0xcd, 0xcf, 0xcb, - 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x4f, 0xd6, 0x2f, 0x28, 0xca, 0x2f, 0xcb, 0x4c, 0x49, 0x2d, - 0x8a, 0x4f, 0xce, 0xc9, 0x4c, 0xcd, 0x2b, 0x89, 0xcf, 0x4c, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x92, 0x2a, 0x49, 0xcd, 0x4b, 0x49, 0x2d, 0xca, 0xcd, 0xcc, 0x2b, 0xd1, 0x2b, 0x2e, 0xc8, - 0xd3, 0x43, 0xd2, 0xa4, 0xe4, 0xc5, 0x25, 0x10, 0x00, 0xd5, 0xe7, 0x0c, 0xd6, 0xe6, 0xe9, 0x22, - 0x24, 0xc5, 0xc5, 0x91, 0x93, 0x58, 0x9a, 0x97, 0x9c, 0xe1, 0xe9, 0x22, 0xc1, 0xa8, 0xc0, 0xa8, - 0xc1, 0x12, 0x04, 0xe7, 0x83, 0xe4, 0x92, 0xa1, 0xea, 0x24, 0x98, 0x14, 0x18, 0x35, 0x38, 0x83, - 0xe0, 0x7c, 0x27, 0xf7, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, - 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xd2, 0x4d, - 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x47, 0x38, 0x46, 0xbf, 0xb8, 0x20, - 0x4f, 0xbf, 0x42, 0x1f, 0xd9, 0x0f, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0x77, 0x1b, - 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x4f, 0x8a, 0x6d, 0xde, 0xdf, 0x00, 0x00, 0x00, +var fileDescriptor_6c123fa021955fe4 = []byte{ + // 188 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x28, 0x2e, 0xc8, 0xd3, + 0xcf, 0xcd, 0xcf, 0xcb, 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x4f, 0xd6, 0x2f, 0x28, 0xca, 0x2f, + 0xcb, 0x4c, 0x49, 0x2d, 0x8a, 0x4f, 0xce, 0xc9, 0x4c, 0xcd, 0x2b, 0x89, 0xcf, 0x4c, 0xd1, 0x2b, + 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x2f, 0x2e, 0xc8, 0xd3, 0x43, 0x52, 0xa9, 0xe4, 0xc5, 0x25, + 0x10, 0x00, 0x55, 0xec, 0x0c, 0x56, 0xeb, 0xe9, 0x22, 0x24, 0xc5, 0xc5, 0x91, 0x93, 0x58, 0x9a, + 0x97, 0x9c, 0xe1, 0xe9, 0x22, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x12, 0x04, 0xe7, 0x83, 0xe4, 0x92, + 0xa1, 0xea, 0x24, 0x98, 0x14, 0x18, 0x35, 0x38, 0x83, 0xe0, 0x7c, 0x27, 0xf7, 0x13, 0x8f, 0xe4, + 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, + 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xd2, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, + 0xce, 0xcf, 0xd5, 0x2f, 0x49, 0xcd, 0x4b, 0x49, 0x2d, 0xca, 0xcd, 0xcc, 0x2b, 0xd1, 0x07, 0x39, + 0xbb, 0x02, 0xc5, 0xe1, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0xc7, 0x1a, 0x03, 0x02, + 0x00, 0x00, 0xff, 0xff, 0xe5, 0xf1, 0x3b, 0x11, 0xd8, 0x00, 0x00, 0x00, } func (m *ProviderClientID) Marshal() (dAtA []byte, err error) { diff --git a/x/monitoringc/types/query.pb.go b/x/monitoringc/types/query.pb.go index dc0864060..08517a0d2 100644 --- a/x/monitoringc/types/query.pb.go +++ b/x/monitoringc/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: monitoringc/query.proto +// source: spn/monitoringc/query.proto package types @@ -7,9 +7,9 @@ import ( context "context" fmt "fmt" query "github.com/cosmos/cosmos-sdk/types/query" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -38,7 +38,7 @@ func (m *QueryGetVerifiedClientIdsRequest) Reset() { *m = QueryGetVerifi func (m *QueryGetVerifiedClientIdsRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetVerifiedClientIdsRequest) ProtoMessage() {} func (*QueryGetVerifiedClientIdsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_ecb4a38bab58f58d, []int{0} + return fileDescriptor_8cc736e778fdcde2, []int{0} } func (m *QueryGetVerifiedClientIdsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -82,7 +82,7 @@ func (m *QueryGetVerifiedClientIdsResponse) Reset() { *m = QueryGetVerif func (m *QueryGetVerifiedClientIdsResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetVerifiedClientIdsResponse) ProtoMessage() {} func (*QueryGetVerifiedClientIdsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_ecb4a38bab58f58d, []int{1} + return fileDescriptor_8cc736e778fdcde2, []int{1} } func (m *QueryGetVerifiedClientIdsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -126,7 +126,7 @@ func (m *QueryGetProviderClientIDRequest) Reset() { *m = QueryGetProvide func (m *QueryGetProviderClientIDRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetProviderClientIDRequest) ProtoMessage() {} func (*QueryGetProviderClientIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_ecb4a38bab58f58d, []int{2} + return fileDescriptor_8cc736e778fdcde2, []int{2} } func (m *QueryGetProviderClientIDRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -170,7 +170,7 @@ func (m *QueryGetProviderClientIDResponse) Reset() { *m = QueryGetProvid func (m *QueryGetProviderClientIDResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetProviderClientIDResponse) ProtoMessage() {} func (*QueryGetProviderClientIDResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_ecb4a38bab58f58d, []int{3} + return fileDescriptor_8cc736e778fdcde2, []int{3} } func (m *QueryGetProviderClientIDResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -214,7 +214,7 @@ func (m *QueryAllProviderClientIDRequest) Reset() { *m = QueryAllProvide func (m *QueryAllProviderClientIDRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllProviderClientIDRequest) ProtoMessage() {} func (*QueryAllProviderClientIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_ecb4a38bab58f58d, []int{4} + return fileDescriptor_8cc736e778fdcde2, []int{4} } func (m *QueryAllProviderClientIDRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -259,7 +259,7 @@ func (m *QueryAllProviderClientIDResponse) Reset() { *m = QueryAllProvid func (m *QueryAllProviderClientIDResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllProviderClientIDResponse) ProtoMessage() {} func (*QueryAllProviderClientIDResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_ecb4a38bab58f58d, []int{5} + return fileDescriptor_8cc736e778fdcde2, []int{5} } func (m *QueryAllProviderClientIDResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -310,7 +310,7 @@ func (m *QueryGetLaunchIDFromChannelIDRequest) Reset() { *m = QueryGetLa func (m *QueryGetLaunchIDFromChannelIDRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetLaunchIDFromChannelIDRequest) ProtoMessage() {} func (*QueryGetLaunchIDFromChannelIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_ecb4a38bab58f58d, []int{6} + return fileDescriptor_8cc736e778fdcde2, []int{6} } func (m *QueryGetLaunchIDFromChannelIDRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -354,7 +354,7 @@ func (m *QueryGetLaunchIDFromChannelIDResponse) Reset() { *m = QueryGetL func (m *QueryGetLaunchIDFromChannelIDResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetLaunchIDFromChannelIDResponse) ProtoMessage() {} func (*QueryGetLaunchIDFromChannelIDResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_ecb4a38bab58f58d, []int{7} + return fileDescriptor_8cc736e778fdcde2, []int{7} } func (m *QueryGetLaunchIDFromChannelIDResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -398,7 +398,7 @@ func (m *QueryAllLaunchIDFromChannelIDRequest) Reset() { *m = QueryAllLa func (m *QueryAllLaunchIDFromChannelIDRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllLaunchIDFromChannelIDRequest) ProtoMessage() {} func (*QueryAllLaunchIDFromChannelIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_ecb4a38bab58f58d, []int{8} + return fileDescriptor_8cc736e778fdcde2, []int{8} } func (m *QueryAllLaunchIDFromChannelIDRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -443,7 +443,7 @@ func (m *QueryAllLaunchIDFromChannelIDResponse) Reset() { *m = QueryAllL func (m *QueryAllLaunchIDFromChannelIDResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllLaunchIDFromChannelIDResponse) ProtoMessage() {} func (*QueryAllLaunchIDFromChannelIDResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_ecb4a38bab58f58d, []int{9} + return fileDescriptor_8cc736e778fdcde2, []int{9} } func (m *QueryAllLaunchIDFromChannelIDResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -494,7 +494,7 @@ func (m *QueryGetMonitoringHistoryRequest) Reset() { *m = QueryGetMonito func (m *QueryGetMonitoringHistoryRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetMonitoringHistoryRequest) ProtoMessage() {} func (*QueryGetMonitoringHistoryRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_ecb4a38bab58f58d, []int{10} + return fileDescriptor_8cc736e778fdcde2, []int{10} } func (m *QueryGetMonitoringHistoryRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -538,7 +538,7 @@ func (m *QueryGetMonitoringHistoryResponse) Reset() { *m = QueryGetMonit func (m *QueryGetMonitoringHistoryResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetMonitoringHistoryResponse) ProtoMessage() {} func (*QueryGetMonitoringHistoryResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_ecb4a38bab58f58d, []int{11} + return fileDescriptor_8cc736e778fdcde2, []int{11} } func (m *QueryGetMonitoringHistoryResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -582,7 +582,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_ecb4a38bab58f58d, []int{12} + return fileDescriptor_8cc736e778fdcde2, []int{12} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -620,7 +620,7 @@ 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_ecb4a38bab58f58d, []int{13} + return fileDescriptor_8cc736e778fdcde2, []int{13} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -657,79 +657,79 @@ func (m *QueryParamsResponse) GetParams() Params { } func init() { - proto.RegisterType((*QueryGetVerifiedClientIdsRequest)(nil), "tendermint.spn.monitoringc.QueryGetVerifiedClientIdsRequest") - proto.RegisterType((*QueryGetVerifiedClientIdsResponse)(nil), "tendermint.spn.monitoringc.QueryGetVerifiedClientIdsResponse") - proto.RegisterType((*QueryGetProviderClientIDRequest)(nil), "tendermint.spn.monitoringc.QueryGetProviderClientIDRequest") - proto.RegisterType((*QueryGetProviderClientIDResponse)(nil), "tendermint.spn.monitoringc.QueryGetProviderClientIDResponse") - proto.RegisterType((*QueryAllProviderClientIDRequest)(nil), "tendermint.spn.monitoringc.QueryAllProviderClientIDRequest") - proto.RegisterType((*QueryAllProviderClientIDResponse)(nil), "tendermint.spn.monitoringc.QueryAllProviderClientIDResponse") - proto.RegisterType((*QueryGetLaunchIDFromChannelIDRequest)(nil), "tendermint.spn.monitoringc.QueryGetLaunchIDFromChannelIDRequest") - proto.RegisterType((*QueryGetLaunchIDFromChannelIDResponse)(nil), "tendermint.spn.monitoringc.QueryGetLaunchIDFromChannelIDResponse") - proto.RegisterType((*QueryAllLaunchIDFromChannelIDRequest)(nil), "tendermint.spn.monitoringc.QueryAllLaunchIDFromChannelIDRequest") - proto.RegisterType((*QueryAllLaunchIDFromChannelIDResponse)(nil), "tendermint.spn.monitoringc.QueryAllLaunchIDFromChannelIDResponse") - proto.RegisterType((*QueryGetMonitoringHistoryRequest)(nil), "tendermint.spn.monitoringc.QueryGetMonitoringHistoryRequest") - proto.RegisterType((*QueryGetMonitoringHistoryResponse)(nil), "tendermint.spn.monitoringc.QueryGetMonitoringHistoryResponse") - proto.RegisterType((*QueryParamsRequest)(nil), "tendermint.spn.monitoringc.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "tendermint.spn.monitoringc.QueryParamsResponse") -} - -func init() { proto.RegisterFile("monitoringc/query.proto", fileDescriptor_ecb4a38bab58f58d) } - -var fileDescriptor_ecb4a38bab58f58d = []byte{ - // 847 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0xcf, 0x4f, 0xd4, 0x40, - 0x14, 0xde, 0x01, 0x24, 0x32, 0x5c, 0x60, 0x80, 0xb8, 0x69, 0xc8, 0x82, 0x0d, 0x2a, 0x41, 0x69, - 0x05, 0xa2, 0x46, 0x01, 0xc3, 0x02, 0x01, 0x49, 0x34, 0xc1, 0x3d, 0x68, 0xe2, 0xc1, 0x4d, 0x77, - 0x77, 0xe8, 0x4e, 0xd2, 0xce, 0x94, 0xb6, 0x4b, 0x24, 0x84, 0x0b, 0x07, 0xcf, 0x26, 0x46, 0xff, - 0x13, 0xff, 0x07, 0x12, 0x2f, 0x24, 0x78, 0xf0, 0x84, 0x06, 0x4c, 0xfc, 0x37, 0xcc, 0x4e, 0xa7, - 0xb4, 0xbb, 0xfd, 0xb1, 0x15, 0xf6, 0xb6, 0x3b, 0x7d, 0xef, 0x7b, 0xef, 0xfb, 0xe6, 0xf5, 0x7b, - 0x85, 0xb7, 0x4c, 0x46, 0x89, 0xcb, 0x6c, 0x42, 0xf5, 0xaa, 0xba, 0xdb, 0xc0, 0xf6, 0xbe, 0x62, - 0xd9, 0xcc, 0x65, 0x48, 0x72, 0x31, 0xad, 0x61, 0xdb, 0x24, 0xd4, 0x55, 0x1c, 0x8b, 0x2a, 0xa1, - 0x38, 0x69, 0x54, 0x67, 0x3a, 0xe3, 0x61, 0x6a, 0xf3, 0x97, 0x97, 0x21, 0x8d, 0xeb, 0x8c, 0xe9, - 0x06, 0x56, 0x35, 0x8b, 0xa8, 0x1a, 0xa5, 0xcc, 0xd5, 0x5c, 0xc2, 0xa8, 0x23, 0x9e, 0xce, 0x54, - 0x99, 0x63, 0x32, 0x47, 0xad, 0x68, 0x0e, 0xf6, 0x0a, 0xa9, 0x7b, 0x73, 0x15, 0xec, 0x6a, 0x73, - 0xaa, 0xa5, 0xe9, 0x84, 0xf2, 0x60, 0x11, 0x9b, 0x0f, 0x37, 0x65, 0x69, 0xb6, 0x66, 0xfa, 0x28, - 0x53, 0x2d, 0x4f, 0x6c, 0xb6, 0x47, 0x6a, 0xd8, 0x2e, 0x57, 0x0d, 0x82, 0xa9, 0x5b, 0x26, 0x35, - 0x11, 0xb5, 0x10, 0x8e, 0x32, 0xb4, 0x06, 0xad, 0xd6, 0xcb, 0xa4, 0x56, 0xde, 0xb1, 0x99, 0x59, - 0xde, 0xc3, 0x36, 0xd9, 0x21, 0xb8, 0x16, 0x49, 0xba, 0x9f, 0x92, 0x54, 0xad, 0x6b, 0x94, 0x62, - 0x23, 0x08, 0x6e, 0xe9, 0x23, 0xf8, 0x5d, 0xae, 0x13, 0xc7, 0x65, 0xbe, 0x86, 0xf2, 0x73, 0x38, - 0xf9, 0xba, 0xc9, 0x74, 0x13, 0xbb, 0x6f, 0x44, 0xd9, 0x35, 0x5e, 0x75, 0xab, 0xe6, 0x94, 0xf0, - 0x6e, 0x03, 0x3b, 0x2e, 0x92, 0xe0, 0x4d, 0xaf, 0xd8, 0xd6, 0x7a, 0x1e, 0x4c, 0x82, 0xe9, 0xbe, - 0xd2, 0xe5, 0x7f, 0xb9, 0x08, 0x6f, 0xa7, 0xe4, 0x3b, 0x16, 0xa3, 0x0e, 0x46, 0xe3, 0x70, 0xa0, - 0xea, 0x1f, 0xe6, 0xc1, 0x64, 0xef, 0xf4, 0x40, 0x29, 0x38, 0x90, 0x97, 0xe1, 0x84, 0x0f, 0xb1, - 0x2d, 0xe4, 0x12, 0x10, 0xeb, 0x59, 0x3a, 0x38, 0x02, 0x01, 0x85, 0x68, 0xbe, 0xe8, 0xe0, 0x3d, - 0x1c, 0xb2, 0xda, 0x9e, 0x71, 0xa0, 0xc1, 0xf9, 0x07, 0x4a, 0xf2, 0x14, 0x29, 0xed, 0x78, 0xab, - 0x7d, 0xc7, 0x67, 0x13, 0xb9, 0x52, 0x04, 0x4b, 0x26, 0x82, 0x43, 0xd1, 0x30, 0x92, 0x38, 0x6c, - 0x40, 0x18, 0x4c, 0x91, 0x28, 0x7e, 0x57, 0xf1, 0x46, 0x4e, 0x69, 0x8e, 0x9c, 0xe2, 0xcd, 0xb6, - 0x18, 0x39, 0x65, 0x5b, 0xd3, 0xb1, 0xc8, 0x2d, 0x85, 0x32, 0xe5, 0xef, 0x3e, 0xdf, 0xd8, 0x5a, - 0xa9, 0x7c, 0x7b, 0xbb, 0xc5, 0x17, 0x6d, 0xb6, 0x90, 0xe9, 0xe1, 0x64, 0xee, 0x75, 0x24, 0xe3, - 0x35, 0xd7, 0xc2, 0x66, 0x1d, 0x4e, 0xf9, 0x97, 0xf7, 0x52, 0xdc, 0xe8, 0x86, 0xcd, 0xcc, 0x35, - 0x6f, 0x9a, 0x03, 0xf5, 0x9a, 0x23, 0xe4, 0x9f, 0x71, 0xf1, 0x9a, 0x23, 0xe4, 0x1f, 0xc8, 0x5f, - 0x01, 0xbc, 0xd3, 0x01, 0x46, 0x08, 0x63, 0xc2, 0x31, 0x23, 0x2e, 0x40, 0x5c, 0xc8, 0x5c, 0x9a, - 0x3a, 0xb1, 0xc8, 0x42, 0xa2, 0x78, 0x54, 0x99, 0x0a, 0x7a, 0x45, 0xc3, 0x48, 0xa5, 0xd7, 0xad, - 0xe1, 0xf8, 0xe5, 0x0b, 0x91, 0x5c, 0xb0, 0xb3, 0x10, 0xbd, 0xdd, 0x17, 0xa2, 0x7b, 0x03, 0x13, - 0x32, 0xac, 0x57, 0x97, 0x2d, 0xbd, 0xf0, 0x3c, 0x2d, 0x8b, 0x5d, 0x7c, 0x04, 0x81, 0x63, 0xc5, - 0x00, 0x08, 0x75, 0x34, 0x38, 0x6c, 0xb6, 0x3f, 0x14, 0xd7, 0x32, 0x9b, 0xa6, 0x4c, 0x04, 0x51, - 0xa8, 0x12, 0x45, 0x93, 0x47, 0x21, 0xe2, 0x7d, 0x6c, 0xf3, 0xe5, 0x21, 0x5a, 0x97, 0xdf, 0xc2, - 0x91, 0x96, 0x53, 0xd1, 0xcf, 0x0a, 0xec, 0xf7, 0x96, 0x8c, 0x68, 0x42, 0x4e, 0x7d, 0x8b, 0x79, - 0xa4, 0xa8, 0x2c, 0xf2, 0xe6, 0xbf, 0x0d, 0xc2, 0x1b, 0x1c, 0x19, 0xfd, 0x00, 0x70, 0x38, 0xe2, - 0xd5, 0x68, 0x29, 0x0d, 0xb1, 0xd3, 0x8a, 0x90, 0x96, 0xaf, 0x98, 0xed, 0xd1, 0x93, 0x57, 0x8f, - 0x4e, 0xff, 0x7c, 0xee, 0x59, 0x42, 0xcf, 0xd4, 0x00, 0x46, 0x75, 0x2c, 0xaa, 0x86, 0x77, 0x58, - 0x74, 0x2d, 0x3a, 0xea, 0x81, 0x7f, 0xaf, 0x87, 0xe8, 0x04, 0xc0, 0xa1, 0x76, 0xff, 0x42, 0x8b, - 0x59, 0xfa, 0x4a, 0x70, 0x6c, 0x69, 0xe9, 0x6a, 0xc9, 0x82, 0x53, 0x91, 0x73, 0x5a, 0x44, 0x4f, - 0xd3, 0x38, 0x45, 0xbf, 0x0f, 0xc2, 0x94, 0x8e, 0x01, 0x1c, 0x69, 0xc7, 0x2f, 0x1a, 0x46, 0x06, - 0x56, 0xc9, 0x7b, 0x28, 0x03, 0xab, 0x94, 0xc5, 0x22, 0x3f, 0xe6, 0xac, 0x1e, 0x22, 0xe5, 0xff, - 0x58, 0xa1, 0xbf, 0x00, 0x8e, 0xc5, 0xda, 0x06, 0x5a, 0xc9, 0xa2, 0x72, 0x9a, 0x79, 0x4a, 0xc5, - 0x6b, 0x20, 0x08, 0x5a, 0x5b, 0x9c, 0xd6, 0x1a, 0x2a, 0xa6, 0xd1, 0x4a, 0xfc, 0xe2, 0x52, 0x0f, - 0x2e, 0x57, 0xd1, 0x21, 0x3a, 0x03, 0x30, 0x1f, 0x5b, 0xac, 0x79, 0x73, 0x2b, 0x59, 0xc4, 0xbf, - 0x26, 0xd9, 0x4e, 0xd6, 0x2f, 0x2f, 0x73, 0xb2, 0x4f, 0xd0, 0xa3, 0x2b, 0x91, 0x45, 0xa7, 0x00, - 0x0e, 0x47, 0x7c, 0x2e, 0x9b, 0x7f, 0x24, 0x39, 0x76, 0x36, 0xff, 0x48, 0xb4, 0xeb, 0x6c, 0xef, - 0x5a, 0xf4, 0x1b, 0x38, 0xfc, 0xae, 0x7d, 0x01, 0xb0, 0xdf, 0x33, 0x4e, 0xa4, 0x74, 0x6c, 0xa6, - 0xc5, 0xb3, 0x25, 0x35, 0x73, 0xbc, 0x68, 0x77, 0x86, 0xb7, 0x3b, 0x85, 0xe4, 0xd4, 0x97, 0xc8, - 0x73, 0xf1, 0xcd, 0xe3, 0xf3, 0x02, 0x38, 0x39, 0x2f, 0x80, 0xdf, 0xe7, 0x05, 0xf0, 0xe9, 0xa2, - 0x90, 0x3b, 0xb9, 0x28, 0xe4, 0x7e, 0x5e, 0x14, 0x72, 0xef, 0x66, 0x75, 0xe2, 0xd6, 0x1b, 0x15, - 0xa5, 0xca, 0xcc, 0x76, 0x9c, 0x0f, 0x2d, 0x48, 0xee, 0xbe, 0x85, 0x9d, 0x4a, 0x3f, 0xff, 0xe0, - 0x5f, 0xf8, 0x17, 0x00, 0x00, 0xff, 0xff, 0x2b, 0x7c, 0xff, 0x8f, 0x4f, 0x0d, 0x00, 0x00, + proto.RegisterType((*QueryGetVerifiedClientIdsRequest)(nil), "spn.monitoringc.QueryGetVerifiedClientIdsRequest") + proto.RegisterType((*QueryGetVerifiedClientIdsResponse)(nil), "spn.monitoringc.QueryGetVerifiedClientIdsResponse") + proto.RegisterType((*QueryGetProviderClientIDRequest)(nil), "spn.monitoringc.QueryGetProviderClientIDRequest") + proto.RegisterType((*QueryGetProviderClientIDResponse)(nil), "spn.monitoringc.QueryGetProviderClientIDResponse") + proto.RegisterType((*QueryAllProviderClientIDRequest)(nil), "spn.monitoringc.QueryAllProviderClientIDRequest") + proto.RegisterType((*QueryAllProviderClientIDResponse)(nil), "spn.monitoringc.QueryAllProviderClientIDResponse") + proto.RegisterType((*QueryGetLaunchIDFromChannelIDRequest)(nil), "spn.monitoringc.QueryGetLaunchIDFromChannelIDRequest") + proto.RegisterType((*QueryGetLaunchIDFromChannelIDResponse)(nil), "spn.monitoringc.QueryGetLaunchIDFromChannelIDResponse") + proto.RegisterType((*QueryAllLaunchIDFromChannelIDRequest)(nil), "spn.monitoringc.QueryAllLaunchIDFromChannelIDRequest") + proto.RegisterType((*QueryAllLaunchIDFromChannelIDResponse)(nil), "spn.monitoringc.QueryAllLaunchIDFromChannelIDResponse") + proto.RegisterType((*QueryGetMonitoringHistoryRequest)(nil), "spn.monitoringc.QueryGetMonitoringHistoryRequest") + proto.RegisterType((*QueryGetMonitoringHistoryResponse)(nil), "spn.monitoringc.QueryGetMonitoringHistoryResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "spn.monitoringc.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "spn.monitoringc.QueryParamsResponse") +} + +func init() { proto.RegisterFile("spn/monitoringc/query.proto", fileDescriptor_8cc736e778fdcde2) } + +var fileDescriptor_8cc736e778fdcde2 = []byte{ + // 842 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0xcf, 0x4f, 0x13, 0x4d, + 0x18, 0xee, 0x02, 0x1f, 0xf9, 0x98, 0xef, 0xf0, 0xc1, 0x00, 0x91, 0x54, 0x52, 0x60, 0x44, 0x25, + 0x24, 0xee, 0x52, 0x4c, 0x21, 0xfe, 0xc0, 0xa4, 0x40, 0x40, 0x12, 0x4c, 0xb0, 0x26, 0x1c, 0xbc, + 0x34, 0xdb, 0x76, 0xd8, 0x4e, 0xb2, 0x3b, 0xb3, 0xec, 0x6e, 0x51, 0x42, 0x88, 0x89, 0x57, 0x2f, + 0x26, 0xde, 0xfc, 0x33, 0x3c, 0x9a, 0x68, 0x3c, 0x72, 0xc4, 0xe8, 0xc1, 0x93, 0x31, 0xe0, 0x1f, + 0x62, 0x3a, 0x3b, 0xdb, 0x6d, 0x77, 0x76, 0xb7, 0x14, 0xb9, 0xb5, 0x33, 0xf3, 0x3e, 0xef, 0xf3, + 0xbc, 0xf3, 0xce, 0xf3, 0x2e, 0xb8, 0xee, 0xda, 0x54, 0xb3, 0x18, 0x25, 0x1e, 0x73, 0x08, 0x35, + 0xaa, 0xda, 0x7e, 0x03, 0x3b, 0x87, 0xaa, 0xed, 0x30, 0x8f, 0xc1, 0xff, 0x5d, 0x9b, 0xaa, 0x6d, + 0x9b, 0xd9, 0x31, 0x83, 0x19, 0x8c, 0xef, 0x69, 0xcd, 0x5f, 0xfe, 0xb1, 0xec, 0xa4, 0xc1, 0x98, + 0x61, 0x62, 0x4d, 0xb7, 0x89, 0xa6, 0x53, 0xca, 0x3c, 0xdd, 0x23, 0x8c, 0xba, 0x62, 0x77, 0xbe, + 0xca, 0x5c, 0x8b, 0xb9, 0x5a, 0x45, 0x77, 0xb1, 0x8f, 0xae, 0x1d, 0xe4, 0x2b, 0xd8, 0xd3, 0xf3, + 0x9a, 0xad, 0x1b, 0x84, 0xf2, 0xc3, 0x01, 0x52, 0x94, 0x8d, 0xad, 0x3b, 0xba, 0x15, 0x20, 0xcd, + 0x49, 0xbb, 0x0e, 0x3b, 0x20, 0x35, 0xec, 0x94, 0xab, 0x26, 0xc1, 0xd4, 0x2b, 0x93, 0x9a, 0x38, + 0xb9, 0x1c, 0x3d, 0x69, 0xea, 0x0d, 0x5a, 0xad, 0x97, 0x49, 0xad, 0xbc, 0xe7, 0x30, 0xab, 0x7c, + 0x80, 0x1d, 0xb2, 0x47, 0x70, 0x4d, 0x0a, 0xd4, 0xba, 0x04, 0x56, 0xeb, 0x3a, 0xa5, 0xd8, 0x0c, + 0x03, 0x24, 0x4e, 0xe1, 0xef, 0x72, 0x9d, 0xb8, 0x1e, 0x0b, 0x8a, 0x89, 0x1e, 0x81, 0xe9, 0xa7, + 0x4d, 0xf5, 0x9b, 0xd8, 0xdb, 0x15, 0xe9, 0xd7, 0x78, 0xf6, 0xad, 0x9a, 0x5b, 0xc2, 0xfb, 0x0d, + 0xec, 0x7a, 0x30, 0x0b, 0xfe, 0xf5, 0x13, 0x6e, 0xad, 0x4f, 0x28, 0xd3, 0xca, 0xdc, 0x40, 0xa9, + 0xf5, 0x1f, 0x15, 0xc1, 0x4c, 0x4a, 0xbc, 0x6b, 0x33, 0xea, 0x62, 0x38, 0x09, 0x86, 0xaa, 0xc1, + 0xe2, 0x84, 0x32, 0xdd, 0x3f, 0x37, 0x54, 0x0a, 0x17, 0xd0, 0x0a, 0x98, 0x0a, 0x20, 0x76, 0x44, + 0xe9, 0x04, 0xc4, 0xfa, 0x45, 0x18, 0xbc, 0x08, 0x15, 0xc8, 0xe1, 0x82, 0xc0, 0x33, 0x30, 0x6c, + 0x47, 0xf6, 0x38, 0xce, 0x7f, 0x8b, 0x33, 0x6a, 0xa4, 0x9b, 0xd4, 0x28, 0xc8, 0xea, 0xc0, 0xc9, + 0xcf, 0xa9, 0x4c, 0x49, 0x02, 0x40, 0x44, 0xf0, 0x2e, 0x9a, 0x66, 0x12, 0xef, 0x0d, 0x00, 0xc2, + 0x6e, 0x12, 0x19, 0x6f, 0xa9, 0x7e, 0xeb, 0xa9, 0xcd, 0xd6, 0x53, 0xfd, 0xc6, 0x16, 0xad, 0xa7, + 0xee, 0xe8, 0x06, 0x16, 0xb1, 0xa5, 0xb6, 0x48, 0xf4, 0x45, 0x11, 0x22, 0x63, 0x73, 0xa5, 0x8a, + 0xec, 0xff, 0x2b, 0x91, 0x70, 0xb3, 0x43, 0x41, 0x1f, 0x57, 0x70, 0xbb, 0xab, 0x02, 0x9f, 0x51, + 0x87, 0x84, 0x75, 0x30, 0x1b, 0x5c, 0xd3, 0xb6, 0xb8, 0xba, 0x0d, 0x87, 0x59, 0x6b, 0x7e, 0xeb, + 0x86, 0x25, 0x6b, 0xf6, 0x4a, 0xb0, 0xc6, 0x2b, 0xd6, 0xec, 0x95, 0x60, 0x01, 0xbd, 0x51, 0xc0, + 0xcd, 0x2e, 0x30, 0xa2, 0x1a, 0x15, 0x30, 0x6e, 0xc6, 0x1d, 0x68, 0xdd, 0x42, 0xb4, 0x24, 0xb1, + 0x70, 0xa2, 0x2e, 0xf1, 0x50, 0x88, 0x0a, 0x4d, 0x45, 0xd3, 0x4c, 0xd5, 0x74, 0x55, 0x6d, 0xf0, + 0x3d, 0x50, 0x9f, 0x9c, 0xb0, 0xbb, 0xfa, 0xfe, 0x2b, 0x52, 0x7f, 0x75, 0xad, 0xd1, 0xe6, 0x41, + 0x4f, 0x5a, 0x94, 0x1e, 0xfb, 0x36, 0x75, 0x11, 0x07, 0x38, 0x0a, 0x3d, 0x28, 0x26, 0x5e, 0x54, + 0x64, 0x17, 0x8c, 0x58, 0xd1, 0x4d, 0x71, 0x15, 0x48, 0xaa, 0x86, 0x04, 0x23, 0x2a, 0x21, 0x43, + 0xa0, 0x31, 0x00, 0x79, 0xf2, 0x1d, 0x3e, 0x13, 0x04, 0x5d, 0xb4, 0x0d, 0x46, 0x3b, 0x56, 0x05, + 0x89, 0x02, 0x18, 0xf4, 0x67, 0x87, 0xc8, 0x7c, 0x4d, 0x7e, 0x98, 0x7c, 0x5b, 0xa4, 0x13, 0x87, + 0x17, 0xdf, 0x03, 0xf0, 0x0f, 0x87, 0x83, 0x9f, 0x15, 0x30, 0x22, 0xf9, 0x2c, 0xcc, 0x4b, 0x30, + 0xdd, 0x3c, 0x3d, 0xbb, 0xd8, 0x4b, 0x88, 0xcf, 0x1e, 0xad, 0xbe, 0xfe, 0xf6, 0xfb, 0x5d, 0xdf, + 0x43, 0x78, 0x5f, 0xf3, 0x30, 0xad, 0x61, 0xc7, 0x22, 0xd4, 0x93, 0x46, 0x93, 0x3c, 0xc4, 0x5c, + 0xed, 0x28, 0xb8, 0xaa, 0x63, 0xf8, 0x51, 0x01, 0xc3, 0x51, 0xf3, 0x81, 0x0b, 0x89, 0x64, 0x12, + 0x8c, 0x35, 0x9b, 0xef, 0x21, 0x42, 0xb0, 0x2f, 0x72, 0xf6, 0x0f, 0xe0, 0xbd, 0x34, 0xf6, 0xf2, + 0xec, 0x6e, 0x27, 0xff, 0x41, 0x01, 0xa3, 0x51, 0xfc, 0xa2, 0x69, 0x26, 0xf1, 0x4f, 0x1e, 0x0c, + 0x49, 0xfc, 0x53, 0xec, 0x1d, 0x2d, 0x71, 0xfe, 0x0b, 0x50, 0xed, 0x8d, 0x3f, 0xfc, 0xaa, 0x80, + 0xf1, 0xd8, 0xd7, 0x0d, 0x0b, 0x89, 0x45, 0x4c, 0x73, 0xb3, 0xec, 0x52, 0xaf, 0x61, 0x42, 0xc0, + 0x16, 0x17, 0xb0, 0x06, 0x8b, 0x69, 0x02, 0x12, 0xbf, 0x6c, 0xb4, 0xa3, 0xd6, 0x14, 0x38, 0x86, + 0x27, 0x0a, 0x98, 0x88, 0x4d, 0xd6, 0xbc, 0x8d, 0x42, 0x62, 0x6d, 0x2f, 0x23, 0xab, 0x9b, 0xd5, + 0xa2, 0x15, 0x2e, 0x6b, 0x19, 0x16, 0x2e, 0x25, 0x0b, 0x7e, 0x52, 0xc0, 0x88, 0x64, 0x37, 0x29, + 0x2f, 0x3a, 0xc9, 0x21, 0x53, 0x5e, 0x74, 0xa2, 0x29, 0x5e, 0xec, 0x4d, 0xc8, 0xdf, 0x8e, 0xed, + 0x6f, 0xe2, 0x15, 0x18, 0xf4, 0x3d, 0x0b, 0xde, 0x88, 0x27, 0xd0, 0x61, 0x8c, 0xd9, 0xd9, 0xf4, + 0x43, 0x82, 0xd7, 0x3c, 0xe7, 0x35, 0x0b, 0x51, 0x6a, 0xaf, 0xfb, 0x56, 0xb9, 0x79, 0x72, 0x96, + 0x53, 0x4e, 0xcf, 0x72, 0xca, 0xaf, 0xb3, 0x9c, 0xf2, 0xf6, 0x3c, 0x97, 0x39, 0x3d, 0xcf, 0x65, + 0x7e, 0x9c, 0xe7, 0x32, 0xcf, 0xef, 0x18, 0xc4, 0xab, 0x37, 0x2a, 0x6a, 0x95, 0x59, 0x51, 0x9c, + 0x97, 0x1d, 0x48, 0xde, 0xa1, 0x8d, 0xdd, 0xca, 0x20, 0xff, 0x22, 0xbe, 0xfb, 0x27, 0x00, 0x00, + 0xff, 0xff, 0x56, 0xa8, 0x0c, 0x32, 0x7d, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -770,7 +770,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) VerifiedClientIds(ctx context.Context, in *QueryGetVerifiedClientIdsRequest, opts ...grpc.CallOption) (*QueryGetVerifiedClientIdsResponse, error) { out := new(QueryGetVerifiedClientIdsResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.monitoringc.Query/VerifiedClientIds", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.monitoringc.Query/VerifiedClientIds", in, out, opts...) if err != nil { return nil, err } @@ -779,7 +779,7 @@ func (c *queryClient) VerifiedClientIds(ctx context.Context, in *QueryGetVerifie func (c *queryClient) ProviderClientID(ctx context.Context, in *QueryGetProviderClientIDRequest, opts ...grpc.CallOption) (*QueryGetProviderClientIDResponse, error) { out := new(QueryGetProviderClientIDResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.monitoringc.Query/ProviderClientID", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.monitoringc.Query/ProviderClientID", in, out, opts...) if err != nil { return nil, err } @@ -788,7 +788,7 @@ func (c *queryClient) ProviderClientID(ctx context.Context, in *QueryGetProvider func (c *queryClient) ProviderClientIDAll(ctx context.Context, in *QueryAllProviderClientIDRequest, opts ...grpc.CallOption) (*QueryAllProviderClientIDResponse, error) { out := new(QueryAllProviderClientIDResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.monitoringc.Query/ProviderClientIDAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.monitoringc.Query/ProviderClientIDAll", in, out, opts...) if err != nil { return nil, err } @@ -797,7 +797,7 @@ func (c *queryClient) ProviderClientIDAll(ctx context.Context, in *QueryAllProvi func (c *queryClient) LaunchIDFromChannelID(ctx context.Context, in *QueryGetLaunchIDFromChannelIDRequest, opts ...grpc.CallOption) (*QueryGetLaunchIDFromChannelIDResponse, error) { out := new(QueryGetLaunchIDFromChannelIDResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.monitoringc.Query/LaunchIDFromChannelID", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.monitoringc.Query/LaunchIDFromChannelID", in, out, opts...) if err != nil { return nil, err } @@ -806,7 +806,7 @@ func (c *queryClient) LaunchIDFromChannelID(ctx context.Context, in *QueryGetLau func (c *queryClient) LaunchIDFromChannelIDAll(ctx context.Context, in *QueryAllLaunchIDFromChannelIDRequest, opts ...grpc.CallOption) (*QueryAllLaunchIDFromChannelIDResponse, error) { out := new(QueryAllLaunchIDFromChannelIDResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.monitoringc.Query/LaunchIDFromChannelIDAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.monitoringc.Query/LaunchIDFromChannelIDAll", in, out, opts...) if err != nil { return nil, err } @@ -815,7 +815,7 @@ func (c *queryClient) LaunchIDFromChannelIDAll(ctx context.Context, in *QueryAll func (c *queryClient) MonitoringHistory(ctx context.Context, in *QueryGetMonitoringHistoryRequest, opts ...grpc.CallOption) (*QueryGetMonitoringHistoryResponse, error) { out := new(QueryGetMonitoringHistoryResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.monitoringc.Query/MonitoringHistory", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.monitoringc.Query/MonitoringHistory", in, out, opts...) if err != nil { return nil, err } @@ -824,7 +824,7 @@ func (c *queryClient) MonitoringHistory(ctx context.Context, in *QueryGetMonitor func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.monitoringc.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.monitoringc.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -889,7 +889,7 @@ func _Query_VerifiedClientIds_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.monitoringc.Query/VerifiedClientIds", + FullMethod: "/spn.monitoringc.Query/VerifiedClientIds", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).VerifiedClientIds(ctx, req.(*QueryGetVerifiedClientIdsRequest)) @@ -907,7 +907,7 @@ func _Query_ProviderClientID_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.monitoringc.Query/ProviderClientID", + FullMethod: "/spn.monitoringc.Query/ProviderClientID", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ProviderClientID(ctx, req.(*QueryGetProviderClientIDRequest)) @@ -925,7 +925,7 @@ func _Query_ProviderClientIDAll_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.monitoringc.Query/ProviderClientIDAll", + FullMethod: "/spn.monitoringc.Query/ProviderClientIDAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ProviderClientIDAll(ctx, req.(*QueryAllProviderClientIDRequest)) @@ -943,7 +943,7 @@ func _Query_LaunchIDFromChannelID_Handler(srv interface{}, ctx context.Context, } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.monitoringc.Query/LaunchIDFromChannelID", + FullMethod: "/spn.monitoringc.Query/LaunchIDFromChannelID", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).LaunchIDFromChannelID(ctx, req.(*QueryGetLaunchIDFromChannelIDRequest)) @@ -961,7 +961,7 @@ func _Query_LaunchIDFromChannelIDAll_Handler(srv interface{}, ctx context.Contex } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.monitoringc.Query/LaunchIDFromChannelIDAll", + FullMethod: "/spn.monitoringc.Query/LaunchIDFromChannelIDAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).LaunchIDFromChannelIDAll(ctx, req.(*QueryAllLaunchIDFromChannelIDRequest)) @@ -979,7 +979,7 @@ func _Query_MonitoringHistory_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.monitoringc.Query/MonitoringHistory", + FullMethod: "/spn.monitoringc.Query/MonitoringHistory", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).MonitoringHistory(ctx, req.(*QueryGetMonitoringHistoryRequest)) @@ -997,7 +997,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.monitoringc.Query/Params", + FullMethod: "/spn.monitoringc.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -1006,7 +1006,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "tendermint.spn.monitoringc.Query", + ServiceName: "spn.monitoringc.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1039,7 +1039,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "monitoringc/query.proto", + Metadata: "spn/monitoringc/query.proto", } func (m *QueryGetVerifiedClientIdsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/monitoringc/types/query.pb.gw.go b/x/monitoringc/types/query.pb.gw.go index e1f4a5939..9b1107deb 100644 --- a/x/monitoringc/types/query.pb.gw.go +++ b/x/monitoringc/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: monitoringc/query.proto +// source: spn/monitoringc/query.proto /* Package types is a reverse proxy. @@ -691,19 +691,19 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_VerifiedClientIds_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "monitoringc", "verified_client_ids", "launchID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_VerifiedClientIds_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "monitoringc", "verified_client_ids", "launchID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_ProviderClientID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "monitoringc", "provider_client_id", "launchID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_ProviderClientID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "monitoringc", "provider_client_id", "launchID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_ProviderClientIDAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "monitoringc", "provider_client_id"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_ProviderClientIDAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "monitoringc", "provider_client_id"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_LaunchIDFromChannelID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "monitoringc", "launch_id_from_channel_id", "channelID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_LaunchIDFromChannelID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "monitoringc", "launch_id_from_channel_id", "channelID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_LaunchIDFromChannelIDAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "monitoringc", "launch_id_from_channel_id"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_LaunchIDFromChannelIDAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "monitoringc", "launch_id_from_channel_id"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_MonitoringHistory_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "monitoringc", "monitoring_history", "launchID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_MonitoringHistory_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "monitoringc", "monitoring_history", "launchID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "monitoringc", "params"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "monitoringc", "params"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/monitoringc/types/tx.pb.go b/x/monitoringc/types/tx.pb.go index 4567176e3..fd140f302 100644 --- a/x/monitoringc/types/tx.pb.go +++ b/x/monitoringc/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: monitoringc/tx.proto +// source: spn/monitoringc/tx.proto package types @@ -7,9 +7,9 @@ import ( context "context" fmt "fmt" _ "github.com/cosmos/cosmos-sdk/types/query" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" types "github.com/tendermint/spn/pkg/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -43,7 +43,7 @@ func (m *MsgCreateClient) Reset() { *m = MsgCreateClient{} } func (m *MsgCreateClient) String() string { return proto.CompactTextString(m) } func (*MsgCreateClient) ProtoMessage() {} func (*MsgCreateClient) Descriptor() ([]byte, []int) { - return fileDescriptor_6d32526277234083, []int{0} + return fileDescriptor_ee28c6f062e91bf1, []int{0} } func (m *MsgCreateClient) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -122,7 +122,7 @@ func (m *MsgCreateClientResponse) Reset() { *m = MsgCreateClientResponse func (m *MsgCreateClientResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateClientResponse) ProtoMessage() {} func (*MsgCreateClientResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6d32526277234083, []int{1} + return fileDescriptor_ee28c6f062e91bf1, []int{1} } func (m *MsgCreateClientResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -159,40 +159,40 @@ func (m *MsgCreateClientResponse) GetClientID() string { } func init() { - proto.RegisterType((*MsgCreateClient)(nil), "tendermint.spn.monitoringc.MsgCreateClient") - proto.RegisterType((*MsgCreateClientResponse)(nil), "tendermint.spn.monitoringc.MsgCreateClientResponse") -} - -func init() { proto.RegisterFile("monitoringc/tx.proto", fileDescriptor_6d32526277234083) } - -var fileDescriptor_6d32526277234083 = []byte{ - // 407 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x52, 0xd1, 0x6a, 0x14, 0x31, - 0x14, 0xdd, 0x74, 0xd7, 0xaa, 0xb1, 0x74, 0x21, 0x14, 0x1c, 0xe6, 0x61, 0x5c, 0x16, 0x91, 0x41, - 0x31, 0xa1, 0x2d, 0xfe, 0x40, 0xb7, 0xa0, 0x05, 0x0b, 0x32, 0x05, 0x1f, 0x7c, 0xcb, 0x64, 0x2e, - 0xd9, 0xc0, 0xce, 0xcd, 0x98, 0x64, 0xd6, 0xf6, 0x2f, 0xfc, 0x1f, 0x7f, 0xa0, 0x8f, 0x7d, 0xf4, - 0x49, 0x64, 0xf7, 0x47, 0x64, 0xa6, 0xdb, 0xba, 0x33, 0xe8, 0x43, 0xdf, 0xee, 0x39, 0x9c, 0x9c, - 0x7b, 0xef, 0xc9, 0xa5, 0x07, 0xa5, 0x45, 0x13, 0xac, 0x33, 0xa8, 0x95, 0x08, 0x97, 0xbc, 0x72, - 0x36, 0x58, 0x16, 0x07, 0xc0, 0x02, 0x5c, 0x69, 0x30, 0x70, 0x5f, 0x21, 0xdf, 0x12, 0xc5, 0xaf, - 0x95, 0xf5, 0xa5, 0xf5, 0x22, 0x97, 0x1e, 0xc4, 0xd7, 0x1a, 0xdc, 0x95, 0x58, 0x1e, 0xe6, 0x10, - 0xe4, 0xa1, 0xa8, 0xa4, 0x36, 0x28, 0x83, 0xb1, 0x78, 0xeb, 0x13, 0x1f, 0x68, 0xab, 0x6d, 0x5b, - 0x8a, 0xa6, 0xda, 0xb0, 0xe3, 0x70, 0x55, 0x81, 0x17, 0x26, 0x57, 0xb7, 0xc4, 0xf4, 0xc7, 0x0e, - 0x1d, 0x9f, 0x7b, 0x3d, 0x73, 0x20, 0x03, 0xcc, 0x16, 0x06, 0x30, 0xb0, 0x88, 0x3e, 0x56, 0x0d, - 0xb6, 0x2e, 0x22, 0x13, 0x92, 0x3e, 0xcd, 0xee, 0x20, 0x8b, 0xe9, 0x93, 0x85, 0xac, 0x51, 0xcd, - 0xcf, 0x4e, 0xa3, 0x9d, 0x09, 0x49, 0x47, 0xd9, 0x3d, 0x66, 0x19, 0xdd, 0x57, 0x16, 0x3d, 0xa0, - 0xaf, 0xfd, 0x45, 0x90, 0x01, 0xa2, 0xe1, 0x84, 0xa4, 0xcf, 0x8e, 0x5e, 0xf2, 0xde, 0x46, 0xed, - 0x08, 0x7c, 0xd6, 0xd1, 0x9e, 0x8c, 0xae, 0x7f, 0xbd, 0x18, 0x64, 0x3d, 0x07, 0xf6, 0x91, 0xee, - 0x2d, 0xe5, 0xc2, 0x14, 0x4d, 0xf3, 0x0b, 0x08, 0xd1, 0xa8, 0x75, 0x9c, 0xfe, 0xdb, 0xf1, 0xf3, - 0x96, 0x72, 0xe3, 0xd7, 0x79, 0xcd, 0x52, 0x3a, 0xae, 0x31, 0xb7, 0x58, 0x18, 0xd4, 0x9f, 0xc0, - 0x19, 0x5b, 0x44, 0x8f, 0x26, 0x24, 0x1d, 0x66, 0x7d, 0x9a, 0xbd, 0xa2, 0xfb, 0x0e, 0x96, 0xc6, - 0x1b, 0x8b, 0x1f, 0xc0, 0xe8, 0x79, 0x88, 0x76, 0xdb, 0x6d, 0x7b, 0xec, 0xf4, 0x1d, 0x7d, 0xde, - 0x0b, 0x2f, 0x03, 0x5f, 0x35, 0x3b, 0x34, 0x51, 0xa9, 0x96, 0x39, 0x3b, 0xdd, 0xa4, 0x78, 0x8f, - 0x8f, 0xbe, 0xd1, 0xe1, 0xb9, 0xd7, 0xac, 0xa2, 0x7b, 0x9d, 0xdc, 0xdf, 0xf0, 0xff, 0xff, 0x3d, - 0xef, 0xf5, 0x89, 0x8f, 0x1f, 0x20, 0xbe, 0x1b, 0xea, 0xe4, 0xfd, 0xf5, 0x2a, 0x21, 0x37, 0xab, - 0x84, 0xfc, 0x5e, 0x25, 0xe4, 0xfb, 0x3a, 0x19, 0xdc, 0xac, 0x93, 0xc1, 0xcf, 0x75, 0x32, 0xf8, - 0xf2, 0x56, 0x9b, 0x30, 0xaf, 0x73, 0xae, 0x6c, 0x29, 0xfe, 0x1a, 0x0b, 0x5f, 0xa1, 0xb8, 0x14, - 0x9d, 0x43, 0x6d, 0xb2, 0xce, 0x77, 0xdb, 0xeb, 0x39, 0xfe, 0x13, 0x00, 0x00, 0xff, 0xff, 0x0c, - 0x8f, 0xb3, 0x08, 0xc4, 0x02, 0x00, 0x00, + proto.RegisterType((*MsgCreateClient)(nil), "spn.monitoringc.MsgCreateClient") + proto.RegisterType((*MsgCreateClientResponse)(nil), "spn.monitoringc.MsgCreateClientResponse") +} + +func init() { proto.RegisterFile("spn/monitoringc/tx.proto", fileDescriptor_ee28c6f062e91bf1) } + +var fileDescriptor_ee28c6f062e91bf1 = []byte{ + // 405 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x52, 0xc1, 0x6a, 0x1b, 0x31, + 0x10, 0xb5, 0x62, 0x37, 0x6d, 0xd5, 0x10, 0x83, 0x5a, 0x88, 0xea, 0xc3, 0x76, 0xc9, 0xa1, 0x2c, + 0x85, 0xae, 0x48, 0x4a, 0x3f, 0xa0, 0x71, 0x20, 0xcd, 0x21, 0x50, 0x36, 0xd0, 0x43, 0x6e, 0x5a, + 0x79, 0x90, 0x05, 0xde, 0xd1, 0x56, 0xd2, 0x9a, 0xe4, 0x2f, 0xfa, 0x13, 0xfd, 0x97, 0x1c, 0x73, + 0xec, 0xa9, 0x14, 0xfb, 0x47, 0x8a, 0x36, 0x8e, 0xf1, 0xee, 0xa5, 0x37, 0xbd, 0x37, 0x33, 0xef, + 0xed, 0xbc, 0x1d, 0xca, 0x7d, 0x8d, 0xa2, 0xb2, 0x68, 0x82, 0x75, 0x06, 0xb5, 0x12, 0xe1, 0x36, + 0xaf, 0x9d, 0x0d, 0x96, 0x8d, 0x7d, 0x8d, 0xf9, 0x4e, 0x65, 0xf2, 0x41, 0x59, 0x5f, 0x59, 0x2f, + 0x4a, 0xe9, 0x41, 0xfc, 0x68, 0xc0, 0xdd, 0x89, 0xe5, 0x49, 0x09, 0x41, 0x9e, 0x88, 0x5a, 0x6a, + 0x83, 0x32, 0x18, 0x8b, 0x8f, 0xc3, 0x93, 0x37, 0xda, 0x6a, 0xdb, 0x3e, 0x45, 0x7c, 0x6d, 0xd8, + 0xd7, 0xd1, 0x2c, 0xdc, 0xd5, 0xe0, 0x85, 0x29, 0xd5, 0x23, 0x79, 0xfc, 0x6b, 0x8f, 0x8e, 0xaf, + 0xbc, 0x9e, 0x3a, 0x90, 0x01, 0xa6, 0x0b, 0x03, 0x18, 0x18, 0xa7, 0xcf, 0x55, 0xc4, 0xd6, 0x71, + 0x92, 0x92, 0xec, 0x65, 0xf1, 0x04, 0xd9, 0x84, 0xbe, 0x58, 0xc8, 0x06, 0xd5, 0xfc, 0xf2, 0x9c, + 0xef, 0xa5, 0x24, 0x1b, 0x15, 0x5b, 0xcc, 0x2e, 0xe8, 0xa1, 0xb2, 0xe8, 0x01, 0x7d, 0xe3, 0xaf, + 0x83, 0x0c, 0xc0, 0x87, 0x29, 0xc9, 0x5e, 0x9d, 0xbe, 0xcd, 0xe3, 0x2a, 0xad, 0x6f, 0x3e, 0xed, + 0x34, 0x9c, 0x8d, 0xee, 0xff, 0xbc, 0x1b, 0x14, 0xbd, 0x31, 0xf6, 0x85, 0x1e, 0x2c, 0xe5, 0xc2, + 0xcc, 0xa2, 0xe3, 0x35, 0x04, 0x3e, 0x6a, 0x65, 0x8e, 0x76, 0x64, 0xbe, 0xef, 0x94, 0x37, 0x22, + 0x9d, 0x11, 0x96, 0xd1, 0x71, 0x83, 0xa5, 0xc5, 0x99, 0x41, 0xfd, 0x0d, 0x9c, 0xb1, 0x33, 0xfe, + 0x2c, 0x25, 0xd9, 0xb0, 0xe8, 0xd3, 0xec, 0x3d, 0x3d, 0x74, 0xb0, 0x34, 0xde, 0x58, 0xfc, 0x0a, + 0x46, 0xcf, 0x03, 0xdf, 0x6f, 0xf7, 0xea, 0xb1, 0xc7, 0x9f, 0xe9, 0x51, 0x2f, 0xa6, 0x02, 0x7c, + 0x1d, 0x3f, 0x3c, 0x86, 0xa2, 0x5a, 0xe6, 0xf2, 0x7c, 0x93, 0xd7, 0x16, 0x9f, 0x4a, 0x3a, 0xbc, + 0xf2, 0x9a, 0xdd, 0xd0, 0x83, 0x4e, 0xc2, 0x69, 0xde, 0xfb, 0xbd, 0x79, 0x4f, 0x7c, 0x92, 0xfd, + 0xaf, 0xe3, 0xc9, 0xfe, 0xec, 0xe2, 0x7e, 0x95, 0x90, 0x87, 0x55, 0x42, 0xfe, 0xae, 0x12, 0xf2, + 0x73, 0x9d, 0x0c, 0x1e, 0xd6, 0xc9, 0xe0, 0xf7, 0x3a, 0x19, 0xdc, 0x7c, 0xd4, 0x26, 0xcc, 0x9b, + 0x32, 0x57, 0xb6, 0x12, 0x01, 0x70, 0x06, 0xae, 0x32, 0x18, 0x44, 0x3c, 0x83, 0xdb, 0xee, 0xd5, + 0xc5, 0x54, 0xcb, 0xfd, 0xf6, 0x22, 0x3e, 0xfd, 0x0b, 0x00, 0x00, 0xff, 0xff, 0xa1, 0x2e, 0x00, + 0x88, 0x95, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -220,7 +220,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) CreateClient(ctx context.Context, in *MsgCreateClient, opts ...grpc.CallOption) (*MsgCreateClientResponse, error) { out := new(MsgCreateClientResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.monitoringc.Msg/CreateClient", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.monitoringc.Msg/CreateClient", in, out, opts...) if err != nil { return nil, err } @@ -254,7 +254,7 @@ func _Msg_CreateClient_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.monitoringc.Msg/CreateClient", + FullMethod: "/spn.monitoringc.Msg/CreateClient", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).CreateClient(ctx, req.(*MsgCreateClient)) @@ -263,7 +263,7 @@ func _Msg_CreateClient_Handler(srv interface{}, ctx context.Context, dec func(in } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "tendermint.spn.monitoringc.Msg", + ServiceName: "spn.monitoringc.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -272,7 +272,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "monitoringc/tx.proto", + Metadata: "spn/monitoringc/tx.proto", } func (m *MsgCreateClient) Marshal() (dAtA []byte, err error) { diff --git a/x/monitoringc/types/verified_client_id.pb.go b/x/monitoringc/types/verified_client_id.pb.go index 14e90009b..cce839a84 100644 --- a/x/monitoringc/types/verified_client_id.pb.go +++ b/x/monitoringc/types/verified_client_id.pb.go @@ -1,11 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: monitoringc/verified_client_id.proto +// source: spn/monitoringc/verified_client_id.proto package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -31,7 +31,7 @@ func (m *VerifiedClientID) Reset() { *m = VerifiedClientID{} } func (m *VerifiedClientID) String() string { return proto.CompactTextString(m) } func (*VerifiedClientID) ProtoMessage() {} func (*VerifiedClientID) Descriptor() ([]byte, []int) { - return fileDescriptor_d2e9b74a77475bfe, []int{0} + return fileDescriptor_1b3bc36922c4ca0b, []int{0} } func (m *VerifiedClientID) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -75,28 +75,27 @@ func (m *VerifiedClientID) GetClientIDs() []string { } func init() { - proto.RegisterType((*VerifiedClientID)(nil), "tendermint.spn.monitoringc.VerifiedClientID") + proto.RegisterType((*VerifiedClientID)(nil), "spn.monitoringc.VerifiedClientID") } func init() { - proto.RegisterFile("monitoringc/verified_client_id.proto", fileDescriptor_d2e9b74a77475bfe) + proto.RegisterFile("spn/monitoringc/verified_client_id.proto", fileDescriptor_1b3bc36922c4ca0b) } -var fileDescriptor_d2e9b74a77475bfe = []byte{ - // 193 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc9, 0xcd, 0xcf, 0xcb, - 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x4f, 0xd6, 0x2f, 0x4b, 0x2d, 0xca, 0x4c, 0xcb, 0x4c, 0x4d, - 0x89, 0x4f, 0xce, 0xc9, 0x4c, 0xcd, 0x2b, 0x89, 0xcf, 0x4c, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x92, 0x2a, 0x49, 0xcd, 0x4b, 0x49, 0x2d, 0xca, 0xcd, 0xcc, 0x2b, 0xd1, 0x2b, 0x2e, 0xc8, - 0xd3, 0x43, 0xd2, 0xa4, 0xe4, 0xc3, 0x25, 0x10, 0x06, 0xd5, 0xe7, 0x0c, 0xd6, 0xe6, 0xe9, 0x22, - 0x24, 0xc5, 0xc5, 0x91, 0x93, 0x58, 0x9a, 0x97, 0x9c, 0xe1, 0xe9, 0x22, 0xc1, 0xa8, 0xc0, 0xa8, - 0xc1, 0x12, 0x04, 0xe7, 0x0b, 0xc9, 0x70, 0x71, 0x26, 0x43, 0xd5, 0x15, 0x4b, 0x30, 0x29, 0x30, - 0x6b, 0x70, 0x06, 0x21, 0x04, 0x9c, 0xdc, 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, 0x4a, 0x37, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0xe1, 0x1c, - 0xfd, 0xe2, 0x82, 0x3c, 0xfd, 0x0a, 0x7d, 0x64, 0x5f, 0x94, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, - 0x81, 0x5d, 0x6e, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x6a, 0xb8, 0xa9, 0xaf, 0xe1, 0x00, 0x00, - 0x00, +var fileDescriptor_1b3bc36922c4ca0b = []byte{ + // 191 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x28, 0x2e, 0xc8, 0xd3, + 0xcf, 0xcd, 0xcf, 0xcb, 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x4f, 0xd6, 0x2f, 0x4b, 0x2d, 0xca, + 0x4c, 0xcb, 0x4c, 0x4d, 0x89, 0x4f, 0xce, 0xc9, 0x4c, 0xcd, 0x2b, 0x89, 0xcf, 0x4c, 0xd1, 0x2b, + 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x2f, 0x2e, 0xc8, 0xd3, 0x43, 0x52, 0xa9, 0xe4, 0xc3, 0x25, + 0x10, 0x06, 0x55, 0xec, 0x0c, 0x56, 0xeb, 0xe9, 0x22, 0x24, 0xc5, 0xc5, 0x91, 0x93, 0x58, 0x9a, + 0x97, 0x9c, 0xe1, 0xe9, 0x22, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x12, 0x04, 0xe7, 0x0b, 0xc9, 0x70, + 0x71, 0x26, 0x43, 0xd5, 0x15, 0x4b, 0x30, 0x29, 0x30, 0x6b, 0x70, 0x06, 0x21, 0x04, 0x9c, 0xdc, + 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, 0x4a, 0x37, 0x3d, 0xb3, 0x24, 0xa3, + 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0xbf, 0x24, 0x35, 0x2f, 0x25, 0xb5, 0x28, 0x37, 0x33, 0xaf, + 0x44, 0x1f, 0xe4, 0xf0, 0x0a, 0x14, 0xa7, 0x97, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x9d, + 0x6b, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x73, 0xfc, 0x71, 0x28, 0xda, 0x00, 0x00, 0x00, } func (m *VerifiedClientID) Marshal() (dAtA []byte, err error) { diff --git a/x/monitoringp/keeper/begin_block.go b/x/monitoringp/keeper/begin_block.go index ab1a13bb6..03665daed 100644 --- a/x/monitoringp/keeper/begin_block.go +++ b/x/monitoringp/keeper/begin_block.go @@ -4,9 +4,9 @@ import ( "fmt" "time" + abci "github.com/cometbft/cometbft/abci/types" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - abci "github.com/tendermint/tendermint/abci/types" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" spntypes "github.com/tendermint/spn/pkg/types" "github.com/tendermint/spn/x/monitoringp/types" @@ -20,7 +20,7 @@ const ( ) // ReportBlockSignatures gets signatures from blocks and update monitoring info -func (k Keeper) ReportBlockSignatures(ctx sdk.Context, lastCommit abci.LastCommitInfo, blockHeight int64) error { +func (k Keeper) ReportBlockSignatures(ctx sdk.Context, lastCommit abci.CommitInfo, blockHeight int64) error { // skip first block because it is not signed if blockHeight == 1 { return nil diff --git a/x/monitoringp/keeper/begin_block_test.go b/x/monitoringp/keeper/begin_block_test.go index 33a9e78d8..9fb66366d 100644 --- a/x/monitoringp/keeper/begin_block_test.go +++ b/x/monitoringp/keeper/begin_block_test.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" + abci "github.com/cometbft/cometbft/abci/types" "github.com/stretchr/testify/require" - abci "github.com/tendermint/tendermint/abci/types" tc "github.com/tendermint/spn/testutil/constructor" testkeeper "github.com/tendermint/spn/testutil/keeper" @@ -73,7 +73,7 @@ func TestKeeper_ReportBlockSignatures(t *testing.T) { monitoringInfoExist bool inputMonitoringInfo types.MonitoringInfo lastBlockHeight int64 - lastCommitInfo abci.LastCommitInfo + lastCommitInfo abci.CommitInfo currentBlockHeight int64 expectedMonitoringInfoFound bool expectedMonitoringInfo types.MonitoringInfo diff --git a/x/monitoringp/keeper/consumer_client.go b/x/monitoringp/keeper/consumer_client.go index 0f5359812..3f4a4adc8 100644 --- a/x/monitoringp/keeper/consumer_client.go +++ b/x/monitoringp/keeper/consumer_client.go @@ -4,11 +4,11 @@ import ( "time" sdkerrors "cosmossdk.io/errors" + "github.com/cometbft/cometbft/light" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - committypes "github.com/cosmos/ibc-go/v6/modules/core/23-commitment/types" - ibctmtypes "github.com/cosmos/ibc-go/v6/modules/light-clients/07-tendermint/types" - "github.com/tendermint/tendermint/light" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + committypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" + ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" "github.com/tendermint/spn/pkg/chainid" "github.com/tendermint/spn/x/monitoringp/types" @@ -64,7 +64,5 @@ func (k Keeper) initializeClientState(ctx sdk.Context, chainID string) (*ibctmty clienttypes.NewHeight(revisionNumber, revisionHeight), committypes.GetSDKSpecs(), []string{"upgrade", "upgradedIBCState"}, - true, - true, ), nil } diff --git a/x/monitoringp/keeper/consumer_client_test.go b/x/monitoringp/keeper/consumer_client_test.go index 5ce56999f..67bf261e2 100644 --- a/x/monitoringp/keeper/consumer_client_test.go +++ b/x/monitoringp/keeper/consumer_client_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - ibctmtypes "github.com/cosmos/ibc-go/v6/modules/light-clients/07-tendermint/types" + ibctmtypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" "github.com/stretchr/testify/require" spntypes "github.com/tendermint/spn/pkg/types" diff --git a/x/monitoringp/keeper/handshake.go b/x/monitoringp/keeper/handshake.go index 00bc43f69..6d0339ab7 100644 --- a/x/monitoringp/keeper/handshake.go +++ b/x/monitoringp/keeper/handshake.go @@ -3,8 +3,8 @@ package keeper import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - connectiontypes "github.com/cosmos/ibc-go/v6/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" + connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" "github.com/tendermint/spn/x/monitoringp/types" ) diff --git a/x/monitoringp/keeper/handshake_test.go b/x/monitoringp/keeper/handshake_test.go index 04d79fd75..25b51a680 100644 --- a/x/monitoringp/keeper/handshake_test.go +++ b/x/monitoringp/keeper/handshake_test.go @@ -4,8 +4,8 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - connectiontypes "github.com/cosmos/ibc-go/v6/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" + connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" "github.com/stretchr/testify/require" testkeeper "github.com/tendermint/spn/testutil/keeper" diff --git a/x/monitoringp/keeper/keeper.go b/x/monitoringp/keeper/keeper.go index 3dabff460..bf5ec535d 100644 --- a/x/monitoringp/keeper/keeper.go +++ b/x/monitoringp/keeper/keeper.go @@ -3,14 +3,14 @@ package keeper import ( "fmt" + "github.com/cometbft/cometbft/libs/log" "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" capabilitykeeper "github.com/cosmos/cosmos-sdk/x/capability/keeper" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - host "github.com/cosmos/ibc-go/v6/modules/core/24-host" - "github.com/tendermint/tendermint/libs/log" + host "github.com/cosmos/ibc-go/v7/modules/core/24-host" "github.com/tendermint/spn/x/monitoringp/types" ) diff --git a/x/monitoringp/keeper/monitoring_packet.go b/x/monitoringp/keeper/monitoring_packet.go index 6c68f68db..8622722e6 100644 --- a/x/monitoringp/keeper/monitoring_packet.go +++ b/x/monitoringp/keeper/monitoring_packet.go @@ -3,9 +3,9 @@ package keeper import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - host "github.com/cosmos/ibc-go/v6/modules/core/24-host" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + host "github.com/cosmos/ibc-go/v7/modules/core/24-host" spntypes "github.com/tendermint/spn/pkg/types" "github.com/tendermint/spn/x/monitoringp/types" diff --git a/x/monitoringp/module.go b/x/monitoringp/module.go index 1ade7658b..98642fca9 100644 --- a/x/monitoringp/module.go +++ b/x/monitoringp/module.go @@ -5,16 +5,16 @@ import ( "encoding/json" "fmt" + abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" cdctypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" + porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" "github.com/gorilla/mux" "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - abci "github.com/tendermint/tendermint/abci/types" "github.com/tendermint/spn/x/monitoringp/client/cli" "github.com/tendermint/spn/x/monitoringp/keeper" @@ -117,19 +117,9 @@ func (am AppModule) Name() string { return am.AppModuleBasic.Name() } -// Route returns the monitoringp module's message routing key. -func (am AppModule) Route() sdk.Route { - return sdk.Route{} -} - // QuerierRoute returns the monitoringp module's query routing key. func (AppModule) QuerierRoute() string { return types.QuerierRoute } -// LegacyQuerierHandler returns the monitoringp module's Querier. -func (am AppModule) LegacyQuerierHandler(_ *codec.LegacyAmino) sdk.Querier { - return nil -} - // RegisterServices registers a GRPC query service to respond to the // module-specific GRPC queries. func (am AppModule) RegisterServices(cfg module.Configurator) { diff --git a/x/monitoringp/module_ibc.go b/x/monitoringp/module_ibc.go index 19822cb34..14d21480e 100644 --- a/x/monitoringp/module_ibc.go +++ b/x/monitoringp/module_ibc.go @@ -6,10 +6,10 @@ import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" - host "github.com/cosmos/ibc-go/v6/modules/core/24-host" - ibcexported "github.com/cosmos/ibc-go/v6/modules/core/exported" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" + host "github.com/cosmos/ibc-go/v7/modules/core/24-host" + ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" spntypes "github.com/tendermint/spn/pkg/types" "github.com/tendermint/spn/x/monitoringp/types" diff --git a/x/monitoringp/module_simulation.go b/x/monitoringp/module_simulation.go index 39c076f59..b92f425df 100644 --- a/x/monitoringp/module_simulation.go +++ b/x/monitoringp/module_simulation.go @@ -36,22 +36,22 @@ func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedP } // RandomizedParams creates randomized param changes for the simulator -func (am AppModule) RandomizedParams(r *rand.Rand) []simtypes.ParamChange { +func (am AppModule) RandomizedParams(r *rand.Rand) []simtypes.LegacyParamChange { monitoringpParams := sample.MonitoringpParams(r) - return []simtypes.ParamChange{ - simulation.NewSimParamChange(types.ModuleName, string(types.KeyLastBlockHeight), func(r *rand.Rand) string { + return []simtypes.LegacyParamChange{ + simulation.NewSimLegacyParamChange(types.ModuleName, string(types.KeyLastBlockHeight), func(r *rand.Rand) string { return string(types.Amino.MustMarshalJSON(monitoringpParams.LastBlockHeight)) }), - simulation.NewSimParamChange(types.ModuleName, string(types.KeyConsumerConsensusState), func(r *rand.Rand) string { + simulation.NewSimLegacyParamChange(types.ModuleName, string(types.KeyConsumerConsensusState), func(r *rand.Rand) string { return string(types.Amino.MustMarshalJSON(monitoringpParams.ConsumerConsensusState)) }), - simulation.NewSimParamChange(types.ModuleName, string(types.KeyConsumerChainID), func(r *rand.Rand) string { + simulation.NewSimLegacyParamChange(types.ModuleName, string(types.KeyConsumerChainID), func(r *rand.Rand) string { return string(types.Amino.MustMarshalJSON(monitoringpParams.ConsumerChainID)) }), - simulation.NewSimParamChange(types.ModuleName, string(types.KeyConsumerUnbondingPeriod), func(r *rand.Rand) string { + simulation.NewSimLegacyParamChange(types.ModuleName, string(types.KeyConsumerUnbondingPeriod), func(r *rand.Rand) string { return string(types.Amino.MustMarshalJSON(monitoringpParams.ConsumerUnbondingPeriod)) }), - simulation.NewSimParamChange(types.ModuleName, string(types.KeyConsumerRevisionHeight), func(r *rand.Rand) string { + simulation.NewSimLegacyParamChange(types.ModuleName, string(types.KeyConsumerRevisionHeight), func(r *rand.Rand) string { return string(types.Amino.MustMarshalJSON(monitoringpParams.ConsumerRevisionHeight)) }), } diff --git a/x/monitoringp/types/connection_channel_id.pb.go b/x/monitoringp/types/connection_channel_id.pb.go index eda4e0d58..824a3cfcb 100644 --- a/x/monitoringp/types/connection_channel_id.pb.go +++ b/x/monitoringp/types/connection_channel_id.pb.go @@ -1,11 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: monitoringp/connection_channel_id.proto +// source: spn/monitoringp/connection_channel_id.proto package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -30,7 +30,7 @@ func (m *ConnectionChannelID) Reset() { *m = ConnectionChannelID{} } func (m *ConnectionChannelID) String() string { return proto.CompactTextString(m) } func (*ConnectionChannelID) ProtoMessage() {} func (*ConnectionChannelID) Descriptor() ([]byte, []int) { - return fileDescriptor_554428a97e5aa49d, []int{0} + return fileDescriptor_4ec35b3309fd720d, []int{0} } func (m *ConnectionChannelID) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -67,26 +67,26 @@ func (m *ConnectionChannelID) GetChannelID() string { } func init() { - proto.RegisterType((*ConnectionChannelID)(nil), "tendermint.spn.monitoringp.ConnectionChannelID") + proto.RegisterType((*ConnectionChannelID)(nil), "spn.monitoringp.ConnectionChannelID") } func init() { - proto.RegisterFile("monitoringp/connection_channel_id.proto", fileDescriptor_554428a97e5aa49d) + proto.RegisterFile("spn/monitoringp/connection_channel_id.proto", fileDescriptor_4ec35b3309fd720d) } -var fileDescriptor_554428a97e5aa49d = []byte{ - // 174 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xcf, 0xcd, 0xcf, 0xcb, - 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x2f, 0xd0, 0x4f, 0xce, 0xcf, 0xcb, 0x4b, 0x4d, 0x2e, 0xc9, - 0xcc, 0xcf, 0x8b, 0x4f, 0xce, 0x48, 0xcc, 0xcb, 0x4b, 0xcd, 0x89, 0xcf, 0x4c, 0xd1, 0x2b, 0x28, - 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x2a, 0x49, 0xcd, 0x4b, 0x49, 0x2d, 0xca, 0xcd, 0xcc, 0x2b, 0xd1, - 0x2b, 0x2e, 0xc8, 0xd3, 0x43, 0xd2, 0xa7, 0x64, 0xcc, 0x25, 0xec, 0x0c, 0xd7, 0xea, 0x0c, 0xd1, - 0xe9, 0xe9, 0x22, 0x24, 0xc3, 0xc5, 0x99, 0x0c, 0xe3, 0x48, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x06, - 0x21, 0x04, 0x9c, 0xdc, 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, 0x4a, 0x37, - 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0x61, 0xab, 0x7e, 0x71, 0x41, - 0x9e, 0x7e, 0x85, 0x3e, 0xb2, 0x7b, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x0e, 0x34, - 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x4d, 0xd0, 0xf5, 0xdf, 0xcb, 0x00, 0x00, 0x00, +var fileDescriptor_4ec35b3309fd720d = []byte{ + // 172 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x2e, 0x2e, 0xc8, 0xd3, + 0xcf, 0xcd, 0xcf, 0xcb, 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x2f, 0xd0, 0x4f, 0xce, 0xcf, 0xcb, + 0x4b, 0x4d, 0x2e, 0xc9, 0xcc, 0xcf, 0x8b, 0x4f, 0xce, 0x48, 0xcc, 0xcb, 0x4b, 0xcd, 0x89, 0xcf, + 0x4c, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x2f, 0x2e, 0xc8, 0xd3, 0x43, 0x52, 0xac, + 0x64, 0xcc, 0x25, 0xec, 0x0c, 0x57, 0xef, 0x0c, 0x51, 0xee, 0xe9, 0x22, 0x24, 0xc3, 0xc5, 0x99, + 0x0c, 0xe3, 0x48, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x06, 0x21, 0x04, 0x9c, 0xdc, 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, 0x4a, 0x37, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, + 0x39, 0x3f, 0x57, 0xbf, 0x24, 0x35, 0x2f, 0x25, 0xb5, 0x28, 0x37, 0x33, 0xaf, 0x44, 0x1f, 0xe4, + 0xc4, 0x0a, 0x14, 0x47, 0x96, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x5d, 0x65, 0x0c, 0x08, + 0x00, 0x00, 0xff, 0xff, 0x46, 0x73, 0x98, 0x86, 0xc4, 0x00, 0x00, 0x00, } func (m *ConnectionChannelID) Marshal() (dAtA []byte, err error) { diff --git a/x/monitoringp/types/consumer_client_id.pb.go b/x/monitoringp/types/consumer_client_id.pb.go index d0866710e..083d520d3 100644 --- a/x/monitoringp/types/consumer_client_id.pb.go +++ b/x/monitoringp/types/consumer_client_id.pb.go @@ -1,11 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: monitoringp/consumer_client_id.proto +// source: spn/monitoringp/consumer_client_id.proto package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -30,7 +30,7 @@ func (m *ConsumerClientID) Reset() { *m = ConsumerClientID{} } func (m *ConsumerClientID) String() string { return proto.CompactTextString(m) } func (*ConsumerClientID) ProtoMessage() {} func (*ConsumerClientID) Descriptor() ([]byte, []int) { - return fileDescriptor_a62798fbff592013, []int{0} + return fileDescriptor_8a2c45e5d19e6417, []int{0} } func (m *ConsumerClientID) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -67,26 +67,26 @@ func (m *ConsumerClientID) GetClientID() string { } func init() { - proto.RegisterType((*ConsumerClientID)(nil), "tendermint.spn.monitoringp.ConsumerClientID") + proto.RegisterType((*ConsumerClientID)(nil), "spn.monitoringp.ConsumerClientID") } func init() { - proto.RegisterFile("monitoringp/consumer_client_id.proto", fileDescriptor_a62798fbff592013) + proto.RegisterFile("spn/monitoringp/consumer_client_id.proto", fileDescriptor_8a2c45e5d19e6417) } -var fileDescriptor_a62798fbff592013 = []byte{ - // 171 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc9, 0xcd, 0xcf, 0xcb, - 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x2f, 0xd0, 0x4f, 0xce, 0xcf, 0x2b, 0x2e, 0xcd, 0x4d, 0x2d, - 0x8a, 0x4f, 0xce, 0xc9, 0x4c, 0xcd, 0x2b, 0x89, 0xcf, 0x4c, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x92, 0x2a, 0x49, 0xcd, 0x4b, 0x49, 0x2d, 0xca, 0xcd, 0xcc, 0x2b, 0xd1, 0x2b, 0x2e, 0xc8, - 0xd3, 0x43, 0xd2, 0xa4, 0xa4, 0xc7, 0x25, 0xe0, 0x0c, 0xd5, 0xe7, 0x0c, 0xd6, 0xe6, 0xe9, 0x22, - 0x24, 0xc5, 0xc5, 0x91, 0x0c, 0x65, 0x4b, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x06, 0xc1, 0xf9, 0x4e, - 0xee, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, - 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xa5, 0x9b, 0x9e, 0x59, 0x92, - 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x8f, 0xb0, 0x50, 0xbf, 0xb8, 0x20, 0x4f, 0xbf, 0x42, - 0x1f, 0xd9, 0x9d, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0xb7, 0x19, 0x03, 0x02, 0x00, - 0x00, 0xff, 0xff, 0x32, 0xcf, 0x10, 0xa9, 0xc3, 0x00, 0x00, 0x00, +var fileDescriptor_8a2c45e5d19e6417 = []byte{ + // 169 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x28, 0x2e, 0xc8, 0xd3, + 0xcf, 0xcd, 0xcf, 0xcb, 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x2f, 0xd0, 0x4f, 0xce, 0xcf, 0x2b, + 0x2e, 0xcd, 0x4d, 0x2d, 0x8a, 0x4f, 0xce, 0xc9, 0x4c, 0xcd, 0x2b, 0x89, 0xcf, 0x4c, 0xd1, 0x2b, + 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x2f, 0x2e, 0xc8, 0xd3, 0x43, 0x52, 0xa9, 0xa4, 0xc7, 0x25, + 0xe0, 0x0c, 0x55, 0xec, 0x0c, 0x56, 0xeb, 0xe9, 0x22, 0x24, 0xc5, 0xc5, 0x91, 0x0c, 0x65, 0x4b, + 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x06, 0xc1, 0xf9, 0x4e, 0xee, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, + 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, + 0x78, 0x2c, 0xc7, 0x10, 0xa5, 0x9b, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, + 0x5f, 0x92, 0x9a, 0x97, 0x92, 0x5a, 0x94, 0x9b, 0x99, 0x57, 0xa2, 0x0f, 0x72, 0x5a, 0x05, 0x8a, + 0xe3, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x0e, 0x32, 0x06, 0x04, 0x00, 0x00, 0xff, + 0xff, 0x6c, 0x85, 0x25, 0x9f, 0xbc, 0x00, 0x00, 0x00, } func (m *ConsumerClientID) Marshal() (dAtA []byte, err error) { diff --git a/x/monitoringp/types/expected_keepers.go b/x/monitoringp/types/expected_keepers.go index d20b13b1a..9b20ac99c 100644 --- a/x/monitoringp/types/expected_keepers.go +++ b/x/monitoringp/types/expected_keepers.go @@ -4,10 +4,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v6/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v6/modules/core/exported" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v7/modules/core/exported" ) // StakingKeeper defines the expected interface to retrieve the operator address from a consensus address diff --git a/x/monitoringp/types/genesis.go b/x/monitoringp/types/genesis.go index 2ac8152ce..d0b3069b9 100644 --- a/x/monitoringp/types/genesis.go +++ b/x/monitoringp/types/genesis.go @@ -1,7 +1,7 @@ package types import ( - host "github.com/cosmos/ibc-go/v6/modules/core/24-host" + host "github.com/cosmos/ibc-go/v7/modules/core/24-host" // this line is used by starport scaffolding # genesis/types/import ) diff --git a/x/monitoringp/types/genesis.pb.go b/x/monitoringp/types/genesis.pb.go index e44cb1bb9..57f35ed8c 100644 --- a/x/monitoringp/types/genesis.pb.go +++ b/x/monitoringp/types/genesis.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: monitoringp/genesis.proto +// source: spn/monitoringp/genesis.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -36,7 +36,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_daeb174358fef22d, []int{0} + return fileDescriptor_bbdc9ae31a97c897, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -101,35 +101,35 @@ func (m *GenesisState) GetParams() Params { } func init() { - proto.RegisterType((*GenesisState)(nil), "tendermint.spn.monitoringp.GenesisState") + proto.RegisterType((*GenesisState)(nil), "spn.monitoringp.GenesisState") } -func init() { proto.RegisterFile("monitoringp/genesis.proto", fileDescriptor_daeb174358fef22d) } +func init() { proto.RegisterFile("spn/monitoringp/genesis.proto", fileDescriptor_bbdc9ae31a97c897) } -var fileDescriptor_daeb174358fef22d = []byte{ - // 346 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x91, 0x41, 0x4b, 0xf3, 0x30, - 0x18, 0xc7, 0xdb, 0xbd, 0x7b, 0x27, 0x46, 0x11, 0xa9, 0x82, 0xb5, 0x87, 0x3a, 0x87, 0xe0, 0x10, - 0x6d, 0x40, 0xbf, 0x80, 0x6c, 0x83, 0xd1, 0x83, 0x20, 0xf5, 0x22, 0x5e, 0x4a, 0xd7, 0x65, 0x5d, - 0x60, 0x7d, 0x12, 0x92, 0x0c, 0xf4, 0x5b, 0xf8, 0xb1, 0x76, 0xdc, 0xd1, 0x93, 0xc8, 0xf6, 0x2d, - 0x3c, 0xc9, 0xd2, 0x4a, 0x6b, 0xd5, 0x79, 0x7b, 0x42, 0x7e, 0xff, 0x5f, 0x9e, 0x27, 0x0f, 0x3a, - 0x4c, 0x19, 0x50, 0xc5, 0x04, 0x85, 0x84, 0xe3, 0x84, 0x00, 0x91, 0x54, 0x7a, 0x5c, 0x30, 0xc5, - 0x2c, 0x47, 0x11, 0x18, 0x12, 0x91, 0x52, 0x50, 0x9e, 0xe4, 0xe0, 0x95, 0x48, 0x67, 0x3f, 0x61, - 0x09, 0xd3, 0x18, 0x5e, 0x55, 0x59, 0xc2, 0xb1, 0xcb, 0x32, 0x1e, 0x89, 0x28, 0xcd, 0x5d, 0xce, - 0x49, 0xf9, 0x26, 0x66, 0x20, 0xa7, 0x29, 0x11, 0x61, 0x3c, 0xa1, 0x04, 0x54, 0x48, 0x87, 0x39, - 0x75, 0x5a, 0xa1, 0x80, 0xc4, 0x8a, 0x32, 0x08, 0xe3, 0x71, 0x04, 0x40, 0x26, 0x05, 0x78, 0x5c, - 0x06, 0x8b, 0x3a, 0xa4, 0x30, 0xca, 0x7b, 0x69, 0xbd, 0xd7, 0xd0, 0x76, 0x3f, 0x9b, 0xe7, 0x4e, - 0x45, 0x8a, 0x58, 0x07, 0x68, 0x83, 0x33, 0xb1, 0x7a, 0xcd, 0x36, 0x9b, 0x66, 0x7b, 0x33, 0x68, - 0xac, 0x8e, 0xfe, 0xd0, 0xba, 0x47, 0xbb, 0x9f, 0x1d, 0x75, 0x75, 0x43, 0x7e, 0xcf, 0xae, 0x35, - 0xcd, 0xf6, 0xd6, 0xe5, 0xb9, 0xf7, 0xfb, 0x17, 0x78, 0xdd, 0x4a, 0x26, 0xf8, 0x66, 0xb1, 0x22, - 0xb4, 0x57, 0x4c, 0xd1, 0xcd, 0x86, 0xf0, 0x7b, 0xf6, 0x3f, 0x2d, 0xc7, 0x7f, 0xc8, 0xab, 0xb1, - 0xe0, 0x27, 0x97, 0x15, 0xa0, 0x9d, 0x22, 0xe7, 0xc3, 0x88, 0xd9, 0x75, 0x6d, 0x3f, 0x5b, 0x67, - 0xbf, 0xf9, 0x92, 0x08, 0x2a, 0x06, 0xeb, 0x1a, 0x35, 0xb2, 0xe5, 0xd9, 0xff, 0xb5, 0xab, 0xb5, - 0xce, 0x75, 0xab, 0xc9, 0x4e, 0x7d, 0xf6, 0x7a, 0x64, 0x04, 0x79, 0xae, 0xd3, 0x9f, 0x2d, 0x5c, - 0x73, 0xbe, 0x70, 0xcd, 0xb7, 0x85, 0x6b, 0x3e, 0x2f, 0x5d, 0x63, 0xbe, 0x74, 0x8d, 0x97, 0xa5, - 0x6b, 0x3c, 0x5c, 0x24, 0x54, 0x8d, 0xa7, 0x03, 0x2f, 0x66, 0x29, 0x2e, 0xac, 0x58, 0x72, 0xc0, - 0x8f, 0xb8, 0xbc, 0x55, 0xf5, 0xc4, 0x89, 0x1c, 0x34, 0xf4, 0x32, 0xaf, 0x3e, 0x02, 0x00, 0x00, - 0xff, 0xff, 0x49, 0xe4, 0x75, 0xd0, 0xa7, 0x02, 0x00, 0x00, +var fileDescriptor_bbdc9ae31a97c897 = []byte{ + // 342 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x91, 0x41, 0x4a, 0xc3, 0x40, + 0x14, 0x86, 0x93, 0x5a, 0x2b, 0x8e, 0xa2, 0x12, 0x85, 0x86, 0xa2, 0x69, 0x15, 0x85, 0x82, 0x98, + 0x80, 0xe2, 0x05, 0xda, 0x42, 0xc9, 0xa2, 0x20, 0x11, 0x5c, 0xb8, 0x09, 0x69, 0x3a, 0x4d, 0x07, + 0x9a, 0x37, 0xc3, 0xcc, 0x14, 0xf4, 0x16, 0x1e, 0xab, 0x2b, 0xe9, 0xd2, 0x95, 0x48, 0x7b, 0x11, + 0xc9, 0x24, 0x12, 0x3b, 0xed, 0xee, 0x85, 0xf7, 0xbd, 0x2f, 0x7f, 0xf2, 0xa3, 0x0b, 0xc1, 0xc0, + 0x4b, 0x29, 0x10, 0x49, 0x39, 0x81, 0x84, 0x79, 0x09, 0x06, 0x2c, 0x88, 0x70, 0x19, 0xa7, 0x92, + 0x5a, 0xc7, 0x82, 0x81, 0xfb, 0x6f, 0xdd, 0x38, 0x4b, 0x68, 0x42, 0xd5, 0xce, 0xcb, 0xa6, 0x1c, + 0x6b, 0x9c, 0xeb, 0x16, 0x16, 0xf1, 0x28, 0x2d, 0x24, 0x8d, 0xb6, 0xbe, 0x8d, 0x29, 0x88, 0x59, + 0x8a, 0x79, 0x18, 0x4f, 0x09, 0x06, 0x19, 0x92, 0x51, 0x41, 0xde, 0x6e, 0x21, 0x01, 0xc7, 0x92, + 0x50, 0x08, 0xe3, 0x49, 0x04, 0x80, 0xa7, 0x25, 0x7c, 0xa3, 0xc3, 0xe5, 0x1c, 0x12, 0x18, 0x17, + 0xd9, 0xae, 0x3e, 0x2b, 0xe8, 0xb0, 0x9f, 0x7f, 0xd4, 0xb3, 0x8c, 0x24, 0xb6, 0xea, 0x68, 0x8f, + 0x51, 0x9e, 0xbd, 0xd5, 0x36, 0x5b, 0x66, 0x7b, 0x3f, 0xa8, 0x65, 0x8f, 0xfe, 0xc8, 0x1a, 0xa0, + 0x93, 0xbf, 0x64, 0x5d, 0x15, 0xcc, 0xef, 0xd9, 0x95, 0x96, 0xd9, 0x3e, 0xb8, 0xbf, 0x74, 0xb5, + 0xff, 0xe0, 0x76, 0x35, 0x30, 0xd8, 0x38, 0xb5, 0x5e, 0xd0, 0x69, 0x19, 0xbf, 0x9b, 0xa7, 0xf7, + 0x7b, 0xf6, 0x8e, 0x32, 0x5e, 0x6f, 0x33, 0xea, 0x6c, 0xb0, 0x4d, 0x60, 0xf5, 0xd1, 0x51, 0x79, + 0xe7, 0xc3, 0x98, 0xda, 0x55, 0xa5, 0x6c, 0x6e, 0x28, 0x07, 0x6b, 0x58, 0xa0, 0x9d, 0x59, 0x8f, + 0xa8, 0x96, 0xf7, 0x64, 0xef, 0x2a, 0x41, 0x7d, 0x43, 0xf0, 0xa4, 0xd6, 0x9d, 0xea, 0xfc, 0xbb, + 0x69, 0x04, 0x05, 0xdc, 0xe9, 0xcf, 0x97, 0x8e, 0xb9, 0x58, 0x3a, 0xe6, 0xcf, 0xd2, 0x31, 0x3f, + 0x56, 0x8e, 0xb1, 0x58, 0x39, 0xc6, 0xd7, 0xca, 0x31, 0x5e, 0xef, 0x12, 0x22, 0x27, 0xb3, 0xa1, + 0x1b, 0xd3, 0xd4, 0x93, 0x18, 0x46, 0x98, 0xa7, 0x04, 0xa4, 0x97, 0xf5, 0xf4, 0xb6, 0xd6, 0x94, + 0x7c, 0x67, 0x58, 0x0c, 0x6b, 0xaa, 0xa0, 0x87, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf9, 0x4b, + 0xcc, 0xb4, 0x84, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/monitoringp/types/monitoring_info.pb.go b/x/monitoringp/types/monitoring_info.pb.go index 1ce434f4e..bef3c142a 100644 --- a/x/monitoringp/types/monitoring_info.pb.go +++ b/x/monitoringp/types/monitoring_info.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: monitoringp/monitoring_info.proto +// source: spn/monitoringp/monitoring_info.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" types "github.com/tendermint/spn/pkg/types" io "io" math "math" @@ -33,7 +33,7 @@ func (m *MonitoringInfo) Reset() { *m = MonitoringInfo{} } func (m *MonitoringInfo) String() string { return proto.CompactTextString(m) } func (*MonitoringInfo) ProtoMessage() {} func (*MonitoringInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_8dc3781ef8b7f8cf, []int{0} + return fileDescriptor_41e8232cfb347c00, []int{0} } func (m *MonitoringInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -77,28 +77,30 @@ func (m *MonitoringInfo) GetSignatureCounts() types.SignatureCounts { } func init() { - proto.RegisterType((*MonitoringInfo)(nil), "tendermint.spn.monitoringp.MonitoringInfo") + proto.RegisterType((*MonitoringInfo)(nil), "spn.monitoringp.MonitoringInfo") } -func init() { proto.RegisterFile("monitoringp/monitoring_info.proto", fileDescriptor_8dc3781ef8b7f8cf) } +func init() { + proto.RegisterFile("spn/monitoringp/monitoring_info.proto", fileDescriptor_41e8232cfb347c00) +} -var fileDescriptor_8dc3781ef8b7f8cf = []byte{ - // 235 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xcc, 0xcd, 0xcf, 0xcb, - 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x2f, 0xd0, 0x47, 0xb0, 0xe3, 0x33, 0xf3, 0xd2, 0xf2, 0xf5, - 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0xa4, 0x4a, 0x52, 0xf3, 0x52, 0x52, 0x8b, 0x72, 0x33, 0xf3, - 0x4a, 0xf4, 0x8a, 0x0b, 0xf2, 0xf4, 0x90, 0x74, 0x48, 0x89, 0xa4, 0xe7, 0xa7, 0xe7, 0x83, 0x95, - 0xe9, 0x83, 0x58, 0x10, 0x1d, 0x52, 0x62, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x48, 0xc6, 0x41, 0xc4, - 0x95, 0x3a, 0x19, 0xb9, 0xf8, 0x7c, 0xe1, 0x82, 0x9e, 0x79, 0x69, 0xf9, 0x42, 0x0a, 0x5c, 0xdc, - 0x25, 0x45, 0x89, 0x79, 0xc5, 0xb9, 0x99, 0x25, 0x25, 0xa9, 0x29, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, - 0x1c, 0x41, 0xc8, 0x42, 0x42, 0xa1, 0x5c, 0xfc, 0xc5, 0x99, 0xe9, 0x79, 0x89, 0x25, 0xa5, 0x45, - 0xa9, 0xce, 0xf9, 0xa5, 0x79, 0x25, 0xc5, 0x12, 0x4c, 0x0a, 0x8c, 0x1a, 0xdc, 0x46, 0xaa, 0x7a, - 0x68, 0x0e, 0x03, 0xdb, 0xaa, 0x17, 0x8c, 0xaa, 0xd8, 0x89, 0xe5, 0xc4, 0x3d, 0x79, 0x86, 0x20, - 0x74, 0x33, 0x9c, 0xdc, 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, 0x4a, 0x37, - 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0x61, 0x83, 0x7e, 0x71, 0x41, - 0x9e, 0x7e, 0x85, 0x3e, 0x72, 0x70, 0x81, 0xed, 0x4b, 0x62, 0x03, 0xfb, 0xcd, 0x18, 0x10, 0x00, - 0x00, 0xff, 0xff, 0x39, 0x54, 0xd6, 0xef, 0x4a, 0x01, 0x00, 0x00, +var fileDescriptor_41e8232cfb347c00 = []byte{ + // 233 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x2d, 0x2e, 0xc8, 0xd3, + 0xcf, 0xcd, 0xcf, 0xcb, 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x2f, 0x40, 0x62, 0xc7, 0x67, 0xe6, + 0xa5, 0xe5, 0xeb, 0x15, 0x14, 0xe5, 0x97, 0xe4, 0x0b, 0xf1, 0x17, 0x17, 0xe4, 0xe9, 0x21, 0x29, + 0x93, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xcb, 0xe9, 0x83, 0x58, 0x10, 0x65, 0x52, 0x52, 0x20, + 0xd3, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x91, 0xcc, 0x81, 0xc8, 0x29, 0xd5, 0x71, 0xf1, 0xf9, 0xc2, + 0xc5, 0x3c, 0xf3, 0xd2, 0xf2, 0x85, 0x14, 0xb8, 0xb8, 0x4b, 0x8a, 0x12, 0xf3, 0x8a, 0x73, 0x33, + 0x4b, 0x4a, 0x52, 0x53, 0x24, 0x18, 0x15, 0x18, 0x35, 0x38, 0x82, 0x90, 0x85, 0x84, 0xbc, 0xb8, + 0xf8, 0x8b, 0x33, 0xd3, 0xf3, 0x12, 0x4b, 0x4a, 0x8b, 0x52, 0x9d, 0xf3, 0x4b, 0xf3, 0x4a, 0x8a, + 0x25, 0x98, 0x14, 0x18, 0x35, 0xb8, 0x8d, 0xa4, 0xf4, 0x40, 0x0e, 0x02, 0xdb, 0xa4, 0x17, 0x8c, + 0xaa, 0xc2, 0x89, 0xe5, 0xc4, 0x3d, 0x79, 0x86, 0x20, 0x74, 0x8d, 0x4e, 0xee, 0x27, 0x1e, 0xc9, + 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, + 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xa5, 0x9b, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, + 0x9c, 0x9f, 0xab, 0x5f, 0x92, 0x9a, 0x97, 0x92, 0x5a, 0x94, 0x9b, 0x99, 0x57, 0xa2, 0x0f, 0xf2, + 0x4b, 0x05, 0x4a, 0xd8, 0x80, 0xed, 0x4b, 0x62, 0x03, 0xfb, 0xc7, 0x18, 0x10, 0x00, 0x00, 0xff, + 0xff, 0x72, 0x8f, 0x52, 0x43, 0x3b, 0x01, 0x00, 0x00, } func (m *MonitoringInfo) Marshal() (dAtA []byte, err error) { diff --git a/x/monitoringp/types/params.pb.go b/x/monitoringp/types/params.pb.go index 3a5d88d42..9803b5c96 100644 --- a/x/monitoringp/types/params.pb.go +++ b/x/monitoringp/types/params.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: monitoringp/params.proto +// source: spn/monitoringp/params.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" types "github.com/tendermint/spn/pkg/types" io "io" math "math" @@ -36,7 +36,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_14b90118a5ef3574, []int{0} + return fileDescriptor_123eef92d97c01d9, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -101,33 +101,33 @@ func (m *Params) GetConsumerRevisionHeight() uint64 { } func init() { - proto.RegisterType((*Params)(nil), "tendermint.spn.monitoringp.Params") + proto.RegisterType((*Params)(nil), "spn.monitoringp.Params") } -func init() { proto.RegisterFile("monitoringp/params.proto", fileDescriptor_14b90118a5ef3574) } +func init() { proto.RegisterFile("spn/monitoringp/params.proto", fileDescriptor_123eef92d97c01d9) } -var fileDescriptor_14b90118a5ef3574 = []byte{ - // 314 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x91, 0x31, 0x4b, 0xc3, 0x40, - 0x1c, 0xc5, 0x73, 0x6d, 0x2c, 0x18, 0x87, 0x42, 0x10, 0x0d, 0x1d, 0xd2, 0x20, 0x0e, 0x59, 0xbc, - 0x03, 0x05, 0x11, 0xc7, 0x2a, 0xa8, 0x5b, 0x89, 0xb8, 0xb8, 0x25, 0xe9, 0x71, 0x3d, 0x6c, 0xfe, - 0xff, 0xe3, 0xee, 0x2a, 0xfa, 0x2d, 0x1c, 0x1d, 0xfd, 0x18, 0x7e, 0x84, 0x8e, 0x1d, 0x9d, 0x44, - 0xda, 0x2f, 0x22, 0xbd, 0xaa, 0xad, 0x85, 0x6c, 0xc7, 0x7b, 0xef, 0xfe, 0xbc, 0x1f, 0x2f, 0x88, - 0x2a, 0x04, 0x69, 0x51, 0x4b, 0x10, 0x8a, 0xa9, 0x5c, 0xe7, 0x95, 0xa1, 0x4a, 0xa3, 0xc5, 0xb0, - 0x63, 0x39, 0x0c, 0xb8, 0xae, 0x24, 0x58, 0x6a, 0x14, 0xd0, 0xb5, 0x60, 0x67, 0x57, 0xa0, 0x40, - 0x17, 0x63, 0x8b, 0xd7, 0xf2, 0x47, 0xa7, 0x6d, 0x9f, 0x15, 0x37, 0x4c, 0x16, 0xe5, 0x52, 0x38, - 0x78, 0x6f, 0x04, 0xad, 0xbe, 0xbb, 0x19, 0xa6, 0x41, 0x7b, 0x94, 0x1b, 0xdb, 0x1b, 0x61, 0xf9, - 0x70, 0xcd, 0xa5, 0x18, 0xda, 0x88, 0x24, 0x24, 0x6d, 0x66, 0x9b, 0xf2, 0x22, 0x59, 0x22, 0x98, - 0x71, 0xc5, 0xf5, 0xc5, 0x30, 0x97, 0x70, 0x73, 0x19, 0x35, 0x12, 0x92, 0x6e, 0x67, 0x9b, 0x72, - 0x58, 0x04, 0x7b, 0x7f, 0x12, 0x82, 0xe1, 0x60, 0xc6, 0xe6, 0xd6, 0xe6, 0x96, 0x47, 0xcd, 0x84, - 0xa4, 0x3b, 0xc7, 0x87, 0x74, 0x03, 0xc1, 0xf5, 0xa3, 0xff, 0xb3, 0x3d, 0x7f, 0xf2, 0xd9, 0xf5, - 0xb2, 0x9a, 0x4b, 0xe1, 0x59, 0xb0, 0xff, 0xeb, 0xdc, 0x41, 0x81, 0x30, 0x90, 0x20, 0xfa, 0x5c, - 0x4b, 0x1c, 0x44, 0xbe, 0xeb, 0x5f, 0x67, 0x87, 0xa7, 0xab, 0x76, 0x19, 0x7f, 0x94, 0x46, 0x22, - 0xfc, 0x80, 0x6f, 0x25, 0x24, 0xf5, 0xb3, 0x1a, 0xf7, 0xdc, 0x7f, 0x7d, 0xeb, 0x7a, 0xbd, 0xab, - 0xc9, 0x2c, 0x26, 0xd3, 0x59, 0x4c, 0xbe, 0x66, 0x31, 0x79, 0x99, 0xc7, 0xde, 0x74, 0x1e, 0x7b, - 0x1f, 0xf3, 0xd8, 0xbb, 0x3f, 0x12, 0xd2, 0x0e, 0xc7, 0x05, 0x2d, 0xb1, 0x62, 0x2b, 0x3e, 0x66, - 0x14, 0xb0, 0x27, 0xb6, 0xbe, 0xa6, 0xa3, 0x2d, 0x5a, 0x6e, 0x8a, 0x93, 0xef, 0x00, 0x00, 0x00, - 0xff, 0xff, 0xab, 0xe8, 0xcf, 0x71, 0xe9, 0x01, 0x00, 0x00, +var fileDescriptor_123eef92d97c01d9 = []byte{ + // 315 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x91, 0xcd, 0x4a, 0xc3, 0x40, + 0x14, 0x85, 0x33, 0x6d, 0x2c, 0x18, 0x17, 0x85, 0x28, 0x1a, 0x8b, 0xa4, 0xc1, 0x55, 0x36, 0x66, + 0x40, 0x41, 0xc4, 0x65, 0x15, 0xd4, 0x5d, 0x89, 0x88, 0xe0, 0x2e, 0x49, 0x87, 0xe9, 0x60, 0x73, + 0xef, 0x30, 0x33, 0x15, 0x7d, 0x0b, 0x97, 0x2e, 0x7d, 0x01, 0xdf, 0xa3, 0xcb, 0x2e, 0x5d, 0x89, + 0xb4, 0x2f, 0x22, 0x99, 0xfa, 0xd7, 0x42, 0x76, 0xc3, 0xf9, 0xce, 0x5c, 0xce, 0x3d, 0xd7, 0xdb, + 0xd3, 0x12, 0x68, 0x89, 0x20, 0x0c, 0x2a, 0x01, 0x5c, 0x52, 0x99, 0xa9, 0xac, 0xd4, 0x89, 0x54, + 0x68, 0xd0, 0x6f, 0x6b, 0x09, 0xc9, 0x3f, 0xda, 0xd9, 0xe2, 0xc8, 0xd1, 0x32, 0x5a, 0xbd, 0x16, + 0xb6, 0xce, 0x66, 0x35, 0xc4, 0x3c, 0x49, 0xa6, 0xa9, 0xc8, 0x8b, 0x85, 0xb8, 0xff, 0xd6, 0xf0, + 0x5a, 0x7d, 0x3b, 0xcc, 0x8f, 0xbd, 0xf6, 0x28, 0xd3, 0xa6, 0x37, 0xc2, 0xe2, 0xfe, 0x92, 0x09, + 0x3e, 0x34, 0x01, 0x89, 0x48, 0xdc, 0x4c, 0x57, 0xe5, 0xca, 0x59, 0x20, 0xe8, 0x71, 0xc9, 0xd4, + 0xd9, 0x30, 0x13, 0x70, 0x75, 0x1e, 0x34, 0x22, 0x12, 0xaf, 0xa7, 0xab, 0xb2, 0x7f, 0xeb, 0x6d, + 0xff, 0x4a, 0x08, 0x9a, 0x81, 0x1e, 0xeb, 0x6b, 0x93, 0x19, 0x16, 0x34, 0x23, 0x12, 0x6f, 0x1c, + 0xee, 0x26, 0x55, 0x76, 0x1b, 0x2a, 0x59, 0x36, 0xf4, 0xdc, 0xc9, 0x47, 0xd7, 0x49, 0x6b, 0xbe, + 0xfb, 0x27, 0xde, 0xce, 0x0f, 0xb9, 0x81, 0x1c, 0x61, 0x20, 0x80, 0xf7, 0x99, 0x12, 0x38, 0x08, + 0x5c, 0x1b, 0xba, 0x0e, 0xfb, 0xc7, 0x7f, 0x91, 0x52, 0xf6, 0x20, 0xb4, 0x40, 0xf8, 0xde, 0x76, + 0x2d, 0x22, 0xb1, 0x9b, 0xd6, 0xd0, 0x53, 0xf7, 0xe5, 0xb5, 0xeb, 0xf4, 0x2e, 0x26, 0xb3, 0x90, + 0x4c, 0x67, 0x21, 0xf9, 0x9c, 0x85, 0xe4, 0x79, 0x1e, 0x3a, 0xd3, 0x79, 0xe8, 0xbc, 0xcf, 0x43, + 0xe7, 0xee, 0x80, 0x0b, 0x33, 0x1c, 0xe7, 0x49, 0x81, 0x25, 0x35, 0x0c, 0x06, 0x4c, 0x95, 0x02, + 0x0c, 0xad, 0x4a, 0x7f, 0x5c, 0xba, 0x9d, 0xdd, 0x36, 0x6f, 0xd9, 0xfe, 0x8f, 0xbe, 0x02, 0x00, + 0x00, 0xff, 0xff, 0x5b, 0xe2, 0xe2, 0x07, 0xdb, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/monitoringp/types/query.pb.go b/x/monitoringp/types/query.pb.go index b6ab0ca4a..338444f27 100644 --- a/x/monitoringp/types/query.pb.go +++ b/x/monitoringp/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: monitoringp/query.proto +// source: spn/monitoringp/query.proto package types @@ -7,9 +7,9 @@ import ( context "context" fmt "fmt" _ "github.com/cosmos/cosmos-sdk/types/query" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -37,7 +37,7 @@ func (m *QueryGetConsumerClientIDRequest) Reset() { *m = QueryGetConsume func (m *QueryGetConsumerClientIDRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetConsumerClientIDRequest) ProtoMessage() {} func (*QueryGetConsumerClientIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_752da97189c2fec8, []int{0} + return fileDescriptor_3a89b5986f036625, []int{0} } func (m *QueryGetConsumerClientIDRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -74,7 +74,7 @@ func (m *QueryGetConsumerClientIDResponse) Reset() { *m = QueryGetConsum func (m *QueryGetConsumerClientIDResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetConsumerClientIDResponse) ProtoMessage() {} func (*QueryGetConsumerClientIDResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_752da97189c2fec8, []int{1} + return fileDescriptor_3a89b5986f036625, []int{1} } func (m *QueryGetConsumerClientIDResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -117,7 +117,7 @@ func (m *QueryGetConnectionChannelIDRequest) Reset() { *m = QueryGetConn func (m *QueryGetConnectionChannelIDRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetConnectionChannelIDRequest) ProtoMessage() {} func (*QueryGetConnectionChannelIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_752da97189c2fec8, []int{2} + return fileDescriptor_3a89b5986f036625, []int{2} } func (m *QueryGetConnectionChannelIDRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -154,7 +154,7 @@ func (m *QueryGetConnectionChannelIDResponse) Reset() { *m = QueryGetCon func (m *QueryGetConnectionChannelIDResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetConnectionChannelIDResponse) ProtoMessage() {} func (*QueryGetConnectionChannelIDResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_752da97189c2fec8, []int{3} + return fileDescriptor_3a89b5986f036625, []int{3} } func (m *QueryGetConnectionChannelIDResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -197,7 +197,7 @@ func (m *QueryGetMonitoringInfoRequest) Reset() { *m = QueryGetMonitorin func (m *QueryGetMonitoringInfoRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetMonitoringInfoRequest) ProtoMessage() {} func (*QueryGetMonitoringInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_752da97189c2fec8, []int{4} + return fileDescriptor_3a89b5986f036625, []int{4} } func (m *QueryGetMonitoringInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -234,7 +234,7 @@ func (m *QueryGetMonitoringInfoResponse) Reset() { *m = QueryGetMonitori func (m *QueryGetMonitoringInfoResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetMonitoringInfoResponse) ProtoMessage() {} func (*QueryGetMonitoringInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_752da97189c2fec8, []int{5} + return fileDescriptor_3a89b5986f036625, []int{5} } func (m *QueryGetMonitoringInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -278,7 +278,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_752da97189c2fec8, []int{6} + return fileDescriptor_3a89b5986f036625, []int{6} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -316,7 +316,7 @@ 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_752da97189c2fec8, []int{7} + return fileDescriptor_3a89b5986f036625, []int{7} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -353,56 +353,55 @@ func (m *QueryParamsResponse) GetParams() Params { } func init() { - proto.RegisterType((*QueryGetConsumerClientIDRequest)(nil), "tendermint.spn.monitoringp.QueryGetConsumerClientIDRequest") - proto.RegisterType((*QueryGetConsumerClientIDResponse)(nil), "tendermint.spn.monitoringp.QueryGetConsumerClientIDResponse") - proto.RegisterType((*QueryGetConnectionChannelIDRequest)(nil), "tendermint.spn.monitoringp.QueryGetConnectionChannelIDRequest") - proto.RegisterType((*QueryGetConnectionChannelIDResponse)(nil), "tendermint.spn.monitoringp.QueryGetConnectionChannelIDResponse") - proto.RegisterType((*QueryGetMonitoringInfoRequest)(nil), "tendermint.spn.monitoringp.QueryGetMonitoringInfoRequest") - proto.RegisterType((*QueryGetMonitoringInfoResponse)(nil), "tendermint.spn.monitoringp.QueryGetMonitoringInfoResponse") - proto.RegisterType((*QueryParamsRequest)(nil), "tendermint.spn.monitoringp.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "tendermint.spn.monitoringp.QueryParamsResponse") -} - -func init() { proto.RegisterFile("monitoringp/query.proto", fileDescriptor_752da97189c2fec8) } - -var fileDescriptor_752da97189c2fec8 = []byte{ - // 563 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xc1, 0x6b, 0x13, 0x41, - 0x14, 0xc6, 0x33, 0x62, 0x73, 0x18, 0x41, 0x64, 0x5a, 0xb0, 0x2c, 0xba, 0x69, 0xd7, 0x80, 0x12, - 0xed, 0x8e, 0x69, 0x40, 0xa8, 0x8a, 0x4a, 0x23, 0x94, 0x1e, 0x04, 0xed, 0x45, 0xf1, 0x60, 0xd8, - 0x6c, 0xa7, 0xdb, 0x81, 0xec, 0xcc, 0x76, 0x67, 0x22, 0xd6, 0x63, 0xff, 0x00, 0x11, 0xc4, 0xff, - 0xc6, 0xab, 0xd0, 0x63, 0xc4, 0x8b, 0x27, 0x91, 0xc4, 0xbf, 0xc2, 0x93, 0x64, 0xf6, 0xa5, 0xd9, - 0xdd, 0x24, 0x9b, 0x90, 0xdb, 0xd2, 0xf7, 0xbd, 0xef, 0xfd, 0xbe, 0xf2, 0x65, 0xf0, 0xf5, 0x50, - 0x0a, 0xae, 0x65, 0xcc, 0x45, 0x10, 0xd1, 0x93, 0x2e, 0x8b, 0x4f, 0xdd, 0x28, 0x96, 0x5a, 0x12, - 0x4b, 0x33, 0x71, 0xc8, 0xe2, 0x90, 0x0b, 0xed, 0xaa, 0x48, 0xb8, 0x29, 0x9d, 0xb5, 0x16, 0xc8, - 0x40, 0x1a, 0x19, 0x1d, 0x7e, 0x25, 0x1b, 0xd6, 0x8d, 0x40, 0xca, 0xa0, 0xc3, 0xa8, 0x17, 0x71, - 0xea, 0x09, 0x21, 0xb5, 0xa7, 0xb9, 0x14, 0x0a, 0xa6, 0x35, 0x5f, 0xaa, 0x50, 0x2a, 0xda, 0xf6, - 0x14, 0x4b, 0x0e, 0xd1, 0xf7, 0xf5, 0x36, 0xd3, 0x5e, 0x9d, 0x46, 0x5e, 0xc0, 0x85, 0x11, 0x83, - 0x76, 0x3d, 0x0d, 0x15, 0x79, 0xb1, 0x17, 0x8e, 0x5c, 0xaa, 0xe9, 0x89, 0x2f, 0x85, 0xea, 0x86, - 0x2c, 0x6e, 0xf9, 0x1d, 0xce, 0x84, 0x6e, 0xf1, 0x43, 0x50, 0xdd, 0xce, 0xa9, 0x04, 0xf3, 0x87, - 0xee, 0x2d, 0xff, 0xd8, 0x13, 0x82, 0x75, 0xc6, 0xc2, 0xcd, 0xb4, 0x70, 0xfc, 0xdd, 0xe2, 0xe2, - 0x08, 0x52, 0x39, 0x9b, 0xb8, 0xf2, 0x6a, 0x48, 0xbb, 0xc7, 0x74, 0x13, 0xee, 0x35, 0xcd, 0xb9, - 0xfd, 0xe7, 0x07, 0xec, 0xa4, 0xcb, 0x94, 0x76, 0xce, 0x10, 0xde, 0x98, 0xad, 0x51, 0x91, 0x14, - 0x8a, 0x91, 0x77, 0xf8, 0x5a, 0x7e, 0xb6, 0x8e, 0x36, 0xd0, 0x9d, 0x2b, 0xdb, 0xf7, 0xdc, 0xd9, - 0xff, 0x6a, 0x37, 0xbf, 0xb3, 0x7b, 0xf9, 0xfc, 0x77, 0xa5, 0x74, 0x30, 0xe1, 0xe5, 0x54, 0xb1, - 0x93, 0x62, 0x80, 0xc4, 0xcd, 0x24, 0xf0, 0x18, 0xf5, 0x13, 0xc2, 0xb7, 0x0a, 0x65, 0x40, 0x1b, - 0xe0, 0xd5, 0x29, 0x63, 0x00, 0xa6, 0x73, 0x80, 0xf3, 0x6b, 0xc0, 0x3c, 0xcd, 0xd1, 0xa9, 0xe0, - 0x9b, 0x23, 0x9e, 0x17, 0x17, 0x2e, 0xfb, 0xe2, 0x48, 0x8e, 0x88, 0x3f, 0x62, 0x7b, 0x96, 0x00, - 0x58, 0xdf, 0xe0, 0xab, 0xd9, 0x09, 0x60, 0xd6, 0x8a, 0x30, 0xb3, 0x1b, 0x40, 0x98, 0xf3, 0x71, - 0xd6, 0x30, 0x31, 0xb7, 0x5f, 0x9a, 0x0a, 0x8e, 0x88, 0x5e, 0xe3, 0xd5, 0xcc, 0x5f, 0x01, 0xe3, - 0x19, 0x2e, 0x27, 0x55, 0x85, 0xf3, 0x4e, 0xd1, 0xf9, 0x64, 0x17, 0xce, 0xc2, 0xde, 0xf6, 0xbf, - 0x15, 0xbc, 0x62, 0x9c, 0xc9, 0x77, 0x34, 0xd9, 0x16, 0xf2, 0xa8, 0xc8, 0x70, 0x4e, 0x47, 0xad, - 0xc7, 0xcb, 0x2d, 0x27, 0xd9, 0x9c, 0x07, 0x67, 0x3f, 0xff, 0x7e, 0xb9, 0x74, 0x9f, 0xb8, 0x74, - 0xec, 0x42, 0x55, 0x24, 0x68, 0xf1, 0xcf, 0x91, 0xfc, 0x40, 0x53, 0x7b, 0x44, 0x9e, 0x2c, 0x48, - 0x33, 0xa3, 0xc6, 0xd6, 0xd3, 0xa5, 0xf7, 0x21, 0xd0, 0x8e, 0x09, 0xd4, 0x20, 0xf5, 0x39, 0x81, - 0x26, 0x5f, 0x0e, 0xf2, 0x0d, 0xe5, 0xfb, 0x46, 0x76, 0x16, 0xc1, 0x99, 0x5a, 0x6f, 0xeb, 0xe1, - 0x32, 0xab, 0x10, 0xa2, 0x61, 0x42, 0x6c, 0x91, 0xbb, 0x45, 0x21, 0x72, 0xaf, 0x1a, 0xf9, 0x8a, - 0x70, 0x39, 0x69, 0x1f, 0x71, 0xe7, 0xde, 0xce, 0x14, 0xdf, 0xa2, 0x0b, 0xeb, 0x01, 0xb0, 0x66, - 0x00, 0xab, 0xc4, 0x29, 0x02, 0x4c, 0xca, 0xbf, 0xbb, 0x77, 0xde, 0xb7, 0x51, 0xaf, 0x6f, 0xa3, - 0x3f, 0x7d, 0x1b, 0x7d, 0x1e, 0xd8, 0xa5, 0xde, 0xc0, 0x2e, 0xfd, 0x1a, 0xd8, 0xa5, 0xb7, 0x5b, - 0x01, 0xd7, 0xc7, 0xdd, 0xb6, 0xeb, 0xcb, 0x30, 0xef, 0xf3, 0x21, 0xe3, 0xa4, 0x4f, 0x23, 0xa6, - 0xda, 0x65, 0xf3, 0x6e, 0x37, 0xfe, 0x07, 0x00, 0x00, 0xff, 0xff, 0xc1, 0x33, 0xc3, 0x82, 0xda, - 0x06, 0x00, 0x00, + proto.RegisterType((*QueryGetConsumerClientIDRequest)(nil), "spn.monitoringp.QueryGetConsumerClientIDRequest") + proto.RegisterType((*QueryGetConsumerClientIDResponse)(nil), "spn.monitoringp.QueryGetConsumerClientIDResponse") + proto.RegisterType((*QueryGetConnectionChannelIDRequest)(nil), "spn.monitoringp.QueryGetConnectionChannelIDRequest") + proto.RegisterType((*QueryGetConnectionChannelIDResponse)(nil), "spn.monitoringp.QueryGetConnectionChannelIDResponse") + proto.RegisterType((*QueryGetMonitoringInfoRequest)(nil), "spn.monitoringp.QueryGetMonitoringInfoRequest") + proto.RegisterType((*QueryGetMonitoringInfoResponse)(nil), "spn.monitoringp.QueryGetMonitoringInfoResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "spn.monitoringp.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "spn.monitoringp.QueryParamsResponse") +} + +func init() { proto.RegisterFile("spn/monitoringp/query.proto", fileDescriptor_3a89b5986f036625) } + +var fileDescriptor_3a89b5986f036625 = []byte{ + // 555 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x94, 0xc1, 0x6a, 0x13, 0x41, + 0x1c, 0xc6, 0xb3, 0x62, 0x73, 0x18, 0x41, 0x65, 0x5a, 0x50, 0x56, 0xdd, 0xb4, 0xdb, 0x08, 0xa5, + 0xa5, 0x3b, 0x4d, 0xa3, 0x82, 0xd7, 0x46, 0x28, 0x05, 0x0b, 0x5a, 0x6f, 0x22, 0x84, 0xcd, 0x76, + 0xba, 0x1d, 0xc8, 0xce, 0x4c, 0x77, 0x26, 0x6a, 0x4f, 0x82, 0xbe, 0x80, 0xe0, 0x13, 0x78, 0xf1, + 0xea, 0x03, 0xf8, 0x02, 0x3d, 0x16, 0xbc, 0x78, 0x12, 0x49, 0x7c, 0x10, 0xc9, 0xec, 0x3f, 0xa6, + 0x3b, 0xbb, 0xd9, 0xb4, 0xb7, 0x25, 0xff, 0xef, 0xff, 0x7d, 0xbf, 0x09, 0xdf, 0x0c, 0xba, 0xa7, + 0x24, 0x27, 0x89, 0xe0, 0x4c, 0x8b, 0x94, 0xf1, 0x58, 0x92, 0x93, 0x01, 0x4d, 0x4f, 0x03, 0x99, + 0x0a, 0x2d, 0xf0, 0x2d, 0x25, 0x79, 0x70, 0x61, 0xe8, 0x2e, 0xc5, 0x22, 0x16, 0x66, 0x46, 0xc6, + 0x5f, 0x99, 0xcc, 0xbd, 0x1f, 0x0b, 0x11, 0xf7, 0x29, 0x09, 0x25, 0x23, 0x21, 0xe7, 0x42, 0x87, + 0x9a, 0x09, 0xae, 0x60, 0xba, 0x1e, 0x09, 0x95, 0x08, 0x45, 0x7a, 0xa1, 0xa2, 0x99, 0x3b, 0x79, + 0xdb, 0xea, 0x51, 0x1d, 0xb6, 0x88, 0x0c, 0x63, 0xc6, 0x8d, 0x78, 0xe2, 0x64, 0xd3, 0xc8, 0x30, + 0x0d, 0x93, 0x89, 0xd3, 0x9a, 0x3d, 0x8d, 0x04, 0x57, 0x83, 0x84, 0xa6, 0xdd, 0xa8, 0xcf, 0x28, + 0xd7, 0x5d, 0x76, 0x08, 0xca, 0x8d, 0x12, 0x25, 0xa7, 0xd1, 0x38, 0xa9, 0x1b, 0x1d, 0x87, 0x9c, + 0xd3, 0xfe, 0x54, 0xfc, 0xd0, 0x16, 0x4f, 0xbf, 0xbb, 0x8c, 0x1f, 0xc1, 0x29, 0xfd, 0x15, 0xd4, + 0x78, 0x39, 0xa6, 0xdf, 0xa5, 0xba, 0x03, 0xb9, 0x1d, 0x13, 0xbb, 0xf7, 0xec, 0x80, 0x9e, 0x0c, + 0xa8, 0xd2, 0xfe, 0x3b, 0xb4, 0x3c, 0x5b, 0xa2, 0xa4, 0xe0, 0x8a, 0xe2, 0x57, 0xe8, 0xb6, 0x3d, + 0xbb, 0xeb, 0x2c, 0x3b, 0x6b, 0x37, 0xb6, 0x57, 0x02, 0xeb, 0xef, 0x0e, 0x6c, 0xe1, 0xce, 0xf5, + 0xb3, 0xdf, 0x8d, 0xda, 0x41, 0xc1, 0xc0, 0x6f, 0x22, 0xff, 0x42, 0x30, 0x9c, 0xb4, 0x93, 0x1d, + 0x74, 0x8a, 0xf7, 0xc9, 0x41, 0xab, 0x95, 0x32, 0x40, 0x7c, 0x83, 0x16, 0x4b, 0xc6, 0x40, 0xd9, + 0x2c, 0xa3, 0xb4, 0xb5, 0x00, 0x5a, 0x66, 0xe3, 0x37, 0xd0, 0x83, 0x09, 0xc4, 0xfe, 0x7f, 0x97, + 0x3d, 0x7e, 0x24, 0x26, 0x98, 0x02, 0x79, 0xb3, 0x04, 0x00, 0xb8, 0x8f, 0x6e, 0xe6, 0x27, 0xc0, + 0xd6, 0x28, 0xb0, 0xe5, 0x65, 0x80, 0x65, 0x2d, 0xfb, 0x4b, 0x08, 0x9b, 0xc0, 0x17, 0xa6, 0x6c, + 0x13, 0x8c, 0xe7, 0x68, 0x31, 0xf7, 0x2b, 0x64, 0x3f, 0x46, 0xf5, 0xac, 0x94, 0x90, 0x79, 0xa7, + 0x90, 0x99, 0x2d, 0x40, 0x16, 0x88, 0xb7, 0xbf, 0x2e, 0xa0, 0x05, 0x63, 0x87, 0xbf, 0x3b, 0xc5, + 0x06, 0xe0, 0xad, 0x82, 0xcb, 0x9c, 0xae, 0xb9, 0xad, 0x2b, 0x6c, 0x64, 0xe8, 0xfe, 0x93, 0x8f, + 0x3f, 0xff, 0x7e, 0xb9, 0xb6, 0x85, 0x03, 0xa2, 0x29, 0x3f, 0xa4, 0x69, 0xc2, 0xb8, 0x26, 0xf3, + 0xef, 0x14, 0xfe, 0xe1, 0x94, 0x16, 0x02, 0xb7, 0xab, 0x10, 0x66, 0x94, 0xd0, 0x7d, 0x74, 0xb5, + 0x25, 0x40, 0x7f, 0x6a, 0xd0, 0xdb, 0xb8, 0x35, 0x07, 0xbd, 0x78, 0xc9, 0xf1, 0x37, 0xc7, 0x6e, + 0x0b, 0x0e, 0x66, 0x32, 0x94, 0x36, 0xd2, 0x25, 0x97, 0xd6, 0x03, 0x6e, 0xdb, 0xe0, 0x6e, 0xe2, + 0x8d, 0x2a, 0x5c, 0xeb, 0x99, 0xc1, 0x1f, 0x50, 0x3d, 0xab, 0x0e, 0x5e, 0x2d, 0xcf, 0xcb, 0xf5, + 0xd3, 0x6d, 0x56, 0x8b, 0x80, 0x64, 0xdd, 0x90, 0x34, 0xb1, 0x5f, 0x45, 0x92, 0x75, 0x74, 0x67, + 0xf7, 0x6c, 0xe8, 0x39, 0xe7, 0x43, 0xcf, 0xf9, 0x33, 0xf4, 0x9c, 0xcf, 0x23, 0xaf, 0x76, 0x3e, + 0xf2, 0x6a, 0xbf, 0x46, 0x5e, 0xed, 0xf5, 0x66, 0xcc, 0xf4, 0xf1, 0xa0, 0x17, 0x44, 0x22, 0xb1, + 0x7d, 0xde, 0xe7, 0x9c, 0xf4, 0xa9, 0xa4, 0xaa, 0x57, 0x37, 0x2f, 0x66, 0xfb, 0x5f, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x66, 0x81, 0xc6, 0x28, 0x5d, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -437,7 +436,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) ConsumerClientID(ctx context.Context, in *QueryGetConsumerClientIDRequest, opts ...grpc.CallOption) (*QueryGetConsumerClientIDResponse, error) { out := new(QueryGetConsumerClientIDResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.monitoringp.Query/ConsumerClientID", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.monitoringp.Query/ConsumerClientID", in, out, opts...) if err != nil { return nil, err } @@ -446,7 +445,7 @@ func (c *queryClient) ConsumerClientID(ctx context.Context, in *QueryGetConsumer func (c *queryClient) ConnectionChannelID(ctx context.Context, in *QueryGetConnectionChannelIDRequest, opts ...grpc.CallOption) (*QueryGetConnectionChannelIDResponse, error) { out := new(QueryGetConnectionChannelIDResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.monitoringp.Query/ConnectionChannelID", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.monitoringp.Query/ConnectionChannelID", in, out, opts...) if err != nil { return nil, err } @@ -455,7 +454,7 @@ func (c *queryClient) ConnectionChannelID(ctx context.Context, in *QueryGetConne func (c *queryClient) MonitoringInfo(ctx context.Context, in *QueryGetMonitoringInfoRequest, opts ...grpc.CallOption) (*QueryGetMonitoringInfoResponse, error) { out := new(QueryGetMonitoringInfoResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.monitoringp.Query/MonitoringInfo", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.monitoringp.Query/MonitoringInfo", in, out, opts...) if err != nil { return nil, err } @@ -464,7 +463,7 @@ func (c *queryClient) MonitoringInfo(ctx context.Context, in *QueryGetMonitoring func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.monitoringp.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.monitoringp.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -514,7 +513,7 @@ func _Query_ConsumerClientID_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.monitoringp.Query/ConsumerClientID", + FullMethod: "/spn.monitoringp.Query/ConsumerClientID", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ConsumerClientID(ctx, req.(*QueryGetConsumerClientIDRequest)) @@ -532,7 +531,7 @@ func _Query_ConnectionChannelID_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.monitoringp.Query/ConnectionChannelID", + FullMethod: "/spn.monitoringp.Query/ConnectionChannelID", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ConnectionChannelID(ctx, req.(*QueryGetConnectionChannelIDRequest)) @@ -550,7 +549,7 @@ func _Query_MonitoringInfo_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.monitoringp.Query/MonitoringInfo", + FullMethod: "/spn.monitoringp.Query/MonitoringInfo", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).MonitoringInfo(ctx, req.(*QueryGetMonitoringInfoRequest)) @@ -568,7 +567,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.monitoringp.Query/Params", + FullMethod: "/spn.monitoringp.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -577,7 +576,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "tendermint.spn.monitoringp.Query", + ServiceName: "spn.monitoringp.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -598,7 +597,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "monitoringp/query.proto", + Metadata: "spn/monitoringp/query.proto", } func (m *QueryGetConsumerClientIDRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/monitoringp/types/query.pb.gw.go b/x/monitoringp/types/query.pb.gw.go index 771fdf2b8..a76b4d2d5 100644 --- a/x/monitoringp/types/query.pb.gw.go +++ b/x/monitoringp/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: monitoringp/query.proto +// source: spn/monitoringp/query.proto /* Package types is a reverse proxy. @@ -328,13 +328,13 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_ConsumerClientID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "monitoringp", "consumer_client_id"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_ConsumerClientID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "monitoringp", "consumer_client_id"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_ConnectionChannelID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "monitoringp", "connection_channel_id"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_ConnectionChannelID_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "monitoringp", "connection_channel_id"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_MonitoringInfo_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "monitoringp", "monitoring_info"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_MonitoringInfo_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "monitoringp", "monitoring_info"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "monitoringp", "params"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "monitoringp", "params"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/monitoringp/types/tx.pb.go b/x/monitoringp/types/tx.pb.go index 5db5ed046..957787d57 100644 --- a/x/monitoringp/types/tx.pb.go +++ b/x/monitoringp/types/tx.pb.go @@ -1,13 +1,13 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: monitoringp/tx.proto +// source: spn/monitoringp/tx.proto package types import ( context "context" fmt "fmt" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" grpc "google.golang.org/grpc" math "math" ) @@ -23,19 +23,19 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package -func init() { proto.RegisterFile("monitoringp/tx.proto", fileDescriptor_aa8e807580caf627) } +func init() { proto.RegisterFile("spn/monitoringp/tx.proto", fileDescriptor_d84d8c749f6e6b38) } -var fileDescriptor_aa8e807580caf627 = []byte{ - // 133 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xc9, 0xcd, 0xcf, 0xcb, - 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x2f, 0xd0, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x92, 0x2a, 0x49, 0xcd, 0x4b, 0x49, 0x2d, 0xca, 0xcd, 0xcc, 0x2b, 0xd1, 0x2b, 0x2e, 0xc8, - 0xd3, 0x43, 0x52, 0x64, 0xc4, 0xca, 0xc5, 0xec, 0x5b, 0x9c, 0xee, 0xe4, 0x7e, 0xe2, 0x91, 0x1c, - 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, - 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0xba, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, - 0xf9, 0xb9, 0xfa, 0x08, 0x73, 0xf4, 0x8b, 0x0b, 0xf2, 0xf4, 0x2b, 0xf4, 0x51, 0xac, 0xab, 0x2c, - 0x48, 0x2d, 0x4e, 0x62, 0x03, 0x5b, 0x69, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x9d, 0x32, 0x7c, - 0xec, 0x8a, 0x00, 0x00, 0x00, +var fileDescriptor_d84d8c749f6e6b38 = []byte{ + // 131 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x28, 0x2e, 0xc8, 0xd3, + 0xcf, 0xcd, 0xcf, 0xcb, 0x2c, 0xc9, 0x2f, 0xca, 0xcc, 0x4b, 0x2f, 0xd0, 0x2f, 0xa9, 0xd0, 0x2b, + 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x2f, 0x2e, 0xc8, 0xd3, 0x43, 0x92, 0x31, 0x62, 0xe5, 0x62, + 0xf6, 0x2d, 0x4e, 0x77, 0x72, 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, + 0xdd, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0x92, 0xd4, 0xbc, 0x94, + 0xd4, 0xa2, 0xdc, 0xcc, 0xbc, 0x12, 0x7d, 0x90, 0x0d, 0x15, 0xa8, 0x76, 0x54, 0x16, 0xa4, 0x16, + 0x27, 0xb1, 0x81, 0xed, 0x31, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xb3, 0x42, 0xec, 0x05, 0x83, + 0x00, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -73,9 +73,9 @@ func RegisterMsgServer(s grpc1.Server, srv MsgServer) { } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "tendermint.spn.monitoringp.Msg", + ServiceName: "spn.monitoringp.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{}, Streams: []grpc.StreamDesc{}, - Metadata: "monitoringp/tx.proto", + Metadata: "spn/monitoringp/tx.proto", } diff --git a/x/participation/client/cli/query_auction_used_allocations_test.go b/x/participation/client/cli/query_auction_used_allocations_test.go index f658f5bf3..f38cc7486 100644 --- a/x/participation/client/cli/query_auction_used_allocations_test.go +++ b/x/participation/client/cli/query_auction_used_allocations_test.go @@ -5,10 +5,10 @@ import ( "strconv" "testing" + tmcli "github.com/cometbft/cometbft/libs/cli" "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/participation/client/cli/query_used_allocations_test.go b/x/participation/client/cli/query_used_allocations_test.go index 919b36bb5..49197ed1f 100644 --- a/x/participation/client/cli/query_used_allocations_test.go +++ b/x/participation/client/cli/query_used_allocations_test.go @@ -5,10 +5,10 @@ import ( "strconv" "testing" + tmcli "github.com/cometbft/cometbft/libs/cli" "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/participation/keeper/keeper.go b/x/participation/keeper/keeper.go index 68093bb57..52a94a9ff 100644 --- a/x/participation/keeper/keeper.go +++ b/x/participation/keeper/keeper.go @@ -3,11 +3,11 @@ package keeper import ( "fmt" + "github.com/cometbft/cometbft/libs/log" "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/tendermint/tendermint/libs/log" "github.com/tendermint/spn/x/participation/types" ) diff --git a/x/participation/keeper/msg_withdraw_allocations.go b/x/participation/keeper/msg_withdraw_allocations.go index 83f390e2a..26824c4b9 100644 --- a/x/participation/keeper/msg_withdraw_allocations.go +++ b/x/participation/keeper/msg_withdraw_allocations.go @@ -5,9 +5,10 @@ import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - ignterrors "github.com/ignite/modules/pkg/errors" fundraisingtypes "github.com/tendermint/fundraising/x/fundraising/types" + ignterrors "github.com/ignite/modules/pkg/errors" + "github.com/tendermint/spn/x/participation/types" ) diff --git a/x/participation/module.go b/x/participation/module.go index 24edf028e..d1e46601e 100644 --- a/x/participation/module.go +++ b/x/participation/module.go @@ -5,6 +5,7 @@ import ( "encoding/json" "fmt" + abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" cdctypes "github.com/cosmos/cosmos-sdk/codec/types" @@ -16,7 +17,6 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" fundraisingkeeper "github.com/tendermint/fundraising/x/fundraising/keeper" - abci "github.com/tendermint/tendermint/abci/types" "github.com/tendermint/spn/x/participation/client/cli" "github.com/tendermint/spn/x/participation/keeper" @@ -126,19 +126,9 @@ func (am AppModule) Name() string { return am.AppModuleBasic.Name() } -// Route returns the participation module's message routing key. -func (am AppModule) Route() sdk.Route { - return sdk.Route{} -} - // QuerierRoute returns the participation module's query routing key. func (AppModule) QuerierRoute() string { return types.QuerierRoute } -// LegacyQuerierHandler returns the participation module's Querier. -func (am AppModule) LegacyQuerierHandler(_ *codec.LegacyAmino) sdk.Querier { - return nil -} - // RegisterServices registers a GRPC query service to respond to the // module-specific GRPC queries. func (am AppModule) RegisterServices(cfg module.Configurator) { diff --git a/x/participation/module_simulation.go b/x/participation/module_simulation.go index 3bef84f6d..fea78abdc 100644 --- a/x/participation/module_simulation.go +++ b/x/participation/module_simulation.go @@ -42,19 +42,19 @@ func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedP } // RandomizedParams creates randomized param changes for the simulator -func (am AppModule) RandomizedParams(r *rand.Rand) []simtypes.ParamChange { +func (am AppModule) RandomizedParams(r *rand.Rand) []simtypes.LegacyParamChange { participationParams := sample.ParticipationParams(r) - return []simtypes.ParamChange{ - simulation.NewSimParamChange(types.ModuleName, string(types.KeyAllocationPrice), func(r *rand.Rand) string { + return []simtypes.LegacyParamChange{ + simulation.NewSimLegacyParamChange(types.ModuleName, string(types.KeyAllocationPrice), func(r *rand.Rand) string { return string(types.Amino.MustMarshalJSON(participationParams.AllocationPrice)) }), - simulation.NewSimParamChange(types.ModuleName, string(types.KeyParticipationTierList), func(r *rand.Rand) string { + simulation.NewSimLegacyParamChange(types.ModuleName, string(types.KeyParticipationTierList), func(r *rand.Rand) string { return string(types.Amino.MustMarshalJSON(participationParams.ParticipationTierList)) }), - simulation.NewSimParamChange(types.ModuleName, string(types.KeyRegistrationPeriod), func(r *rand.Rand) string { + simulation.NewSimLegacyParamChange(types.ModuleName, string(types.KeyRegistrationPeriod), func(r *rand.Rand) string { return string(types.Amino.MustMarshalJSON(participationParams.RegistrationPeriod)) }), - simulation.NewSimParamChange(types.ModuleName, string(types.KeyWithdrawalDelay), func(r *rand.Rand) string { + simulation.NewSimLegacyParamChange(types.ModuleName, string(types.KeyWithdrawalDelay), func(r *rand.Rand) string { return string(types.Amino.MustMarshalJSON(participationParams.WithdrawalDelay)) }), } diff --git a/x/participation/simulation/simulation.go b/x/participation/simulation/simulation.go index 54c5a1a94..dec0c44a0 100644 --- a/x/participation/simulation/simulation.go +++ b/x/participation/simulation/simulation.go @@ -5,8 +5,7 @@ import ( "math/rand" "github.com/cosmos/cosmos-sdk/baseapp" - "github.com/cosmos/cosmos-sdk/simapp/helpers" - simappparams "github.com/cosmos/cosmos-sdk/simapp/params" + simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" @@ -14,7 +13,7 @@ import ( sdksimulation "github.com/cosmos/cosmos-sdk/x/simulation" fundraisingkeeper "github.com/tendermint/fundraising/x/fundraising/keeper" fundraisingtypes "github.com/tendermint/fundraising/x/fundraising/types" - + "github.com/tendermint/spn/testutil/encoding" "github.com/tendermint/spn/testutil/simulation" "github.com/tendermint/spn/x/participation/keeper" "github.com/tendermint/spn/x/participation/types" @@ -54,7 +53,7 @@ func SimulateMsgParticipate( txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: msg, MsgType: msg.Type(), @@ -65,7 +64,7 @@ func SimulateMsgParticipate( ModuleName: types.ModuleName, CoinsSpentInMsg: sdk.NewCoins(), } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } @@ -96,7 +95,7 @@ func SimulateMsgWithdrawAllocations( txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: msg, MsgType: msg.Type(), @@ -107,7 +106,7 @@ func SimulateMsgWithdrawAllocations( ModuleName: types.ModuleName, CoinsSpentInMsg: sdk.NewCoins(), } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } @@ -144,7 +143,7 @@ func SimulateMsgCancelAuction( txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: msg, MsgType: msg.Type(), @@ -155,6 +154,6 @@ func SimulateMsgCancelAuction( ModuleName: fundraisingtypes.ModuleName, CoinsSpentInMsg: sdk.NewCoins(), } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } diff --git a/x/participation/types/auction_used_allocations.pb.go b/x/participation/types/auction_used_allocations.pb.go index 28233d3fe..ea86da415 100644 --- a/x/participation/types/auction_used_allocations.pb.go +++ b/x/participation/types/auction_used_allocations.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: participation/auction_used_allocations.proto +// source: spn/participation/auction_used_allocations.proto package types @@ -7,8 +7,8 @@ import ( fmt "fmt" _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -37,7 +37,7 @@ func (m *AuctionUsedAllocations) Reset() { *m = AuctionUsedAllocations{} func (m *AuctionUsedAllocations) String() string { return proto.CompactTextString(m) } func (*AuctionUsedAllocations) ProtoMessage() {} func (*AuctionUsedAllocations) Descriptor() ([]byte, []int) { - return fileDescriptor_0dcb8de466150226, []int{0} + return fileDescriptor_be38f4a33c84916f, []int{0} } func (m *AuctionUsedAllocations) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -88,35 +88,35 @@ func (m *AuctionUsedAllocations) GetWithdrawn() bool { } func init() { - proto.RegisterType((*AuctionUsedAllocations)(nil), "tendermint.spn.participation.AuctionUsedAllocations") + proto.RegisterType((*AuctionUsedAllocations)(nil), "spn.participation.AuctionUsedAllocations") } func init() { - proto.RegisterFile("participation/auction_used_allocations.proto", fileDescriptor_0dcb8de466150226) + proto.RegisterFile("spn/participation/auction_used_allocations.proto", fileDescriptor_be38f4a33c84916f) } -var fileDescriptor_0dcb8de466150226 = []byte{ - // 315 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x51, 0xb1, 0x4e, 0xeb, 0x30, - 0x14, 0x8d, 0xdf, 0xab, 0x80, 0x7a, 0x60, 0x88, 0x2a, 0x14, 0xaa, 0xca, 0xad, 0x18, 0x50, 0x07, - 0x1a, 0x4b, 0xb0, 0xb2, 0xb4, 0x62, 0xc9, 0x1a, 0xc4, 0xc2, 0x52, 0xb9, 0xb1, 0x95, 0x5a, 0x34, - 0xb6, 0x65, 0x3b, 0x2a, 0xfc, 0x05, 0x1f, 0xd3, 0x8f, 0xe8, 0x58, 0x75, 0x42, 0x0c, 0x15, 0x6a, - 0x76, 0xbe, 0x01, 0x25, 0x0e, 0x4a, 0xcb, 0x74, 0xed, 0x73, 0xee, 0xb9, 0xe7, 0xf8, 0x1a, 0xde, - 0x28, 0xa2, 0x2d, 0x4f, 0xb8, 0x22, 0x96, 0x4b, 0x81, 0x49, 0x9e, 0x94, 0x75, 0x9a, 0x1b, 0x46, - 0xa7, 0x64, 0xb1, 0x90, 0x49, 0x85, 0x9b, 0x50, 0x69, 0x69, 0xa5, 0xdf, 0xb3, 0x4c, 0x50, 0xa6, - 0x33, 0x2e, 0x6c, 0x68, 0x94, 0x08, 0x8f, 0xc4, 0xdd, 0x4e, 0x2a, 0x53, 0x59, 0x35, 0xe2, 0xf2, - 0xe4, 0x34, 0xdd, 0xcb, 0x44, 0x9a, 0x4c, 0x9a, 0xa9, 0x23, 0xdc, 0xc5, 0x51, 0x57, 0xdf, 0x00, - 0x5e, 0x8c, 0x9d, 0xe3, 0x93, 0x61, 0x74, 0xdc, 0xf8, 0xf9, 0xb7, 0xf0, 0x94, 0x50, 0xaa, 0x99, - 0x31, 0x01, 0x18, 0x80, 0x61, 0x7b, 0x12, 0x6c, 0x57, 0xa3, 0x4e, 0xad, 0x1e, 0x3b, 0xe6, 0xd1, - 0x6a, 0x2e, 0xd2, 0xf8, 0xb7, 0xd1, 0xef, 0xc1, 0x76, 0x9d, 0x3f, 0x7a, 0x08, 0xfe, 0x0d, 0xc0, - 0xb0, 0x15, 0x37, 0x40, 0xc9, 0x2e, 0xb9, 0x9d, 0x53, 0x4d, 0x96, 0x22, 0xf8, 0x3f, 0x00, 0xc3, - 0xb3, 0xb8, 0x01, 0x7c, 0x0a, 0xcf, 0x45, 0x9e, 0x1d, 0x24, 0x08, 0x5a, 0x95, 0xed, 0xfd, 0x7a, - 0xd7, 0xf7, 0x3e, 0x77, 0xfd, 0xeb, 0x94, 0xdb, 0x79, 0x3e, 0x0b, 0x13, 0x99, 0xd5, 0x6f, 0xa8, - 0xcb, 0xc8, 0xd0, 0x17, 0x6c, 0xdf, 0x14, 0x33, 0x61, 0x24, 0xec, 0x76, 0x35, 0x82, 0x75, 0xc8, - 0x48, 0xd8, 0xf8, 0xcf, 0xcc, 0x49, 0xb4, 0xde, 0x23, 0xb0, 0xd9, 0x23, 0xf0, 0xb5, 0x47, 0xe0, - 0xbd, 0x40, 0xde, 0xa6, 0x40, 0xde, 0x47, 0x81, 0xbc, 0x67, 0x7c, 0x30, 0xbf, 0x59, 0x32, 0x36, - 0x4a, 0xe0, 0x57, 0x7c, 0xfc, 0x47, 0x95, 0xd9, 0xec, 0xa4, 0x5a, 0xe1, 0xdd, 0x4f, 0x00, 0x00, - 0x00, 0xff, 0xff, 0x97, 0x4d, 0xa6, 0xce, 0xc1, 0x01, 0x00, 0x00, +var fileDescriptor_be38f4a33c84916f = []byte{ + // 313 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x32, 0x28, 0x2e, 0xc8, 0xd3, + 0x2f, 0x48, 0x2c, 0x2a, 0xc9, 0x4c, 0xce, 0x2c, 0x48, 0x2c, 0xc9, 0xcc, 0xcf, 0xd3, 0x4f, 0x2c, + 0x4d, 0x06, 0xd1, 0xf1, 0xa5, 0xc5, 0xa9, 0x29, 0xf1, 0x89, 0x39, 0x39, 0xf9, 0xc9, 0x60, 0xf1, + 0x62, 0xbd, 0x82, 0xa2, 0xfc, 0x92, 0x7c, 0x21, 0xc1, 0xe2, 0x82, 0x3c, 0x3d, 0x14, 0x1d, 0x52, + 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x59, 0x7d, 0x10, 0x0b, 0xa2, 0x50, 0x4a, 0x32, 0x39, 0xbf, + 0x38, 0x37, 0xbf, 0x38, 0x1e, 0x22, 0x01, 0xe1, 0x40, 0xa4, 0x94, 0xde, 0x31, 0x72, 0x89, 0x39, + 0x42, 0xac, 0x09, 0x2d, 0x4e, 0x4d, 0x71, 0x44, 0x58, 0x22, 0x64, 0xc4, 0xc5, 0x9e, 0x98, 0x92, + 0x52, 0x94, 0x5a, 0x5c, 0x2c, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0xe9, 0x24, 0x71, 0x69, 0x8b, 0xae, + 0x08, 0x54, 0xb7, 0x23, 0x44, 0x26, 0xb8, 0xa4, 0x28, 0x33, 0x2f, 0x3d, 0x08, 0xa6, 0x50, 0x48, + 0x86, 0x8b, 0x13, 0xea, 0x68, 0x4f, 0x17, 0x09, 0x26, 0x05, 0x46, 0x0d, 0x96, 0x20, 0x84, 0x00, + 0x48, 0xb6, 0x3c, 0xb3, 0x24, 0x23, 0xa5, 0x28, 0xb1, 0x3c, 0x4f, 0x82, 0x59, 0x81, 0x51, 0x83, + 0x23, 0x08, 0x21, 0x20, 0x94, 0xc2, 0xc5, 0x97, 0x57, 0x9a, 0x8b, 0xe4, 0x02, 0x09, 0x16, 0xb0, + 0xb5, 0x36, 0x27, 0xee, 0xc9, 0x33, 0xdc, 0xba, 0x27, 0xaf, 0x96, 0x9e, 0x59, 0x92, 0x51, 0x9a, + 0xa4, 0x97, 0x9c, 0x9f, 0x0b, 0xf5, 0x03, 0x94, 0xd2, 0x2d, 0x4e, 0xc9, 0xd6, 0x2f, 0xa9, 0x2c, + 0x48, 0x2d, 0xd6, 0xf3, 0xcc, 0x2b, 0xb9, 0xb4, 0x45, 0x97, 0x0b, 0xea, 0x48, 0xcf, 0xbc, 0x92, + 0x20, 0x34, 0x33, 0x9d, 0x3c, 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, 0x4a, + 0x1f, 0xc9, 0xfc, 0x92, 0xd4, 0xbc, 0x94, 0xd4, 0xa2, 0xdc, 0xcc, 0xbc, 0x12, 0x7d, 0x50, 0xb4, + 0x54, 0xa0, 0x45, 0x0c, 0xd8, 0xb2, 0x24, 0x36, 0x70, 0x10, 0x1a, 0x03, 0x02, 0x00, 0x00, 0xff, + 0xff, 0x64, 0x53, 0x31, 0x8e, 0xba, 0x01, 0x00, 0x00, } func (m *AuctionUsedAllocations) Marshal() (dAtA []byte, err error) { diff --git a/x/participation/types/events.pb.go b/x/participation/types/events.pb.go index 2b8b223b4..6c5b1b5b8 100644 --- a/x/participation/types/events.pb.go +++ b/x/participation/types/events.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: participation/events.proto +// source: spn/participation/events.proto package types @@ -7,8 +7,8 @@ import ( fmt "fmt" _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -35,7 +35,7 @@ func (m *EventAllocationsUsed) Reset() { *m = EventAllocationsUsed{} } func (m *EventAllocationsUsed) String() string { return proto.CompactTextString(m) } func (*EventAllocationsUsed) ProtoMessage() {} func (*EventAllocationsUsed) Descriptor() ([]byte, []int) { - return fileDescriptor_0c141e14bf03ed00, []int{0} + return fileDescriptor_9fdf41644bb3267b, []int{0} } func (m *EventAllocationsUsed) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -87,7 +87,7 @@ func (m *EventAllocationsWithdrawn) Reset() { *m = EventAllocationsWithd func (m *EventAllocationsWithdrawn) String() string { return proto.CompactTextString(m) } func (*EventAllocationsWithdrawn) ProtoMessage() {} func (*EventAllocationsWithdrawn) Descriptor() ([]byte, []int) { - return fileDescriptor_0c141e14bf03ed00, []int{1} + return fileDescriptor_9fdf41644bb3267b, []int{1} } func (m *EventAllocationsWithdrawn) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -131,33 +131,32 @@ func (m *EventAllocationsWithdrawn) GetAuctionID() uint64 { } func init() { - proto.RegisterType((*EventAllocationsUsed)(nil), "tendermint.spn.participation.EventAllocationsUsed") - proto.RegisterType((*EventAllocationsWithdrawn)(nil), "tendermint.spn.participation.EventAllocationsWithdrawn") + proto.RegisterType((*EventAllocationsUsed)(nil), "spn.participation.EventAllocationsUsed") + proto.RegisterType((*EventAllocationsWithdrawn)(nil), "spn.participation.EventAllocationsWithdrawn") } -func init() { proto.RegisterFile("participation/events.proto", fileDescriptor_0c141e14bf03ed00) } +func init() { proto.RegisterFile("spn/participation/events.proto", fileDescriptor_9fdf41644bb3267b) } -var fileDescriptor_0c141e14bf03ed00 = []byte{ - // 290 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x2a, 0x48, 0x2c, 0x2a, - 0xc9, 0x4c, 0xce, 0x2c, 0x48, 0x2c, 0xc9, 0xcc, 0xcf, 0xd3, 0x4f, 0x2d, 0x4b, 0xcd, 0x2b, 0x29, - 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x29, 0x49, 0xcd, 0x4b, 0x49, 0x2d, 0xca, 0xcd, - 0xcc, 0x2b, 0xd1, 0x2b, 0x2e, 0xc8, 0xd3, 0x43, 0x51, 0x2a, 0x25, 0x92, 0x9e, 0x9f, 0x9e, 0x0f, - 0x56, 0xa8, 0x0f, 0x62, 0x41, 0xf4, 0x48, 0x49, 0x26, 0xe7, 0x17, 0xe7, 0xe6, 0x17, 0xc7, 0x43, - 0x24, 0x20, 0x1c, 0x88, 0x94, 0xd2, 0x1e, 0x46, 0x2e, 0x11, 0x57, 0x90, 0xf9, 0x8e, 0x39, 0x39, - 0xf9, 0xc9, 0x60, 0x43, 0x8a, 0x43, 0x8b, 0x53, 0x53, 0x84, 0x14, 0xb8, 0xb8, 0xe1, 0x46, 0xe7, - 0x95, 0x48, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x06, 0x21, 0x0b, 0x09, 0xc9, 0x70, 0x71, 0x26, 0x96, - 0x26, 0x83, 0x74, 0x78, 0xba, 0x48, 0x30, 0x29, 0x30, 0x6a, 0xb0, 0x04, 0x21, 0x04, 0x84, 0x52, - 0xb8, 0xf8, 0xf2, 0x4a, 0x73, 0x91, 0x4c, 0x95, 0x60, 0x06, 0x19, 0xe1, 0x64, 0x73, 0xe2, 0x9e, - 0x3c, 0xc3, 0xad, 0x7b, 0xf2, 0x6a, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, - 0x50, 0x17, 0x41, 0x29, 0xdd, 0xe2, 0x94, 0x6c, 0xfd, 0x92, 0xca, 0x82, 0xd4, 0x62, 0x3d, 0xcf, - 0xbc, 0x92, 0x4b, 0x5b, 0x74, 0xb9, 0xa0, 0x0e, 0xf6, 0xcc, 0x2b, 0x09, 0x42, 0x33, 0x53, 0x29, - 0x9a, 0x4b, 0x12, 0xdd, 0xf5, 0xe1, 0x99, 0x25, 0x19, 0x29, 0x45, 0x89, 0xe5, 0x79, 0x94, 0x7a, - 0xc1, 0xc9, 0xf3, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, - 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0xf4, 0x91, 0x1c, - 0x8f, 0x88, 0x0f, 0xfd, 0xe2, 0x82, 0x3c, 0xfd, 0x0a, 0x7d, 0xd4, 0xc8, 0x03, 0xfb, 0x24, 0x89, - 0x0d, 0x1c, 0xda, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x5c, 0x4e, 0xb9, 0xfc, 0xda, 0x01, - 0x00, 0x00, +var fileDescriptor_9fdf41644bb3267b = []byte{ + // 287 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x2b, 0x2e, 0xc8, 0xd3, + 0x2f, 0x48, 0x2c, 0x2a, 0xc9, 0x4c, 0xce, 0x2c, 0x48, 0x2c, 0xc9, 0xcc, 0xcf, 0xd3, 0x4f, 0x2d, + 0x4b, 0xcd, 0x2b, 0x29, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x2c, 0x2e, 0xc8, 0xd3, + 0x43, 0x91, 0x97, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xcb, 0xea, 0x83, 0x58, 0x10, 0x85, 0x52, + 0x92, 0xc9, 0xf9, 0xc5, 0xb9, 0xf9, 0xc5, 0xf1, 0x10, 0x09, 0x08, 0x07, 0x22, 0xa5, 0xb4, 0x87, + 0x91, 0x4b, 0xc4, 0x15, 0x64, 0xa8, 0x63, 0x4e, 0x4e, 0x7e, 0x32, 0xd8, 0x90, 0xe2, 0xd0, 0xe2, + 0xd4, 0x14, 0x21, 0x05, 0x2e, 0x6e, 0xb8, 0xd1, 0x79, 0x25, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x9c, + 0x41, 0xc8, 0x42, 0x42, 0x32, 0x5c, 0x9c, 0x89, 0xa5, 0xc9, 0x20, 0x1d, 0x9e, 0x2e, 0x12, 0x4c, + 0x0a, 0x8c, 0x1a, 0x2c, 0x41, 0x08, 0x01, 0xa1, 0x14, 0x2e, 0xbe, 0xbc, 0xd2, 0x5c, 0x24, 0x53, + 0x25, 0x98, 0x41, 0x46, 0x38, 0xd9, 0x9c, 0xb8, 0x27, 0xcf, 0x70, 0xeb, 0x9e, 0xbc, 0x5a, 0x7a, + 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0x2e, 0xd4, 0x45, 0x50, 0x4a, 0xb7, 0x38, 0x25, + 0x5b, 0xbf, 0xa4, 0xb2, 0x20, 0xb5, 0x58, 0xcf, 0x33, 0xaf, 0xe4, 0xd2, 0x16, 0x5d, 0x2e, 0xa8, + 0x83, 0x3d, 0xf3, 0x4a, 0x82, 0xd0, 0xcc, 0x54, 0x8a, 0xe6, 0x92, 0x44, 0x77, 0x7d, 0x78, 0x66, + 0x49, 0x46, 0x4a, 0x51, 0x62, 0x79, 0x1e, 0xa5, 0x5e, 0x70, 0xf2, 0x3c, 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, 0x7d, 0x24, 0xc7, 0x97, 0xa4, 0xe6, 0xa5, 0xa4, 0x16, 0xe5, + 0x66, 0xe6, 0x95, 0xe8, 0x83, 0xe2, 0xab, 0x02, 0x2d, 0xc6, 0xc0, 0x3e, 0x49, 0x62, 0x03, 0x87, + 0xb6, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x85, 0x27, 0xeb, 0xd9, 0xd3, 0x01, 0x00, 0x00, } func (m *EventAllocationsUsed) Marshal() (dAtA []byte, err error) { diff --git a/x/participation/types/genesis.pb.go b/x/participation/types/genesis.pb.go index 772a16b3e..a7f0389f1 100644 --- a/x/participation/types/genesis.pb.go +++ b/x/participation/types/genesis.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: participation/genesis.proto +// source: spn/participation/genesis.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -34,7 +34,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_0af16db3b4a11294, []int{0} + return fileDescriptor_26d1da9784bfa6ba, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -85,31 +85,31 @@ func (m *GenesisState) GetParams() Params { } func init() { - proto.RegisterType((*GenesisState)(nil), "tendermint.spn.participation.GenesisState") + proto.RegisterType((*GenesisState)(nil), "spn.participation.GenesisState") } -func init() { proto.RegisterFile("participation/genesis.proto", fileDescriptor_0af16db3b4a11294) } +func init() { proto.RegisterFile("spn/participation/genesis.proto", fileDescriptor_26d1da9784bfa6ba) } -var fileDescriptor_0af16db3b4a11294 = []byte{ - // 287 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x2e, 0x48, 0x2c, 0x2a, - 0xc9, 0x4c, 0xce, 0x2c, 0x48, 0x2c, 0xc9, 0xcc, 0xcf, 0xd3, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, - 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x29, 0x49, 0xcd, 0x4b, 0x49, 0x2d, 0xca, - 0xcd, 0xcc, 0x2b, 0xd1, 0x2b, 0x2e, 0xc8, 0xd3, 0x43, 0x51, 0x2b, 0x25, 0x92, 0x9e, 0x9f, 0x9e, - 0x0f, 0x56, 0xa8, 0x0f, 0x62, 0x41, 0xf4, 0x48, 0x49, 0xa1, 0x1a, 0x58, 0x90, 0x58, 0x94, 0x98, - 0x0b, 0x35, 0x4f, 0x4a, 0x05, 0x55, 0xae, 0xb4, 0x38, 0x35, 0x25, 0x3e, 0x31, 0x27, 0x27, 0x3f, - 0x19, 0xcc, 0x87, 0xa9, 0xd2, 0x41, 0x55, 0x95, 0x58, 0x9a, 0x0c, 0xa2, 0xe3, 0xb1, 0xab, 0x56, - 0xda, 0xca, 0xc4, 0xc5, 0xe3, 0x0e, 0x71, 0x75, 0x70, 0x49, 0x62, 0x49, 0xaa, 0x50, 0x2a, 0x97, - 0x30, 0x48, 0xa9, 0x23, 0x42, 0xa5, 0x4f, 0x66, 0x71, 0x89, 0x04, 0xa3, 0x02, 0xb3, 0x06, 0xb7, - 0x91, 0xae, 0x1e, 0x3e, 0x2f, 0xe9, 0x85, 0xa2, 0x6a, 0x74, 0x62, 0x39, 0x71, 0x4f, 0x9e, 0x21, - 0x08, 0x9b, 0x79, 0x42, 0x55, 0x5c, 0x52, 0x50, 0x97, 0x85, 0x62, 0xb1, 0x8d, 0x09, 0x6c, 0x9b, - 0x09, 0x7e, 0xdb, 0x1c, 0xb1, 0xea, 0x87, 0x5a, 0x8a, 0xc7, 0x74, 0x21, 0x27, 0x2e, 0x36, 0x48, - 0xb8, 0x4a, 0x30, 0x2b, 0x30, 0x6a, 0x70, 0x1b, 0xa9, 0xe0, 0xb7, 0x27, 0x00, 0xac, 0x16, 0x6a, - 0x2e, 0x54, 0xa7, 0x93, 0xe7, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, - 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0xe9, - 0xa7, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x23, 0xcc, 0xd5, 0x2f, 0x2e, - 0xc8, 0xd3, 0xaf, 0xd0, 0x47, 0x8d, 0x9b, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0x70, 0x4c, - 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x2a, 0x97, 0x11, 0xb6, 0x4c, 0x02, 0x00, 0x00, +var fileDescriptor_26d1da9784bfa6ba = []byte{ + // 285 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x2f, 0x2e, 0xc8, 0xd3, + 0x2f, 0x48, 0x2c, 0x2a, 0xc9, 0x4c, 0xce, 0x2c, 0x48, 0x2c, 0xc9, 0xcc, 0xcf, 0xd3, 0x4f, 0x4f, + 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x2c, 0x2e, 0xc8, + 0xd3, 0x43, 0x51, 0x20, 0x25, 0x92, 0x9e, 0x9f, 0x9e, 0x0f, 0x96, 0xd5, 0x07, 0xb1, 0x20, 0x0a, + 0xa5, 0xe4, 0x30, 0x4d, 0x2a, 0x48, 0x2c, 0x4a, 0xcc, 0x85, 0x1a, 0x24, 0xa5, 0x81, 0x29, 0x5f, + 0x5a, 0x9c, 0x9a, 0x12, 0x9f, 0x98, 0x93, 0x93, 0x9f, 0x0c, 0xe6, 0xc3, 0x54, 0x1a, 0x60, 0xaa, + 0x4c, 0x2c, 0x4d, 0x06, 0xd1, 0xf1, 0xd8, 0x75, 0x28, 0x4d, 0x61, 0xe2, 0xe2, 0x71, 0x87, 0x38, + 0x3b, 0xb8, 0x24, 0xb1, 0x24, 0x55, 0x28, 0x8a, 0x4b, 0x18, 0xa4, 0xd4, 0x11, 0xa1, 0xd2, 0x27, + 0xb3, 0xb8, 0x44, 0x82, 0x51, 0x81, 0x59, 0x83, 0xdb, 0x48, 0x49, 0x0f, 0xc3, 0x4f, 0x7a, 0xa1, + 0xa8, 0xaa, 0x9d, 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0xc2, 0x66, 0x88, 0x50, 0x3e, 0x97, 0x14, + 0xd4, 0x39, 0xa1, 0x58, 0xac, 0x60, 0x02, 0x5b, 0xa1, 0x89, 0xc5, 0x0a, 0x47, 0xac, 0x9a, 0xa0, + 0x36, 0xe1, 0x31, 0x52, 0xc8, 0x9c, 0x8b, 0x0d, 0x12, 0x92, 0x12, 0xcc, 0x0a, 0x8c, 0x1a, 0xdc, + 0x46, 0x92, 0x58, 0x0c, 0x0f, 0x00, 0x2b, 0x80, 0x1a, 0x06, 0x55, 0xee, 0xe4, 0x79, 0xe2, 0x91, + 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, + 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0xfa, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, + 0xc9, 0xf9, 0xb9, 0xfa, 0x25, 0xa9, 0x79, 0x29, 0xa9, 0x45, 0xb9, 0x99, 0x79, 0x25, 0xfa, 0xa0, + 0x80, 0xaf, 0x40, 0x0b, 0xfa, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0x70, 0x40, 0x1b, 0x03, + 0x02, 0x00, 0x00, 0xff, 0xff, 0x44, 0x42, 0x2a, 0x91, 0x30, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/participation/types/params.pb.go b/x/participation/types/params.pb.go index 0fd6a0cb1..3d51fc528 100644 --- a/x/participation/types/params.pb.go +++ b/x/participation/types/params.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: participation/params.proto +// source: spn/participation/params.proto package types @@ -7,9 +7,9 @@ import ( fmt "fmt" _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" _ "google.golang.org/protobuf/types/known/durationpb" io "io" math "math" @@ -42,7 +42,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_1941a0f9399e39d9, []int{0} + return fileDescriptor_2292238422f27d29, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -108,7 +108,7 @@ func (m *AllocationPrice) Reset() { *m = AllocationPrice{} } func (m *AllocationPrice) String() string { return proto.CompactTextString(m) } func (*AllocationPrice) ProtoMessage() {} func (*AllocationPrice) Descriptor() ([]byte, []int) { - return fileDescriptor_1941a0f9399e39d9, []int{1} + return fileDescriptor_2292238422f27d29, []int{1} } func (m *AllocationPrice) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -148,7 +148,7 @@ func (m *Tier) Reset() { *m = Tier{} } func (m *Tier) String() string { return proto.CompactTextString(m) } func (*Tier) ProtoMessage() {} func (*Tier) Descriptor() ([]byte, []int) { - return fileDescriptor_1941a0f9399e39d9, []int{2} + return fileDescriptor_2292238422f27d29, []int{2} } func (m *Tier) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -200,7 +200,7 @@ func (m *TierBenefits) Reset() { *m = TierBenefits{} } func (m *TierBenefits) String() string { return proto.CompactTextString(m) } func (*TierBenefits) ProtoMessage() {} func (*TierBenefits) Descriptor() ([]byte, []int) { - return fileDescriptor_1941a0f9399e39d9, []int{3} + return fileDescriptor_2292238422f27d29, []int{3} } func (m *TierBenefits) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -230,46 +230,46 @@ func (m *TierBenefits) XXX_DiscardUnknown() { var xxx_messageInfo_TierBenefits proto.InternalMessageInfo func init() { - proto.RegisterType((*Params)(nil), "tendermint.spn.participation.Params") - proto.RegisterType((*AllocationPrice)(nil), "tendermint.spn.participation.AllocationPrice") - proto.RegisterType((*Tier)(nil), "tendermint.spn.participation.Tier") - proto.RegisterType((*TierBenefits)(nil), "tendermint.spn.participation.TierBenefits") + proto.RegisterType((*Params)(nil), "spn.participation.Params") + proto.RegisterType((*AllocationPrice)(nil), "spn.participation.AllocationPrice") + proto.RegisterType((*Tier)(nil), "spn.participation.Tier") + proto.RegisterType((*TierBenefits)(nil), "spn.participation.TierBenefits") } -func init() { proto.RegisterFile("participation/params.proto", fileDescriptor_1941a0f9399e39d9) } +func init() { proto.RegisterFile("spn/participation/params.proto", fileDescriptor_2292238422f27d29) } -var fileDescriptor_1941a0f9399e39d9 = []byte{ - // 479 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0xcd, 0x6a, 0xdb, 0x40, - 0x10, 0xc7, 0x2d, 0x47, 0x98, 0x74, 0x13, 0x30, 0x6c, 0x3f, 0x50, 0x4c, 0x91, 0x83, 0x0e, 0x25, - 0x14, 0xbc, 0x0b, 0xe9, 0xad, 0xf4, 0x12, 0xe1, 0x8b, 0x21, 0x05, 0xe3, 0xe6, 0x54, 0xe8, 0xc7, - 0x4a, 0xbb, 0x51, 0x96, 0x4a, 0xbb, 0xea, 0xee, 0x8a, 0x24, 0x6f, 0xd1, 0x63, 0x8e, 0x7d, 0x88, - 0x3e, 0x44, 0x8e, 0xa1, 0xa7, 0x52, 0x4a, 0x5a, 0xec, 0x27, 0xe8, 0x1b, 0x14, 0xad, 0xb6, 0x49, - 0x64, 0x4c, 0xc8, 0x21, 0x27, 0x69, 0x98, 0xf9, 0xff, 0x66, 0xe6, 0x3f, 0x12, 0x18, 0x94, 0x44, - 0x19, 0x9e, 0xf2, 0x92, 0x18, 0x2e, 0x05, 0x2e, 0x89, 0x22, 0x85, 0x46, 0xa5, 0x92, 0x46, 0xc2, - 0xa7, 0x86, 0x09, 0xca, 0x54, 0xc1, 0x85, 0x41, 0xba, 0x14, 0xa8, 0x55, 0x3a, 0x78, 0x94, 0xc9, - 0x4c, 0xda, 0x42, 0x5c, 0xbf, 0x35, 0x9a, 0x41, 0x98, 0x49, 0x99, 0xe5, 0x0c, 0xdb, 0x28, 0xa9, - 0x0e, 0x31, 0xad, 0x94, 0xad, 0x77, 0xf9, 0xad, 0x54, 0xea, 0x42, 0xea, 0x0f, 0x8d, 0xb0, 0x09, - 0x9a, 0x54, 0xf4, 0xb7, 0x0b, 0x7a, 0x53, 0xdb, 0x1f, 0xbe, 0x03, 0x7d, 0x92, 0xe7, 0x32, 0xb5, - 0xca, 0xa9, 0xe2, 0x29, 0x0b, 0xbc, 0x6d, 0x6f, 0x67, 0x63, 0x77, 0x84, 0x6e, 0x9b, 0x09, 0xed, - 0xb5, 0x45, 0xb1, 0x7f, 0x7e, 0x39, 0xec, 0xcc, 0x96, 0x59, 0xf0, 0x3d, 0x78, 0xdc, 0xd2, 0x1d, - 0x70, 0xa6, 0xf6, 0xb9, 0x36, 0x41, 0x77, 0x7b, 0x6d, 0x67, 0x63, 0x37, 0xba, 0xbd, 0x49, 0x5d, - 0xed, 0xc8, 0xab, 0x31, 0xf0, 0x0d, 0x80, 0x8a, 0x65, 0x5c, 0x9b, 0x66, 0xf5, 0x29, 0x53, 0x5c, - 0xd2, 0x60, 0xcd, 0x6e, 0xb0, 0x85, 0x1a, 0x87, 0xd0, 0x7f, 0x87, 0xd0, 0xd8, 0x39, 0x14, 0xaf, - 0xd7, 0xcc, 0xb3, 0xdf, 0x43, 0x6f, 0xb6, 0x42, 0x0e, 0x5f, 0x83, 0xfe, 0x31, 0x37, 0x47, 0x54, - 0x91, 0x63, 0x92, 0x8f, 0x59, 0x4e, 0x4e, 0x03, 0xff, 0xee, 0xc4, 0x65, 0xed, 0x4b, 0xff, 0xec, - 0xeb, 0xb0, 0x13, 0x65, 0xa0, 0xbf, 0xe4, 0x19, 0x3c, 0x00, 0xbd, 0x44, 0x0a, 0xca, 0xa8, 0xb5, - 0xfc, 0x41, 0xfc, 0xaa, 0x66, 0xfc, 0xbc, 0x1c, 0x3e, 0xcb, 0xb8, 0x39, 0xaa, 0x12, 0x94, 0xca, - 0xc2, 0xdd, 0xcd, 0x3d, 0x46, 0x9a, 0x7e, 0xc2, 0xe6, 0xb4, 0x64, 0x1a, 0x4d, 0x84, 0xf9, 0xfe, - 0x6d, 0x04, 0xdc, 0x59, 0x27, 0xc2, 0xcc, 0x1c, 0x2b, 0xfa, 0xe5, 0x01, 0xbf, 0xf6, 0x07, 0x3e, - 0x01, 0x3d, 0xc3, 0x99, 0x9a, 0x8c, 0x2d, 0xde, 0x9f, 0xb9, 0x08, 0x0a, 0xf0, 0x50, 0xb1, 0xcf, - 0x15, 0x57, 0x8c, 0x5e, 0x4f, 0xa4, 0x83, 0xee, 0x3d, 0xcc, 0xb0, 0x0a, 0x0c, 0xf7, 0xc1, 0x7a, - 0xc2, 0x04, 0x3b, 0xe4, 0x46, 0xbb, 0xcb, 0x3c, 0xbf, 0xc3, 0xd9, 0x9d, 0xc2, 0x9d, 0xff, 0x8a, - 0x10, 0x95, 0x60, 0xf3, 0x66, 0x1e, 0x7e, 0x04, 0x9b, 0x05, 0x39, 0x89, 0x39, 0xdd, 0x2b, 0x64, - 0x25, 0xcc, 0xbd, 0x58, 0xd9, 0x22, 0xc6, 0x93, 0xf3, 0x79, 0xe8, 0x5d, 0xcc, 0x43, 0xef, 0xcf, - 0x3c, 0xf4, 0xbe, 0x2c, 0xc2, 0xce, 0xc5, 0x22, 0xec, 0xfc, 0x58, 0x84, 0x9d, 0xb7, 0xf8, 0x06, - 0xfd, 0x7a, 0x23, 0xac, 0x4b, 0x81, 0x4f, 0x70, 0xfb, 0x77, 0xb7, 0xad, 0x92, 0x9e, 0xfd, 0x70, - 0x5e, 0xfc, 0x0b, 0x00, 0x00, 0xff, 0xff, 0xea, 0x1d, 0x2c, 0x65, 0x0c, 0x04, 0x00, 0x00, +var fileDescriptor_2292238422f27d29 = []byte{ + // 471 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0x3f, 0x6f, 0xd4, 0x30, + 0x18, 0xc6, 0x93, 0x6b, 0x74, 0x2a, 0x6e, 0xa5, 0x13, 0xe6, 0x5f, 0xda, 0x21, 0xa9, 0x32, 0xa0, + 0x2e, 0x75, 0xa4, 0xb2, 0x21, 0x96, 0x8b, 0x6e, 0x39, 0x09, 0xa4, 0x53, 0xda, 0x89, 0x05, 0x9c, + 0xd8, 0x4d, 0x2d, 0x12, 0x3b, 0xd8, 0x8e, 0xda, 0x7e, 0x0b, 0xc6, 0x8e, 0x7c, 0x08, 0x3e, 0x44, + 0xc7, 0xc2, 0x84, 0x40, 0x2a, 0xe8, 0xee, 0x8b, 0xa0, 0x38, 0x06, 0x7a, 0x47, 0x90, 0x3a, 0xdc, + 0x94, 0xbc, 0x7a, 0xdf, 0xe7, 0xe7, 0x37, 0xcf, 0x13, 0x83, 0x40, 0xd5, 0x3c, 0xae, 0xb1, 0xd4, + 0x2c, 0x67, 0x35, 0xd6, 0x4c, 0x98, 0x0a, 0x57, 0x0a, 0xd5, 0x52, 0x68, 0x01, 0xef, 0xab, 0x9a, + 0xa3, 0xa5, 0xfe, 0xee, 0xc3, 0x42, 0x14, 0xc2, 0x74, 0xe3, 0xf6, 0xad, 0x1b, 0xdc, 0x0d, 0x0a, + 0x21, 0x8a, 0x92, 0xc6, 0xa6, 0xca, 0x9a, 0x93, 0x98, 0x34, 0xd2, 0xcc, 0xdb, 0xfe, 0x4e, 0x2e, + 0x54, 0x25, 0xd4, 0x9b, 0x4e, 0xd8, 0x15, 0x5d, 0x2b, 0xfa, 0x3e, 0x00, 0xc3, 0x99, 0x39, 0x14, + 0xa6, 0x60, 0x84, 0xcb, 0x52, 0xe4, 0x46, 0x39, 0x93, 0x2c, 0xa7, 0xbe, 0xbb, 0xe7, 0xee, 0x6f, + 0x1d, 0x46, 0xe8, 0x9f, 0x45, 0xd0, 0x78, 0x79, 0x32, 0xf1, 0xae, 0x6e, 0x42, 0x27, 0x5d, 0x05, + 0xc0, 0x23, 0xf0, 0x68, 0x49, 0x77, 0xcc, 0xa8, 0x7c, 0xc9, 0x94, 0xf6, 0x07, 0x7b, 0x1b, 0xfb, + 0x5b, 0x87, 0x4f, 0x7a, 0xc8, 0xed, 0x88, 0xc5, 0xf5, 0x6b, 0xe1, 0x11, 0x80, 0x92, 0x16, 0x4c, + 0xe9, 0xee, 0x23, 0x67, 0x54, 0x32, 0x41, 0xfc, 0x0d, 0xb3, 0xeb, 0x0e, 0xea, 0xbc, 0x40, 0xbf, + 0xbd, 0x40, 0x13, 0xeb, 0x45, 0xb2, 0xd9, 0x32, 0x2f, 0x7f, 0x84, 0x6e, 0xda, 0x23, 0x87, 0xaf, + 0xc0, 0xe8, 0x8c, 0xe9, 0x53, 0x22, 0xf1, 0x19, 0x2e, 0x27, 0xb4, 0xc4, 0x17, 0xbe, 0x77, 0x77, + 0xe2, 0xaa, 0xf6, 0xb9, 0x77, 0xf9, 0x31, 0x74, 0xa2, 0x02, 0x8c, 0x56, 0x8c, 0x82, 0xc7, 0x60, + 0x98, 0x09, 0x4e, 0x28, 0x31, 0xe6, 0xde, 0x4b, 0x5e, 0xb4, 0x8c, 0x6f, 0x37, 0xe1, 0xd3, 0x82, + 0xe9, 0xd3, 0x26, 0x43, 0xb9, 0xa8, 0x6c, 0x42, 0xf6, 0x71, 0xa0, 0xc8, 0xbb, 0x58, 0x5f, 0xd4, + 0x54, 0xa1, 0x29, 0xd7, 0x5f, 0x3e, 0x1d, 0x00, 0x1b, 0xe0, 0x94, 0xeb, 0xd4, 0xb2, 0xa2, 0xcf, + 0x2e, 0xf0, 0x5a, 0x7f, 0xe0, 0x63, 0x30, 0xd4, 0x8c, 0xca, 0xe9, 0xc4, 0xe0, 0xbd, 0xd4, 0x56, + 0x90, 0x83, 0x07, 0x92, 0xbe, 0x6f, 0x98, 0xa4, 0xe4, 0xef, 0x46, 0xca, 0x1f, 0xac, 0x61, 0x87, + 0x3e, 0x30, 0x1c, 0x83, 0xcd, 0x8c, 0x72, 0x7a, 0xc2, 0xb4, 0xb2, 0xc9, 0x84, 0xff, 0xcb, 0xda, + 0x8e, 0xd9, 0xcc, 0xff, 0xc8, 0xa2, 0x1a, 0x6c, 0xdf, 0xee, 0xc3, 0xb7, 0x60, 0xbb, 0xc2, 0xe7, + 0x09, 0x23, 0xe3, 0x4a, 0x34, 0x5c, 0xaf, 0xc5, 0xbf, 0x25, 0x62, 0x32, 0xbd, 0x9a, 0x07, 0xee, + 0xf5, 0x3c, 0x70, 0x7f, 0xce, 0x03, 0xf7, 0xc3, 0x22, 0x70, 0xae, 0x17, 0x81, 0xf3, 0x75, 0x11, + 0x38, 0xaf, 0xe3, 0x5b, 0x74, 0x4d, 0x39, 0xa1, 0xb2, 0x62, 0x5c, 0xc7, 0xed, 0x05, 0x3e, 0x5f, + 0xb9, 0xc2, 0xe6, 0xa8, 0x6c, 0x68, 0xfe, 0x96, 0x67, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0xc5, + 0x4e, 0x81, 0x14, 0xe4, 0x03, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { @@ -292,7 +292,7 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - n1, err1 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.WithdrawalDelay, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.WithdrawalDelay):]) + n1, err1 := github_com_cosmos_gogoproto_types.StdDurationMarshalTo(m.WithdrawalDelay, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.WithdrawalDelay):]) if err1 != nil { return 0, err1 } @@ -300,7 +300,7 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { i = encodeVarintParams(dAtA, i, uint64(n1)) i-- dAtA[i] = 0x22 - n2, err2 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.RegistrationPeriod, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.RegistrationPeriod):]) + n2, err2 := github_com_cosmos_gogoproto_types.StdDurationMarshalTo(m.RegistrationPeriod, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.RegistrationPeriod):]) if err2 != nil { return 0, err2 } @@ -474,9 +474,9 @@ func (m *Params) Size() (n int) { n += 1 + l + sovParams(uint64(l)) } } - l = github_com_gogo_protobuf_types.SizeOfStdDuration(m.RegistrationPeriod) + l = github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.RegistrationPeriod) n += 1 + l + sovParams(uint64(l)) - l = github_com_gogo_protobuf_types.SizeOfStdDuration(m.WithdrawalDelay) + l = github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.WithdrawalDelay) n += 1 + l + sovParams(uint64(l)) return n } @@ -650,7 +650,7 @@ func (m *Params) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(&m.RegistrationPeriod, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdDurationUnmarshal(&m.RegistrationPeriod, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex @@ -683,7 +683,7 @@ func (m *Params) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(&m.WithdrawalDelay, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdDurationUnmarshal(&m.WithdrawalDelay, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/participation/types/query.pb.go b/x/participation/types/query.pb.go index e8e230bf7..60c1cf562 100644 --- a/x/participation/types/query.pb.go +++ b/x/participation/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: participation/query.proto +// source: spn/participation/query.proto package types @@ -9,9 +9,9 @@ import ( _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "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" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -40,7 +40,7 @@ func (m *QueryGetUsedAllocationsRequest) Reset() { *m = QueryGetUsedAllo func (m *QueryGetUsedAllocationsRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetUsedAllocationsRequest) ProtoMessage() {} func (*QueryGetUsedAllocationsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3b6d9d472596bad2, []int{0} + return fileDescriptor_2821ae6aa6f9b98e, []int{0} } func (m *QueryGetUsedAllocationsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -84,7 +84,7 @@ func (m *QueryGetUsedAllocationsResponse) Reset() { *m = QueryGetUsedAll func (m *QueryGetUsedAllocationsResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetUsedAllocationsResponse) ProtoMessage() {} func (*QueryGetUsedAllocationsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3b6d9d472596bad2, []int{1} + return fileDescriptor_2821ae6aa6f9b98e, []int{1} } func (m *QueryGetUsedAllocationsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -128,7 +128,7 @@ func (m *QueryAllUsedAllocationsRequest) Reset() { *m = QueryAllUsedAllo func (m *QueryAllUsedAllocationsRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllUsedAllocationsRequest) ProtoMessage() {} func (*QueryAllUsedAllocationsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3b6d9d472596bad2, []int{2} + return fileDescriptor_2821ae6aa6f9b98e, []int{2} } func (m *QueryAllUsedAllocationsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -173,7 +173,7 @@ func (m *QueryAllUsedAllocationsResponse) Reset() { *m = QueryAllUsedAll func (m *QueryAllUsedAllocationsResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllUsedAllocationsResponse) ProtoMessage() {} func (*QueryAllUsedAllocationsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3b6d9d472596bad2, []int{3} + return fileDescriptor_2821ae6aa6f9b98e, []int{3} } func (m *QueryAllUsedAllocationsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -225,7 +225,7 @@ func (m *QueryGetAuctionUsedAllocationsRequest) Reset() { *m = QueryGetA func (m *QueryGetAuctionUsedAllocationsRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetAuctionUsedAllocationsRequest) ProtoMessage() {} func (*QueryGetAuctionUsedAllocationsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3b6d9d472596bad2, []int{4} + return fileDescriptor_2821ae6aa6f9b98e, []int{4} } func (m *QueryGetAuctionUsedAllocationsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -278,7 +278,7 @@ func (m *QueryGetAuctionUsedAllocationsResponse) Reset() { func (m *QueryGetAuctionUsedAllocationsResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetAuctionUsedAllocationsResponse) ProtoMessage() {} func (*QueryGetAuctionUsedAllocationsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3b6d9d472596bad2, []int{5} + return fileDescriptor_2821ae6aa6f9b98e, []int{5} } func (m *QueryGetAuctionUsedAllocationsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -323,7 +323,7 @@ func (m *QueryAllAuctionUsedAllocationsRequest) Reset() { *m = QueryAllA func (m *QueryAllAuctionUsedAllocationsRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllAuctionUsedAllocationsRequest) ProtoMessage() {} func (*QueryAllAuctionUsedAllocationsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3b6d9d472596bad2, []int{6} + return fileDescriptor_2821ae6aa6f9b98e, []int{6} } func (m *QueryAllAuctionUsedAllocationsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -377,7 +377,7 @@ func (m *QueryAllAuctionUsedAllocationsResponse) Reset() { func (m *QueryAllAuctionUsedAllocationsResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllAuctionUsedAllocationsResponse) ProtoMessage() {} func (*QueryAllAuctionUsedAllocationsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3b6d9d472596bad2, []int{7} + return fileDescriptor_2821ae6aa6f9b98e, []int{7} } func (m *QueryAllAuctionUsedAllocationsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -428,7 +428,7 @@ func (m *QueryGetTotalAllocationsRequest) Reset() { *m = QueryGetTotalAl func (m *QueryGetTotalAllocationsRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetTotalAllocationsRequest) ProtoMessage() {} func (*QueryGetTotalAllocationsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3b6d9d472596bad2, []int{8} + return fileDescriptor_2821ae6aa6f9b98e, []int{8} } func (m *QueryGetTotalAllocationsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -472,7 +472,7 @@ func (m *QueryGetTotalAllocationsResponse) Reset() { *m = QueryGetTotalA func (m *QueryGetTotalAllocationsResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetTotalAllocationsResponse) ProtoMessage() {} func (*QueryGetTotalAllocationsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3b6d9d472596bad2, []int{9} + return fileDescriptor_2821ae6aa6f9b98e, []int{9} } func (m *QueryGetTotalAllocationsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -509,7 +509,7 @@ func (m *QueryGetAvailableAllocationsRequest) Reset() { *m = QueryGetAva func (m *QueryGetAvailableAllocationsRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetAvailableAllocationsRequest) ProtoMessage() {} func (*QueryGetAvailableAllocationsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3b6d9d472596bad2, []int{10} + return fileDescriptor_2821ae6aa6f9b98e, []int{10} } func (m *QueryGetAvailableAllocationsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -553,7 +553,7 @@ func (m *QueryGetAvailableAllocationsResponse) Reset() { *m = QueryGetAv func (m *QueryGetAvailableAllocationsResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetAvailableAllocationsResponse) ProtoMessage() {} func (*QueryGetAvailableAllocationsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3b6d9d472596bad2, []int{11} + return fileDescriptor_2821ae6aa6f9b98e, []int{11} } func (m *QueryGetAvailableAllocationsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -590,7 +590,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3b6d9d472596bad2, []int{12} + return fileDescriptor_2821ae6aa6f9b98e, []int{12} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -628,7 +628,7 @@ 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_3b6d9d472596bad2, []int{13} + return fileDescriptor_2821ae6aa6f9b98e, []int{13} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -665,81 +665,80 @@ func (m *QueryParamsResponse) GetParams() Params { } func init() { - proto.RegisterType((*QueryGetUsedAllocationsRequest)(nil), "tendermint.spn.participation.QueryGetUsedAllocationsRequest") - proto.RegisterType((*QueryGetUsedAllocationsResponse)(nil), "tendermint.spn.participation.QueryGetUsedAllocationsResponse") - proto.RegisterType((*QueryAllUsedAllocationsRequest)(nil), "tendermint.spn.participation.QueryAllUsedAllocationsRequest") - proto.RegisterType((*QueryAllUsedAllocationsResponse)(nil), "tendermint.spn.participation.QueryAllUsedAllocationsResponse") - proto.RegisterType((*QueryGetAuctionUsedAllocationsRequest)(nil), "tendermint.spn.participation.QueryGetAuctionUsedAllocationsRequest") - proto.RegisterType((*QueryGetAuctionUsedAllocationsResponse)(nil), "tendermint.spn.participation.QueryGetAuctionUsedAllocationsResponse") - proto.RegisterType((*QueryAllAuctionUsedAllocationsRequest)(nil), "tendermint.spn.participation.QueryAllAuctionUsedAllocationsRequest") - proto.RegisterType((*QueryAllAuctionUsedAllocationsResponse)(nil), "tendermint.spn.participation.QueryAllAuctionUsedAllocationsResponse") - proto.RegisterType((*QueryGetTotalAllocationsRequest)(nil), "tendermint.spn.participation.QueryGetTotalAllocationsRequest") - proto.RegisterType((*QueryGetTotalAllocationsResponse)(nil), "tendermint.spn.participation.QueryGetTotalAllocationsResponse") - proto.RegisterType((*QueryGetAvailableAllocationsRequest)(nil), "tendermint.spn.participation.QueryGetAvailableAllocationsRequest") - proto.RegisterType((*QueryGetAvailableAllocationsResponse)(nil), "tendermint.spn.participation.QueryGetAvailableAllocationsResponse") - proto.RegisterType((*QueryParamsRequest)(nil), "tendermint.spn.participation.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "tendermint.spn.participation.QueryParamsResponse") -} - -func init() { proto.RegisterFile("participation/query.proto", fileDescriptor_3b6d9d472596bad2) } - -var fileDescriptor_3b6d9d472596bad2 = []byte{ - // 870 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x97, 0xcf, 0x4f, 0x13, 0x5b, - 0x14, 0xc7, 0x7b, 0x81, 0xc7, 0x0b, 0x97, 0x05, 0xe4, 0xbe, 0x86, 0xc0, 0x84, 0x14, 0x32, 0xaf, - 0x56, 0x63, 0xe8, 0x0c, 0xa0, 0x31, 0xfe, 0x00, 0x65, 0x0a, 0x82, 0x4d, 0x8c, 0xc1, 0x0a, 0x0b, - 0x4c, 0x0c, 0xb9, 0x6d, 0x6f, 0x86, 0x89, 0xd3, 0x99, 0x61, 0xe6, 0x96, 0x48, 0x08, 0x89, 0x71, - 0xed, 0xc2, 0xc4, 0x8d, 0x89, 0xee, 0xfc, 0x17, 0xf8, 0x23, 0x60, 0x47, 0xd0, 0x85, 0x71, 0x41, - 0x0c, 0xe0, 0x5e, 0x97, 0xee, 0x4c, 0xef, 0xdc, 0x52, 0x66, 0x9c, 0x99, 0x0e, 0xb4, 0xae, 0x0a, - 0xbd, 0xe7, 0x7c, 0xef, 0xf9, 0x9c, 0x73, 0xe6, 0x9c, 0x29, 0x1c, 0xb2, 0xb0, 0x4d, 0xb5, 0x92, - 0x66, 0x61, 0xaa, 0x99, 0x86, 0xbc, 0x5e, 0x25, 0xf6, 0xa6, 0x64, 0xd9, 0x26, 0x35, 0xd1, 0x30, - 0x25, 0x46, 0x99, 0xd8, 0x15, 0xcd, 0xa0, 0x92, 0x63, 0x19, 0x92, 0xc7, 0x52, 0x48, 0xaa, 0xa6, - 0x6a, 0x32, 0x43, 0xb9, 0xf6, 0x97, 0xeb, 0x23, 0x0c, 0xab, 0xa6, 0xa9, 0xea, 0x44, 0xc6, 0x96, - 0x26, 0x63, 0xc3, 0x30, 0x29, 0x33, 0x76, 0xf8, 0xe9, 0xd5, 0x92, 0xe9, 0x54, 0x4c, 0x47, 0x2e, - 0x62, 0x87, 0xb8, 0x57, 0xc9, 0x1b, 0x13, 0x45, 0x42, 0xf1, 0x84, 0x6c, 0x61, 0x55, 0x33, 0x98, - 0x31, 0xb7, 0x1d, 0x72, 0x6d, 0x57, 0xdd, 0x2b, 0xdc, 0x7f, 0xf8, 0x91, 0xe0, 0x8d, 0xd9, 0xc2, - 0x36, 0xae, 0xd4, 0xcf, 0xd2, 0xde, 0xb3, 0xaa, 0x43, 0xca, 0xab, 0x58, 0xd7, 0xcd, 0x92, 0x27, - 0x90, 0x31, 0xaf, 0x15, 0xae, 0x96, 0x6a, 0x9f, 0xab, 0xc1, 0xd6, 0xe2, 0x12, 0x4c, 0x3d, 0xae, - 0x05, 0xbb, 0x40, 0xe8, 0xb2, 0x43, 0xca, 0x4a, 0xc3, 0xa0, 0x40, 0xd6, 0xab, 0xc4, 0xa1, 0x68, - 0x12, 0xfe, 0x8b, 0xcb, 0x65, 0x9b, 0x38, 0xce, 0x20, 0x18, 0x05, 0x57, 0x7a, 0x72, 0x83, 0x07, - 0x3b, 0xd9, 0x24, 0x0f, 0x5a, 0x71, 0x4f, 0x9e, 0x50, 0x5b, 0x33, 0xd4, 0x42, 0xdd, 0x50, 0x7c, - 0x09, 0xe0, 0x48, 0xa8, 0xac, 0x63, 0x99, 0x86, 0x43, 0xd0, 0x33, 0xd8, 0x57, 0xf5, 0x1e, 0x31, - 0xfd, 0xde, 0xc9, 0xac, 0x14, 0x55, 0x1c, 0xc9, 0xa7, 0x97, 0xeb, 0xda, 0x3d, 0x1c, 0x49, 0x14, - 0xfc, 0x5a, 0xe2, 0x1a, 0x07, 0x53, 0x74, 0x3d, 0x04, 0x6c, 0x1e, 0xc2, 0x46, 0x65, 0xf8, 0xdd, - 0x19, 0x89, 0x83, 0xd5, 0xca, 0x28, 0xb9, 0x1d, 0xc3, 0xcb, 0x28, 0x2d, 0x62, 0x95, 0x70, 0xdf, - 0xc2, 0x19, 0x4f, 0x71, 0xaf, 0x0e, 0x1b, 0x74, 0x55, 0x14, 0x6c, 0x67, 0xbb, 0x60, 0xd1, 0x82, - 0x07, 0xa5, 0x83, 0xa1, 0x5c, 0x6e, 0x8a, 0xe2, 0xc6, 0xe6, 0x61, 0xd9, 0x84, 0x97, 0xea, 0x75, - 0x53, 0xdc, 0xc6, 0x69, 0x5f, 0x57, 0xa0, 0x61, 0xd8, 0xc3, 0xbb, 0x31, 0x3f, 0xc7, 0x82, 0xec, - 0x2a, 0x34, 0xbe, 0x10, 0x3f, 0x00, 0x98, 0x69, 0x76, 0x37, 0xcf, 0xa6, 0x0d, 0x07, 0x70, 0xa0, - 0x05, 0xaf, 0xe2, 0xf5, 0xe8, 0xa4, 0x06, 0xab, 0xf3, 0xdc, 0x86, 0x28, 0x8b, 0x1f, 0x01, 0x4f, - 0x8d, 0xa2, 0xeb, 0xed, 0x4f, 0xcd, 0x7c, 0x40, 0x01, 0x2f, 0xd2, 0x8b, 0xdf, 0xeb, 0x49, 0x8c, - 0x88, 0x32, 0x46, 0x12, 0x3b, 0xff, 0x4e, 0x12, 0xdb, 0xd7, 0xa7, 0xcb, 0x8d, 0xf9, 0xb2, 0x64, - 0x52, 0xac, 0xb7, 0x69, 0x6e, 0xbd, 0x06, 0x70, 0x34, 0x5c, 0x97, 0x27, 0x6e, 0x0d, 0xf6, 0x53, - 0xdf, 0x19, 0xbf, 0x61, 0xaa, 0x06, 0xff, 0xf5, 0x70, 0x24, 0xa3, 0x6a, 0x74, 0xad, 0x5a, 0x94, - 0x4a, 0x66, 0x85, 0x4f, 0x77, 0xfe, 0x91, 0x75, 0xca, 0xcf, 0x65, 0xba, 0x69, 0x11, 0x47, 0xca, - 0x1b, 0xf4, 0x60, 0x27, 0x0b, 0x79, 0x3c, 0x79, 0x83, 0x16, 0xfe, 0x50, 0x15, 0x57, 0xe0, 0xff, - 0xa7, 0x4f, 0xc4, 0x06, 0xd6, 0x74, 0x5c, 0xd4, 0x49, 0x9b, 0x48, 0xdf, 0x01, 0x98, 0x8e, 0xd6, - 0xe6, 0xb4, 0x16, 0x4c, 0xe2, 0x80, 0xf3, 0xb6, 0x10, 0x07, 0x2a, 0x8b, 0x49, 0x88, 0x58, 0x64, - 0x8b, 0x6c, 0xf7, 0x71, 0x48, 0x71, 0x05, 0xfe, 0xe7, 0xf9, 0x96, 0x87, 0x97, 0x83, 0xdd, 0xee, - 0x8e, 0xe4, 0x8f, 0x7e, 0x3a, 0xba, 0x6b, 0x5d, 0x6f, 0xde, 0xa5, 0xdc, 0x73, 0xf2, 0x67, 0x2f, - 0xfc, 0x87, 0x69, 0xa3, 0x7d, 0x00, 0xfb, 0xfc, 0x3d, 0x3b, 0x15, 0xad, 0x18, 0xbd, 0x3d, 0x85, - 0xe9, 0x0b, 0x7a, 0xbb, 0x78, 0xe2, 0xcc, 0xab, 0x4f, 0x27, 0x6f, 0x3b, 0x6e, 0xa3, 0x9b, 0x72, - 0x43, 0x46, 0x76, 0x2c, 0xf6, 0x62, 0x10, 0xf1, 0x2a, 0x20, 0x6f, 0xf1, 0x3a, 0x6f, 0xa3, 0x3d, - 0x00, 0x91, 0x4f, 0x5d, 0xd1, 0xf5, 0x58, 0x54, 0xa1, 0xab, 0x33, 0x16, 0x55, 0xf8, 0x36, 0x14, - 0x6f, 0x30, 0xaa, 0x71, 0x24, 0x9d, 0x8f, 0x0a, 0xfd, 0x02, 0x70, 0x20, 0x78, 0xee, 0xa0, 0xd9, - 0x78, 0x79, 0x8e, 0x9c, 0xdc, 0xc2, 0x5c, 0x6b, 0x22, 0x9c, 0x6e, 0x89, 0xd1, 0x3d, 0x42, 0x0f, - 0xa3, 0xe9, 0xc2, 0x5e, 0xcc, 0x1a, 0xb5, 0x93, 0xb7, 0x4e, 0xb7, 0xe3, 0x36, 0xfa, 0x01, 0xe0, - 0x50, 0xf0, 0xc5, 0xb5, 0x72, 0xce, 0xc6, 0x2b, 0x48, 0xeb, 0xf8, 0x4d, 0xf7, 0x8a, 0xf8, 0x80, - 0xe1, 0xe7, 0xd0, 0x4c, 0xab, 0xf8, 0xe8, 0x33, 0x80, 0xfd, 0xfe, 0x29, 0x8c, 0x62, 0x3e, 0x50, - 0x21, 0x5b, 0x41, 0xb8, 0x7b, 0x51, 0x77, 0x4e, 0xa7, 0x30, 0xba, 0x3b, 0xe8, 0x56, 0x34, 0x1d, - 0x1b, 0xe5, 0x21, 0x58, 0x27, 0x00, 0x26, 0x83, 0x46, 0x2e, 0x52, 0x62, 0xb6, 0x5f, 0xf8, 0x2a, - 0x10, 0x72, 0xad, 0x48, 0x70, 0xc4, 0xfb, 0x0c, 0xf1, 0x1e, 0x9a, 0x6e, 0x52, 0xc0, 0xba, 0x46, - 0x08, 0xe6, 0x7b, 0x00, 0xbb, 0xdd, 0x71, 0x8b, 0xc6, 0x63, 0x44, 0xe5, 0x99, 0xf6, 0xc2, 0xc4, - 0x39, 0x3c, 0x78, 0xd8, 0x63, 0x2c, 0xec, 0x0c, 0x4a, 0x47, 0x87, 0xed, 0xce, 0xfc, 0x5c, 0x7e, - 0xf7, 0x28, 0x05, 0xf6, 0x8f, 0x52, 0xe0, 0xdb, 0x51, 0x0a, 0xbc, 0x39, 0x4e, 0x25, 0xf6, 0x8f, - 0x53, 0x89, 0x2f, 0xc7, 0xa9, 0xc4, 0x53, 0xf9, 0xcc, 0x2a, 0xf3, 0x29, 0xbd, 0xf0, 0x57, 0xb9, - 0xb6, 0xd7, 0x8a, 0xdd, 0xec, 0x97, 0xd4, 0xb5, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xdd, 0x74, - 0x07, 0x13, 0x6f, 0x0e, 0x00, 0x00, + proto.RegisterType((*QueryGetUsedAllocationsRequest)(nil), "spn.participation.QueryGetUsedAllocationsRequest") + proto.RegisterType((*QueryGetUsedAllocationsResponse)(nil), "spn.participation.QueryGetUsedAllocationsResponse") + proto.RegisterType((*QueryAllUsedAllocationsRequest)(nil), "spn.participation.QueryAllUsedAllocationsRequest") + proto.RegisterType((*QueryAllUsedAllocationsResponse)(nil), "spn.participation.QueryAllUsedAllocationsResponse") + proto.RegisterType((*QueryGetAuctionUsedAllocationsRequest)(nil), "spn.participation.QueryGetAuctionUsedAllocationsRequest") + proto.RegisterType((*QueryGetAuctionUsedAllocationsResponse)(nil), "spn.participation.QueryGetAuctionUsedAllocationsResponse") + proto.RegisterType((*QueryAllAuctionUsedAllocationsRequest)(nil), "spn.participation.QueryAllAuctionUsedAllocationsRequest") + proto.RegisterType((*QueryAllAuctionUsedAllocationsResponse)(nil), "spn.participation.QueryAllAuctionUsedAllocationsResponse") + proto.RegisterType((*QueryGetTotalAllocationsRequest)(nil), "spn.participation.QueryGetTotalAllocationsRequest") + proto.RegisterType((*QueryGetTotalAllocationsResponse)(nil), "spn.participation.QueryGetTotalAllocationsResponse") + proto.RegisterType((*QueryGetAvailableAllocationsRequest)(nil), "spn.participation.QueryGetAvailableAllocationsRequest") + proto.RegisterType((*QueryGetAvailableAllocationsResponse)(nil), "spn.participation.QueryGetAvailableAllocationsResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "spn.participation.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "spn.participation.QueryParamsResponse") +} + +func init() { proto.RegisterFile("spn/participation/query.proto", fileDescriptor_2821ae6aa6f9b98e) } + +var fileDescriptor_2821ae6aa6f9b98e = []byte{ + // 856 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xcf, 0x4f, 0x13, 0x41, + 0x14, 0xee, 0x00, 0x62, 0x18, 0x0f, 0xe0, 0xd8, 0x10, 0x68, 0x70, 0x21, 0x2b, 0x54, 0x34, 0xb2, + 0x0b, 0x25, 0xe1, 0x87, 0x3f, 0x22, 0x6d, 0x14, 0x6c, 0x62, 0x08, 0x56, 0x38, 0xe8, 0x85, 0x4c, + 0xdb, 0xc9, 0xb2, 0x71, 0xbb, 0xbb, 0x74, 0xa7, 0x44, 0x42, 0xb8, 0x98, 0x78, 0xf3, 0xa0, 0xf1, + 0xe2, 0xdd, 0x3f, 0x41, 0x4e, 0x1e, 0x38, 0x73, 0x32, 0x04, 0x0f, 0x1a, 0x0e, 0xc4, 0x50, 0xff, + 0x10, 0xd3, 0xd9, 0x57, 0x4a, 0xb7, 0xbb, 0x5b, 0x0b, 0x3d, 0x2d, 0xec, 0x7b, 0xf3, 0xcd, 0xf7, + 0xbd, 0xf7, 0xf6, 0x7b, 0x80, 0x6f, 0x3a, 0xb6, 0xa9, 0xda, 0xb4, 0xc8, 0xf5, 0x9c, 0x6e, 0x53, + 0xae, 0x5b, 0xa6, 0xba, 0x59, 0x62, 0xc5, 0x6d, 0xc5, 0x2e, 0x5a, 0xdc, 0x22, 0xd7, 0x1d, 0xdb, + 0x54, 0xea, 0xc2, 0xb1, 0xa8, 0x66, 0x69, 0x96, 0x88, 0xaa, 0x95, 0x9f, 0xdc, 0xc4, 0xd8, 0x90, + 0x66, 0x59, 0x9a, 0xc1, 0x54, 0x6a, 0xeb, 0x2a, 0x35, 0x4d, 0x8b, 0x8b, 0x64, 0x07, 0xa2, 0x77, + 0x73, 0x96, 0x53, 0xb0, 0x1c, 0x35, 0x4b, 0x1d, 0xe6, 0xe2, 0xab, 0x5b, 0x53, 0x59, 0xc6, 0xe9, + 0x94, 0x6a, 0x53, 0x4d, 0x37, 0x45, 0x32, 0xe4, 0x0e, 0xba, 0xb9, 0xeb, 0xee, 0x15, 0xee, 0x2f, + 0x10, 0x92, 0x1a, 0xc9, 0xda, 0xb4, 0x48, 0x0b, 0xd5, 0xf8, 0x78, 0x63, 0xbc, 0xe4, 0xb0, 0xfc, + 0x3a, 0x35, 0x0c, 0x2b, 0x57, 0x47, 0x68, 0xb2, 0x31, 0x93, 0x96, 0x72, 0x95, 0xe7, 0xba, 0xff, + 0x09, 0x79, 0x15, 0x4b, 0x2f, 0x2a, 0xc4, 0x97, 0x18, 0x5f, 0x73, 0x58, 0x3e, 0x59, 0x4b, 0xc8, + 0xb0, 0xcd, 0x12, 0x73, 0x38, 0x49, 0xe0, 0xab, 0x34, 0x9f, 0x2f, 0x32, 0xc7, 0x19, 0x40, 0x23, + 0x68, 0xbc, 0x27, 0x35, 0x70, 0xb4, 0x37, 0x11, 0x05, 0x01, 0x49, 0x37, 0xf2, 0x92, 0x17, 0x75, + 0x53, 0xcb, 0x54, 0x13, 0xe5, 0x12, 0x1e, 0x0e, 0x44, 0x75, 0x6c, 0xcb, 0x74, 0x18, 0xc9, 0xe0, + 0xde, 0x52, 0x7d, 0x48, 0xc0, 0x5f, 0x4b, 0xc8, 0x4a, 0x43, 0x73, 0x14, 0x0f, 0x48, 0xaa, 0xeb, + 0xe0, 0x64, 0x38, 0x92, 0xf1, 0x02, 0xc8, 0x1b, 0x20, 0x26, 0x69, 0x18, 0x01, 0x62, 0x16, 0x31, + 0xae, 0x75, 0x06, 0x2e, 0x8c, 0x2b, 0x20, 0xa6, 0xd2, 0x46, 0xc5, 0x1d, 0x13, 0x68, 0xa3, 0xb2, + 0x42, 0x35, 0x06, 0x67, 0x33, 0xe7, 0x4e, 0xca, 0xfb, 0x08, 0x14, 0xfa, 0x5d, 0x15, 0xa6, 0xb0, + 0xf3, 0x52, 0x0a, 0xc9, 0x52, 0x1d, 0xff, 0x0e, 0xc1, 0xff, 0x76, 0x53, 0xfe, 0x2e, 0xa1, 0x3a, + 0x01, 0xdb, 0x78, 0xac, 0xda, 0xa1, 0xa4, 0x3b, 0x21, 0xed, 0x6b, 0x3f, 0x19, 0xc2, 0x3d, 0x30, + 0x76, 0xe9, 0x27, 0x82, 0x64, 0x57, 0xa6, 0xf6, 0x42, 0xfe, 0x84, 0x70, 0xbc, 0xd9, 0xdd, 0x50, + 0x42, 0x0d, 0xf7, 0x53, 0xdf, 0x0c, 0x68, 0xdd, 0x1d, 0x9f, 0x4a, 0xfa, 0x43, 0x42, 0x41, 0x03, + 0xe0, 0xe4, 0xaf, 0x08, 0xea, 0x91, 0x34, 0x8c, 0xf6, 0xd7, 0x63, 0xd1, 0xa7, 0x6b, 0x17, 0x99, + 0xba, 0xe3, 0x6a, 0xe5, 0x42, 0x58, 0xfe, 0x47, 0xe5, 0x3a, 0xdb, 0x58, 0xb9, 0xf6, 0x4d, 0xe4, + 0x5a, 0xcd, 0x33, 0x56, 0x2d, 0x4e, 0x8d, 0x36, 0x59, 0xd1, 0x07, 0x84, 0x47, 0x82, 0x71, 0xa1, + 0x5a, 0x1b, 0xb8, 0x8f, 0x7b, 0x62, 0x70, 0xc3, 0xc3, 0x8a, 0xf8, 0xe3, 0x93, 0xe1, 0xb8, 0xa6, + 0xf3, 0x8d, 0x52, 0x56, 0xc9, 0x59, 0x05, 0x30, 0x6f, 0x78, 0x4c, 0x38, 0xf9, 0x37, 0x2a, 0xdf, + 0xb6, 0x99, 0xa3, 0xa4, 0x4d, 0x7e, 0xb4, 0x37, 0x81, 0x81, 0x4f, 0xda, 0xe4, 0x99, 0x06, 0x54, + 0xf9, 0x15, 0xbe, 0x75, 0x36, 0xfb, 0x5b, 0x54, 0x37, 0x68, 0xd6, 0x60, 0x6d, 0x52, 0xfa, 0x05, + 0xe1, 0xd1, 0x70, 0x6c, 0x50, 0x6b, 0xe3, 0x28, 0xf5, 0x89, 0xb7, 0x45, 0xb1, 0x2f, 0xb2, 0x1c, + 0xc5, 0x44, 0x30, 0x5b, 0x11, 0x6b, 0x0d, 0x44, 0xca, 0xcb, 0xf8, 0x46, 0xdd, 0x5b, 0xa0, 0x37, + 0x8b, 0xbb, 0xdd, 0xf5, 0x07, 0x1f, 0xf9, 0xa0, 0xcf, 0xa8, 0xba, 0x47, 0x60, 0x34, 0x21, 0x3d, + 0xf1, 0x0b, 0xe3, 0x2b, 0x02, 0x90, 0x7c, 0x47, 0xb8, 0xd7, 0x3b, 0xa8, 0x53, 0x3e, 0x30, 0xe1, + 0xab, 0x2f, 0x96, 0x68, 0xe5, 0x88, 0xcb, 0x5e, 0x5e, 0x78, 0xf7, 0xf3, 0xef, 0xe7, 0x8e, 0xfb, + 0x64, 0x4e, 0xe5, 0xcc, 0xcc, 0xb3, 0x62, 0x41, 0x37, 0xb9, 0xda, 0x7c, 0x81, 0xab, 0x3b, 0xd0, + 0xc6, 0x5d, 0xf2, 0x0d, 0x61, 0xe2, 0x41, 0x4f, 0x1a, 0x46, 0x30, 0xff, 0xc0, 0x6d, 0x17, 0xcc, + 0x3f, 0x78, 0x6b, 0xc9, 0x33, 0x82, 0xff, 0x24, 0x51, 0x5a, 0xe3, 0x4f, 0xca, 0x08, 0xf7, 0xfb, + 0x1b, 0x08, 0x99, 0x0b, 0x29, 0x63, 0xa8, 0xd9, 0xc6, 0xe6, 0x2f, 0x70, 0x12, 0x74, 0xac, 0x0a, + 0x1d, 0xcb, 0xe4, 0x79, 0xb8, 0x8e, 0xa0, 0x3f, 0x8f, 0x6a, 0xfd, 0x50, 0x77, 0xce, 0x56, 0xd7, + 0x2e, 0x39, 0x46, 0x78, 0xd0, 0xff, 0xe2, 0x4a, 0x8b, 0xe6, 0x42, 0xea, 0x7d, 0x41, 0xa1, 0x4d, + 0x9d, 0x5e, 0x7e, 0x26, 0x84, 0xa6, 0xc8, 0xc2, 0x65, 0x85, 0x92, 0x7d, 0x84, 0xfb, 0xbc, 0x16, + 0x49, 0xc2, 0xbe, 0x81, 0x00, 0x9f, 0x8e, 0x4d, 0xb7, 0x74, 0x06, 0x74, 0x24, 0x85, 0x8e, 0x07, + 0x64, 0x3e, 0x5c, 0x87, 0x70, 0xd4, 0x00, 0x01, 0x3f, 0x10, 0x8e, 0xfa, 0x39, 0x1f, 0x99, 0x09, + 0x9b, 0xa3, 0x60, 0x1b, 0x8e, 0xcd, 0xb6, 0x7c, 0x0e, 0xc4, 0x3c, 0x15, 0x62, 0x1e, 0x93, 0x47, + 0x4d, 0x9a, 0x52, 0xc5, 0x08, 0x10, 0xf4, 0x1e, 0xe1, 0x6e, 0xd7, 0xea, 0xc8, 0x58, 0x10, 0x95, + 0x3a, 0x4f, 0x8d, 0xc5, 0x9b, 0xa5, 0x01, 0xc1, 0x7b, 0x82, 0x60, 0x9c, 0x8c, 0x86, 0x13, 0x74, + 0x9d, 0x35, 0x95, 0x3e, 0x38, 0x95, 0xd0, 0xe1, 0xa9, 0x84, 0xfe, 0x9c, 0x4a, 0xe8, 0x63, 0x59, + 0x8a, 0x1c, 0x96, 0xa5, 0xc8, 0xef, 0xb2, 0x14, 0x79, 0xad, 0x9e, 0xdb, 0x12, 0x1e, 0xa4, 0xb7, + 0xde, 0xce, 0x55, 0x56, 0x46, 0xb6, 0x5b, 0xfc, 0xdf, 0x31, 0xfd, 0x2f, 0x00, 0x00, 0xff, 0xff, + 0xac, 0xec, 0x1b, 0xe2, 0xa2, 0x0d, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -780,7 +779,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) UsedAllocations(ctx context.Context, in *QueryGetUsedAllocationsRequest, opts ...grpc.CallOption) (*QueryGetUsedAllocationsResponse, error) { out := new(QueryGetUsedAllocationsResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.participation.Query/UsedAllocations", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.participation.Query/UsedAllocations", in, out, opts...) if err != nil { return nil, err } @@ -789,7 +788,7 @@ func (c *queryClient) UsedAllocations(ctx context.Context, in *QueryGetUsedAlloc func (c *queryClient) UsedAllocationsAll(ctx context.Context, in *QueryAllUsedAllocationsRequest, opts ...grpc.CallOption) (*QueryAllUsedAllocationsResponse, error) { out := new(QueryAllUsedAllocationsResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.participation.Query/UsedAllocationsAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.participation.Query/UsedAllocationsAll", in, out, opts...) if err != nil { return nil, err } @@ -798,7 +797,7 @@ func (c *queryClient) UsedAllocationsAll(ctx context.Context, in *QueryAllUsedAl func (c *queryClient) AuctionUsedAllocations(ctx context.Context, in *QueryGetAuctionUsedAllocationsRequest, opts ...grpc.CallOption) (*QueryGetAuctionUsedAllocationsResponse, error) { out := new(QueryGetAuctionUsedAllocationsResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.participation.Query/AuctionUsedAllocations", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.participation.Query/AuctionUsedAllocations", in, out, opts...) if err != nil { return nil, err } @@ -807,7 +806,7 @@ func (c *queryClient) AuctionUsedAllocations(ctx context.Context, in *QueryGetAu func (c *queryClient) AuctionUsedAllocationsAll(ctx context.Context, in *QueryAllAuctionUsedAllocationsRequest, opts ...grpc.CallOption) (*QueryAllAuctionUsedAllocationsResponse, error) { out := new(QueryAllAuctionUsedAllocationsResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.participation.Query/AuctionUsedAllocationsAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.participation.Query/AuctionUsedAllocationsAll", in, out, opts...) if err != nil { return nil, err } @@ -816,7 +815,7 @@ func (c *queryClient) AuctionUsedAllocationsAll(ctx context.Context, in *QueryAl func (c *queryClient) TotalAllocations(ctx context.Context, in *QueryGetTotalAllocationsRequest, opts ...grpc.CallOption) (*QueryGetTotalAllocationsResponse, error) { out := new(QueryGetTotalAllocationsResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.participation.Query/TotalAllocations", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.participation.Query/TotalAllocations", in, out, opts...) if err != nil { return nil, err } @@ -825,7 +824,7 @@ func (c *queryClient) TotalAllocations(ctx context.Context, in *QueryGetTotalAll func (c *queryClient) AvailableAllocations(ctx context.Context, in *QueryGetAvailableAllocationsRequest, opts ...grpc.CallOption) (*QueryGetAvailableAllocationsResponse, error) { out := new(QueryGetAvailableAllocationsResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.participation.Query/AvailableAllocations", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.participation.Query/AvailableAllocations", in, out, opts...) if err != nil { return nil, err } @@ -834,7 +833,7 @@ func (c *queryClient) AvailableAllocations(ctx context.Context, in *QueryGetAvai func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.participation.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.participation.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -899,7 +898,7 @@ func _Query_UsedAllocations_Handler(srv interface{}, ctx context.Context, dec fu } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.participation.Query/UsedAllocations", + FullMethod: "/spn.participation.Query/UsedAllocations", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).UsedAllocations(ctx, req.(*QueryGetUsedAllocationsRequest)) @@ -917,7 +916,7 @@ func _Query_UsedAllocationsAll_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.participation.Query/UsedAllocationsAll", + FullMethod: "/spn.participation.Query/UsedAllocationsAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).UsedAllocationsAll(ctx, req.(*QueryAllUsedAllocationsRequest)) @@ -935,7 +934,7 @@ func _Query_AuctionUsedAllocations_Handler(srv interface{}, ctx context.Context, } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.participation.Query/AuctionUsedAllocations", + FullMethod: "/spn.participation.Query/AuctionUsedAllocations", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AuctionUsedAllocations(ctx, req.(*QueryGetAuctionUsedAllocationsRequest)) @@ -953,7 +952,7 @@ func _Query_AuctionUsedAllocationsAll_Handler(srv interface{}, ctx context.Conte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.participation.Query/AuctionUsedAllocationsAll", + FullMethod: "/spn.participation.Query/AuctionUsedAllocationsAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AuctionUsedAllocationsAll(ctx, req.(*QueryAllAuctionUsedAllocationsRequest)) @@ -971,7 +970,7 @@ func _Query_TotalAllocations_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.participation.Query/TotalAllocations", + FullMethod: "/spn.participation.Query/TotalAllocations", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).TotalAllocations(ctx, req.(*QueryGetTotalAllocationsRequest)) @@ -989,7 +988,7 @@ func _Query_AvailableAllocations_Handler(srv interface{}, ctx context.Context, d } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.participation.Query/AvailableAllocations", + FullMethod: "/spn.participation.Query/AvailableAllocations", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AvailableAllocations(ctx, req.(*QueryGetAvailableAllocationsRequest)) @@ -1007,7 +1006,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.participation.Query/Params", + FullMethod: "/spn.participation.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -1016,7 +1015,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "tendermint.spn.participation.Query", + ServiceName: "spn.participation.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1049,7 +1048,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "participation/query.proto", + Metadata: "spn/participation/query.proto", } func (m *QueryGetUsedAllocationsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/participation/types/query.pb.gw.go b/x/participation/types/query.pb.gw.go index f75c1b7c8..ca1ce70cc 100644 --- a/x/participation/types/query.pb.gw.go +++ b/x/participation/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: participation/query.proto +// source: spn/participation/query.proto /* Package types is a reverse proxy. @@ -749,19 +749,19 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_UsedAllocations_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "participation", "used_allocations", "address"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_UsedAllocations_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "participation", "used_allocations", "address"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_UsedAllocationsAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "participation", "used_allocations"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_UsedAllocationsAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "participation", "used_allocations"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_AuctionUsedAllocations_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"tendermint", "spn", "participation", "auction_used_allocations", "address", "auctionID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_AuctionUsedAllocations_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"tendermint", "spn", "participation", "auction_used_allocations", "address", "auctionID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_AuctionUsedAllocationsAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "participation", "auction_used_allocations", "address"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_AuctionUsedAllocationsAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "participation", "auction_used_allocations", "address"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_TotalAllocations_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "participation", "total_allocations", "address"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_TotalAllocations_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "participation", "total_allocations", "address"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_AvailableAllocations_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "participation", "available_allocations", "address"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_AvailableAllocations_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "participation", "available_allocations", "address"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "participation", "params"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "participation", "params"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/participation/types/tx.pb.go b/x/participation/types/tx.pb.go index 64dac6edd..8e3186b90 100644 --- a/x/participation/types/tx.pb.go +++ b/x/participation/types/tx.pb.go @@ -1,13 +1,13 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: participation/tx.proto +// source: spn/participation/tx.proto package types import ( context "context" fmt "fmt" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -37,7 +37,7 @@ func (m *MsgParticipate) Reset() { *m = MsgParticipate{} } func (m *MsgParticipate) String() string { return proto.CompactTextString(m) } func (*MsgParticipate) ProtoMessage() {} func (*MsgParticipate) Descriptor() ([]byte, []int) { - return fileDescriptor_1ba05d42ce1a8b62, []int{0} + return fileDescriptor_5b65e821df43f277, []int{0} } func (m *MsgParticipate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -94,7 +94,7 @@ func (m *MsgParticipateResponse) Reset() { *m = MsgParticipateResponse{} func (m *MsgParticipateResponse) String() string { return proto.CompactTextString(m) } func (*MsgParticipateResponse) ProtoMessage() {} func (*MsgParticipateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_1ba05d42ce1a8b62, []int{1} + return fileDescriptor_5b65e821df43f277, []int{1} } func (m *MsgParticipateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -132,7 +132,7 @@ func (m *MsgWithdrawAllocations) Reset() { *m = MsgWithdrawAllocations{} func (m *MsgWithdrawAllocations) String() string { return proto.CompactTextString(m) } func (*MsgWithdrawAllocations) ProtoMessage() {} func (*MsgWithdrawAllocations) Descriptor() ([]byte, []int) { - return fileDescriptor_1ba05d42ce1a8b62, []int{2} + return fileDescriptor_5b65e821df43f277, []int{2} } func (m *MsgWithdrawAllocations) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -182,7 +182,7 @@ func (m *MsgWithdrawAllocationsResponse) Reset() { *m = MsgWithdrawAlloc func (m *MsgWithdrawAllocationsResponse) String() string { return proto.CompactTextString(m) } func (*MsgWithdrawAllocationsResponse) ProtoMessage() {} func (*MsgWithdrawAllocationsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_1ba05d42ce1a8b62, []int{3} + return fileDescriptor_5b65e821df43f277, []int{3} } func (m *MsgWithdrawAllocationsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -212,34 +212,34 @@ func (m *MsgWithdrawAllocationsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgWithdrawAllocationsResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgParticipate)(nil), "tendermint.spn.participation.MsgParticipate") - proto.RegisterType((*MsgParticipateResponse)(nil), "tendermint.spn.participation.MsgParticipateResponse") - proto.RegisterType((*MsgWithdrawAllocations)(nil), "tendermint.spn.participation.MsgWithdrawAllocations") - proto.RegisterType((*MsgWithdrawAllocationsResponse)(nil), "tendermint.spn.participation.MsgWithdrawAllocationsResponse") -} - -func init() { proto.RegisterFile("participation/tx.proto", fileDescriptor_1ba05d42ce1a8b62) } - -var fileDescriptor_1ba05d42ce1a8b62 = []byte{ - // 286 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x2b, 0x48, 0x2c, 0x2a, - 0xc9, 0x4c, 0xce, 0x2c, 0x48, 0x2c, 0xc9, 0xcc, 0xcf, 0xd3, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, - 0x2f, 0xc9, 0x17, 0x92, 0x29, 0x49, 0xcd, 0x4b, 0x49, 0x2d, 0xca, 0xcd, 0xcc, 0x2b, 0xd1, 0x2b, - 0x2e, 0xc8, 0xd3, 0x43, 0x51, 0xa6, 0x94, 0xc1, 0xc5, 0xe7, 0x5b, 0x9c, 0x1e, 0x00, 0x17, 0x4b, - 0x15, 0x52, 0xe0, 0xe2, 0x86, 0x2b, 0xc9, 0x2b, 0x91, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0c, 0x42, - 0x16, 0x12, 0x92, 0xe1, 0xe2, 0x4c, 0x2c, 0x4d, 0x06, 0x69, 0xf7, 0x74, 0x91, 0x60, 0x52, 0x60, - 0xd4, 0x60, 0x09, 0x42, 0x08, 0x08, 0x89, 0x71, 0xb1, 0x95, 0x64, 0xa6, 0x16, 0x79, 0xba, 0x48, - 0x30, 0x83, 0xa5, 0xa0, 0x3c, 0x25, 0x09, 0x2e, 0x31, 0x54, 0x9b, 0x82, 0x52, 0x8b, 0x0b, 0xf2, - 0xf3, 0x8a, 0x53, 0x95, 0x22, 0xc0, 0x32, 0xe1, 0x99, 0x25, 0x19, 0x29, 0x45, 0x89, 0xe5, 0x8e, - 0x39, 0x39, 0xf9, 0xc9, 0x60, 0xc7, 0x15, 0x53, 0xea, 0x16, 0x25, 0x05, 0x2e, 0x39, 0xec, 0x26, - 0xc3, 0xec, 0x36, 0x6a, 0x61, 0xe2, 0x62, 0xf6, 0x2d, 0x4e, 0x17, 0x2a, 0xe4, 0xe2, 0x46, 0x0e, - 0x04, 0x1d, 0x3d, 0x7c, 0xa1, 0xa6, 0x87, 0xea, 0x11, 0x29, 0x13, 0x52, 0x54, 0xc3, 0xac, 0x16, - 0xea, 0x64, 0xe4, 0x12, 0xc6, 0xe6, 0x69, 0xc2, 0xa6, 0x61, 0xd1, 0x25, 0x65, 0x43, 0x8e, 0x2e, - 0x98, 0x5b, 0x9c, 0x3c, 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, 0x4a, 0x3f, - 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0x61, 0x83, 0x7e, 0x71, 0x41, - 0x9e, 0x7e, 0x85, 0x3e, 0x5a, 0x92, 0xab, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0x27, 0x3b, 0x63, - 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x59, 0xbc, 0x6a, 0x25, 0x90, 0x02, 0x00, 0x00, + proto.RegisterType((*MsgParticipate)(nil), "spn.participation.MsgParticipate") + proto.RegisterType((*MsgParticipateResponse)(nil), "spn.participation.MsgParticipateResponse") + proto.RegisterType((*MsgWithdrawAllocations)(nil), "spn.participation.MsgWithdrawAllocations") + proto.RegisterType((*MsgWithdrawAllocationsResponse)(nil), "spn.participation.MsgWithdrawAllocationsResponse") +} + +func init() { proto.RegisterFile("spn/participation/tx.proto", fileDescriptor_5b65e821df43f277) } + +var fileDescriptor_5b65e821df43f277 = []byte{ + // 283 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x2a, 0x2e, 0xc8, 0xd3, + 0x2f, 0x48, 0x2c, 0x2a, 0xc9, 0x4c, 0xce, 0x2c, 0x48, 0x2c, 0xc9, 0xcc, 0xcf, 0xd3, 0x2f, 0xa9, + 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x2c, 0x2e, 0xc8, 0xd3, 0x43, 0x91, 0x53, 0xca, + 0xe0, 0xe2, 0xf3, 0x2d, 0x4e, 0x0f, 0x80, 0x8b, 0xa5, 0x0a, 0x29, 0x70, 0x71, 0xc3, 0x95, 0xe4, + 0x95, 0x48, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x06, 0x21, 0x0b, 0x09, 0xc9, 0x70, 0x71, 0x26, 0x96, + 0x26, 0x83, 0xb4, 0x7b, 0xba, 0x48, 0x30, 0x29, 0x30, 0x6a, 0xb0, 0x04, 0x21, 0x04, 0x84, 0xc4, + 0xb8, 0xd8, 0x4a, 0x32, 0x53, 0x8b, 0x3c, 0x5d, 0x24, 0x98, 0xc1, 0x52, 0x50, 0x9e, 0x92, 0x04, + 0x97, 0x18, 0xaa, 0x4d, 0x41, 0xa9, 0xc5, 0x05, 0xf9, 0x79, 0xc5, 0xa9, 0x4a, 0x11, 0x60, 0x99, + 0xf0, 0xcc, 0x92, 0x8c, 0x94, 0xa2, 0xc4, 0x72, 0xc7, 0x9c, 0x9c, 0xfc, 0x64, 0xb0, 0xe3, 0x8a, + 0x29, 0x75, 0x8b, 0x92, 0x02, 0x97, 0x1c, 0x76, 0x93, 0x61, 0x76, 0x1b, 0x5d, 0x67, 0xe4, 0x62, + 0xf6, 0x2d, 0x4e, 0x17, 0x8a, 0xe6, 0xe2, 0x46, 0x0e, 0x04, 0x45, 0x3d, 0x8c, 0xa0, 0xd2, 0x43, + 0x75, 0xbd, 0x94, 0x26, 0x41, 0x25, 0x30, 0x4b, 0x84, 0x8a, 0xb9, 0x84, 0xb1, 0xf9, 0x0e, 0x87, + 0x09, 0x58, 0x94, 0x4a, 0x19, 0x12, 0xad, 0x14, 0x66, 0xa9, 0x93, 0xe7, 0x89, 0x47, 0x72, 0x8c, + 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, + 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0xe9, 0xa7, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, + 0xe7, 0xea, 0x97, 0xa4, 0xe6, 0xa5, 0xa4, 0x16, 0xe5, 0x66, 0xe6, 0x95, 0xe8, 0x83, 0x12, 0x4e, + 0x05, 0x7a, 0xd2, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0x27, 0x1f, 0x63, 0x40, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x1e, 0x1d, 0x9e, 0xa3, 0x5c, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -268,7 +268,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) Participate(ctx context.Context, in *MsgParticipate, opts ...grpc.CallOption) (*MsgParticipateResponse, error) { out := new(MsgParticipateResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.participation.Msg/Participate", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.participation.Msg/Participate", in, out, opts...) if err != nil { return nil, err } @@ -277,7 +277,7 @@ func (c *msgClient) Participate(ctx context.Context, in *MsgParticipate, opts .. func (c *msgClient) WithdrawAllocations(ctx context.Context, in *MsgWithdrawAllocations, opts ...grpc.CallOption) (*MsgWithdrawAllocationsResponse, error) { out := new(MsgWithdrawAllocationsResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.participation.Msg/WithdrawAllocations", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.participation.Msg/WithdrawAllocations", in, out, opts...) if err != nil { return nil, err } @@ -315,7 +315,7 @@ func _Msg_Participate_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.participation.Msg/Participate", + FullMethod: "/spn.participation.Msg/Participate", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Participate(ctx, req.(*MsgParticipate)) @@ -333,7 +333,7 @@ func _Msg_WithdrawAllocations_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.participation.Msg/WithdrawAllocations", + FullMethod: "/spn.participation.Msg/WithdrawAllocations", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).WithdrawAllocations(ctx, req.(*MsgWithdrawAllocations)) @@ -342,7 +342,7 @@ func _Msg_WithdrawAllocations_Handler(srv interface{}, ctx context.Context, dec } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "tendermint.spn.participation.Msg", + ServiceName: "spn.participation.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -355,7 +355,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "participation/tx.proto", + Metadata: "spn/participation/tx.proto", } func (m *MsgParticipate) Marshal() (dAtA []byte, err error) { diff --git a/x/participation/types/used_allocations.pb.go b/x/participation/types/used_allocations.pb.go index b68969ffa..12251e816 100644 --- a/x/participation/types/used_allocations.pb.go +++ b/x/participation/types/used_allocations.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: participation/used_allocations.proto +// source: spn/participation/used_allocations.proto package types @@ -7,8 +7,8 @@ import ( fmt "fmt" _ "github.com/cosmos/cosmos-proto" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -35,7 +35,7 @@ func (m *UsedAllocations) Reset() { *m = UsedAllocations{} } func (m *UsedAllocations) String() string { return proto.CompactTextString(m) } func (*UsedAllocations) ProtoMessage() {} func (*UsedAllocations) Descriptor() ([]byte, []int) { - return fileDescriptor_3210f1039a9f28f1, []int{0} + return fileDescriptor_a15f80de3e5567dd, []int{0} } func (m *UsedAllocations) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -72,32 +72,32 @@ func (m *UsedAllocations) GetAddress() string { } func init() { - proto.RegisterType((*UsedAllocations)(nil), "tendermint.spn.participation.UsedAllocations") + proto.RegisterType((*UsedAllocations)(nil), "spn.participation.UsedAllocations") } func init() { - proto.RegisterFile("participation/used_allocations.proto", fileDescriptor_3210f1039a9f28f1) + proto.RegisterFile("spn/participation/used_allocations.proto", fileDescriptor_a15f80de3e5567dd) } -var fileDescriptor_3210f1039a9f28f1 = []byte{ - // 269 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x29, 0x48, 0x2c, 0x2a, - 0xc9, 0x4c, 0xce, 0x2c, 0x48, 0x2c, 0xc9, 0xcc, 0xcf, 0xd3, 0x2f, 0x2d, 0x4e, 0x4d, 0x89, 0x4f, - 0xcc, 0xc9, 0xc9, 0x4f, 0x06, 0xf3, 0x8b, 0xf5, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0x64, 0x4a, - 0x52, 0xf3, 0x52, 0x52, 0x8b, 0x72, 0x33, 0xf3, 0x4a, 0xf4, 0x8a, 0x0b, 0xf2, 0xf4, 0x50, 0x34, - 0x49, 0x89, 0xa4, 0xe7, 0xa7, 0xe7, 0x83, 0x15, 0xea, 0x83, 0x58, 0x10, 0x3d, 0x52, 0x92, 0xc9, - 0xf9, 0xc5, 0xb9, 0xf9, 0xc5, 0xf1, 0x10, 0x09, 0x08, 0x07, 0x22, 0xa5, 0xb4, 0x9a, 0x91, 0x8b, - 0x3f, 0xb4, 0x38, 0x35, 0xc5, 0x11, 0x61, 0x91, 0x90, 0x11, 0x17, 0x7b, 0x62, 0x4a, 0x4a, 0x51, - 0x6a, 0x71, 0xb1, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0xa7, 0x93, 0xc4, 0xa5, 0x2d, 0xba, 0x22, 0x50, - 0x6d, 0x8e, 0x10, 0x99, 0xe0, 0x92, 0xa2, 0xcc, 0xbc, 0xf4, 0x20, 0x98, 0x42, 0xa1, 0x14, 0x2e, - 0xbe, 0xbc, 0xd2, 0x5c, 0x24, 0x53, 0x24, 0x98, 0xc0, 0x5a, 0x6d, 0x4e, 0xdc, 0x93, 0x67, 0xb8, - 0x75, 0x4f, 0x5e, 0x2d, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x17, 0xea, 0x00, - 0x28, 0xa5, 0x5b, 0x9c, 0x92, 0xad, 0x5f, 0x52, 0x59, 0x90, 0x5a, 0xac, 0xe7, 0x99, 0x57, 0x72, - 0x69, 0x8b, 0x2e, 0x17, 0xd4, 0x22, 0xcf, 0xbc, 0x92, 0x20, 0x34, 0x33, 0x9d, 0x3c, 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, 0x4a, 0x1f, 0xc9, 0x7c, 0x44, 0x08, 0xe9, 0x17, - 0x17, 0xe4, 0xe9, 0x57, 0xe8, 0xa3, 0x06, 0x2c, 0xd8, 0xb2, 0x24, 0x36, 0xb0, 0xff, 0x8d, 0x01, - 0x01, 0x00, 0x00, 0xff, 0xff, 0x6e, 0x55, 0x4b, 0xaf, 0x76, 0x01, 0x00, 0x00, +var fileDescriptor_a15f80de3e5567dd = []byte{ + // 267 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x28, 0x2e, 0xc8, 0xd3, + 0x2f, 0x48, 0x2c, 0x2a, 0xc9, 0x4c, 0xce, 0x2c, 0x48, 0x2c, 0xc9, 0xcc, 0xcf, 0xd3, 0x2f, 0x2d, + 0x4e, 0x4d, 0x89, 0x4f, 0xcc, 0xc9, 0xc9, 0x4f, 0x06, 0xf3, 0x8b, 0xf5, 0x0a, 0x8a, 0xf2, 0x4b, + 0xf2, 0x85, 0x04, 0x8b, 0x0b, 0xf2, 0xf4, 0x50, 0x54, 0x4a, 0x89, 0xa4, 0xe7, 0xa7, 0xe7, 0x83, + 0x65, 0xf5, 0x41, 0x2c, 0x88, 0x42, 0x29, 0xc9, 0xe4, 0xfc, 0xe2, 0xdc, 0xfc, 0xe2, 0x78, 0x88, + 0x04, 0x84, 0x03, 0x91, 0x52, 0x5a, 0xcd, 0xc8, 0xc5, 0x1f, 0x5a, 0x9c, 0x9a, 0xe2, 0x88, 0x30, + 0x5d, 0xc8, 0x88, 0x8b, 0x3d, 0x31, 0x25, 0xa5, 0x28, 0xb5, 0xb8, 0x58, 0x82, 0x51, 0x81, 0x51, + 0x83, 0xd3, 0x49, 0xe2, 0xd2, 0x16, 0x5d, 0x11, 0xa8, 0x36, 0x47, 0x88, 0x4c, 0x70, 0x49, 0x51, + 0x66, 0x5e, 0x7a, 0x10, 0x4c, 0xa1, 0x50, 0x0a, 0x17, 0x5f, 0x5e, 0x69, 0x2e, 0x92, 0x29, 0x12, + 0x4c, 0x60, 0xad, 0x36, 0x27, 0xee, 0xc9, 0x33, 0xdc, 0xba, 0x27, 0xaf, 0x96, 0x9e, 0x59, 0x92, + 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0x0b, 0x75, 0x00, 0x94, 0xd2, 0x2d, 0x4e, 0xc9, 0xd6, 0x2f, + 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0xf3, 0xcc, 0x2b, 0xb9, 0xb4, 0x45, 0x97, 0x0b, 0x6a, 0x91, 0x67, + 0x5e, 0x49, 0x10, 0x9a, 0x99, 0x4e, 0x9e, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, + 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, + 0x10, 0xa5, 0x8f, 0x64, 0x7e, 0x49, 0x6a, 0x5e, 0x4a, 0x6a, 0x51, 0x6e, 0x66, 0x5e, 0x89, 0x3e, + 0x28, 0x2c, 0x2b, 0xd0, 0x42, 0x13, 0x6c, 0x59, 0x12, 0x1b, 0xd8, 0xff, 0xc6, 0x80, 0x00, 0x00, + 0x00, 0xff, 0xff, 0xb2, 0x02, 0x57, 0x2a, 0x6f, 0x01, 0x00, 0x00, } func (m *UsedAllocations) Marshal() (dAtA []byte, err error) { diff --git a/x/profile/client/cli/query_coordinator_by_address_test.go b/x/profile/client/cli/query_coordinator_by_address_test.go index ec5c26998..e469a9e31 100644 --- a/x/profile/client/cli/query_coordinator_by_address_test.go +++ b/x/profile/client/cli/query_coordinator_by_address_test.go @@ -4,9 +4,9 @@ import ( "fmt" "testing" + tmcli "github.com/cometbft/cometbft/libs/cli" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/profile/client/cli/query_coordinator_test.go b/x/profile/client/cli/query_coordinator_test.go index 3760acbea..29398fed3 100644 --- a/x/profile/client/cli/query_coordinator_test.go +++ b/x/profile/client/cli/query_coordinator_test.go @@ -4,10 +4,10 @@ import ( "fmt" "testing" + tmcli "github.com/cometbft/cometbft/libs/cli" "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/profile/client/cli/query_validator_test.go b/x/profile/client/cli/query_validator_test.go index 114f3de22..33c6945d6 100644 --- a/x/profile/client/cli/query_validator_test.go +++ b/x/profile/client/cli/query_validator_test.go @@ -7,10 +7,10 @@ import ( "github.com/tendermint/spn/testutil/nullify" + tmcli "github.com/cometbft/cometbft/libs/cli" "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/profile/client/cli/tx_add_validator_operator_address.go b/x/profile/client/cli/tx_add_validator_operator_address.go index 0ca21b85a..2d0796091 100644 --- a/x/profile/client/cli/tx_add_validator_operator_address.go +++ b/x/profile/client/cli/tx_add_validator_operator_address.go @@ -34,7 +34,11 @@ func CmdAddValidatorOperatorAddress() *cobra.Command { } // initialize tx - txf := tx.NewFactoryCLI(clientCtx, cmd.Flags()) + txf, err := tx.NewFactoryCLI(clientCtx, cmd.Flags()) + if err != nil { + return err + } + txBuilder, err := txf.BuildUnsignedTx(msg) if err != nil { return err diff --git a/x/profile/keeper/coordinator_by_address.go b/x/profile/keeper/coordinator_by_address.go index 7f43d1352..e5a322a15 100644 --- a/x/profile/keeper/coordinator_by_address.go +++ b/x/profile/keeper/coordinator_by_address.go @@ -4,9 +4,9 @@ import ( sdkerrors "cosmossdk.io/errors" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - ignterrors "github.com/ignite/modules/pkg/errors" - "github.com/tendermint/spn/x/profile/types" + + ignterrors "github.com/ignite/modules/pkg/errors" ) // SetCoordinatorByAddress set a specific coordinatorByAddress in the store from its index diff --git a/x/profile/keeper/coordinator_by_address_test.go b/x/profile/keeper/coordinator_by_address_test.go index dbebaf918..264134f74 100644 --- a/x/profile/keeper/coordinator_by_address_test.go +++ b/x/profile/keeper/coordinator_by_address_test.go @@ -4,13 +4,13 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - ignterrors "github.com/ignite/modules/pkg/errors" "github.com/stretchr/testify/require" - testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" "github.com/tendermint/spn/x/profile/keeper" "github.com/tendermint/spn/x/profile/types" + + ignterrors "github.com/ignite/modules/pkg/errors" ) func createNCoordinatorByAddress(keeper *keeper.Keeper, ctx sdk.Context, n int) []types.CoordinatorByAddress { diff --git a/x/profile/keeper/invariants_test.go b/x/profile/keeper/invariants_test.go index 5b80e5cf8..bb9c7c86d 100644 --- a/x/profile/keeper/invariants_test.go +++ b/x/profile/keeper/invariants_test.go @@ -3,10 +3,8 @@ package keeper_test import ( "testing" - testkeeper "github.com/tendermint/spn/testutil/keeper" - "github.com/stretchr/testify/require" - + testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" "github.com/tendermint/spn/x/profile/keeper" "github.com/tendermint/spn/x/profile/types" diff --git a/x/profile/keeper/keeper.go b/x/profile/keeper/keeper.go index e10f01030..786dfd686 100644 --- a/x/profile/keeper/keeper.go +++ b/x/profile/keeper/keeper.go @@ -3,10 +3,10 @@ package keeper import ( "fmt" + "github.com/cometbft/cometbft/libs/log" "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/tendermint/tendermint/libs/log" "github.com/tendermint/spn/x/profile/types" ) diff --git a/x/profile/keeper/msg_add_validator_operator_address_test.go b/x/profile/keeper/msg_add_validator_operator_address_test.go index 8ce0a14dc..d13feacb3 100644 --- a/x/profile/keeper/msg_add_validator_operator_address_test.go +++ b/x/profile/keeper/msg_add_validator_operator_address_test.go @@ -3,11 +3,9 @@ package keeper_test import ( "testing" - testkeeper "github.com/tendermint/spn/testutil/keeper" - sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - + testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" "github.com/tendermint/spn/x/profile/types" ) diff --git a/x/profile/keeper/msg_create_coordinator_test.go b/x/profile/keeper/msg_create_coordinator_test.go index 90ddab6a7..699b42430 100644 --- a/x/profile/keeper/msg_create_coordinator_test.go +++ b/x/profile/keeper/msg_create_coordinator_test.go @@ -3,11 +3,9 @@ package keeper_test import ( "testing" - testkeeper "github.com/tendermint/spn/testutil/keeper" - sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - + testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" "github.com/tendermint/spn/x/profile/types" ) diff --git a/x/profile/keeper/msg_disable_coordinator.go b/x/profile/keeper/msg_disable_coordinator.go index e7699ffde..1eebd8317 100644 --- a/x/profile/keeper/msg_disable_coordinator.go +++ b/x/profile/keeper/msg_disable_coordinator.go @@ -5,9 +5,9 @@ import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - ignterrors "github.com/ignite/modules/pkg/errors" - "github.com/tendermint/spn/x/profile/types" + + ignterrors "github.com/ignite/modules/pkg/errors" ) func (k msgServer) DisableCoordinator( diff --git a/x/profile/keeper/msg_disable_coordinator_test.go b/x/profile/keeper/msg_disable_coordinator_test.go index 841b1ae1c..687061b38 100644 --- a/x/profile/keeper/msg_disable_coordinator_test.go +++ b/x/profile/keeper/msg_disable_coordinator_test.go @@ -3,11 +3,9 @@ package keeper_test import ( "testing" - testkeeper "github.com/tendermint/spn/testutil/keeper" - sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - + testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" "github.com/tendermint/spn/x/profile/types" ) diff --git a/x/profile/keeper/msg_update_coordinator_address.go b/x/profile/keeper/msg_update_coordinator_address.go index 67e1c1edc..25550b5ff 100644 --- a/x/profile/keeper/msg_update_coordinator_address.go +++ b/x/profile/keeper/msg_update_coordinator_address.go @@ -5,10 +5,11 @@ import ( "fmt" sdkerrors "cosmossdk.io/errors" - sdk "github.com/cosmos/cosmos-sdk/types" - ignterrors "github.com/ignite/modules/pkg/errors" + sdk "github.com/cosmos/cosmos-sdk/types" "github.com/tendermint/spn/x/profile/types" + + ignterrors "github.com/ignite/modules/pkg/errors" ) func (k msgServer) UpdateCoordinatorAddress( diff --git a/x/profile/keeper/msg_update_coordinator_address_test.go b/x/profile/keeper/msg_update_coordinator_address_test.go index 2d6facf1d..05ad4b12b 100644 --- a/x/profile/keeper/msg_update_coordinator_address_test.go +++ b/x/profile/keeper/msg_update_coordinator_address_test.go @@ -3,11 +3,9 @@ package keeper_test import ( "testing" - testkeeper "github.com/tendermint/spn/testutil/keeper" - sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - + testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" "github.com/tendermint/spn/x/profile/types" ) diff --git a/x/profile/keeper/msg_update_coordinator_description.go b/x/profile/keeper/msg_update_coordinator_description.go index fa1772e43..c4d9b6c72 100644 --- a/x/profile/keeper/msg_update_coordinator_description.go +++ b/x/profile/keeper/msg_update_coordinator_description.go @@ -5,9 +5,9 @@ import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - ignterrors "github.com/ignite/modules/pkg/errors" - "github.com/tendermint/spn/x/profile/types" + + ignterrors "github.com/ignite/modules/pkg/errors" ) func (k msgServer) UpdateCoordinatorDescription( diff --git a/x/profile/keeper/msg_update_coordinator_description_test.go b/x/profile/keeper/msg_update_coordinator_description_test.go index 757591ffc..2b01d0a6b 100644 --- a/x/profile/keeper/msg_update_coordinator_description_test.go +++ b/x/profile/keeper/msg_update_coordinator_description_test.go @@ -3,11 +3,9 @@ package keeper_test import ( "testing" - testkeeper "github.com/tendermint/spn/testutil/keeper" - sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - + testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" "github.com/tendermint/spn/x/profile/types" ) diff --git a/x/profile/keeper/msg_update_validator_description.go b/x/profile/keeper/msg_update_validator_description.go index 515ef7fc3..0b0abf91c 100644 --- a/x/profile/keeper/msg_update_validator_description.go +++ b/x/profile/keeper/msg_update_validator_description.go @@ -4,7 +4,6 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/tendermint/spn/x/profile/types" ) diff --git a/x/profile/keeper/msg_update_validator_description_test.go b/x/profile/keeper/msg_update_validator_description_test.go index 8f89abfdd..71c9ebd32 100644 --- a/x/profile/keeper/msg_update_validator_description_test.go +++ b/x/profile/keeper/msg_update_validator_description_test.go @@ -3,11 +3,9 @@ package keeper_test import ( "testing" - testkeeper "github.com/tendermint/spn/testutil/keeper" - sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - + testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" "github.com/tendermint/spn/x/profile/types" ) diff --git a/x/profile/keeper/validator_by_operator_address.go b/x/profile/keeper/validator_by_operator_address.go index 0e81b90a5..abf711c49 100644 --- a/x/profile/keeper/validator_by_operator_address.go +++ b/x/profile/keeper/validator_by_operator_address.go @@ -3,7 +3,6 @@ package keeper import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/tendermint/spn/x/profile/types" ) diff --git a/x/profile/keeper/validator_by_operator_address_test.go b/x/profile/keeper/validator_by_operator_address_test.go index 189b79f7b..58aa8404b 100644 --- a/x/profile/keeper/validator_by_operator_address_test.go +++ b/x/profile/keeper/validator_by_operator_address_test.go @@ -5,7 +5,6 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/nullify" "github.com/tendermint/spn/testutil/sample" diff --git a/x/profile/keeper/validator_test.go b/x/profile/keeper/validator_test.go index 75c79b049..b5b1d496f 100644 --- a/x/profile/keeper/validator_test.go +++ b/x/profile/keeper/validator_test.go @@ -5,7 +5,6 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" "github.com/tendermint/spn/x/profile/keeper" diff --git a/x/profile/module.go b/x/profile/module.go index 56980aea3..442955d76 100644 --- a/x/profile/module.go +++ b/x/profile/module.go @@ -11,7 +11,7 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - abci "github.com/tendermint/tendermint/abci/types" + abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" @@ -125,19 +125,9 @@ func (am AppModule) Name() string { return am.AppModuleBasic.Name() } -// Route returns the profile module's message routing key. -func (am AppModule) Route() sdk.Route { - return sdk.Route{} -} - // QuerierRoute returns the profile module's query routing key. func (AppModule) QuerierRoute() string { return types.QuerierRoute } -// LegacyQuerierHandler returns the profile module's Querier. -func (am AppModule) LegacyQuerierHandler(_ *codec.LegacyAmino) sdk.Querier { - return nil -} - // RegisterServices registers a GRPC query service to respond to the // module-specific GRPC queries. func (am AppModule) RegisterServices(cfg module.Configurator) { diff --git a/x/profile/module_simulation.go b/x/profile/module_simulation.go index 404504e61..3f08bc294 100644 --- a/x/profile/module_simulation.go +++ b/x/profile/module_simulation.go @@ -45,8 +45,8 @@ func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedP } // RandomizedParams creates randomized param changes for the simulator -func (am AppModule) RandomizedParams(_ *rand.Rand) []simtypes.ParamChange { - return []simtypes.ParamChange{} +func (am AppModule) RandomizedParams(_ *rand.Rand) []simtypes.LegacyParamChange { + return []simtypes.LegacyParamChange{} } // RegisterStoreDecoder registers a decoder diff --git a/x/profile/simulation/simulation.go b/x/profile/simulation/simulation.go index e6b841d21..b6095ecc6 100644 --- a/x/profile/simulation/simulation.go +++ b/x/profile/simulation/simulation.go @@ -5,12 +5,11 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" - "github.com/cosmos/cosmos-sdk/simapp/helpers" - simappparams "github.com/cosmos/cosmos-sdk/simapp/params" + simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" sdksimulation "github.com/cosmos/cosmos-sdk/x/simulation" - + "github.com/tendermint/spn/testutil/encoding" "github.com/tendermint/spn/testutil/sample" "github.com/tendermint/spn/testutil/simulation" "github.com/tendermint/spn/x/profile/keeper" @@ -46,12 +45,12 @@ func genAndDeliverTxWithRandFeesAddOpAddr(txCtx sdksimulation.OperationInput, op return simtypes.NoOpMsg(txCtx.ModuleName, txCtx.MsgType, "unable to generate fees"), nil, err } - tx, err := helpers.GenSignedMockTx( + tx, err := simtestutil.GenSignedMockTx( txCtx.R, txCtx.TxGen, []sdk.Msg{txCtx.Msg}, fees, - helpers.DefaultGenTxGas, + simtestutil.DefaultGenTxGas, txCtx.Context.ChainID(), accNumbers, accSequences, @@ -89,7 +88,7 @@ func SimulateMsgUpdateValidatorDescription(ak types.AccountKeeper, bk types.Bank txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: msg, MsgType: msg.Type(), @@ -100,7 +99,7 @@ func SimulateMsgUpdateValidatorDescription(ak types.AccountKeeper, bk types.Bank ModuleName: types.ModuleName, CoinsSpentInMsg: sdk.NewCoins(), } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } @@ -123,7 +122,7 @@ func SimulateMsgAddValidatorOperatorAddress(ak types.AccountKeeper, bk types.Ban txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: msg, MsgType: msg.Type(), @@ -159,7 +158,7 @@ func SimulateMsgCreateCoordinator(ak types.AccountKeeper, bk types.BankKeeper, k txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: msg, MsgType: msg.Type(), @@ -170,7 +169,7 @@ func SimulateMsgCreateCoordinator(ak types.AccountKeeper, bk types.BankKeeper, k ModuleName: types.ModuleName, CoinsSpentInMsg: sdk.NewCoins(), } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } @@ -197,7 +196,7 @@ func SimulateMsgUpdateCoordinatorDescription(ak types.AccountKeeper, bk types.Ba txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: msg, MsgType: msg.Type(), @@ -208,7 +207,7 @@ func SimulateMsgUpdateCoordinatorDescription(ak types.AccountKeeper, bk types.Ba ModuleName: types.ModuleName, CoinsSpentInMsg: sdk.NewCoins(), } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } @@ -231,7 +230,7 @@ func SimulateMsgUpdateCoordinatorAddress(ak types.AccountKeeper, bk types.BankKe txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: msg, MsgType: msg.Type(), @@ -242,7 +241,7 @@ func SimulateMsgUpdateCoordinatorAddress(ak types.AccountKeeper, bk types.BankKe ModuleName: types.ModuleName, CoinsSpentInMsg: sdk.NewCoins(), } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } @@ -263,7 +262,7 @@ func SimulateMsgDisableCoordinator(ak types.AccountKeeper, bk types.BankKeeper, txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: msg, MsgType: msg.Type(), @@ -274,6 +273,6 @@ func SimulateMsgDisableCoordinator(ak types.AccountKeeper, bk types.BankKeeper, ModuleName: types.ModuleName, CoinsSpentInMsg: sdk.NewCoins(), } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } diff --git a/x/profile/simulation/store.go b/x/profile/simulation/store.go index 5e834327c..4c571e272 100644 --- a/x/profile/simulation/store.go +++ b/x/profile/simulation/store.go @@ -6,7 +6,6 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/tendermint/spn/x/profile/keeper" "github.com/tendermint/spn/x/profile/types" ) diff --git a/x/profile/simulation/store_test.go b/x/profile/simulation/store_test.go index 45ed43716..ea915e392 100644 --- a/x/profile/simulation/store_test.go +++ b/x/profile/simulation/store_test.go @@ -5,7 +5,6 @@ import ( "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/stretchr/testify/require" - testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" profilesim "github.com/tendermint/spn/x/profile/simulation" diff --git a/x/profile/types/coordinator.pb.go b/x/profile/types/coordinator.pb.go index f00744d6d..12fc8a259 100644 --- a/x/profile/types/coordinator.pb.go +++ b/x/profile/types/coordinator.pb.go @@ -1,13 +1,13 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: profile/coordinator.proto +// source: spn/profile/coordinator.proto package types import ( fmt "fmt" _ "github.com/cosmos/cosmos-proto" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -35,7 +35,7 @@ func (m *Coordinator) Reset() { *m = Coordinator{} } func (m *Coordinator) String() string { return proto.CompactTextString(m) } func (*Coordinator) ProtoMessage() {} func (*Coordinator) Descriptor() ([]byte, []int) { - return fileDescriptor_8b9115302ae8cca0, []int{0} + return fileDescriptor_f7929f77698b58d3, []int{0} } func (m *Coordinator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -102,7 +102,7 @@ func (m *CoordinatorDescription) Reset() { *m = CoordinatorDescription{} func (m *CoordinatorDescription) String() string { return proto.CompactTextString(m) } func (*CoordinatorDescription) ProtoMessage() {} func (*CoordinatorDescription) Descriptor() ([]byte, []int) { - return fileDescriptor_8b9115302ae8cca0, []int{1} + return fileDescriptor_f7929f77698b58d3, []int{1} } func (m *CoordinatorDescription) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -161,7 +161,7 @@ func (m *CoordinatorByAddress) Reset() { *m = CoordinatorByAddress{} } func (m *CoordinatorByAddress) String() string { return proto.CompactTextString(m) } func (*CoordinatorByAddress) ProtoMessage() {} func (*CoordinatorByAddress) Descriptor() ([]byte, []int) { - return fileDescriptor_8b9115302ae8cca0, []int{2} + return fileDescriptor_f7929f77698b58d3, []int{2} } func (m *CoordinatorByAddress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -205,37 +205,37 @@ func (m *CoordinatorByAddress) GetCoordinatorID() uint64 { } func init() { - proto.RegisterType((*Coordinator)(nil), "tendermint.spn.profile.Coordinator") - proto.RegisterType((*CoordinatorDescription)(nil), "tendermint.spn.profile.CoordinatorDescription") - proto.RegisterType((*CoordinatorByAddress)(nil), "tendermint.spn.profile.CoordinatorByAddress") + proto.RegisterType((*Coordinator)(nil), "spn.profile.Coordinator") + proto.RegisterType((*CoordinatorDescription)(nil), "spn.profile.CoordinatorDescription") + proto.RegisterType((*CoordinatorByAddress)(nil), "spn.profile.CoordinatorByAddress") } -func init() { proto.RegisterFile("profile/coordinator.proto", fileDescriptor_8b9115302ae8cca0) } +func init() { proto.RegisterFile("spn/profile/coordinator.proto", fileDescriptor_f7929f77698b58d3) } -var fileDescriptor_8b9115302ae8cca0 = []byte{ +var fileDescriptor_f7929f77698b58d3 = []byte{ // 350 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x52, 0xbd, 0x4e, 0xc3, 0x30, - 0x18, 0x8c, 0x4b, 0xd5, 0x1f, 0x57, 0x2c, 0x56, 0x55, 0xa5, 0x1d, 0x42, 0x54, 0x31, 0x84, 0x01, - 0x47, 0x2a, 0x4f, 0x40, 0xda, 0x85, 0xd5, 0x48, 0x0c, 0x2c, 0x28, 0x8d, 0x4d, 0x6a, 0xa9, 0xb5, - 0x2d, 0xdb, 0xfc, 0xf4, 0x2d, 0x78, 0x18, 0x1e, 0xa2, 0x63, 0xc5, 0x02, 0x13, 0x42, 0xed, 0x8b, - 0xa0, 0xe6, 0x87, 0x06, 0xd1, 0x81, 0x2d, 0x97, 0x3b, 0xdf, 0xf7, 0xdd, 0xe9, 0x83, 0x7d, 0xa5, - 0xe5, 0x3d, 0x9f, 0xb3, 0x30, 0x91, 0x52, 0x53, 0x2e, 0x62, 0x2b, 0x35, 0x56, 0x5a, 0x5a, 0x89, - 0x7a, 0x96, 0x09, 0xca, 0xf4, 0x82, 0x0b, 0x8b, 0x8d, 0x12, 0xb8, 0x50, 0x0e, 0xba, 0xa9, 0x4c, - 0x65, 0x26, 0x09, 0x77, 0x5f, 0xb9, 0x7a, 0xd0, 0x4f, 0xa4, 0x59, 0x48, 0x73, 0x97, 0x13, 0x39, - 0xc8, 0xa9, 0xe1, 0x3b, 0x80, 0x9d, 0xf1, 0xde, 0x1e, 0x9d, 0xc2, 0xe3, 0xca, 0xb4, 0xab, 0x89, - 0x0b, 0x7c, 0x10, 0xd4, 0xc9, 0xef, 0x9f, 0x68, 0x04, 0x9b, 0x31, 0xa5, 0x9a, 0x19, 0xe3, 0xd6, - 0x7c, 0x10, 0xb4, 0x23, 0xf7, 0xed, 0xf5, 0xbc, 0x5b, 0x18, 0x5f, 0xe6, 0xcc, 0xb5, 0xd5, 0x5c, - 0xa4, 0xa4, 0x14, 0xa2, 0x1b, 0xd8, 0xa1, 0xcc, 0x24, 0x9a, 0x2b, 0xcb, 0xa5, 0x70, 0x8f, 0x7c, - 0x10, 0x74, 0x46, 0x18, 0x1f, 0x0e, 0x82, 0x2b, 0x3b, 0x4d, 0xf6, 0xaf, 0xa2, 0xfa, 0xea, 0xf3, - 0xc4, 0x21, 0x55, 0x23, 0xd4, 0x83, 0x8d, 0x38, 0xb1, 0xfc, 0x91, 0xb9, 0x75, 0x1f, 0x04, 0x2d, - 0x52, 0xa0, 0xe1, 0x0c, 0xf6, 0x0e, 0x9b, 0xa0, 0x01, 0x6c, 0x71, 0xca, 0x84, 0xe5, 0x76, 0x99, - 0xc5, 0x6b, 0x93, 0x1f, 0x8c, 0x5c, 0xd8, 0x7c, 0x62, 0x53, 0xc3, 0x2d, 0xcb, 0x93, 0x91, 0x12, - 0xee, 0x18, 0xca, 0x6c, 0xcc, 0xe7, 0x26, 0xdb, 0xbd, 0x4d, 0x4a, 0x38, 0x54, 0xb0, 0x5b, 0x99, - 0x14, 0x2d, 0x8b, 0x02, 0xaa, 0x2d, 0x81, 0xff, 0xb6, 0xf4, 0xa7, 0xff, 0xda, 0x81, 0xfe, 0xa3, - 0xf1, 0x6a, 0xe3, 0x81, 0xf5, 0xc6, 0x03, 0x5f, 0x1b, 0x0f, 0xbc, 0x6c, 0x3d, 0x67, 0xbd, 0xf5, - 0x9c, 0x8f, 0xad, 0xe7, 0xdc, 0x9e, 0xa5, 0xdc, 0xce, 0x1e, 0xa6, 0x38, 0x91, 0x8b, 0x70, 0x5f, - 0x6d, 0x68, 0x94, 0x08, 0x9f, 0xc3, 0xf2, 0x9e, 0xec, 0x52, 0x31, 0x33, 0x6d, 0x64, 0x17, 0x70, - 0xf1, 0x1d, 0x00, 0x00, 0xff, 0xff, 0x97, 0x1b, 0x37, 0x3c, 0x67, 0x02, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x52, 0xbb, 0x4e, 0xc3, 0x30, + 0x14, 0x8d, 0x4b, 0xd5, 0x87, 0x23, 0x16, 0xab, 0xaa, 0x42, 0x25, 0x42, 0x54, 0x18, 0xc2, 0x40, + 0x22, 0x95, 0x2f, 0x20, 0xed, 0x82, 0xd8, 0xcc, 0xc6, 0x82, 0xd2, 0xd8, 0xa4, 0x96, 0x5a, 0xdb, + 0xb2, 0xcd, 0xa3, 0x7f, 0xc1, 0xc7, 0xf0, 0x11, 0x1d, 0x18, 0x2a, 0x26, 0x26, 0x84, 0xda, 0x1f, + 0x41, 0xcd, 0xa3, 0x0d, 0xa2, 0x03, 0x5b, 0xce, 0x3d, 0x37, 0xf7, 0x9e, 0x73, 0x7c, 0xe1, 0xb1, + 0x96, 0x3c, 0x94, 0x4a, 0x3c, 0xb0, 0x29, 0x0d, 0x13, 0x21, 0x14, 0x61, 0x3c, 0x36, 0x42, 0x05, + 0x52, 0x09, 0x23, 0x90, 0xad, 0x25, 0x0f, 0x0a, 0xba, 0xd7, 0x49, 0x45, 0x2a, 0xb2, 0x7a, 0xb8, + 0xf9, 0xca, 0x5b, 0x7a, 0x47, 0x89, 0xd0, 0x33, 0xa1, 0xef, 0x73, 0x22, 0x07, 0x39, 0xd5, 0x7f, + 0x07, 0xd0, 0x1e, 0xee, 0x66, 0xa2, 0x33, 0x78, 0x58, 0x59, 0x71, 0x3d, 0x72, 0x80, 0x07, 0xfc, + 0x3a, 0xfe, 0x5d, 0x44, 0x03, 0xd8, 0x8c, 0x09, 0x51, 0x54, 0x6b, 0xa7, 0xe6, 0x01, 0xbf, 0x1d, + 0x39, 0x1f, 0x6f, 0x17, 0x9d, 0x62, 0xf0, 0x55, 0xce, 0xdc, 0x1a, 0xc5, 0x78, 0x8a, 0xcb, 0x46, + 0x74, 0x03, 0x6d, 0x42, 0x75, 0xa2, 0x98, 0x34, 0x4c, 0x70, 0xe7, 0xc0, 0x03, 0xbe, 0x3d, 0x38, + 0x0d, 0x2a, 0xea, 0x83, 0x8a, 0x90, 0xd1, 0xae, 0x35, 0xaa, 0x2f, 0xbe, 0x4e, 0x2c, 0x5c, 0xfd, + 0x1b, 0x75, 0x61, 0x23, 0x4e, 0x0c, 0x7b, 0xa2, 0x4e, 0xdd, 0x03, 0x7e, 0x0b, 0x17, 0xa8, 0x3f, + 0x81, 0xdd, 0xfd, 0x43, 0x50, 0x0f, 0xb6, 0x18, 0xa1, 0xdc, 0x30, 0x33, 0xcf, 0x3c, 0xb5, 0xf1, + 0x16, 0x23, 0x07, 0x36, 0x9f, 0xe9, 0x58, 0x33, 0x43, 0x73, 0x3b, 0xb8, 0x84, 0x1b, 0x86, 0x50, + 0x13, 0xb3, 0xa9, 0xce, 0x04, 0xb7, 0x71, 0x09, 0xfb, 0x12, 0x76, 0x2a, 0x9b, 0xa2, 0x79, 0xe1, + 0xba, 0x1a, 0x0d, 0xf8, 0x6f, 0x34, 0x7f, 0x42, 0xaf, 0xed, 0x09, 0x3d, 0x1a, 0x2e, 0x56, 0x2e, + 0x58, 0xae, 0x5c, 0xf0, 0xbd, 0x72, 0xc1, 0xeb, 0xda, 0xb5, 0x96, 0x6b, 0xd7, 0xfa, 0x5c, 0xbb, + 0xd6, 0xdd, 0x79, 0xca, 0xcc, 0xe4, 0x71, 0x1c, 0x24, 0x62, 0x16, 0x1a, 0xca, 0x09, 0x55, 0x33, + 0xc6, 0x4d, 0xb8, 0xb9, 0x9b, 0x97, 0xed, 0xe5, 0x98, 0xb9, 0xa4, 0x7a, 0xdc, 0xc8, 0x9e, 0xfd, + 0xf2, 0x27, 0x00, 0x00, 0xff, 0xff, 0x4b, 0xec, 0xd7, 0x45, 0x55, 0x02, 0x00, 0x00, } func (m *Coordinator) Marshal() (dAtA []byte, err error) { diff --git a/x/profile/types/events.pb.go b/x/profile/types/events.pb.go index d06eebdcc..efdb795a0 100644 --- a/x/profile/types/events.pb.go +++ b/x/profile/types/events.pb.go @@ -1,13 +1,13 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: profile/events.proto +// source: spn/profile/events.proto package types import ( fmt "fmt" _ "github.com/cosmos/cosmos-proto" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -33,7 +33,7 @@ func (m *EventCoordinatorCreated) Reset() { *m = EventCoordinatorCreated func (m *EventCoordinatorCreated) String() string { return proto.CompactTextString(m) } func (*EventCoordinatorCreated) ProtoMessage() {} func (*EventCoordinatorCreated) Descriptor() ([]byte, []int) { - return fileDescriptor_2f195f0d2c25dc7b, []int{0} + return fileDescriptor_ff5cd48d62823f5f, []int{0} } func (m *EventCoordinatorCreated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -85,7 +85,7 @@ func (m *EventCoordinatorAddressUpdated) Reset() { *m = EventCoordinator func (m *EventCoordinatorAddressUpdated) String() string { return proto.CompactTextString(m) } func (*EventCoordinatorAddressUpdated) ProtoMessage() {} func (*EventCoordinatorAddressUpdated) Descriptor() ([]byte, []int) { - return fileDescriptor_2f195f0d2c25dc7b, []int{1} + return fileDescriptor_ff5cd48d62823f5f, []int{1} } func (m *EventCoordinatorAddressUpdated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -137,7 +137,7 @@ func (m *EventCoordinatorDisabled) Reset() { *m = EventCoordinatorDisabl func (m *EventCoordinatorDisabled) String() string { return proto.CompactTextString(m) } func (*EventCoordinatorDisabled) ProtoMessage() {} func (*EventCoordinatorDisabled) Descriptor() ([]byte, []int) { - return fileDescriptor_2f195f0d2c25dc7b, []int{2} + return fileDescriptor_ff5cd48d62823f5f, []int{2} } func (m *EventCoordinatorDisabled) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -189,7 +189,7 @@ func (m *EventValidatorCreated) Reset() { *m = EventValidatorCreated{} } func (m *EventValidatorCreated) String() string { return proto.CompactTextString(m) } func (*EventValidatorCreated) ProtoMessage() {} func (*EventValidatorCreated) Descriptor() ([]byte, []int) { - return fileDescriptor_2f195f0d2c25dc7b, []int{3} + return fileDescriptor_ff5cd48d62823f5f, []int{3} } func (m *EventValidatorCreated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -243,7 +243,7 @@ func (m *EventValidatorOperatorAddressesUpdated) Reset() { func (m *EventValidatorOperatorAddressesUpdated) String() string { return proto.CompactTextString(m) } func (*EventValidatorOperatorAddressesUpdated) ProtoMessage() {} func (*EventValidatorOperatorAddressesUpdated) Descriptor() ([]byte, []int) { - return fileDescriptor_2f195f0d2c25dc7b, []int{4} + return fileDescriptor_ff5cd48d62823f5f, []int{4} } func (m *EventValidatorOperatorAddressesUpdated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -287,39 +287,39 @@ func (m *EventValidatorOperatorAddressesUpdated) GetOperatorAddresses() []string } func init() { - proto.RegisterType((*EventCoordinatorCreated)(nil), "tendermint.spn.profile.EventCoordinatorCreated") - proto.RegisterType((*EventCoordinatorAddressUpdated)(nil), "tendermint.spn.profile.EventCoordinatorAddressUpdated") - proto.RegisterType((*EventCoordinatorDisabled)(nil), "tendermint.spn.profile.EventCoordinatorDisabled") - proto.RegisterType((*EventValidatorCreated)(nil), "tendermint.spn.profile.EventValidatorCreated") - proto.RegisterType((*EventValidatorOperatorAddressesUpdated)(nil), "tendermint.spn.profile.EventValidatorOperatorAddressesUpdated") + proto.RegisterType((*EventCoordinatorCreated)(nil), "spn.profile.EventCoordinatorCreated") + proto.RegisterType((*EventCoordinatorAddressUpdated)(nil), "spn.profile.EventCoordinatorAddressUpdated") + proto.RegisterType((*EventCoordinatorDisabled)(nil), "spn.profile.EventCoordinatorDisabled") + proto.RegisterType((*EventValidatorCreated)(nil), "spn.profile.EventValidatorCreated") + proto.RegisterType((*EventValidatorOperatorAddressesUpdated)(nil), "spn.profile.EventValidatorOperatorAddressesUpdated") } -func init() { proto.RegisterFile("profile/events.proto", fileDescriptor_2f195f0d2c25dc7b) } +func init() { proto.RegisterFile("spn/profile/events.proto", fileDescriptor_ff5cd48d62823f5f) } -var fileDescriptor_2f195f0d2c25dc7b = []byte{ - // 345 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x29, 0x28, 0xca, 0x4f, - 0xcb, 0xcc, 0x49, 0xd5, 0x4f, 0x2d, 0x4b, 0xcd, 0x2b, 0x29, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x12, 0x2b, 0x49, 0xcd, 0x4b, 0x49, 0x2d, 0xca, 0xcd, 0xcc, 0x2b, 0xd1, 0x2b, 0x2e, 0xc8, - 0xd3, 0x83, 0x2a, 0x92, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, 0xd1, 0x07, 0xb1, 0x20, 0xaa, - 0xa5, 0x24, 0x93, 0xf3, 0x8b, 0x73, 0xf3, 0x8b, 0xe3, 0x21, 0x12, 0x10, 0x0e, 0x4c, 0x0a, 0x66, - 0x7c, 0x72, 0x7e, 0x7e, 0x51, 0x4a, 0x66, 0x5e, 0x62, 0x49, 0x7e, 0x11, 0x54, 0x4a, 0x1c, 0x26, - 0x55, 0x96, 0x98, 0x93, 0x99, 0x82, 0x90, 0x50, 0x2a, 0xe6, 0x12, 0x77, 0x05, 0x39, 0xc6, 0x19, - 0xa1, 0xc5, 0xb9, 0x28, 0x35, 0xb1, 0x24, 0x35, 0x45, 0x48, 0x85, 0x8b, 0x17, 0xc9, 0x20, 0x4f, - 0x17, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x96, 0x20, 0x54, 0x41, 0x21, 0x23, 0x2e, 0xf6, 0xc4, 0x94, - 0x94, 0xa2, 0xd4, 0xe2, 0x62, 0x09, 0x26, 0x05, 0x46, 0x0d, 0x4e, 0x27, 0x89, 0x4b, 0x5b, 0x74, - 0x45, 0xa0, 0xee, 0x72, 0x84, 0xc8, 0x04, 0x97, 0x14, 0x65, 0xe6, 0xa5, 0x07, 0xc1, 0x14, 0x2a, - 0x35, 0x30, 0x72, 0xc9, 0xa1, 0xdb, 0x0a, 0x55, 0x1a, 0x5a, 0x90, 0x42, 0x82, 0xe5, 0x16, 0x5c, - 0x5c, 0x79, 0xa9, 0xe5, 0x8e, 0x44, 0xda, 0x8f, 0xa4, 0x56, 0xa9, 0x84, 0x4b, 0x02, 0xdd, 0x05, - 0x2e, 0x99, 0xc5, 0x89, 0x49, 0x39, 0x34, 0xf5, 0x78, 0x25, 0x97, 0x28, 0xd8, 0xd6, 0x30, 0x58, - 0x2c, 0xc0, 0xc2, 0x1a, 0xc9, 0x30, 0x46, 0x22, 0x0d, 0x13, 0xd2, 0xe1, 0x12, 0xcc, 0x2f, 0x48, - 0x2d, 0x42, 0x0a, 0xbc, 0x54, 0x90, 0x53, 0x98, 0x35, 0x38, 0x83, 0x30, 0x25, 0x94, 0xba, 0x18, - 0xb9, 0xd4, 0x50, 0xed, 0xf6, 0x47, 0x57, 0x03, 0x0b, 0x7b, 0x9a, 0x3b, 0xc6, 0xc9, 0xf9, 0xc4, - 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, - 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x34, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, - 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x11, 0xf9, 0x42, 0xbf, 0xb8, 0x20, 0x4f, 0xbf, 0x42, 0x1f, 0x96, - 0x88, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x29, 0xd8, 0x18, 0x10, 0x00, 0x00, 0xff, - 0xff, 0xe2, 0x71, 0xbb, 0x3a, 0x56, 0x03, 0x00, 0x00, +var fileDescriptor_ff5cd48d62823f5f = []byte{ + // 344 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x28, 0x2e, 0xc8, 0xd3, + 0x2f, 0x28, 0xca, 0x4f, 0xcb, 0xcc, 0x49, 0xd5, 0x4f, 0x2d, 0x4b, 0xcd, 0x2b, 0x29, 0xd6, 0x2b, + 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x2e, 0x2e, 0xc8, 0xd3, 0x83, 0xca, 0x48, 0x89, 0xa4, 0xe7, + 0xa7, 0xe7, 0x83, 0xc5, 0xf5, 0x41, 0x2c, 0x88, 0x12, 0x29, 0xc9, 0xe4, 0xfc, 0xe2, 0xdc, 0xfc, + 0xe2, 0x78, 0x88, 0x04, 0x84, 0x03, 0x95, 0x92, 0x45, 0x36, 0x37, 0x39, 0x3f, 0xbf, 0x28, 0x25, + 0x33, 0x2f, 0xb1, 0x24, 0xbf, 0x08, 0x2a, 0x2d, 0x8d, 0x2c, 0x5d, 0x96, 0x98, 0x93, 0x99, 0x82, + 0x90, 0x54, 0x2a, 0xe6, 0x12, 0x77, 0x05, 0xb9, 0xc4, 0x19, 0xa1, 0xcd, 0xb9, 0x28, 0x35, 0xb1, + 0x24, 0x35, 0x45, 0x48, 0x85, 0x8b, 0x17, 0xc9, 0x30, 0x4f, 0x17, 0x09, 0x46, 0x05, 0x46, 0x0d, + 0x96, 0x20, 0x54, 0x41, 0x21, 0x23, 0x2e, 0xf6, 0xc4, 0x94, 0x94, 0xa2, 0xd4, 0xe2, 0x62, 0x09, + 0x26, 0x05, 0x46, 0x0d, 0x4e, 0x27, 0x89, 0x4b, 0x5b, 0x74, 0x45, 0xa0, 0xee, 0x73, 0x84, 0xc8, + 0x04, 0x97, 0x14, 0x65, 0xe6, 0xa5, 0x07, 0xc1, 0x14, 0x2a, 0x35, 0x30, 0x72, 0xc9, 0xa1, 0xdb, + 0x0a, 0x55, 0x1a, 0x5a, 0x90, 0x42, 0x82, 0xe5, 0x16, 0x5c, 0x5c, 0x79, 0xa9, 0xe5, 0x8e, 0x44, + 0xda, 0x8f, 0xa4, 0x56, 0xa9, 0x84, 0x4b, 0x02, 0xdd, 0x05, 0x2e, 0x99, 0xc5, 0x89, 0x49, 0x39, + 0x34, 0xf5, 0x78, 0x25, 0x97, 0x28, 0xd8, 0xd6, 0x30, 0x58, 0x2c, 0xc0, 0xc2, 0x1a, 0xc9, 0x30, + 0x46, 0x22, 0x0d, 0x13, 0xd2, 0xe1, 0x12, 0xcc, 0x2f, 0x48, 0x2d, 0x42, 0x0a, 0xbc, 0x54, 0x90, + 0x53, 0x98, 0x35, 0x38, 0x83, 0x30, 0x25, 0x94, 0xba, 0x18, 0xb9, 0xd4, 0x50, 0xed, 0xf6, 0x47, + 0x57, 0x03, 0x0b, 0x7b, 0x9a, 0x3b, 0xc6, 0xc9, 0xf9, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, + 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, + 0xe5, 0x18, 0xa2, 0x34, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x4b, + 0x52, 0xf3, 0x52, 0x52, 0x8b, 0x72, 0x33, 0xf3, 0x4a, 0xf4, 0x41, 0x49, 0xb8, 0x02, 0x9e, 0x88, + 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x29, 0xd8, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, + 0xad, 0xa7, 0x64, 0xec, 0x57, 0x03, 0x00, 0x00, } func (m *EventCoordinatorCreated) Marshal() (dAtA []byte, err error) { diff --git a/x/profile/types/genesis.pb.go b/x/profile/types/genesis.pb.go index 8de92e6f1..d9335daa9 100644 --- a/x/profile/types/genesis.pb.go +++ b/x/profile/types/genesis.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: profile/genesis.proto +// source: spn/profile/genesis.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -36,7 +36,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_db4bc1562021cf42, []int{0} + return fileDescriptor_54d8df4b0bb3c45a, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -101,33 +101,33 @@ func (m *GenesisState) GetCoordinatorsByAddress() []CoordinatorByAddress { } func init() { - proto.RegisterType((*GenesisState)(nil), "tendermint.spn.profile.GenesisState") + proto.RegisterType((*GenesisState)(nil), "spn.profile.GenesisState") } -func init() { proto.RegisterFile("profile/genesis.proto", fileDescriptor_db4bc1562021cf42) } +func init() { proto.RegisterFile("spn/profile/genesis.proto", fileDescriptor_54d8df4b0bb3c45a) } -var fileDescriptor_db4bc1562021cf42 = []byte{ - // 315 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x52, 0xcf, 0x4a, 0xc3, 0x30, - 0x18, 0x6f, 0x6d, 0xf5, 0x10, 0x77, 0x0a, 0x4e, 0xeb, 0x84, 0x38, 0xf5, 0x32, 0x41, 0x12, 0x98, - 0x4f, 0x60, 0x7b, 0xd8, 0x49, 0x84, 0x09, 0x1e, 0xbc, 0x75, 0x6b, 0xec, 0x02, 0x5b, 0x12, 0x92, - 0x4c, 0xac, 0x4f, 0xe1, 0x03, 0xf9, 0x00, 0x3b, 0xee, 0xe8, 0x49, 0xa4, 0x7d, 0x11, 0x59, 0xd7, - 0xda, 0x4e, 0xea, 0x9f, 0xdb, 0xf7, 0xf1, 0xfb, 0xf7, 0xfd, 0xe0, 0x03, 0x6d, 0xa9, 0xc4, 0x03, - 0x9b, 0x52, 0x12, 0x53, 0x4e, 0x35, 0xd3, 0x58, 0x2a, 0x61, 0x04, 0xdc, 0x37, 0x94, 0x47, 0x54, - 0xcd, 0x18, 0x37, 0x58, 0x4b, 0x8e, 0x0b, 0x56, 0x67, 0x2f, 0x16, 0xb1, 0xc8, 0x29, 0x64, 0x35, - 0xad, 0xd9, 0x9d, 0x83, 0xd2, 0xe4, 0x31, 0x9c, 0xb2, 0x28, 0x34, 0x42, 0x15, 0xc0, 0x61, 0x09, - 0x8c, 0x85, 0x50, 0x11, 0xe3, 0x15, 0x74, 0xfa, 0xea, 0x80, 0xd6, 0x60, 0x9d, 0x79, 0x6b, 0x42, - 0x43, 0xe1, 0x00, 0x80, 0x2f, 0xb9, 0xf6, 0xec, 0xae, 0xd3, 0xdb, 0xed, 0x9f, 0xe0, 0xe6, 0x3b, - 0xf0, 0x5d, 0xc9, 0xf4, 0xdd, 0xc5, 0xfb, 0xb1, 0x35, 0xac, 0x49, 0xe1, 0x33, 0x38, 0xaa, 0x36, - 0x3f, 0xb9, 0x91, 0x54, 0xad, 0xc6, 0xab, 0x28, 0x52, 0x54, 0x6b, 0x6f, 0x2b, 0x77, 0xee, 0xff, - 0xed, 0xfc, 0x5d, 0x59, 0x44, 0xfd, 0x66, 0x0e, 0xaf, 0x41, 0xab, 0x56, 0x55, 0x7b, 0x4e, 0x1e, - 0x76, 0xf6, 0x53, 0x58, 0x50, 0x71, 0x0b, 0xf7, 0x0d, 0x39, 0xc4, 0x00, 0xd6, 0xf6, 0x40, 0xcc, - 0xb9, 0xa1, 0xca, 0x73, 0xbb, 0x76, 0xcf, 0x1d, 0x36, 0x20, 0x70, 0x02, 0xda, 0x75, 0xbd, 0x9f, - 0x94, 0xa5, 0xb7, 0xf3, 0x3b, 0x2e, 0xfe, 0x73, 0x47, 0xb2, 0x59, 0xb7, 0xd9, 0xd0, 0x0f, 0x16, - 0x29, 0xb2, 0x97, 0x29, 0xb2, 0x3f, 0x52, 0x64, 0xbf, 0x64, 0xc8, 0x5a, 0x66, 0xc8, 0x7a, 0xcb, - 0x90, 0x75, 0x7f, 0x1e, 0x33, 0x33, 0x99, 0x8f, 0xf0, 0x58, 0xcc, 0x48, 0x15, 0x47, 0xb4, 0xe4, - 0xe4, 0x89, 0x94, 0xff, 0x60, 0x12, 0x49, 0xf5, 0x68, 0x27, 0x7f, 0x85, 0xcb, 0xcf, 0x00, 0x00, - 0x00, 0xff, 0xff, 0xce, 0x38, 0x3b, 0x00, 0x85, 0x02, 0x00, 0x00, +var fileDescriptor_54d8df4b0bb3c45a = []byte{ + // 312 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x91, 0xb1, 0x4e, 0xfb, 0x30, + 0x10, 0xc6, 0x93, 0x7f, 0xfb, 0x67, 0x70, 0x3b, 0x59, 0x80, 0x42, 0x2b, 0x4c, 0x61, 0xa1, 0x2c, + 0x8e, 0x04, 0x2b, 0x0b, 0xc9, 0xc0, 0x88, 0x54, 0x24, 0x06, 0x24, 0x86, 0xb4, 0x31, 0xc1, 0x52, + 0xeb, 0xb3, 0x6c, 0x17, 0x91, 0xb7, 0xe8, 0x63, 0x75, 0xec, 0xc8, 0x84, 0x50, 0xf2, 0x22, 0x28, + 0x69, 0xda, 0x38, 0xa8, 0x65, 0xbb, 0xf3, 0xf7, 0xdd, 0xef, 0xf3, 0xe9, 0xd0, 0x89, 0x96, 0xc2, + 0x97, 0x0a, 0x5e, 0xf9, 0x94, 0xf9, 0x09, 0x13, 0x4c, 0x73, 0x4d, 0xa5, 0x02, 0x03, 0xb8, 0xa3, + 0xa5, 0xa0, 0x95, 0xd4, 0x3b, 0x4c, 0x20, 0x81, 0xf2, 0xdd, 0x2f, 0xaa, 0xb5, 0xa5, 0xd7, 0xb7, + 0xa7, 0xdf, 0xa3, 0x29, 0x8f, 0x23, 0x03, 0xaa, 0x12, 0x4f, 0x6d, 0x71, 0x02, 0xa0, 0x62, 0x2e, + 0x6a, 0xf9, 0x62, 0xd1, 0x42, 0xdd, 0xfb, 0x75, 0xe0, 0xa3, 0x89, 0x0c, 0xc3, 0xb7, 0x08, 0x6d, + 0x11, 0xda, 0x73, 0x07, 0xad, 0x61, 0xe7, 0xfa, 0x98, 0x5a, 0x9f, 0xa0, 0x4f, 0x1b, 0x39, 0x68, + 0x2f, 0xbf, 0xce, 0x9c, 0x91, 0xe5, 0xc7, 0x80, 0xfa, 0x75, 0x17, 0xa4, 0x0f, 0x92, 0xa9, 0xa2, + 0xbc, 0x8b, 0x63, 0xc5, 0xb4, 0xf6, 0xfe, 0x95, 0xb8, 0xcb, 0x3d, 0xb8, 0xdf, 0xf6, 0x8a, 0xff, + 0x17, 0x11, 0x07, 0xa8, 0x6b, 0x2d, 0xa5, 0xbd, 0x56, 0x99, 0xe0, 0x35, 0x12, 0xc2, 0xda, 0x50, + 0x21, 0x1b, 0x33, 0x98, 0x22, 0x6c, 0xf5, 0x21, 0xcc, 0x85, 0x61, 0xca, 0x6b, 0x0f, 0xdc, 0x61, + 0x7b, 0xb4, 0x43, 0xc1, 0x2f, 0xe8, 0xc8, 0x9e, 0x0f, 0xd2, 0xcd, 0x7a, 0xff, 0xcb, 0xf0, 0xf3, + 0xbd, 0xe1, 0x69, 0x73, 0xb1, 0xdd, 0x94, 0x20, 0x5c, 0x66, 0xc4, 0x5d, 0x65, 0xc4, 0xfd, 0xce, + 0x88, 0xbb, 0xc8, 0x89, 0xb3, 0xca, 0x89, 0xf3, 0x99, 0x13, 0xe7, 0xf9, 0x2a, 0xe1, 0xe6, 0x6d, + 0x3e, 0xa6, 0x13, 0x98, 0xf9, 0x86, 0x89, 0x98, 0xa9, 0x19, 0x17, 0xc6, 0x2f, 0x2e, 0xfc, 0xb1, + 0xbd, 0xb1, 0x49, 0x25, 0xd3, 0xe3, 0x83, 0xf2, 0xbc, 0x37, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, + 0x7f, 0xb6, 0x1b, 0x83, 0x5a, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/profile/types/query.pb.go b/x/profile/types/query.pb.go index 232979e79..9e1e075bf 100644 --- a/x/profile/types/query.pb.go +++ b/x/profile/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: profile/query.proto +// source: spn/profile/query.proto package types @@ -7,9 +7,9 @@ import ( context "context" fmt "fmt" query "github.com/cosmos/cosmos-sdk/types/query" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -38,7 +38,7 @@ func (m *QueryGetValidatorRequest) Reset() { *m = QueryGetValidatorReque func (m *QueryGetValidatorRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetValidatorRequest) ProtoMessage() {} func (*QueryGetValidatorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_882bdd73bbc62204, []int{0} + return fileDescriptor_bddce98d1b665270, []int{0} } func (m *QueryGetValidatorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -82,7 +82,7 @@ func (m *QueryGetValidatorResponse) Reset() { *m = QueryGetValidatorResp func (m *QueryGetValidatorResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetValidatorResponse) ProtoMessage() {} func (*QueryGetValidatorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_882bdd73bbc62204, []int{1} + return fileDescriptor_bddce98d1b665270, []int{1} } func (m *QueryGetValidatorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -126,7 +126,7 @@ func (m *QueryAllValidatorRequest) Reset() { *m = QueryAllValidatorReque func (m *QueryAllValidatorRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllValidatorRequest) ProtoMessage() {} func (*QueryAllValidatorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_882bdd73bbc62204, []int{2} + return fileDescriptor_bddce98d1b665270, []int{2} } func (m *QueryAllValidatorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -171,7 +171,7 @@ func (m *QueryAllValidatorResponse) Reset() { *m = QueryAllValidatorResp func (m *QueryAllValidatorResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllValidatorResponse) ProtoMessage() {} func (*QueryAllValidatorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_882bdd73bbc62204, []int{3} + return fileDescriptor_bddce98d1b665270, []int{3} } func (m *QueryAllValidatorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -226,7 +226,7 @@ func (m *QueryGetValidatorByOperatorAddressRequest) String() string { } func (*QueryGetValidatorByOperatorAddressRequest) ProtoMessage() {} func (*QueryGetValidatorByOperatorAddressRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_882bdd73bbc62204, []int{4} + return fileDescriptor_bddce98d1b665270, []int{4} } func (m *QueryGetValidatorByOperatorAddressRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -274,7 +274,7 @@ func (m *QueryGetValidatorByOperatorAddressResponse) String() string { } func (*QueryGetValidatorByOperatorAddressResponse) ProtoMessage() {} func (*QueryGetValidatorByOperatorAddressResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_882bdd73bbc62204, []int{5} + return fileDescriptor_bddce98d1b665270, []int{5} } func (m *QueryGetValidatorByOperatorAddressResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -318,7 +318,7 @@ func (m *QueryGetCoordinatorRequest) Reset() { *m = QueryGetCoordinatorR func (m *QueryGetCoordinatorRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetCoordinatorRequest) ProtoMessage() {} func (*QueryGetCoordinatorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_882bdd73bbc62204, []int{6} + return fileDescriptor_bddce98d1b665270, []int{6} } func (m *QueryGetCoordinatorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -362,7 +362,7 @@ func (m *QueryGetCoordinatorResponse) Reset() { *m = QueryGetCoordinator func (m *QueryGetCoordinatorResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetCoordinatorResponse) ProtoMessage() {} func (*QueryGetCoordinatorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_882bdd73bbc62204, []int{7} + return fileDescriptor_bddce98d1b665270, []int{7} } func (m *QueryGetCoordinatorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -406,7 +406,7 @@ func (m *QueryAllCoordinatorRequest) Reset() { *m = QueryAllCoordinatorR func (m *QueryAllCoordinatorRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllCoordinatorRequest) ProtoMessage() {} func (*QueryAllCoordinatorRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_882bdd73bbc62204, []int{8} + return fileDescriptor_bddce98d1b665270, []int{8} } func (m *QueryAllCoordinatorRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -451,7 +451,7 @@ func (m *QueryAllCoordinatorResponse) Reset() { *m = QueryAllCoordinator func (m *QueryAllCoordinatorResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllCoordinatorResponse) ProtoMessage() {} func (*QueryAllCoordinatorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_882bdd73bbc62204, []int{9} + return fileDescriptor_bddce98d1b665270, []int{9} } func (m *QueryAllCoordinatorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -502,7 +502,7 @@ func (m *QueryGetCoordinatorByAddressRequest) Reset() { *m = QueryGetCoo func (m *QueryGetCoordinatorByAddressRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetCoordinatorByAddressRequest) ProtoMessage() {} func (*QueryGetCoordinatorByAddressRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_882bdd73bbc62204, []int{10} + return fileDescriptor_bddce98d1b665270, []int{10} } func (m *QueryGetCoordinatorByAddressRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -546,7 +546,7 @@ func (m *QueryGetCoordinatorByAddressResponse) Reset() { *m = QueryGetCo func (m *QueryGetCoordinatorByAddressResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetCoordinatorByAddressResponse) ProtoMessage() {} func (*QueryGetCoordinatorByAddressResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_882bdd73bbc62204, []int{11} + return fileDescriptor_bddce98d1b665270, []int{11} } func (m *QueryGetCoordinatorByAddressResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -583,72 +583,71 @@ func (m *QueryGetCoordinatorByAddressResponse) GetCoordinatorByAddress() Coordin } func init() { - proto.RegisterType((*QueryGetValidatorRequest)(nil), "tendermint.spn.profile.QueryGetValidatorRequest") - proto.RegisterType((*QueryGetValidatorResponse)(nil), "tendermint.spn.profile.QueryGetValidatorResponse") - proto.RegisterType((*QueryAllValidatorRequest)(nil), "tendermint.spn.profile.QueryAllValidatorRequest") - proto.RegisterType((*QueryAllValidatorResponse)(nil), "tendermint.spn.profile.QueryAllValidatorResponse") - proto.RegisterType((*QueryGetValidatorByOperatorAddressRequest)(nil), "tendermint.spn.profile.QueryGetValidatorByOperatorAddressRequest") - proto.RegisterType((*QueryGetValidatorByOperatorAddressResponse)(nil), "tendermint.spn.profile.QueryGetValidatorByOperatorAddressResponse") - proto.RegisterType((*QueryGetCoordinatorRequest)(nil), "tendermint.spn.profile.QueryGetCoordinatorRequest") - proto.RegisterType((*QueryGetCoordinatorResponse)(nil), "tendermint.spn.profile.QueryGetCoordinatorResponse") - proto.RegisterType((*QueryAllCoordinatorRequest)(nil), "tendermint.spn.profile.QueryAllCoordinatorRequest") - proto.RegisterType((*QueryAllCoordinatorResponse)(nil), "tendermint.spn.profile.QueryAllCoordinatorResponse") - proto.RegisterType((*QueryGetCoordinatorByAddressRequest)(nil), "tendermint.spn.profile.QueryGetCoordinatorByAddressRequest") - proto.RegisterType((*QueryGetCoordinatorByAddressResponse)(nil), "tendermint.spn.profile.QueryGetCoordinatorByAddressResponse") -} - -func init() { proto.RegisterFile("profile/query.proto", fileDescriptor_882bdd73bbc62204) } - -var fileDescriptor_882bdd73bbc62204 = []byte{ - // 754 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0x4d, 0x4f, 0xd4, 0x50, - 0x14, 0x9d, 0x07, 0xf8, 0xc1, 0xc5, 0x8f, 0xe4, 0x49, 0x14, 0xaa, 0x19, 0xa5, 0x83, 0xca, 0x87, - 0xb6, 0x32, 0xa3, 0x89, 0x11, 0x13, 0x9d, 0x41, 0x25, 0xc4, 0x05, 0x3a, 0x89, 0x2e, 0xdc, 0x90, - 0x76, 0xe6, 0x51, 0x6b, 0x4a, 0x5f, 0x69, 0x0b, 0x61, 0x42, 0xd8, 0xf8, 0x03, 0x8c, 0x89, 0x7b, - 0x77, 0xb2, 0x71, 0xc9, 0x9f, 0x60, 0x49, 0xc2, 0xc6, 0x95, 0x31, 0xe0, 0x4f, 0x70, 0xe9, 0xc2, - 0xb4, 0x73, 0x3b, 0xd3, 0x76, 0x5a, 0x3a, 0x83, 0xec, 0x4a, 0xdf, 0x3d, 0xf7, 0x9d, 0x73, 0xee, - 0xe9, 0x65, 0xe0, 0x92, 0x65, 0xf3, 0x65, 0xdd, 0x60, 0xf2, 0xea, 0x1a, 0xb3, 0x1b, 0x92, 0x65, - 0x73, 0x97, 0xd3, 0xcb, 0x2e, 0x33, 0xeb, 0xcc, 0x5e, 0xd1, 0x4d, 0x57, 0x72, 0x2c, 0x53, 0xc2, - 0x1a, 0x61, 0x58, 0xe3, 0x1a, 0xf7, 0x4b, 0x64, 0xef, 0xa9, 0x59, 0x2d, 0x5c, 0xd3, 0x38, 0xd7, - 0x0c, 0x26, 0x2b, 0x96, 0x2e, 0x2b, 0xa6, 0xc9, 0x5d, 0xc5, 0xd5, 0xb9, 0xe9, 0xe0, 0xe9, 0x54, - 0x8d, 0x3b, 0x2b, 0xdc, 0x91, 0x55, 0xc5, 0xc1, 0x4b, 0xe4, 0xf5, 0x19, 0x95, 0xb9, 0xca, 0x8c, - 0x6c, 0x29, 0x9a, 0x6e, 0xfa, 0xc5, 0x58, 0x7b, 0x25, 0x20, 0xb3, 0xae, 0x18, 0x7a, 0x5d, 0x71, - 0xb9, 0x8d, 0x07, 0xa3, 0xc1, 0x41, 0x8d, 0x73, 0xbb, 0xee, 0x81, 0x82, 0x23, 0xf1, 0x3e, 0x8c, - 0xbc, 0xf6, 0xba, 0xce, 0x33, 0xf7, 0x6d, 0x80, 0xaa, 0xb2, 0xd5, 0x35, 0xe6, 0xb8, 0x74, 0x04, - 0xce, 0x28, 0xf5, 0xba, 0xcd, 0x1c, 0x67, 0x84, 0xdc, 0x20, 0x13, 0x83, 0xd5, 0xe0, 0x4f, 0x51, - 0x85, 0xd1, 0x04, 0x94, 0x63, 0x71, 0xd3, 0x61, 0xf4, 0x39, 0x0c, 0xb6, 0x08, 0xf8, 0xc0, 0xa1, - 0xe2, 0x98, 0x94, 0x6c, 0x89, 0xd4, 0x42, 0x57, 0x06, 0x76, 0x7f, 0x5e, 0xcf, 0x55, 0xdb, 0x48, - 0x51, 0x45, 0x66, 0x65, 0xc3, 0xe8, 0x60, 0xf6, 0x02, 0xa0, 0xad, 0x1e, 0xef, 0xb8, 0x25, 0x35, - 0xad, 0x92, 0x3c, 0xab, 0xa4, 0xe6, 0x3c, 0xd0, 0x2a, 0xe9, 0x95, 0xa2, 0x31, 0xc4, 0x56, 0x43, - 0x48, 0xf1, 0x3b, 0x41, 0x21, 0xd1, 0x4b, 0x92, 0x85, 0xf4, 0x1f, 0x4f, 0x08, 0x9d, 0x8f, 0x90, - 0xed, 0xf3, 0xc9, 0xde, 0xce, 0x24, 0xdb, 0xe4, 0x10, 0x61, 0xfb, 0x06, 0x26, 0x3b, 0x5c, 0xaf, - 0x34, 0x16, 0x2d, 0x66, 0x7b, 0x4f, 0xe5, 0xe6, 0x6c, 0x02, 0x8b, 0x26, 0xe0, 0x22, 0x8f, 0x9e, - 0xe0, 0x10, 0xe3, 0xaf, 0xc5, 0x6d, 0x02, 0x53, 0xdd, 0xf4, 0x45, 0x57, 0x36, 0x40, 0x58, 0x4f, - 0xad, 0xc2, 0x59, 0x14, 0xb3, 0x6d, 0x8a, 0x23, 0xd1, 0xb7, 0x23, 0x7a, 0x8b, 0x15, 0x10, 0x02, - 0x9e, 0x73, 0xed, 0x20, 0x07, 0x82, 0xc7, 0xe1, 0x7c, 0x28, 0xde, 0x0b, 0xcf, 0x7c, 0x2a, 0x03, - 0xd5, 0xe8, 0x4b, 0xf1, 0x03, 0x5c, 0x4d, 0xec, 0x81, 0xe2, 0x5e, 0xc2, 0x50, 0xa8, 0x1e, 0xd5, - 0x14, 0xd2, 0xd4, 0x84, 0x3a, 0x20, 0xfd, 0x30, 0x5a, 0xac, 0x23, 0xdf, 0xb2, 0x61, 0x24, 0xf0, - 0x3d, 0xa9, 0x0c, 0xef, 0x10, 0x94, 0x14, 0xbf, 0x26, 0x4d, 0x52, 0xff, 0xf1, 0x25, 0x9d, 0x5c, - 0x96, 0x9f, 0x40, 0x21, 0x61, 0x0e, 0x95, 0x46, 0x2c, 0xc5, 0xe9, 0x2b, 0xe8, 0x13, 0x81, 0xf1, - 0xa3, 0x3b, 0xa0, 0xfe, 0x65, 0x18, 0xae, 0x25, 0x9c, 0xa3, 0xe3, 0x77, 0xba, 0x31, 0xa2, 0x11, - 0xcd, 0x68, 0x62, 0xbf, 0xe2, 0xdf, 0xb3, 0x70, 0xca, 0x27, 0x44, 0xbf, 0x11, 0x18, 0x6c, 0x05, - 0x9d, 0xde, 0x4b, 0xbb, 0x21, 0x6d, 0xef, 0x0a, 0x33, 0x3d, 0x20, 0x9a, 0x22, 0xc5, 0xd2, 0xc7, - 0xfd, 0xdf, 0x5f, 0xfa, 0xee, 0xd2, 0x69, 0xb9, 0x0d, 0x95, 0x1d, 0xcb, 0x94, 0x3b, 0xfe, 0x25, - 0xc8, 0x9b, 0xe8, 0xe0, 0x16, 0xfd, 0x4a, 0xe0, 0x5c, 0xab, 0x55, 0xd9, 0x30, 0x32, 0xa8, 0x26, - 0x2c, 0xe2, 0x0c, 0xaa, 0x49, 0x5b, 0x55, 0x9c, 0xf4, 0xa9, 0x16, 0xe8, 0x58, 0x26, 0x55, 0xfa, - 0x87, 0x80, 0x90, 0xbe, 0x31, 0x68, 0xb9, 0x6b, 0x9f, 0xd2, 0xb6, 0xa4, 0x50, 0xf9, 0x9f, 0x16, - 0x28, 0x68, 0xd1, 0x17, 0xb4, 0x40, 0xe7, 0x33, 0x05, 0x2d, 0xa9, 0x8d, 0xa5, 0x60, 0xfb, 0x2e, - 0xe1, 0x18, 0xe4, 0xcd, 0xd8, 0x3e, 0xde, 0xa2, 0x3b, 0x04, 0x86, 0x42, 0xf1, 0xa3, 0xc5, 0x2c, - 0x92, 0x9d, 0xdb, 0x45, 0x28, 0xf5, 0x84, 0x41, 0x25, 0xb3, 0xbe, 0x92, 0x07, 0xb4, 0x94, 0xa6, - 0x24, 0x14, 0x7c, 0x79, 0x33, 0xb2, 0x58, 0xb7, 0xe8, 0x36, 0x81, 0x0b, 0xa1, 0xa6, 0x5e, 0x9e, - 0x8a, 0x59, 0xe9, 0xe8, 0x99, 0x78, 0xf2, 0x8e, 0x13, 0xa7, 0x7d, 0xe2, 0x37, 0x69, 0xa1, 0x0b, - 0xe2, 0x74, 0x9f, 0xc0, 0x70, 0xd2, 0xd7, 0x4d, 0x67, 0x7b, 0xf0, 0x2c, 0xbe, 0xa9, 0x84, 0xc7, - 0xc7, 0x03, 0xa3, 0x80, 0xa7, 0xbe, 0x80, 0x47, 0xf4, 0x61, 0x17, 0x02, 0xbc, 0x14, 0xb5, 0xc2, - 0x13, 0x7c, 0xcc, 0x95, 0xb9, 0xdd, 0x83, 0x3c, 0xd9, 0x3b, 0xc8, 0x93, 0x5f, 0x07, 0x79, 0xf2, - 0xf9, 0x30, 0x9f, 0xdb, 0x3b, 0xcc, 0xe7, 0x7e, 0x1c, 0xe6, 0x73, 0xef, 0x26, 0x35, 0xdd, 0x7d, - 0xbf, 0xa6, 0x4a, 0x35, 0xbe, 0x12, 0xef, 0xbe, 0xd1, 0xea, 0xef, 0x36, 0x2c, 0xe6, 0xa8, 0xa7, - 0xfd, 0x1f, 0x85, 0xa5, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x1b, 0xf9, 0x02, 0xa8, 0xd7, 0x0a, - 0x00, 0x00, + proto.RegisterType((*QueryGetValidatorRequest)(nil), "spn.profile.QueryGetValidatorRequest") + proto.RegisterType((*QueryGetValidatorResponse)(nil), "spn.profile.QueryGetValidatorResponse") + proto.RegisterType((*QueryAllValidatorRequest)(nil), "spn.profile.QueryAllValidatorRequest") + proto.RegisterType((*QueryAllValidatorResponse)(nil), "spn.profile.QueryAllValidatorResponse") + proto.RegisterType((*QueryGetValidatorByOperatorAddressRequest)(nil), "spn.profile.QueryGetValidatorByOperatorAddressRequest") + proto.RegisterType((*QueryGetValidatorByOperatorAddressResponse)(nil), "spn.profile.QueryGetValidatorByOperatorAddressResponse") + proto.RegisterType((*QueryGetCoordinatorRequest)(nil), "spn.profile.QueryGetCoordinatorRequest") + proto.RegisterType((*QueryGetCoordinatorResponse)(nil), "spn.profile.QueryGetCoordinatorResponse") + proto.RegisterType((*QueryAllCoordinatorRequest)(nil), "spn.profile.QueryAllCoordinatorRequest") + proto.RegisterType((*QueryAllCoordinatorResponse)(nil), "spn.profile.QueryAllCoordinatorResponse") + proto.RegisterType((*QueryGetCoordinatorByAddressRequest)(nil), "spn.profile.QueryGetCoordinatorByAddressRequest") + proto.RegisterType((*QueryGetCoordinatorByAddressResponse)(nil), "spn.profile.QueryGetCoordinatorByAddressResponse") +} + +func init() { proto.RegisterFile("spn/profile/query.proto", fileDescriptor_bddce98d1b665270) } + +var fileDescriptor_bddce98d1b665270 = []byte{ + // 747 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0x4b, 0x4f, 0xd4, 0x50, + 0x14, 0xc7, 0xe7, 0x02, 0x4a, 0x38, 0xe3, 0x23, 0xb9, 0x21, 0x3a, 0x16, 0x1d, 0xa5, 0x3c, 0x86, + 0x47, 0x6c, 0x05, 0x7c, 0x05, 0x17, 0x32, 0x83, 0x91, 0xb0, 0x42, 0x27, 0x51, 0x13, 0x5d, 0x4c, + 0x3a, 0x33, 0xd7, 0xda, 0xa4, 0xd3, 0x5b, 0xda, 0x42, 0x9c, 0x10, 0x36, 0xba, 0x71, 0x27, 0x89, + 0x4b, 0x63, 0xe2, 0xd2, 0x2f, 0xe1, 0x9e, 0x25, 0x89, 0x1b, 0x57, 0xc4, 0x80, 0x1f, 0xc2, 0xa5, + 0x69, 0xe7, 0x74, 0x68, 0xcb, 0xed, 0x3c, 0x12, 0x76, 0x43, 0xcf, 0x39, 0xff, 0xfb, 0x3b, 0xff, + 0x7b, 0xee, 0x09, 0x70, 0xd5, 0xb5, 0x2d, 0xd5, 0x76, 0xf8, 0x5b, 0xc3, 0x64, 0xea, 0xe6, 0x16, + 0x73, 0x9a, 0x8a, 0xed, 0x70, 0x8f, 0xd3, 0xac, 0x6b, 0x5b, 0x0a, 0x06, 0xa4, 0x51, 0x9d, 0xeb, + 0x3c, 0xf8, 0xae, 0xfa, 0xbf, 0x5a, 0x29, 0xd2, 0x75, 0x9d, 0x73, 0xdd, 0x64, 0xaa, 0x66, 0x1b, + 0xaa, 0x66, 0x59, 0xdc, 0xd3, 0x3c, 0x83, 0x5b, 0x2e, 0x46, 0xe7, 0x6a, 0xdc, 0x6d, 0x70, 0x57, + 0xad, 0x6a, 0x2e, 0x2a, 0xab, 0xdb, 0x0b, 0x55, 0xe6, 0x69, 0x0b, 0xaa, 0xad, 0xe9, 0x86, 0x15, + 0x24, 0x63, 0xee, 0x58, 0x94, 0x62, 0x5b, 0x33, 0x8d, 0xba, 0xe6, 0x71, 0x07, 0x83, 0x37, 0xa2, + 0xc1, 0x1a, 0xe7, 0x4e, 0xdd, 0x2f, 0x0e, 0xc3, 0xf2, 0x5d, 0xc8, 0x3d, 0xf7, 0xd5, 0xd7, 0x98, + 0xf7, 0x32, 0xac, 0x2c, 0xb3, 0xcd, 0x2d, 0xe6, 0x7a, 0x34, 0x07, 0xc3, 0x5a, 0xbd, 0xee, 0x30, + 0xd7, 0xcd, 0x91, 0x5b, 0x64, 0x66, 0xa4, 0x1c, 0xfe, 0x29, 0xbf, 0x82, 0x6b, 0x82, 0x2a, 0xd7, + 0xe6, 0x96, 0xcb, 0xe8, 0x32, 0x8c, 0xb4, 0x21, 0x82, 0xc2, 0xec, 0xe2, 0x15, 0x25, 0xe2, 0x87, + 0xd2, 0x2e, 0x29, 0x0d, 0xed, 0x1f, 0xde, 0xcc, 0x94, 0x4f, 0xd2, 0xe5, 0x2a, 0xe2, 0x14, 0x4d, + 0xf3, 0x14, 0xce, 0x53, 0x80, 0x93, 0xd6, 0x51, 0x78, 0x5a, 0x69, 0xf9, 0xa4, 0xf8, 0x3e, 0x29, + 0xad, 0x1b, 0x40, 0x9f, 0x94, 0x67, 0x9a, 0xce, 0xb0, 0xb6, 0x1c, 0xa9, 0x94, 0xbf, 0x13, 0xa4, + 0x8f, 0x1f, 0x22, 0xa6, 0x1f, 0xec, 0x83, 0x9e, 0xae, 0xc5, 0x08, 0x07, 0x02, 0xc2, 0x42, 0x57, + 0xc2, 0xd6, 0xc1, 0x31, 0xc4, 0x17, 0x30, 0x7b, 0xca, 0xdf, 0x52, 0x73, 0xc3, 0x66, 0x8e, 0xff, + 0xab, 0xd8, 0xba, 0x85, 0xd0, 0x97, 0x19, 0xb8, 0xcc, 0xe3, 0x11, 0xbc, 0xae, 0xe4, 0x67, 0xf9, + 0x2b, 0x81, 0xb9, 0x5e, 0x74, 0xd1, 0x8a, 0x06, 0x48, 0xdb, 0xa9, 0x59, 0x78, 0x01, 0x85, 0x14, + 0x6f, 0x92, 0xe9, 0x68, 0x56, 0x07, 0x41, 0xb9, 0x04, 0x52, 0x08, 0xb7, 0x7a, 0x32, 0xa7, 0x61, + 0x97, 0x93, 0x70, 0x31, 0x32, 0xbd, 0xeb, 0x4f, 0x82, 0xf3, 0x87, 0xca, 0xf1, 0x8f, 0x72, 0x05, + 0xc6, 0x84, 0x1a, 0xd8, 0xd1, 0x0a, 0x64, 0x23, 0xf9, 0xd8, 0x42, 0x2e, 0xd6, 0x42, 0xa4, 0x0c, + 0x99, 0xa3, 0x25, 0x72, 0x1d, 0x21, 0x8b, 0xa6, 0x29, 0x80, 0x3c, 0xab, 0x11, 0xfd, 0x41, 0xb0, + 0x8f, 0xe4, 0x31, 0x69, 0x7d, 0x0c, 0xf6, 0xd9, 0xc7, 0xd9, 0x8d, 0xea, 0x63, 0x98, 0x10, 0x38, + 0x5e, 0x6a, 0x26, 0x86, 0x34, 0x7d, 0x97, 0x7c, 0x24, 0x30, 0xd9, 0x59, 0x01, 0x9b, 0x7e, 0x03, + 0xa3, 0x35, 0x41, 0x1c, 0x6d, 0x1e, 0x4f, 0xed, 0xbe, 0x19, 0x1f, 0x41, 0xa1, 0xc8, 0xe2, 0xbf, + 0x61, 0x38, 0x17, 0x50, 0xd0, 0xcf, 0x04, 0x46, 0xda, 0x73, 0x4c, 0xa7, 0x62, 0xb2, 0x69, 0xab, + 0x52, 0x9a, 0xee, 0x96, 0xd6, 0xea, 0x41, 0x5e, 0xfa, 0xf0, 0xeb, 0xef, 0x97, 0x81, 0xdb, 0x74, + 0x5e, 0xf5, 0x98, 0x55, 0x67, 0x4e, 0xc3, 0xb0, 0x3c, 0x55, 0xb8, 0xbe, 0xd5, 0x1d, 0x34, 0x68, + 0x97, 0x7e, 0x22, 0x70, 0xa1, 0x2d, 0x55, 0x34, 0x4d, 0x11, 0x94, 0x60, 0x61, 0x8a, 0xa0, 0x44, + 0x2b, 0x4f, 0x9e, 0x0d, 0xa0, 0x26, 0xe8, 0x78, 0x57, 0x28, 0x7a, 0x48, 0x40, 0x4a, 0x7f, 0xe4, + 0xf4, 0x7e, 0x67, 0x1b, 0xd2, 0x56, 0x98, 0xf4, 0xa0, 0xef, 0x3a, 0x44, 0xdf, 0x08, 0xd0, 0xd7, + 0xe9, 0x5a, 0x57, 0xf4, 0x4a, 0xb5, 0x59, 0x09, 0xf7, 0x61, 0x05, 0xad, 0x55, 0x77, 0x12, 0x1b, + 0x72, 0x97, 0x7e, 0x23, 0x90, 0x8d, 0x0c, 0x0f, 0x2d, 0x08, 0xc9, 0x4e, 0x3f, 0x7d, 0x69, 0xa6, + 0x7b, 0x22, 0x32, 0x3f, 0x0a, 0x98, 0xef, 0xd1, 0xa5, 0x34, 0xe6, 0xc8, 0x80, 0xaa, 0x3b, 0xb1, + 0xfd, 0xb6, 0x4b, 0xf7, 0x08, 0x5c, 0x8a, 0x88, 0xfa, 0xd3, 0x50, 0x10, 0x5e, 0x73, 0x6f, 0x88, + 0xe2, 0xfd, 0x22, 0xcf, 0x07, 0x88, 0x53, 0x74, 0xa2, 0x07, 0x44, 0xfa, 0x93, 0xc0, 0xa8, 0xe8, + 0xbd, 0xd1, 0x3b, 0xdd, 0x2c, 0x49, 0x6e, 0x09, 0x69, 0xa1, 0x8f, 0x0a, 0x44, 0x5d, 0x09, 0x50, + 0x97, 0xe9, 0xc3, 0x1e, 0x50, 0xfd, 0x19, 0x68, 0x5f, 0x7d, 0xf8, 0xbc, 0x4a, 0xab, 0xfb, 0x47, + 0x79, 0x72, 0x70, 0x94, 0x27, 0x7f, 0x8e, 0xf2, 0x64, 0xef, 0x38, 0x9f, 0x39, 0x38, 0xce, 0x67, + 0x7e, 0x1f, 0xe7, 0x33, 0xaf, 0x67, 0x75, 0xc3, 0x7b, 0xb7, 0x55, 0x55, 0x6a, 0xbc, 0x91, 0x54, + 0x7f, 0xdf, 0xd6, 0xf7, 0x9a, 0x36, 0x73, 0xab, 0xe7, 0x83, 0x7f, 0xa7, 0x96, 0xfe, 0x07, 0x00, + 0x00, 0xff, 0xff, 0x1a, 0xba, 0x88, 0x6b, 0x12, 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -687,7 +686,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Validator(ctx context.Context, in *QueryGetValidatorRequest, opts ...grpc.CallOption) (*QueryGetValidatorResponse, error) { out := new(QueryGetValidatorResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.profile.Query/Validator", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.profile.Query/Validator", in, out, opts...) if err != nil { return nil, err } @@ -696,7 +695,7 @@ func (c *queryClient) Validator(ctx context.Context, in *QueryGetValidatorReques func (c *queryClient) ValidatorAll(ctx context.Context, in *QueryAllValidatorRequest, opts ...grpc.CallOption) (*QueryAllValidatorResponse, error) { out := new(QueryAllValidatorResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.profile.Query/ValidatorAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.profile.Query/ValidatorAll", in, out, opts...) if err != nil { return nil, err } @@ -705,7 +704,7 @@ func (c *queryClient) ValidatorAll(ctx context.Context, in *QueryAllValidatorReq func (c *queryClient) ValidatorByOperatorAddress(ctx context.Context, in *QueryGetValidatorByOperatorAddressRequest, opts ...grpc.CallOption) (*QueryGetValidatorByOperatorAddressResponse, error) { out := new(QueryGetValidatorByOperatorAddressResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.profile.Query/ValidatorByOperatorAddress", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.profile.Query/ValidatorByOperatorAddress", in, out, opts...) if err != nil { return nil, err } @@ -714,7 +713,7 @@ func (c *queryClient) ValidatorByOperatorAddress(ctx context.Context, in *QueryG func (c *queryClient) Coordinator(ctx context.Context, in *QueryGetCoordinatorRequest, opts ...grpc.CallOption) (*QueryGetCoordinatorResponse, error) { out := new(QueryGetCoordinatorResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.profile.Query/Coordinator", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.profile.Query/Coordinator", in, out, opts...) if err != nil { return nil, err } @@ -723,7 +722,7 @@ func (c *queryClient) Coordinator(ctx context.Context, in *QueryGetCoordinatorRe func (c *queryClient) CoordinatorAll(ctx context.Context, in *QueryAllCoordinatorRequest, opts ...grpc.CallOption) (*QueryAllCoordinatorResponse, error) { out := new(QueryAllCoordinatorResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.profile.Query/CoordinatorAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.profile.Query/CoordinatorAll", in, out, opts...) if err != nil { return nil, err } @@ -732,7 +731,7 @@ func (c *queryClient) CoordinatorAll(ctx context.Context, in *QueryAllCoordinato func (c *queryClient) CoordinatorByAddress(ctx context.Context, in *QueryGetCoordinatorByAddressRequest, opts ...grpc.CallOption) (*QueryGetCoordinatorByAddressResponse, error) { out := new(QueryGetCoordinatorByAddressResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.profile.Query/CoordinatorByAddress", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.profile.Query/CoordinatorByAddress", in, out, opts...) if err != nil { return nil, err } @@ -792,7 +791,7 @@ func _Query_Validator_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.profile.Query/Validator", + FullMethod: "/spn.profile.Query/Validator", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Validator(ctx, req.(*QueryGetValidatorRequest)) @@ -810,7 +809,7 @@ func _Query_ValidatorAll_Handler(srv interface{}, ctx context.Context, dec func( } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.profile.Query/ValidatorAll", + FullMethod: "/spn.profile.Query/ValidatorAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ValidatorAll(ctx, req.(*QueryAllValidatorRequest)) @@ -828,7 +827,7 @@ func _Query_ValidatorByOperatorAddress_Handler(srv interface{}, ctx context.Cont } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.profile.Query/ValidatorByOperatorAddress", + FullMethod: "/spn.profile.Query/ValidatorByOperatorAddress", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ValidatorByOperatorAddress(ctx, req.(*QueryGetValidatorByOperatorAddressRequest)) @@ -846,7 +845,7 @@ func _Query_Coordinator_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.profile.Query/Coordinator", + FullMethod: "/spn.profile.Query/Coordinator", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Coordinator(ctx, req.(*QueryGetCoordinatorRequest)) @@ -864,7 +863,7 @@ func _Query_CoordinatorAll_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.profile.Query/CoordinatorAll", + FullMethod: "/spn.profile.Query/CoordinatorAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).CoordinatorAll(ctx, req.(*QueryAllCoordinatorRequest)) @@ -882,7 +881,7 @@ func _Query_CoordinatorByAddress_Handler(srv interface{}, ctx context.Context, d } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.profile.Query/CoordinatorByAddress", + FullMethod: "/spn.profile.Query/CoordinatorByAddress", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).CoordinatorByAddress(ctx, req.(*QueryGetCoordinatorByAddressRequest)) @@ -891,7 +890,7 @@ func _Query_CoordinatorByAddress_Handler(srv interface{}, ctx context.Context, d } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "tendermint.spn.profile.Query", + ServiceName: "spn.profile.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -920,7 +919,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "profile/query.proto", + Metadata: "spn/profile/query.proto", } func (m *QueryGetValidatorRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/profile/types/query.pb.gw.go b/x/profile/types/query.pb.gw.go index 4959c627b..e2c11cbc3 100644 --- a/x/profile/types/query.pb.gw.go +++ b/x/profile/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: profile/query.proto +// source: spn/profile/query.proto /* Package types is a reverse proxy. @@ -630,17 +630,17 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Validator_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "profile", "validator", "address"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Validator_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "profile", "validator", "address"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_ValidatorAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "profile", "validator"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_ValidatorAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "profile", "validator"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_ValidatorByOperatorAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "profile", "validator_by_operator_address", "operatorAddress"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_ValidatorByOperatorAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "profile", "validator_by_operator_address", "operatorAddress"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Coordinator_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "profile", "coordinator", "coordinatorID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Coordinator_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "profile", "coordinator", "coordinatorID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_CoordinatorAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "profile", "coordinator"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_CoordinatorAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "profile", "coordinator"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_CoordinatorByAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "profile", "coordinator_by_address", "address"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_CoordinatorByAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "profile", "coordinator_by_address", "address"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/profile/types/tx.pb.go b/x/profile/types/tx.pb.go index 2a64b5fb8..5e3daa040 100644 --- a/x/profile/types/tx.pb.go +++ b/x/profile/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: profile/tx.proto +// source: spn/profile/tx.proto package types @@ -7,9 +7,9 @@ import ( context "context" fmt "fmt" _ "github.com/cosmos/cosmos-proto" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -38,7 +38,7 @@ func (m *MsgUpdateValidatorDescription) Reset() { *m = MsgUpdateValidato func (m *MsgUpdateValidatorDescription) String() string { return proto.CompactTextString(m) } func (*MsgUpdateValidatorDescription) ProtoMessage() {} func (*MsgUpdateValidatorDescription) Descriptor() ([]byte, []int) { - return fileDescriptor_a471fea62152592e, []int{0} + return fileDescriptor_227b73a1f63bc900, []int{0} } func (m *MsgUpdateValidatorDescription) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -88,7 +88,7 @@ func (m *MsgUpdateValidatorDescriptionResponse) Reset() { *m = MsgUpdate func (m *MsgUpdateValidatorDescriptionResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateValidatorDescriptionResponse) ProtoMessage() {} func (*MsgUpdateValidatorDescriptionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a471fea62152592e, []int{1} + return fileDescriptor_227b73a1f63bc900, []int{1} } func (m *MsgUpdateValidatorDescriptionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -126,7 +126,7 @@ func (m *MsgAddValidatorOperatorAddress) Reset() { *m = MsgAddValidatorO func (m *MsgAddValidatorOperatorAddress) String() string { return proto.CompactTextString(m) } func (*MsgAddValidatorOperatorAddress) ProtoMessage() {} func (*MsgAddValidatorOperatorAddress) Descriptor() ([]byte, []int) { - return fileDescriptor_a471fea62152592e, []int{2} + return fileDescriptor_227b73a1f63bc900, []int{2} } func (m *MsgAddValidatorOperatorAddress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -178,7 +178,7 @@ func (m *MsgAddValidatorOperatorAddressResponse) Reset() { func (m *MsgAddValidatorOperatorAddressResponse) String() string { return proto.CompactTextString(m) } func (*MsgAddValidatorOperatorAddressResponse) ProtoMessage() {} func (*MsgAddValidatorOperatorAddressResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a471fea62152592e, []int{3} + return fileDescriptor_227b73a1f63bc900, []int{3} } func (m *MsgAddValidatorOperatorAddressResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -216,7 +216,7 @@ func (m *MsgCreateCoordinator) Reset() { *m = MsgCreateCoordinator{} } func (m *MsgCreateCoordinator) String() string { return proto.CompactTextString(m) } func (*MsgCreateCoordinator) ProtoMessage() {} func (*MsgCreateCoordinator) Descriptor() ([]byte, []int) { - return fileDescriptor_a471fea62152592e, []int{4} + return fileDescriptor_227b73a1f63bc900, []int{4} } func (m *MsgCreateCoordinator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -267,7 +267,7 @@ func (m *MsgCreateCoordinatorResponse) Reset() { *m = MsgCreateCoordinat func (m *MsgCreateCoordinatorResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateCoordinatorResponse) ProtoMessage() {} func (*MsgCreateCoordinatorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a471fea62152592e, []int{5} + return fileDescriptor_227b73a1f63bc900, []int{5} } func (m *MsgCreateCoordinatorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -312,7 +312,7 @@ func (m *MsgUpdateCoordinatorDescription) Reset() { *m = MsgUpdateCoordi func (m *MsgUpdateCoordinatorDescription) String() string { return proto.CompactTextString(m) } func (*MsgUpdateCoordinatorDescription) ProtoMessage() {} func (*MsgUpdateCoordinatorDescription) Descriptor() ([]byte, []int) { - return fileDescriptor_a471fea62152592e, []int{6} + return fileDescriptor_227b73a1f63bc900, []int{6} } func (m *MsgUpdateCoordinatorDescription) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -364,7 +364,7 @@ func (m *MsgUpdateCoordinatorDescriptionResponse) Reset() { func (m *MsgUpdateCoordinatorDescriptionResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateCoordinatorDescriptionResponse) ProtoMessage() {} func (*MsgUpdateCoordinatorDescriptionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a471fea62152592e, []int{7} + return fileDescriptor_227b73a1f63bc900, []int{7} } func (m *MsgUpdateCoordinatorDescriptionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -402,7 +402,7 @@ func (m *MsgUpdateCoordinatorAddress) Reset() { *m = MsgUpdateCoordinato func (m *MsgUpdateCoordinatorAddress) String() string { return proto.CompactTextString(m) } func (*MsgUpdateCoordinatorAddress) ProtoMessage() {} func (*MsgUpdateCoordinatorAddress) Descriptor() ([]byte, []int) { - return fileDescriptor_a471fea62152592e, []int{8} + return fileDescriptor_227b73a1f63bc900, []int{8} } func (m *MsgUpdateCoordinatorAddress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -452,7 +452,7 @@ func (m *MsgUpdateCoordinatorAddressResponse) Reset() { *m = MsgUpdateCo func (m *MsgUpdateCoordinatorAddressResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateCoordinatorAddressResponse) ProtoMessage() {} func (*MsgUpdateCoordinatorAddressResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a471fea62152592e, []int{9} + return fileDescriptor_227b73a1f63bc900, []int{9} } func (m *MsgUpdateCoordinatorAddressResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -489,7 +489,7 @@ func (m *MsgDisableCoordinator) Reset() { *m = MsgDisableCoordinator{} } func (m *MsgDisableCoordinator) String() string { return proto.CompactTextString(m) } func (*MsgDisableCoordinator) ProtoMessage() {} func (*MsgDisableCoordinator) Descriptor() ([]byte, []int) { - return fileDescriptor_a471fea62152592e, []int{10} + return fileDescriptor_227b73a1f63bc900, []int{10} } func (m *MsgDisableCoordinator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -533,7 +533,7 @@ func (m *MsgDisableCoordinatorResponse) Reset() { *m = MsgDisableCoordin func (m *MsgDisableCoordinatorResponse) String() string { return proto.CompactTextString(m) } func (*MsgDisableCoordinatorResponse) ProtoMessage() {} func (*MsgDisableCoordinatorResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_a471fea62152592e, []int{11} + return fileDescriptor_227b73a1f63bc900, []int{11} } func (m *MsgDisableCoordinatorResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -570,61 +570,60 @@ func (m *MsgDisableCoordinatorResponse) GetCoordinatorID() uint64 { } func init() { - proto.RegisterType((*MsgUpdateValidatorDescription)(nil), "tendermint.spn.profile.MsgUpdateValidatorDescription") - proto.RegisterType((*MsgUpdateValidatorDescriptionResponse)(nil), "tendermint.spn.profile.MsgUpdateValidatorDescriptionResponse") - proto.RegisterType((*MsgAddValidatorOperatorAddress)(nil), "tendermint.spn.profile.MsgAddValidatorOperatorAddress") - proto.RegisterType((*MsgAddValidatorOperatorAddressResponse)(nil), "tendermint.spn.profile.MsgAddValidatorOperatorAddressResponse") - proto.RegisterType((*MsgCreateCoordinator)(nil), "tendermint.spn.profile.MsgCreateCoordinator") - proto.RegisterType((*MsgCreateCoordinatorResponse)(nil), "tendermint.spn.profile.MsgCreateCoordinatorResponse") - proto.RegisterType((*MsgUpdateCoordinatorDescription)(nil), "tendermint.spn.profile.MsgUpdateCoordinatorDescription") - proto.RegisterType((*MsgUpdateCoordinatorDescriptionResponse)(nil), "tendermint.spn.profile.MsgUpdateCoordinatorDescriptionResponse") - proto.RegisterType((*MsgUpdateCoordinatorAddress)(nil), "tendermint.spn.profile.MsgUpdateCoordinatorAddress") - proto.RegisterType((*MsgUpdateCoordinatorAddressResponse)(nil), "tendermint.spn.profile.MsgUpdateCoordinatorAddressResponse") - proto.RegisterType((*MsgDisableCoordinator)(nil), "tendermint.spn.profile.MsgDisableCoordinator") - proto.RegisterType((*MsgDisableCoordinatorResponse)(nil), "tendermint.spn.profile.MsgDisableCoordinatorResponse") -} - -func init() { proto.RegisterFile("profile/tx.proto", fileDescriptor_a471fea62152592e) } - -var fileDescriptor_a471fea62152592e = []byte{ - // 584 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0x3f, 0x6f, 0xd3, 0x40, - 0x14, 0xcf, 0x41, 0x55, 0xd4, 0x57, 0x21, 0x8a, 0x15, 0x20, 0xb8, 0xc5, 0xad, 0x0c, 0xa5, 0x29, - 0x6a, 0x6d, 0x29, 0xa5, 0x30, 0x20, 0x40, 0xf9, 0xc3, 0x80, 0x90, 0x85, 0x64, 0xa0, 0x03, 0x0b, - 0x72, 0xe2, 0xc3, 0x58, 0x4a, 0x7c, 0xe6, 0xee, 0x68, 0x0b, 0x9f, 0x81, 0x01, 0x21, 0x21, 0x31, - 0xb3, 0x31, 0xb0, 0xf1, 0x21, 0x3a, 0x16, 0x26, 0x26, 0x84, 0x92, 0x2f, 0x82, 0xe2, 0xc4, 0x17, - 0x07, 0x3b, 0x17, 0xc5, 0x2c, 0x9d, 0x12, 0xdf, 0xfb, 0xbd, 0xdf, 0xfb, 0xbd, 0x3f, 0xf7, 0x74, - 0xb0, 0x14, 0x52, 0xf2, 0xd2, 0x6f, 0x63, 0x93, 0x1f, 0x1a, 0x21, 0x25, 0x9c, 0x28, 0x17, 0x39, - 0x0e, 0x5c, 0x4c, 0x3b, 0x7e, 0xc0, 0x0d, 0x16, 0x06, 0xc6, 0x10, 0xa0, 0x16, 0x3d, 0xe2, 0x91, - 0x08, 0x62, 0xf6, 0xff, 0x0d, 0xd0, 0xea, 0xe5, 0x16, 0x61, 0x1d, 0xc2, 0x5e, 0x0c, 0x0c, 0x83, - 0x8f, 0xd8, 0x14, 0x53, 0xb7, 0x08, 0xa1, 0xae, 0x1f, 0x38, 0x9c, 0xd0, 0xa1, 0xe9, 0x52, 0x6c, - 0xda, 0x77, 0xda, 0xbe, 0x3b, 0x32, 0xe8, 0x5f, 0x11, 0x5c, 0xb1, 0x98, 0xf7, 0x2c, 0x74, 0x1d, - 0x8e, 0xf7, 0x62, 0x63, 0x03, 0xb3, 0x16, 0xf5, 0x43, 0xee, 0x93, 0x40, 0xa9, 0xc0, 0x19, 0xc7, - 0x75, 0x29, 0x66, 0xac, 0x84, 0xd6, 0x50, 0x79, 0xa1, 0x56, 0xfa, 0xf9, 0x7d, 0xbb, 0x38, 0x0c, - 0x5c, 0x1d, 0x58, 0x9e, 0x70, 0xea, 0x07, 0x9e, 0x1d, 0x03, 0x95, 0xa7, 0xb0, 0xe8, 0x8e, 0x28, - 0x4a, 0xa7, 0xd6, 0x50, 0x79, 0xb1, 0xb2, 0x65, 0x64, 0x27, 0x6a, 0x64, 0x85, 0xad, 0xcd, 0x1d, - 0xfd, 0x5e, 0x2d, 0xd8, 0x49, 0x1a, 0x7d, 0x03, 0xd6, 0xa5, 0x52, 0x6d, 0xcc, 0x42, 0x12, 0x30, - 0xac, 0xef, 0x83, 0x66, 0x31, 0xaf, 0xea, 0xba, 0x02, 0xf5, 0x38, 0xc4, 0xb4, 0xff, 0x3b, 0xd4, - 0xab, 0xdc, 0x80, 0x25, 0x51, 0x89, 0x6a, 0x32, 0x3b, 0x3b, 0x75, 0xae, 0x94, 0xe1, 0x1c, 0x19, - 0x77, 0x8f, 0x12, 0x5a, 0xb0, 0xff, 0x3d, 0xd6, 0xcb, 0x70, 0x5d, 0x1e, 0x57, 0x28, 0xfc, 0x82, - 0xa0, 0x68, 0x31, 0xaf, 0x4e, 0xb1, 0xc3, 0x71, 0x7d, 0xd4, 0xae, 0x5c, 0xd5, 0xde, 0xcb, 0xaa, - 0xb6, 0x31, 0xa9, 0xda, 0x89, 0x68, 0x53, 0xea, 0xdd, 0x80, 0x95, 0x2c, 0x8d, 0x71, 0x12, 0xca, - 0x35, 0x38, 0x9b, 0x98, 0xb4, 0x87, 0x8d, 0x48, 0xf1, 0x9c, 0x3d, 0x7e, 0xa8, 0x7f, 0x43, 0xb0, - 0x2a, 0xda, 0x96, 0x1d, 0xfc, 0x44, 0x65, 0xbd, 0x09, 0x1b, 0x53, 0xe4, 0x8a, 0x2e, 0xbe, 0x86, - 0xe5, 0x2c, 0x68, 0x3c, 0x38, 0x79, 0xb2, 0xd2, 0x00, 0x02, 0x7c, 0x30, 0x3e, 0x67, 0x89, 0x13, - 0x7d, 0x1d, 0xae, 0x4a, 0x42, 0x0a, 0x65, 0x8f, 0xe0, 0x82, 0xc5, 0xbc, 0x86, 0xcf, 0x9c, 0x66, - 0xfb, 0x7f, 0xe7, 0x4b, 0x7f, 0x10, 0xad, 0x88, 0x34, 0xd9, 0x6c, 0x83, 0x50, 0xf9, 0x31, 0x0f, - 0xa7, 0x2d, 0xe6, 0x29, 0x1f, 0x11, 0xa8, 0x92, 0x7d, 0xb3, 0x3b, 0xa9, 0x85, 0xd2, 0xbb, 0xaf, - 0xde, 0xcd, 0xe5, 0x26, 0x52, 0xf8, 0x84, 0x60, 0x59, 0xb6, 0x30, 0x6e, 0x49, 0xe8, 0x25, 0x7e, - 0xea, 0xbd, 0x7c, 0x7e, 0x42, 0xd7, 0x01, 0x9c, 0x4f, 0x2f, 0x89, 0x2d, 0x09, 0x69, 0x0a, 0xad, - 0xde, 0x9c, 0x05, 0x2d, 0x02, 0x7f, 0x46, 0xb0, 0x22, 0xbd, 0xb3, 0xb7, 0xa7, 0x16, 0x3c, 0xdb, - 0x51, 0xbd, 0x9f, 0xd3, 0x51, 0x48, 0x7b, 0x8f, 0xa0, 0x34, 0xf1, 0xd2, 0xed, 0xcc, 0xc2, 0x1e, - 0x77, 0xe9, 0x4e, 0x0e, 0x27, 0x21, 0xe7, 0x1d, 0x28, 0x19, 0x17, 0x6d, 0x5b, 0x42, 0x99, 0x86, - 0xab, 0xbb, 0x33, 0xc1, 0xe3, 0xd8, 0xb5, 0xfa, 0x51, 0x57, 0x43, 0xc7, 0x5d, 0x0d, 0xfd, 0xe9, - 0x6a, 0xe8, 0x43, 0x4f, 0x2b, 0x1c, 0xf7, 0xb4, 0xc2, 0xaf, 0x9e, 0x56, 0x78, 0xbe, 0xe9, 0xf9, - 0xfc, 0xd5, 0x9b, 0xa6, 0xd1, 0x22, 0x1d, 0x73, 0x44, 0x6d, 0xb2, 0x30, 0x30, 0x0f, 0x4d, 0xf1, - 0x06, 0x79, 0x1b, 0x62, 0xd6, 0x9c, 0x8f, 0x9e, 0x02, 0x3b, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, - 0xb8, 0xa7, 0xc9, 0x9a, 0x9b, 0x08, 0x00, 0x00, + proto.RegisterType((*MsgUpdateValidatorDescription)(nil), "spn.profile.MsgUpdateValidatorDescription") + proto.RegisterType((*MsgUpdateValidatorDescriptionResponse)(nil), "spn.profile.MsgUpdateValidatorDescriptionResponse") + proto.RegisterType((*MsgAddValidatorOperatorAddress)(nil), "spn.profile.MsgAddValidatorOperatorAddress") + proto.RegisterType((*MsgAddValidatorOperatorAddressResponse)(nil), "spn.profile.MsgAddValidatorOperatorAddressResponse") + proto.RegisterType((*MsgCreateCoordinator)(nil), "spn.profile.MsgCreateCoordinator") + proto.RegisterType((*MsgCreateCoordinatorResponse)(nil), "spn.profile.MsgCreateCoordinatorResponse") + proto.RegisterType((*MsgUpdateCoordinatorDescription)(nil), "spn.profile.MsgUpdateCoordinatorDescription") + proto.RegisterType((*MsgUpdateCoordinatorDescriptionResponse)(nil), "spn.profile.MsgUpdateCoordinatorDescriptionResponse") + proto.RegisterType((*MsgUpdateCoordinatorAddress)(nil), "spn.profile.MsgUpdateCoordinatorAddress") + proto.RegisterType((*MsgUpdateCoordinatorAddressResponse)(nil), "spn.profile.MsgUpdateCoordinatorAddressResponse") + proto.RegisterType((*MsgDisableCoordinator)(nil), "spn.profile.MsgDisableCoordinator") + proto.RegisterType((*MsgDisableCoordinatorResponse)(nil), "spn.profile.MsgDisableCoordinatorResponse") +} + +func init() { proto.RegisterFile("spn/profile/tx.proto", fileDescriptor_227b73a1f63bc900) } + +var fileDescriptor_227b73a1f63bc900 = []byte{ + // 574 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x55, 0x4d, 0x6e, 0xd3, 0x40, + 0x14, 0xce, 0x40, 0x01, 0xf5, 0x45, 0x08, 0xb0, 0x82, 0x14, 0x9c, 0xd6, 0x6d, 0x5d, 0x4a, 0x93, + 0x00, 0x09, 0x4a, 0xb9, 0x40, 0x7e, 0x58, 0x54, 0x95, 0x85, 0x64, 0x04, 0x0b, 0x36, 0xc8, 0xc9, + 0x0c, 0xc6, 0x52, 0xe2, 0x31, 0x33, 0x43, 0x28, 0x12, 0x12, 0x12, 0x27, 0x60, 0xc7, 0x8e, 0x05, + 0x67, 0xe0, 0x10, 0x15, 0xab, 0x8a, 0x15, 0x2b, 0x84, 0x92, 0x8b, 0xa0, 0x38, 0xf6, 0xc4, 0x8e, + 0x8d, 0xdd, 0x94, 0x05, 0xab, 0xc4, 0xef, 0x7d, 0xf3, 0xbe, 0xef, 0xfd, 0xcd, 0x40, 0x89, 0x7b, + 0x6e, 0xd3, 0x63, 0xf4, 0xa5, 0x33, 0x24, 0x4d, 0x71, 0xdc, 0xf0, 0x18, 0x15, 0x54, 0x29, 0x72, + 0xcf, 0x6d, 0x04, 0x56, 0xb5, 0x64, 0x53, 0x9b, 0xfa, 0xf6, 0xe6, 0xec, 0xdf, 0x1c, 0xa2, 0xde, + 0x1a, 0x50, 0x3e, 0xa2, 0xfc, 0xc5, 0xdc, 0x31, 0xff, 0x08, 0x5c, 0x9b, 0xd1, 0x98, 0x03, 0x4a, + 0x19, 0x76, 0x5c, 0x4b, 0x50, 0x16, 0xb8, 0x2b, 0x51, 0xf7, 0xd8, 0x1a, 0x3a, 0x78, 0xe1, 0xd4, + 0xbf, 0x20, 0xd8, 0x34, 0xb8, 0xfd, 0xd4, 0xc3, 0x96, 0x20, 0xcf, 0x42, 0x67, 0x8f, 0xf0, 0x01, + 0x73, 0x3c, 0xe1, 0x50, 0x57, 0x69, 0xc1, 0x15, 0x0b, 0x63, 0x46, 0x38, 0x2f, 0xa3, 0x6d, 0x54, + 0x5d, 0xef, 0x94, 0x7f, 0x7c, 0xbb, 0x5f, 0x0a, 0x04, 0xb4, 0xe7, 0x9e, 0x27, 0x82, 0x39, 0xae, + 0x6d, 0x86, 0x40, 0xe5, 0x10, 0x8a, 0x78, 0x11, 0xa2, 0x7c, 0x61, 0x1b, 0x55, 0x8b, 0xad, 0x9d, + 0x46, 0x24, 0xcb, 0x46, 0x1a, 0x57, 0x67, 0xed, 0xe4, 0xd7, 0x56, 0xc1, 0x8c, 0x9e, 0xd5, 0xf7, + 0x61, 0x2f, 0x53, 0x9f, 0x49, 0xb8, 0x47, 0x5d, 0x4e, 0xf4, 0x31, 0x68, 0x06, 0xb7, 0xdb, 0x18, + 0x4b, 0xd4, 0x63, 0x8f, 0xb0, 0xd9, 0x6f, 0x20, 0x52, 0xa9, 0xc3, 0x75, 0x99, 0x7e, 0x3b, 0x9a, + 0x92, 0x99, 0xb0, 0x2b, 0x55, 0xb8, 0x46, 0xe3, 0xc7, 0xfd, 0x2c, 0xd6, 0xcd, 0x65, 0xb3, 0x5e, + 0x85, 0x3b, 0xd9, 0xbc, 0x52, 0xe1, 0x67, 0x04, 0x25, 0x83, 0xdb, 0x5d, 0x46, 0x2c, 0x41, 0xba, + 0x8b, 0x3e, 0x9d, 0xab, 0xc4, 0x47, 0x69, 0x25, 0xde, 0x8d, 0x95, 0x38, 0x42, 0x91, 0x53, 0xe4, + 0x1e, 0x6c, 0xa4, 0x09, 0x0b, 0x95, 0x2b, 0xb7, 0xe1, 0x6a, 0x64, 0xae, 0x0e, 0x7b, 0xbe, 0xcc, + 0x35, 0x33, 0x6e, 0xd4, 0xbf, 0x22, 0xd8, 0x92, 0xbd, 0x4a, 0x27, 0xff, 0xff, 0xa9, 0xd6, 0x60, + 0x3f, 0x47, 0xa3, 0xec, 0xd7, 0x6b, 0xa8, 0xa4, 0x41, 0xc3, 0x11, 0x39, 0x4f, 0x2a, 0x1a, 0x80, + 0x4b, 0xde, 0xc6, 0x27, 0x2a, 0x62, 0xd1, 0xf7, 0x60, 0x37, 0x83, 0x52, 0x2a, 0x3b, 0x82, 0x9b, + 0x06, 0xb7, 0x7b, 0x0e, 0xb7, 0xfa, 0xc3, 0x7f, 0x9d, 0x24, 0xfd, 0x91, 0x7f, 0x03, 0x24, 0x83, + 0xad, 0xd6, 0xfd, 0xd6, 0xf7, 0x4b, 0x70, 0xd1, 0xe0, 0xb6, 0xf2, 0x1e, 0xd4, 0x8c, 0xdb, 0xa4, + 0x1e, 0x6b, 0x5b, 0xe6, 0x66, 0xab, 0xad, 0xb3, 0x63, 0xa5, 0xd6, 0x0f, 0x50, 0xc9, 0xba, 0x02, + 0xee, 0x2e, 0x87, 0xcc, 0x00, 0xab, 0x07, 0x2b, 0x80, 0xa5, 0x00, 0x0b, 0x6e, 0x24, 0x17, 0x7c, + 0x67, 0x39, 0x52, 0x02, 0xa2, 0xd6, 0x72, 0x21, 0x92, 0xe2, 0x23, 0x82, 0x8d, 0xcc, 0x25, 0xbb, + 0x97, 0x5e, 0xb8, 0x74, 0xb4, 0xfa, 0x70, 0x15, 0xb4, 0x14, 0x31, 0x86, 0xf2, 0x5f, 0x37, 0xa3, + 0x9a, 0x1b, 0x31, 0x2c, 0xf1, 0x83, 0xb3, 0x22, 0x25, 0x2f, 0x06, 0x25, 0x65, 0xee, 0xf5, 0xe5, + 0x38, 0x49, 0x8c, 0x5a, 0xcf, 0xc7, 0x84, 0x2c, 0x9d, 0xee, 0xc9, 0x44, 0x43, 0xa7, 0x13, 0x0d, + 0xfd, 0x9e, 0x68, 0xe8, 0xd3, 0x54, 0x2b, 0x9c, 0x4e, 0xb5, 0xc2, 0xcf, 0xa9, 0x56, 0x78, 0x5e, + 0xb3, 0x1d, 0xf1, 0xea, 0x4d, 0xbf, 0x31, 0xa0, 0xa3, 0xa6, 0x20, 0x2e, 0x26, 0x6c, 0xe4, 0xb8, + 0xa2, 0x39, 0x7b, 0x63, 0x8f, 0x17, 0x0f, 0xfb, 0x3b, 0x8f, 0xf0, 0xfe, 0x65, 0xff, 0x89, 0x3d, + 0xf8, 0x13, 0x00, 0x00, 0xff, 0xff, 0x57, 0xdf, 0xd1, 0xbe, 0xf4, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -657,7 +656,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) UpdateValidatorDescription(ctx context.Context, in *MsgUpdateValidatorDescription, opts ...grpc.CallOption) (*MsgUpdateValidatorDescriptionResponse, error) { out := new(MsgUpdateValidatorDescriptionResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.profile.Msg/UpdateValidatorDescription", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.profile.Msg/UpdateValidatorDescription", in, out, opts...) if err != nil { return nil, err } @@ -666,7 +665,7 @@ func (c *msgClient) UpdateValidatorDescription(ctx context.Context, in *MsgUpdat func (c *msgClient) AddValidatorOperatorAddress(ctx context.Context, in *MsgAddValidatorOperatorAddress, opts ...grpc.CallOption) (*MsgAddValidatorOperatorAddressResponse, error) { out := new(MsgAddValidatorOperatorAddressResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.profile.Msg/AddValidatorOperatorAddress", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.profile.Msg/AddValidatorOperatorAddress", in, out, opts...) if err != nil { return nil, err } @@ -675,7 +674,7 @@ func (c *msgClient) AddValidatorOperatorAddress(ctx context.Context, in *MsgAddV func (c *msgClient) CreateCoordinator(ctx context.Context, in *MsgCreateCoordinator, opts ...grpc.CallOption) (*MsgCreateCoordinatorResponse, error) { out := new(MsgCreateCoordinatorResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.profile.Msg/CreateCoordinator", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.profile.Msg/CreateCoordinator", in, out, opts...) if err != nil { return nil, err } @@ -684,7 +683,7 @@ func (c *msgClient) CreateCoordinator(ctx context.Context, in *MsgCreateCoordina func (c *msgClient) UpdateCoordinatorDescription(ctx context.Context, in *MsgUpdateCoordinatorDescription, opts ...grpc.CallOption) (*MsgUpdateCoordinatorDescriptionResponse, error) { out := new(MsgUpdateCoordinatorDescriptionResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.profile.Msg/UpdateCoordinatorDescription", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.profile.Msg/UpdateCoordinatorDescription", in, out, opts...) if err != nil { return nil, err } @@ -693,7 +692,7 @@ func (c *msgClient) UpdateCoordinatorDescription(ctx context.Context, in *MsgUpd func (c *msgClient) UpdateCoordinatorAddress(ctx context.Context, in *MsgUpdateCoordinatorAddress, opts ...grpc.CallOption) (*MsgUpdateCoordinatorAddressResponse, error) { out := new(MsgUpdateCoordinatorAddressResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.profile.Msg/UpdateCoordinatorAddress", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.profile.Msg/UpdateCoordinatorAddress", in, out, opts...) if err != nil { return nil, err } @@ -702,7 +701,7 @@ func (c *msgClient) UpdateCoordinatorAddress(ctx context.Context, in *MsgUpdateC func (c *msgClient) DisableCoordinator(ctx context.Context, in *MsgDisableCoordinator, opts ...grpc.CallOption) (*MsgDisableCoordinatorResponse, error) { out := new(MsgDisableCoordinatorResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.profile.Msg/DisableCoordinator", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.profile.Msg/DisableCoordinator", in, out, opts...) if err != nil { return nil, err } @@ -756,7 +755,7 @@ func _Msg_UpdateValidatorDescription_Handler(srv interface{}, ctx context.Contex } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.profile.Msg/UpdateValidatorDescription", + FullMethod: "/spn.profile.Msg/UpdateValidatorDescription", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateValidatorDescription(ctx, req.(*MsgUpdateValidatorDescription)) @@ -774,7 +773,7 @@ func _Msg_AddValidatorOperatorAddress_Handler(srv interface{}, ctx context.Conte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.profile.Msg/AddValidatorOperatorAddress", + FullMethod: "/spn.profile.Msg/AddValidatorOperatorAddress", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).AddValidatorOperatorAddress(ctx, req.(*MsgAddValidatorOperatorAddress)) @@ -792,7 +791,7 @@ func _Msg_CreateCoordinator_Handler(srv interface{}, ctx context.Context, dec fu } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.profile.Msg/CreateCoordinator", + FullMethod: "/spn.profile.Msg/CreateCoordinator", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).CreateCoordinator(ctx, req.(*MsgCreateCoordinator)) @@ -810,7 +809,7 @@ func _Msg_UpdateCoordinatorDescription_Handler(srv interface{}, ctx context.Cont } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.profile.Msg/UpdateCoordinatorDescription", + FullMethod: "/spn.profile.Msg/UpdateCoordinatorDescription", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateCoordinatorDescription(ctx, req.(*MsgUpdateCoordinatorDescription)) @@ -828,7 +827,7 @@ func _Msg_UpdateCoordinatorAddress_Handler(srv interface{}, ctx context.Context, } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.profile.Msg/UpdateCoordinatorAddress", + FullMethod: "/spn.profile.Msg/UpdateCoordinatorAddress", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateCoordinatorAddress(ctx, req.(*MsgUpdateCoordinatorAddress)) @@ -846,7 +845,7 @@ func _Msg_DisableCoordinator_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.profile.Msg/DisableCoordinator", + FullMethod: "/spn.profile.Msg/DisableCoordinator", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).DisableCoordinator(ctx, req.(*MsgDisableCoordinator)) @@ -855,7 +854,7 @@ func _Msg_DisableCoordinator_Handler(srv interface{}, ctx context.Context, dec f } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "tendermint.spn.profile.Msg", + ServiceName: "spn.profile.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -884,7 +883,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "profile/tx.proto", + Metadata: "spn/profile/tx.proto", } func (m *MsgUpdateValidatorDescription) Marshal() (dAtA []byte, err error) { diff --git a/x/profile/types/validator.pb.go b/x/profile/types/validator.pb.go index cdf697364..88a3d5b78 100644 --- a/x/profile/types/validator.pb.go +++ b/x/profile/types/validator.pb.go @@ -1,13 +1,13 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: profile/validator.proto +// source: spn/profile/validator.proto package types import ( fmt "fmt" _ "github.com/cosmos/cosmos-proto" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -34,7 +34,7 @@ func (m *Validator) Reset() { *m = Validator{} } func (m *Validator) String() string { return proto.CompactTextString(m) } func (*Validator) ProtoMessage() {} func (*Validator) Descriptor() ([]byte, []int) { - return fileDescriptor_8e2276f43ab77aa3, []int{0} + return fileDescriptor_6edbd82758571ec4, []int{0} } func (m *Validator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -96,7 +96,7 @@ func (m *ValidatorDescription) Reset() { *m = ValidatorDescription{} } func (m *ValidatorDescription) String() string { return proto.CompactTextString(m) } func (*ValidatorDescription) ProtoMessage() {} func (*ValidatorDescription) Descriptor() ([]byte, []int) { - return fileDescriptor_8e2276f43ab77aa3, []int{1} + return fileDescriptor_6edbd82758571ec4, []int{1} } func (m *ValidatorDescription) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -169,7 +169,7 @@ func (m *ValidatorByOperatorAddress) Reset() { *m = ValidatorByOperatorA func (m *ValidatorByOperatorAddress) String() string { return proto.CompactTextString(m) } func (*ValidatorByOperatorAddress) ProtoMessage() {} func (*ValidatorByOperatorAddress) Descriptor() ([]byte, []int) { - return fileDescriptor_8e2276f43ab77aa3, []int{2} + return fileDescriptor_6edbd82758571ec4, []int{2} } func (m *ValidatorByOperatorAddress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -213,40 +213,40 @@ func (m *ValidatorByOperatorAddress) GetValidatorAddress() string { } func init() { - proto.RegisterType((*Validator)(nil), "tendermint.spn.profile.Validator") - proto.RegisterType((*ValidatorDescription)(nil), "tendermint.spn.profile.ValidatorDescription") - proto.RegisterType((*ValidatorByOperatorAddress)(nil), "tendermint.spn.profile.ValidatorByOperatorAddress") + proto.RegisterType((*Validator)(nil), "spn.profile.Validator") + proto.RegisterType((*ValidatorDescription)(nil), "spn.profile.ValidatorDescription") + proto.RegisterType((*ValidatorByOperatorAddress)(nil), "spn.profile.ValidatorByOperatorAddress") } -func init() { proto.RegisterFile("profile/validator.proto", fileDescriptor_8e2276f43ab77aa3) } +func init() { proto.RegisterFile("spn/profile/validator.proto", fileDescriptor_6edbd82758571ec4) } -var fileDescriptor_8e2276f43ab77aa3 = []byte{ - // 390 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0x4f, 0x4e, 0xe3, 0x30, - 0x14, 0xc6, 0xe3, 0xb6, 0x33, 0x9d, 0xb8, 0x8b, 0x99, 0xb1, 0xaa, 0x19, 0x4f, 0x16, 0x99, 0xaa, - 0xab, 0x20, 0x95, 0x44, 0x2a, 0x27, 0x20, 0xed, 0x1e, 0x29, 0x20, 0x16, 0x6c, 0x50, 0x9a, 0x98, - 0x60, 0xd1, 0xd8, 0x91, 0xed, 0x02, 0xb9, 0x03, 0x0b, 0xce, 0xc1, 0x9a, 0x1b, 0xb0, 0xe9, 0xb2, - 0x62, 0xc5, 0x0a, 0xa1, 0xf6, 0x22, 0x28, 0x7f, 0x0b, 0x6d, 0x25, 0x76, 0xf9, 0xfc, 0xfd, 0xde, - 0xcb, 0x67, 0xbf, 0x07, 0xff, 0x26, 0x82, 0x5f, 0xd0, 0x29, 0x71, 0xae, 0xfd, 0x29, 0x0d, 0x7d, - 0xc5, 0x85, 0x9d, 0x08, 0xae, 0x38, 0xfa, 0xa3, 0x08, 0x0b, 0x89, 0x88, 0x29, 0x53, 0xb6, 0x4c, - 0x98, 0x5d, 0x72, 0x46, 0x37, 0xe2, 0x11, 0xcf, 0x11, 0x27, 0xfb, 0x2a, 0x68, 0xe3, 0x5f, 0xc0, - 0x65, 0xcc, 0xe5, 0x79, 0x61, 0x14, 0xa2, 0xb0, 0xfa, 0x4f, 0x00, 0xea, 0xa7, 0x55, 0x73, 0x34, - 0x84, 0x6d, 0x3f, 0x0c, 0x05, 0x91, 0x12, 0x83, 0x1e, 0xb0, 0x74, 0x17, 0x3f, 0x3f, 0xee, 0x77, - 0xcb, 0x82, 0xc3, 0xc2, 0x39, 0x56, 0x82, 0xb2, 0xc8, 0xab, 0x40, 0x34, 0x80, 0xbf, 0x79, 0x42, - 0x44, 0x56, 0x5f, 0x12, 0x44, 0xe2, 0x46, 0xaf, 0x69, 0xe9, 0xde, 0xb6, 0x81, 0x4e, 0x60, 0x27, - 0x24, 0x32, 0x10, 0x34, 0x51, 0x94, 0x33, 0xdc, 0xec, 0x01, 0xab, 0x33, 0x1c, 0xd8, 0xbb, 0xaf, - 0x63, 0xd7, 0xc9, 0xc6, 0xeb, 0x1a, 0xb7, 0x35, 0x7f, 0xfd, 0xaf, 0x79, 0x1f, 0xdb, 0xf4, 0x1f, - 0x00, 0xec, 0xee, 0x62, 0x91, 0x01, 0x7f, 0xd0, 0x90, 0x30, 0x45, 0x55, 0x5a, 0xdc, 0xc8, 0xab, - 0x35, 0xc2, 0xb0, 0x1d, 0x73, 0x46, 0xaf, 0x88, 0xc0, 0x8d, 0xdc, 0xaa, 0x64, 0xe6, 0xdc, 0x90, - 0x89, 0xa4, 0x8a, 0xe4, 0x01, 0x75, 0xaf, 0x92, 0xc8, 0x82, 0x3f, 0x25, 0x09, 0x66, 0x82, 0xaa, - 0x74, 0xc4, 0x99, 0xf2, 0x03, 0x85, 0x5b, 0x39, 0xb1, 0x79, 0x9c, 0xf5, 0x08, 0x89, 0xf2, 0xe9, - 0x54, 0xe2, 0x6f, 0x45, 0x8f, 0x52, 0xf6, 0xef, 0x00, 0x34, 0xea, 0xb0, 0x6e, 0x7a, 0xf4, 0xf9, - 0x8d, 0xb2, 0x5f, 0x6c, 0x3c, 0x5b, 0x99, 0x7c, 0xf3, 0x18, 0x8d, 0xe1, 0xaf, 0x7a, 0x2f, 0x2a, - 0xb4, 0xf1, 0xc5, 0xd8, 0xb6, 0x2a, 0xdc, 0xd1, 0x7c, 0x69, 0x82, 0xc5, 0xd2, 0x04, 0x6f, 0x4b, - 0x13, 0xdc, 0xaf, 0x4c, 0x6d, 0xb1, 0x32, 0xb5, 0x97, 0x95, 0xa9, 0x9d, 0xed, 0x45, 0x54, 0x5d, - 0xce, 0x26, 0x76, 0xc0, 0x63, 0x67, 0x3d, 0x20, 0x47, 0x26, 0xcc, 0xb9, 0x75, 0xaa, 0xcd, 0x54, - 0x69, 0x42, 0xe4, 0xe4, 0x7b, 0xbe, 0x4d, 0x07, 0xef, 0x01, 0x00, 0x00, 0xff, 0xff, 0x8f, 0x87, - 0xc4, 0xc6, 0xb1, 0x02, 0x00, 0x00, +var fileDescriptor_6edbd82758571ec4 = []byte{ + // 386 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x52, 0xbd, 0x4e, 0xeb, 0x30, + 0x18, 0x8d, 0xdb, 0xde, 0xdb, 0x1b, 0x77, 0xb8, 0xf7, 0x5a, 0x1d, 0x4c, 0x90, 0x42, 0xe9, 0x14, + 0x24, 0x48, 0xa4, 0xf2, 0x04, 0xa4, 0x5d, 0x98, 0x90, 0x82, 0xc4, 0xc0, 0x82, 0xd2, 0xc4, 0x04, + 0x8b, 0xc6, 0x8e, 0x6c, 0x17, 0xc8, 0x3b, 0x30, 0xf0, 0x1c, 0xcc, 0x0c, 0x3c, 0x42, 0xc7, 0x8a, + 0x89, 0x09, 0xa1, 0xf6, 0x45, 0x50, 0x7e, 0x29, 0x2d, 0x12, 0x5b, 0xce, 0x77, 0xce, 0xf9, 0x72, + 0x6c, 0x1f, 0xb8, 0x2d, 0x13, 0xe6, 0x24, 0x82, 0x5f, 0xd2, 0x09, 0x71, 0x6e, 0xfc, 0x09, 0x0d, + 0x7d, 0xc5, 0x85, 0x9d, 0x08, 0xae, 0x38, 0xea, 0xc8, 0x84, 0xd9, 0x25, 0x69, 0x74, 0x23, 0x1e, + 0xf1, 0x7c, 0xee, 0x64, 0x5f, 0x85, 0xc4, 0xd8, 0x0a, 0xb8, 0x8c, 0xb9, 0xbc, 0x28, 0x88, 0x02, + 0x14, 0x54, 0xff, 0x19, 0x40, 0xfd, 0xac, 0xda, 0x88, 0x06, 0xb0, 0xed, 0x87, 0xa1, 0x20, 0x52, + 0x62, 0xd0, 0x03, 0x96, 0xee, 0xe2, 0x97, 0xa7, 0x83, 0x6e, 0x69, 0x38, 0x2a, 0x98, 0x53, 0x25, + 0x28, 0x8b, 0xbc, 0x4a, 0x88, 0xf6, 0xe1, 0x7f, 0x9e, 0x10, 0x91, 0xf9, 0x4b, 0x05, 0x91, 0xb8, + 0xd1, 0x6b, 0x5a, 0xba, 0xb7, 0x49, 0xa0, 0x63, 0xd8, 0x09, 0x89, 0x0c, 0x04, 0x4d, 0x14, 0xe5, + 0x0c, 0x37, 0x7b, 0xc0, 0xea, 0x0c, 0x76, 0xed, 0x95, 0x33, 0xd8, 0x75, 0x9c, 0xd1, 0xa7, 0xd0, + 0x6d, 0xcd, 0xde, 0x76, 0x34, 0x6f, 0xd5, 0xdb, 0x7f, 0x04, 0xb0, 0xfb, 0x9d, 0x16, 0x19, 0xf0, + 0x0f, 0x0d, 0x09, 0x53, 0x54, 0xa5, 0xc5, 0x31, 0xbc, 0x1a, 0x23, 0x0c, 0xdb, 0x31, 0x67, 0xf4, + 0x9a, 0x08, 0xdc, 0xc8, 0xa9, 0x0a, 0x66, 0xcc, 0x2d, 0x19, 0x4b, 0xaa, 0x48, 0x9e, 0x4a, 0xf7, + 0x2a, 0x88, 0x2c, 0xf8, 0x57, 0x92, 0x60, 0x2a, 0xa8, 0x4a, 0x87, 0x9c, 0x29, 0x3f, 0x50, 0xb8, + 0x95, 0x2b, 0xd6, 0xc7, 0xd9, 0x8e, 0x90, 0x28, 0x9f, 0x4e, 0x24, 0xfe, 0x55, 0xec, 0x28, 0x61, + 0xff, 0x1e, 0x40, 0xa3, 0x0e, 0xeb, 0xa6, 0x27, 0x5f, 0x2f, 0x26, 0xfb, 0xc5, 0xda, 0x5d, 0x95, + 0xc9, 0xd7, 0xc7, 0x68, 0x04, 0xff, 0xd5, 0x0d, 0xa8, 0xa4, 0x8d, 0x1f, 0xde, 0x6a, 0xc3, 0xe1, + 0x0e, 0x67, 0x0b, 0x13, 0xcc, 0x17, 0x26, 0x78, 0x5f, 0x98, 0xe0, 0x61, 0x69, 0x6a, 0xf3, 0xa5, + 0xa9, 0xbd, 0x2e, 0x4d, 0xed, 0x7c, 0x2f, 0xa2, 0xea, 0x6a, 0x3a, 0xb6, 0x03, 0x1e, 0x3b, 0x8a, + 0xb0, 0x90, 0x88, 0x98, 0x32, 0xe5, 0x64, 0x0d, 0xbc, 0xab, 0x3b, 0xa8, 0xd2, 0x84, 0xc8, 0xf1, + 0xef, 0xbc, 0x42, 0x87, 0x1f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x73, 0x86, 0xf9, 0xd1, 0x9f, 0x02, + 0x00, 0x00, } func (m *Validator) Marshal() (dAtA []byte, err error) { diff --git a/x/project/client/cli/query_mainnet_account_test.go b/x/project/client/cli/query_mainnet_account_test.go index 34a885a2d..d139f4a75 100644 --- a/x/project/client/cli/query_mainnet_account_test.go +++ b/x/project/client/cli/query_mainnet_account_test.go @@ -5,10 +5,10 @@ import ( "strconv" "testing" + tmcli "github.com/cometbft/cometbft/libs/cli" "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/project/client/cli/query_project_chains_test.go b/x/project/client/cli/query_project_chains_test.go index 822b2e2a0..c76510723 100644 --- a/x/project/client/cli/query_project_chains_test.go +++ b/x/project/client/cli/query_project_chains_test.go @@ -5,9 +5,9 @@ import ( "strconv" "testing" + tmcli "github.com/cometbft/cometbft/libs/cli" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/project/client/cli/query_project_test.go b/x/project/client/cli/query_project_test.go index 8e7493668..bd5f3773a 100644 --- a/x/project/client/cli/query_project_test.go +++ b/x/project/client/cli/query_project_test.go @@ -7,10 +7,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" + tmcli "github.com/cometbft/cometbft/libs/cli" "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "github.com/tendermint/spn/testutil/nullify" "github.com/tendermint/spn/x/project/client/cli" diff --git a/x/project/keeper/keeper.go b/x/project/keeper/keeper.go index 7d636ed41..879764841 100644 --- a/x/project/keeper/keeper.go +++ b/x/project/keeper/keeper.go @@ -5,10 +5,10 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" + "github.com/cometbft/cometbft/libs/log" "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/tendermint/tendermint/libs/log" launchtypes "github.com/tendermint/spn/x/launch/types" "github.com/tendermint/spn/x/project/types" diff --git a/x/project/keeper/msg_burn_vouchers.go b/x/project/keeper/msg_burn_vouchers.go index ee525a7be..f61d0daed 100644 --- a/x/project/keeper/msg_burn_vouchers.go +++ b/x/project/keeper/msg_burn_vouchers.go @@ -5,6 +5,7 @@ import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" + ignterrors "github.com/ignite/modules/pkg/errors" "github.com/tendermint/spn/x/project/types" diff --git a/x/project/keeper/msg_burn_vouchers_test.go b/x/project/keeper/msg_burn_vouchers_test.go index e5d426804..14cee1d1f 100644 --- a/x/project/keeper/msg_burn_vouchers_test.go +++ b/x/project/keeper/msg_burn_vouchers_test.go @@ -5,9 +5,10 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - ignterrors "github.com/ignite/modules/pkg/errors" "github.com/stretchr/testify/require" + ignterrors "github.com/ignite/modules/pkg/errors" + spntypes "github.com/tendermint/spn/pkg/types" testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" diff --git a/x/project/keeper/msg_create_project.go b/x/project/keeper/msg_create_project.go index 2b6aeaaa9..eb3504f5c 100644 --- a/x/project/keeper/msg_create_project.go +++ b/x/project/keeper/msg_create_project.go @@ -6,6 +6,7 @@ import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" + ignterrors "github.com/ignite/modules/pkg/errors" "github.com/tendermint/spn/x/project/types" diff --git a/x/project/keeper/msg_create_project_test.go b/x/project/keeper/msg_create_project_test.go index d87a0a0c1..c8da9f092 100644 --- a/x/project/keeper/msg_create_project_test.go +++ b/x/project/keeper/msg_create_project_test.go @@ -158,7 +158,7 @@ func TestMsgCreateProject(t *testing.T) { require.EqualValues(t, coordMap[tc.msg.Coordinator], project.CoordinatorID) require.False(t, project.MainnetInitialized) require.True(t, tc.msg.TotalSupply.IsEqual(project.TotalSupply)) - require.EqualValues(t, types.EmptyShares(), project.AllocatedShares) + require.EqualValues(t, types.Shares(nil), project.AllocatedShares) // Empty list of project chains projectChains, found := tk.ProjectKeeper.GetProjectChains(sdkCtx, got.ProjectID) diff --git a/x/project/keeper/msg_initialize_mainnet.go b/x/project/keeper/msg_initialize_mainnet.go index e65f2eb8d..78cbddc34 100644 --- a/x/project/keeper/msg_initialize_mainnet.go +++ b/x/project/keeper/msg_initialize_mainnet.go @@ -7,6 +7,7 @@ import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" + ignterrors "github.com/ignite/modules/pkg/errors" launchtypes "github.com/tendermint/spn/x/launch/types" diff --git a/x/project/keeper/msg_mint_vouchers.go b/x/project/keeper/msg_mint_vouchers.go index 582647a67..9070cf1e3 100644 --- a/x/project/keeper/msg_mint_vouchers.go +++ b/x/project/keeper/msg_mint_vouchers.go @@ -6,6 +6,7 @@ import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" + ignterrors "github.com/ignite/modules/pkg/errors" profiletypes "github.com/tendermint/spn/x/profile/types" diff --git a/x/project/keeper/msg_redeem_vouchers.go b/x/project/keeper/msg_redeem_vouchers.go index 2c4206312..22f87d72a 100644 --- a/x/project/keeper/msg_redeem_vouchers.go +++ b/x/project/keeper/msg_redeem_vouchers.go @@ -6,6 +6,7 @@ import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" + ignterrors "github.com/ignite/modules/pkg/errors" "github.com/tendermint/spn/x/project/types" diff --git a/x/project/keeper/msg_redeem_vouchers_test.go b/x/project/keeper/msg_redeem_vouchers_test.go index a7e579dcc..c9b5efe9c 100644 --- a/x/project/keeper/msg_redeem_vouchers_test.go +++ b/x/project/keeper/msg_redeem_vouchers_test.go @@ -6,9 +6,10 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - ignterrors "github.com/ignite/modules/pkg/errors" "github.com/stretchr/testify/require" + ignterrors "github.com/ignite/modules/pkg/errors" + spntypes "github.com/tendermint/spn/pkg/types" testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" diff --git a/x/project/keeper/msg_unredeem_vouchers.go b/x/project/keeper/msg_unredeem_vouchers.go index 5817bd29e..bce9b3c95 100644 --- a/x/project/keeper/msg_unredeem_vouchers.go +++ b/x/project/keeper/msg_unredeem_vouchers.go @@ -6,6 +6,7 @@ import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" + ignterrors "github.com/ignite/modules/pkg/errors" "github.com/tendermint/spn/x/project/types" diff --git a/x/project/keeper/msg_update_special_allocations.go b/x/project/keeper/msg_update_special_allocations.go index 7a660ee07..4f198605c 100644 --- a/x/project/keeper/msg_update_special_allocations.go +++ b/x/project/keeper/msg_update_special_allocations.go @@ -6,6 +6,7 @@ import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" + ignterrors "github.com/ignite/modules/pkg/errors" profiletypes "github.com/tendermint/spn/x/profile/types" diff --git a/x/project/keeper/msg_update_special_allocations_test.go b/x/project/keeper/msg_update_special_allocations_test.go index 512f1efda..5cc73eea6 100644 --- a/x/project/keeper/msg_update_special_allocations_test.go +++ b/x/project/keeper/msg_update_special_allocations_test.go @@ -5,9 +5,10 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - ignterrors "github.com/ignite/modules/pkg/errors" "github.com/stretchr/testify/require" + ignterrors "github.com/ignite/modules/pkg/errors" + tc "github.com/tendermint/spn/testutil/constructor" testkeeper "github.com/tendermint/spn/testutil/keeper" "github.com/tendermint/spn/testutil/sample" diff --git a/x/project/keeper/msg_update_total_supply.go b/x/project/keeper/msg_update_total_supply.go index 3de68070b..0ae705985 100644 --- a/x/project/keeper/msg_update_total_supply.go +++ b/x/project/keeper/msg_update_total_supply.go @@ -7,6 +7,7 @@ import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" + ignterrors "github.com/ignite/modules/pkg/errors" profiletypes "github.com/tendermint/spn/x/profile/types" diff --git a/x/project/module.go b/x/project/module.go index bfe68229d..1560eea20 100644 --- a/x/project/module.go +++ b/x/project/module.go @@ -5,6 +5,7 @@ import ( "encoding/json" "fmt" + abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" cdctypes "github.com/cosmos/cosmos-sdk/codec/types" @@ -13,7 +14,6 @@ import ( "github.com/gorilla/mux" "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - abci "github.com/tendermint/tendermint/abci/types" "github.com/tendermint/spn/x/project/client/cli" "github.com/tendermint/spn/x/project/keeper" @@ -124,19 +124,9 @@ func (am AppModule) Name() string { return am.AppModuleBasic.Name() } -// Route returns the capability project module's message routing key. -func (am AppModule) Route() sdk.Route { - return sdk.Route{} -} - // QuerierRoute returns the project module's query routing key. func (AppModule) QuerierRoute() string { return types.QuerierRoute } -// LegacyQuerierHandler returns the project module's Querier. -func (am AppModule) LegacyQuerierHandler(_ *codec.LegacyAmino) sdk.Querier { - return nil -} - // RegisterServices registers a GRPC query service to respond to the // module-specific GRPC queries. func (am AppModule) RegisterServices(cfg module.Configurator) { diff --git a/x/project/module_simulation.go b/x/project/module_simulation.go index ac66cf77a..cee8daf46 100644 --- a/x/project/module_simulation.go +++ b/x/project/module_simulation.go @@ -49,13 +49,13 @@ func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedP } // RandomizedParams creates randomized param changes for the simulator -func (am AppModule) RandomizedParams(r *rand.Rand) []simtypes.ParamChange { +func (am AppModule) RandomizedParams(_ *rand.Rand) []simtypes.LegacyParamChange { projectParams := types.DefaultParams() - return []simtypes.ParamChange{ - simulation.NewSimParamChange(types.ModuleName, string(types.KeyTotalSupplyRange), func(r *rand.Rand) string { + return []simtypes.LegacyParamChange{ + simulation.NewSimLegacyParamChange(types.ModuleName, string(types.KeyTotalSupplyRange), func(r *rand.Rand) string { return string(types.Amino.MustMarshalJSON(projectParams.TotalSupplyRange)) }), - simulation.NewSimParamChange(types.ModuleName, string(types.KeyProjectCreationFee), func(r *rand.Rand) string { + simulation.NewSimLegacyParamChange(types.ModuleName, string(types.KeyProjectCreationFee), func(r *rand.Rand) string { return string(types.Amino.MustMarshalJSON(projectParams.ProjectCreationFee)) }), } diff --git a/x/project/simulation/simulation.go b/x/project/simulation/simulation.go index a8a789cd7..0bc5d5f92 100644 --- a/x/project/simulation/simulation.go +++ b/x/project/simulation/simulation.go @@ -4,12 +4,11 @@ import ( "math/rand" "github.com/cosmos/cosmos-sdk/baseapp" - "github.com/cosmos/cosmos-sdk/simapp/helpers" - simappparams "github.com/cosmos/cosmos-sdk/simapp/params" + simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" sdksimulation "github.com/cosmos/cosmos-sdk/x/simulation" - + "github.com/tendermint/spn/testutil/encoding" "github.com/tendermint/spn/testutil/sample" "github.com/tendermint/spn/testutil/simulation" "github.com/tendermint/spn/x/project/keeper" @@ -36,7 +35,7 @@ func deliverSimTx( txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: msg, MsgType: msg.Type(), @@ -47,7 +46,7 @@ func deliverSimTx( ModuleName: types.ModuleName, CoinsSpentInMsg: coinsSpent, } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } // SimulateMsgCreateProject simulates a MsgCreateProject message diff --git a/x/project/types/events.pb.go b/x/project/types/events.pb.go index e60608929..bf1bc931e 100644 --- a/x/project/types/events.pb.go +++ b/x/project/types/events.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: project/events.proto +// source: spn/project/events.proto package types @@ -8,8 +8,8 @@ import ( _ "github.com/cosmos/cosmos-proto" _ "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" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -36,7 +36,7 @@ func (m *EventProjectCreated) Reset() { *m = EventProjectCreated{} } func (m *EventProjectCreated) String() string { return proto.CompactTextString(m) } func (*EventProjectCreated) ProtoMessage() {} func (*EventProjectCreated) Descriptor() ([]byte, []int) { - return fileDescriptor_137e778dd9744f2c, []int{0} + return fileDescriptor_42b7dc53d352f155, []int{0} } func (m *EventProjectCreated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -95,7 +95,7 @@ func (m *EventProjectChainAdded) Reset() { *m = EventProjectChainAdded{} func (m *EventProjectChainAdded) String() string { return proto.CompactTextString(m) } func (*EventProjectChainAdded) ProtoMessage() {} func (*EventProjectChainAdded) Descriptor() ([]byte, []int) { - return fileDescriptor_137e778dd9744f2c, []int{1} + return fileDescriptor_42b7dc53d352f155, []int{1} } func (m *EventProjectChainAdded) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -149,7 +149,7 @@ func (m *EventProjectInfoUpdated) Reset() { *m = EventProjectInfoUpdated func (m *EventProjectInfoUpdated) String() string { return proto.CompactTextString(m) } func (*EventProjectInfoUpdated) ProtoMessage() {} func (*EventProjectInfoUpdated) Descriptor() ([]byte, []int) { - return fileDescriptor_137e778dd9744f2c, []int{2} + return fileDescriptor_42b7dc53d352f155, []int{2} } func (m *EventProjectInfoUpdated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -216,7 +216,7 @@ func (m *EventProjectSharesUpdated) Reset() { *m = EventProjectSharesUpd func (m *EventProjectSharesUpdated) String() string { return proto.CompactTextString(m) } func (*EventProjectSharesUpdated) ProtoMessage() {} func (*EventProjectSharesUpdated) Descriptor() ([]byte, []int) { - return fileDescriptor_137e778dd9744f2c, []int{3} + return fileDescriptor_42b7dc53d352f155, []int{3} } func (m *EventProjectSharesUpdated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -276,7 +276,7 @@ func (m *EventProjectTotalSupplyUpdated) Reset() { *m = EventProjectTota func (m *EventProjectTotalSupplyUpdated) String() string { return proto.CompactTextString(m) } func (*EventProjectTotalSupplyUpdated) ProtoMessage() {} func (*EventProjectTotalSupplyUpdated) Descriptor() ([]byte, []int) { - return fileDescriptor_137e778dd9744f2c, []int{4} + return fileDescriptor_42b7dc53d352f155, []int{4} } func (m *EventProjectTotalSupplyUpdated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -336,7 +336,7 @@ func (m *EventProjectMainnetInitialized) Reset() { *m = EventProjectMain func (m *EventProjectMainnetInitialized) String() string { return proto.CompactTextString(m) } func (*EventProjectMainnetInitialized) ProtoMessage() {} func (*EventProjectMainnetInitialized) Descriptor() ([]byte, []int) { - return fileDescriptor_137e778dd9744f2c, []int{5} + return fileDescriptor_42b7dc53d352f155, []int{5} } func (m *EventProjectMainnetInitialized) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -396,7 +396,7 @@ func (m *EventMainnetAccountCreated) Reset() { *m = EventMainnetAccountC func (m *EventMainnetAccountCreated) String() string { return proto.CompactTextString(m) } func (*EventMainnetAccountCreated) ProtoMessage() {} func (*EventMainnetAccountCreated) Descriptor() ([]byte, []int) { - return fileDescriptor_137e778dd9744f2c, []int{6} + return fileDescriptor_42b7dc53d352f155, []int{6} } func (m *EventMainnetAccountCreated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -456,7 +456,7 @@ func (m *EventMainnetAccountUpdated) Reset() { *m = EventMainnetAccountU func (m *EventMainnetAccountUpdated) String() string { return proto.CompactTextString(m) } func (*EventMainnetAccountUpdated) ProtoMessage() {} func (*EventMainnetAccountUpdated) Descriptor() ([]byte, []int) { - return fileDescriptor_137e778dd9744f2c, []int{7} + return fileDescriptor_42b7dc53d352f155, []int{7} } func (m *EventMainnetAccountUpdated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -515,7 +515,7 @@ func (m *EventMainnetAccountRemoved) Reset() { *m = EventMainnetAccountR func (m *EventMainnetAccountRemoved) String() string { return proto.CompactTextString(m) } func (*EventMainnetAccountRemoved) ProtoMessage() {} func (*EventMainnetAccountRemoved) Descriptor() ([]byte, []int) { - return fileDescriptor_137e778dd9744f2c, []int{8} + return fileDescriptor_42b7dc53d352f155, []int{8} } func (m *EventMainnetAccountRemoved) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -568,7 +568,7 @@ func (m *EventMainnetVestingAccountCreated) Reset() { *m = EventMainnetV func (m *EventMainnetVestingAccountCreated) String() string { return proto.CompactTextString(m) } func (*EventMainnetVestingAccountCreated) ProtoMessage() {} func (*EventMainnetVestingAccountCreated) Descriptor() ([]byte, []int) { - return fileDescriptor_137e778dd9744f2c, []int{9} + return fileDescriptor_42b7dc53d352f155, []int{9} } func (m *EventMainnetVestingAccountCreated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -628,7 +628,7 @@ func (m *EventMainnetVestingAccountUpdated) Reset() { *m = EventMainnetV func (m *EventMainnetVestingAccountUpdated) String() string { return proto.CompactTextString(m) } func (*EventMainnetVestingAccountUpdated) ProtoMessage() {} func (*EventMainnetVestingAccountUpdated) Descriptor() ([]byte, []int) { - return fileDescriptor_137e778dd9744f2c, []int{10} + return fileDescriptor_42b7dc53d352f155, []int{10} } func (m *EventMainnetVestingAccountUpdated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -687,7 +687,7 @@ func (m *EventProjectAuctionCreated) Reset() { *m = EventProjectAuctionC func (m *EventProjectAuctionCreated) String() string { return proto.CompactTextString(m) } func (*EventProjectAuctionCreated) ProtoMessage() {} func (*EventProjectAuctionCreated) Descriptor() ([]byte, []int) { - return fileDescriptor_137e778dd9744f2c, []int{11} + return fileDescriptor_42b7dc53d352f155, []int{11} } func (m *EventProjectAuctionCreated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -731,65 +731,65 @@ func (m *EventProjectAuctionCreated) GetAuctionID() uint64 { } func init() { - proto.RegisterType((*EventProjectCreated)(nil), "tendermint.spn.project.EventProjectCreated") - proto.RegisterType((*EventProjectChainAdded)(nil), "tendermint.spn.project.EventProjectChainAdded") - proto.RegisterType((*EventProjectInfoUpdated)(nil), "tendermint.spn.project.EventProjectInfoUpdated") - proto.RegisterType((*EventProjectSharesUpdated)(nil), "tendermint.spn.project.EventProjectSharesUpdated") - proto.RegisterType((*EventProjectTotalSupplyUpdated)(nil), "tendermint.spn.project.EventProjectTotalSupplyUpdated") - proto.RegisterType((*EventProjectMainnetInitialized)(nil), "tendermint.spn.project.EventProjectMainnetInitialized") - proto.RegisterType((*EventMainnetAccountCreated)(nil), "tendermint.spn.project.EventMainnetAccountCreated") - proto.RegisterType((*EventMainnetAccountUpdated)(nil), "tendermint.spn.project.EventMainnetAccountUpdated") - proto.RegisterType((*EventMainnetAccountRemoved)(nil), "tendermint.spn.project.EventMainnetAccountRemoved") - proto.RegisterType((*EventMainnetVestingAccountCreated)(nil), "tendermint.spn.project.EventMainnetVestingAccountCreated") - proto.RegisterType((*EventMainnetVestingAccountUpdated)(nil), "tendermint.spn.project.EventMainnetVestingAccountUpdated") - proto.RegisterType((*EventProjectAuctionCreated)(nil), "tendermint.spn.project.EventProjectAuctionCreated") -} - -func init() { proto.RegisterFile("project/events.proto", fileDescriptor_137e778dd9744f2c) } - -var fileDescriptor_137e778dd9744f2c = []byte{ - // 645 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0xcb, 0x8f, 0xd2, 0x40, - 0x1c, 0x66, 0x76, 0xc9, 0x2a, 0x83, 0x8f, 0xa4, 0xe2, 0x5a, 0x08, 0x29, 0xd8, 0x98, 0x88, 0x31, - 0xdb, 0x66, 0xf1, 0xe4, 0x91, 0x87, 0x89, 0x1c, 0x7c, 0xa4, 0xe8, 0xc6, 0xc7, 0xc1, 0x0c, 0xed, - 0x08, 0xa3, 0xed, 0x4c, 0xd3, 0x19, 0x88, 0xeb, 0xc1, 0x8b, 0xff, 0x80, 0x47, 0xef, 0x9b, 0x78, - 0xf0, 0xec, 0xdd, 0xeb, 0x1e, 0x89, 0x27, 0x0f, 0x66, 0x35, 0xf0, 0x5f, 0x78, 0x32, 0x6d, 0x07, - 0x28, 0x1b, 0x0c, 0x78, 0x80, 0x78, 0x82, 0xf9, 0xbd, 0xbe, 0xef, 0xfb, 0xf1, 0xd1, 0x29, 0xcc, - 0xf9, 0x01, 0x7b, 0x85, 0x6d, 0x61, 0xe2, 0x01, 0xa6, 0x82, 0x1b, 0x7e, 0xc0, 0x04, 0x53, 0x76, - 0x05, 0xa6, 0x0e, 0x0e, 0x3c, 0x42, 0x85, 0xc1, 0x7d, 0x6a, 0xc8, 0xa2, 0x42, 0xae, 0xcb, 0xba, - 0x2c, 0x2a, 0x31, 0xc3, 0x6f, 0x71, 0x75, 0x41, 0xb3, 0x19, 0xf7, 0x18, 0x37, 0x3b, 0x88, 0x63, - 0x73, 0xb0, 0xdf, 0xc1, 0x02, 0xed, 0x9b, 0x36, 0x23, 0x54, 0xe6, 0xf3, 0x71, 0xfe, 0x45, 0xdc, - 0x18, 0x1f, 0x64, 0xea, 0xf2, 0x04, 0x7e, 0x80, 0xb9, 0x20, 0xb4, 0x1b, 0x87, 0xf5, 0x23, 0x00, - 0x2f, 0xdd, 0x09, 0x09, 0x3d, 0x8c, 0xd3, 0x8d, 0x00, 0x23, 0x81, 0x1d, 0xa5, 0x08, 0x33, 0xb2, - 0xa1, 0xd5, 0x54, 0x41, 0x19, 0x54, 0xd2, 0xd6, 0x2c, 0xa0, 0xdc, 0x85, 0x8a, 0xcd, 0x58, 0xe0, - 0x10, 0x8a, 0x04, 0x0b, 0x6a, 0x8e, 0x13, 0x60, 0xce, 0xd5, 0xad, 0x32, 0xa8, 0x64, 0xea, 0xea, - 0xb7, 0x2f, 0x7b, 0x39, 0x09, 0x2d, 0x33, 0x6d, 0x11, 0x10, 0xda, 0xb5, 0x16, 0xf4, 0x28, 0xd7, - 0xe0, 0xf9, 0x44, 0xb4, 0xd5, 0x54, 0xb7, 0x23, 0xac, 0xf9, 0xa0, 0x6e, 0xc1, 0xdd, 0x39, 0x92, - 0x3d, 0x44, 0x68, 0xcd, 0x71, 0x96, 0xf2, 0x2c, 0xc0, 0xb3, 0x2e, 0xea, 0x53, 0xbb, 0xd7, 0x6a, - 0x46, 0xec, 0xd2, 0xd6, 0xf4, 0xac, 0x7f, 0x05, 0xf0, 0x4a, 0x72, 0x68, 0x8b, 0xbe, 0x64, 0x8f, - 0x7d, 0x67, 0xa3, 0xea, 0xcb, 0x30, 0x2b, 0xc7, 0xde, 0x47, 0x1e, 0x8e, 0xb4, 0x67, 0xac, 0x64, - 0x28, 0x54, 0xe0, 0x61, 0x81, 0x1c, 0x24, 0x90, 0x9a, 0x2e, 0x83, 0xca, 0x39, 0x6b, 0x7a, 0xd6, - 0xdf, 0x6f, 0xc1, 0x7c, 0x52, 0x41, 0xbb, 0x87, 0x02, 0xcc, 0x37, 0xad, 0xe1, 0x1d, 0xbc, 0x88, - 0x5c, 0x97, 0xd9, 0x21, 0x68, 0xcc, 0x40, 0xdd, 0x2e, 0x6f, 0x57, 0xb2, 0xd5, 0xbc, 0x21, 0x67, - 0x84, 0x6e, 0x35, 0xa4, 0x5b, 0x8d, 0x06, 0x23, 0xb4, 0x7e, 0xfb, 0xf8, 0xa4, 0x94, 0xfa, 0x7d, - 0x52, 0xba, 0xde, 0x25, 0xa2, 0xd7, 0xef, 0x18, 0x36, 0xf3, 0xa4, 0x5b, 0xe5, 0xc7, 0x1e, 0x77, - 0x5e, 0x9b, 0xe2, 0xd0, 0xc7, 0x3c, 0x6a, 0xf8, 0xfc, 0xb3, 0xb4, 0x13, 0xcf, 0xb6, 0x4e, 0x83, - 0xe9, 0x47, 0x5b, 0x50, 0x4b, 0x6e, 0xe1, 0x11, 0x13, 0xc8, 0x6d, 0xf7, 0x7d, 0xdf, 0x3d, 0xdc, - 0xf4, 0x2a, 0x3e, 0x02, 0x98, 0x15, 0x33, 0xf8, 0xe5, 0x7b, 0x78, 0xfe, 0xef, 0x7b, 0xa8, 0xac, - 0x58, 0xca, 0xad, 0x24, 0x15, 0xfd, 0x13, 0x98, 0xdf, 0xd2, 0x3d, 0x44, 0x28, 0xc5, 0xa2, 0x45, - 0x89, 0x20, 0xc8, 0x25, 0x6f, 0x37, 0xb8, 0xa5, 0x22, 0xcc, 0x78, 0x12, 0x7d, 0xf2, 0x77, 0x9f, - 0x05, 0xf4, 0x1f, 0x00, 0x16, 0x22, 0xa2, 0x92, 0x61, 0xcd, 0xb6, 0x59, 0x9f, 0xae, 0xf8, 0x5c, - 0xaa, 0xc2, 0x33, 0x68, 0x45, 0x66, 0x93, 0x42, 0xc5, 0x85, 0x3b, 0x7c, 0xfd, 0xb6, 0x95, 0x18, - 0x7f, 0x93, 0xb7, 0x9a, 0x53, 0xff, 0x7f, 0x79, 0x74, 0xa1, 0x3a, 0x0b, 0x7b, 0x6c, 0xb0, 0x0e, - 0x75, 0xfa, 0x10, 0xc0, 0xab, 0x49, 0xc0, 0x83, 0xf8, 0x72, 0x5b, 0xbb, 0x69, 0x9e, 0xc2, 0x0b, - 0xf2, 0x1e, 0x7d, 0xe0, 0x0b, 0xc2, 0x28, 0x8f, 0x8c, 0x9c, 0xad, 0xde, 0x34, 0x16, 0xdf, 0xe7, - 0x46, 0xb4, 0xa7, 0x83, 0xb9, 0x96, 0x7a, 0x3a, 0xdc, 0xb7, 0x75, 0x6a, 0xd0, 0x12, 0x49, 0xeb, - 0x33, 0xca, 0x1a, 0x25, 0x3d, 0x91, 0xae, 0x90, 0xcf, 0x9e, 0x5a, 0xdf, 0x0e, 0xe3, 0xab, 0xfd, - 0x3a, 0x45, 0x98, 0x41, 0x71, 0xfd, 0xf4, 0x0e, 0x9f, 0x05, 0xea, 0x8d, 0xe3, 0x91, 0x06, 0x86, - 0x23, 0x0d, 0xfc, 0x1a, 0x69, 0xe0, 0xc3, 0x58, 0x4b, 0x0d, 0xc7, 0x5a, 0xea, 0xfb, 0x58, 0x4b, - 0x3d, 0xbb, 0x91, 0x30, 0xf1, 0x4c, 0x80, 0xc9, 0x7d, 0x6a, 0xbe, 0x31, 0x27, 0xef, 0x42, 0x91, - 0x97, 0x3b, 0x3b, 0xd1, 0xab, 0xd0, 0xad, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x88, 0x2c, 0x1c, - 0xe1, 0xa2, 0x09, 0x00, 0x00, + proto.RegisterType((*EventProjectCreated)(nil), "spn.project.EventProjectCreated") + proto.RegisterType((*EventProjectChainAdded)(nil), "spn.project.EventProjectChainAdded") + proto.RegisterType((*EventProjectInfoUpdated)(nil), "spn.project.EventProjectInfoUpdated") + proto.RegisterType((*EventProjectSharesUpdated)(nil), "spn.project.EventProjectSharesUpdated") + proto.RegisterType((*EventProjectTotalSupplyUpdated)(nil), "spn.project.EventProjectTotalSupplyUpdated") + proto.RegisterType((*EventProjectMainnetInitialized)(nil), "spn.project.EventProjectMainnetInitialized") + proto.RegisterType((*EventMainnetAccountCreated)(nil), "spn.project.EventMainnetAccountCreated") + proto.RegisterType((*EventMainnetAccountUpdated)(nil), "spn.project.EventMainnetAccountUpdated") + proto.RegisterType((*EventMainnetAccountRemoved)(nil), "spn.project.EventMainnetAccountRemoved") + proto.RegisterType((*EventMainnetVestingAccountCreated)(nil), "spn.project.EventMainnetVestingAccountCreated") + proto.RegisterType((*EventMainnetVestingAccountUpdated)(nil), "spn.project.EventMainnetVestingAccountUpdated") + proto.RegisterType((*EventProjectAuctionCreated)(nil), "spn.project.EventProjectAuctionCreated") +} + +func init() { proto.RegisterFile("spn/project/events.proto", fileDescriptor_42b7dc53d352f155) } + +var fileDescriptor_42b7dc53d352f155 = []byte{ + // 646 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0x4d, 0x8f, 0xd2, 0x4e, + 0x1c, 0x66, 0x16, 0xc2, 0xff, 0xcf, 0xe0, 0x4b, 0x52, 0x37, 0x5a, 0x08, 0x29, 0xb5, 0x31, 0x11, + 0x0f, 0xdb, 0x66, 0xf1, 0xe4, 0x91, 0x17, 0x13, 0x39, 0xb8, 0x9a, 0xa2, 0x1b, 0xa3, 0x07, 0x33, + 0xb4, 0x23, 0x8c, 0xb6, 0x33, 0x4d, 0x67, 0x20, 0xae, 0x07, 0x2f, 0x7e, 0x01, 0x8f, 0xde, 0x37, + 0xf1, 0xe0, 0xd9, 0xbb, 0x27, 0x93, 0x3d, 0x6e, 0x3c, 0x79, 0x30, 0xab, 0x81, 0x6f, 0xe1, 0xc9, + 0xb4, 0x1d, 0xa0, 0x6c, 0xd6, 0x80, 0x89, 0x10, 0x4f, 0x30, 0xbf, 0x97, 0x79, 0x9e, 0xe7, 0xd7, + 0xa7, 0x9d, 0x81, 0x2a, 0x0f, 0xa8, 0x15, 0x84, 0xec, 0x39, 0x76, 0x84, 0x85, 0x47, 0x98, 0x0a, + 0x6e, 0x06, 0x21, 0x13, 0x4c, 0x29, 0xf2, 0x80, 0x9a, 0x32, 0x53, 0xde, 0xee, 0xb3, 0x3e, 0x8b, + 0xe3, 0x56, 0xf4, 0x2f, 0x29, 0x29, 0x6b, 0x0e, 0xe3, 0x3e, 0xe3, 0x56, 0x0f, 0x71, 0x6c, 0x8d, + 0x76, 0x7b, 0x58, 0xa0, 0x5d, 0xcb, 0x61, 0x84, 0xca, 0x7c, 0x29, 0xc9, 0x3f, 0x4d, 0x1a, 0x93, + 0xc5, 0x34, 0x95, 0xc6, 0x1d, 0x61, 0x2e, 0x08, 0xed, 0x27, 0x29, 0xe3, 0x10, 0xc0, 0x4b, 0xb7, + 0x23, 0x26, 0xf7, 0x93, 0x74, 0x2b, 0xc4, 0x48, 0x60, 0x57, 0xa9, 0xc0, 0x82, 0x6c, 0xe8, 0xb4, + 0x55, 0xa0, 0x83, 0x5a, 0xce, 0x9e, 0x07, 0x94, 0x3b, 0x50, 0x71, 0x18, 0x0b, 0x5d, 0x42, 0x91, + 0x60, 0x61, 0xc3, 0x75, 0x43, 0xcc, 0xb9, 0xba, 0xa5, 0x83, 0x5a, 0xa1, 0xa9, 0x7e, 0xf9, 0xb8, + 0xb3, 0x2d, 0xe1, 0x65, 0xa6, 0x2b, 0x42, 0x42, 0xfb, 0xf6, 0x19, 0x3d, 0xca, 0x35, 0x78, 0x3e, + 0x15, 0xed, 0xb4, 0xd5, 0x6c, 0x8c, 0xb5, 0x18, 0x34, 0x6c, 0x78, 0x79, 0x81, 0xe4, 0x00, 0x11, + 0xda, 0x70, 0xdd, 0xa5, 0x3c, 0xcb, 0xf0, 0x7f, 0x0f, 0x0d, 0xa9, 0x33, 0xe8, 0xb4, 0x63, 0x76, + 0x39, 0x7b, 0xb6, 0x36, 0x3e, 0x01, 0x78, 0x25, 0xbd, 0x69, 0x87, 0x3e, 0x63, 0x0f, 0x03, 0x77, + 0xa3, 0xea, 0x75, 0x58, 0x94, 0xdb, 0xee, 0x21, 0x1f, 0xc7, 0xda, 0x0b, 0x76, 0x3a, 0x14, 0x29, + 0xf0, 0xb1, 0x40, 0x2e, 0x12, 0x48, 0xcd, 0xe9, 0xa0, 0x76, 0xce, 0x9e, 0xad, 0x8d, 0x37, 0x5b, + 0xb0, 0x94, 0x56, 0xd0, 0x1d, 0xa0, 0x10, 0xf3, 0x4d, 0x6b, 0x78, 0x0d, 0x2f, 0x22, 0xcf, 0x63, + 0x4e, 0x04, 0x9a, 0x30, 0x50, 0xb3, 0x7a, 0xb6, 0x56, 0xac, 0x97, 0x4c, 0xb9, 0x47, 0xe4, 0x58, + 0x53, 0x3a, 0xd6, 0x6c, 0x31, 0x42, 0x9b, 0xb7, 0x8e, 0x4e, 0xaa, 0x99, 0x9f, 0x27, 0xd5, 0xeb, + 0x7d, 0x22, 0x06, 0xc3, 0x9e, 0xe9, 0x30, 0x5f, 0x3a, 0x56, 0xfe, 0xec, 0x70, 0xf7, 0x85, 0x25, + 0x0e, 0x02, 0xcc, 0xe3, 0x86, 0x0f, 0xdf, 0xab, 0xf9, 0x64, 0x6f, 0xfb, 0x34, 0x98, 0x71, 0xb8, + 0x05, 0xb5, 0xf4, 0x14, 0x1e, 0x30, 0x81, 0xbc, 0xee, 0x30, 0x08, 0xbc, 0x83, 0x4d, 0x8f, 0xe2, + 0x1d, 0x80, 0x45, 0x31, 0x87, 0x5f, 0x3e, 0x87, 0x27, 0x7f, 0x3e, 0x87, 0xda, 0x8a, 0xa5, 0xdc, + 0x4e, 0x53, 0x31, 0xde, 0x83, 0xc5, 0x29, 0xdd, 0x45, 0x84, 0x52, 0x2c, 0x3a, 0x94, 0x08, 0x82, + 0x3c, 0xf2, 0x6a, 0x83, 0x53, 0xaa, 0xc0, 0x82, 0x2f, 0xd1, 0xa7, 0xaf, 0xfb, 0x3c, 0x60, 0x7c, + 0x03, 0xb0, 0x1c, 0x13, 0x95, 0x0c, 0x1b, 0x8e, 0xc3, 0x86, 0x74, 0xc5, 0xef, 0x52, 0x1d, 0xfe, + 0x87, 0x56, 0x64, 0x36, 0x2d, 0x54, 0x3c, 0x98, 0xe7, 0xeb, 0xb7, 0xad, 0xc4, 0xf8, 0x9d, 0xbc, + 0xd5, 0x9c, 0xfa, 0xef, 0xcb, 0xa3, 0x67, 0xaa, 0xb3, 0xb1, 0xcf, 0x46, 0xeb, 0x50, 0x67, 0x7c, + 0x06, 0xf0, 0x6a, 0x1a, 0x70, 0x3f, 0x39, 0xdc, 0xd6, 0x6e, 0x9a, 0x3d, 0x78, 0x41, 0x9e, 0xa3, + 0xf7, 0x02, 0x41, 0x18, 0xe5, 0xb1, 0x91, 0x8b, 0x75, 0xdd, 0x4c, 0x1d, 0xe4, 0x66, 0x3c, 0x9c, + 0xfd, 0x85, 0xba, 0x66, 0x2e, 0x1a, 0xb2, 0x7d, 0xaa, 0x7b, 0x89, 0x8e, 0xf5, 0xb9, 0xe3, 0x6f, + 0xeb, 0x78, 0x24, 0x9f, 0xbf, 0xfc, 0xca, 0x34, 0x86, 0x4e, 0x14, 0x5f, 0xed, 0x39, 0x54, 0x60, + 0x01, 0x25, 0xf5, 0xb3, 0xd3, 0x7a, 0x1e, 0x68, 0xb6, 0x8e, 0xc6, 0x1a, 0x38, 0x1e, 0x6b, 0xe0, + 0xc7, 0x58, 0x03, 0x6f, 0x27, 0x5a, 0xe6, 0x78, 0xa2, 0x65, 0xbe, 0x4e, 0xb4, 0xcc, 0xe3, 0x1b, + 0x29, 0xbb, 0x0a, 0x4c, 0x5d, 0x1c, 0xfa, 0x84, 0x0a, 0x2b, 0xba, 0xf3, 0xbc, 0x9c, 0xdd, 0x7a, + 0x62, 0xd7, 0xf6, 0xf2, 0xf1, 0xa5, 0xe7, 0xe6, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x04, 0x25, + 0x6e, 0xae, 0x89, 0x09, 0x00, 0x00, } func (m *EventProjectCreated) Marshal() (dAtA []byte, err error) { diff --git a/x/project/types/genesis.pb.go b/x/project/types/genesis.pb.go index 01ac84cbf..704cfd6d3 100644 --- a/x/project/types/genesis.pb.go +++ b/x/project/types/genesis.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: project/genesis.proto +// source: spn/project/genesis.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -37,7 +37,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_4845f246be6bdeb0, []int{0} + return fileDescriptor_72a76b64bb972cd9, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -109,35 +109,35 @@ func (m *GenesisState) GetParams() Params { } func init() { - proto.RegisterType((*GenesisState)(nil), "tendermint.spn.project.GenesisState") + proto.RegisterType((*GenesisState)(nil), "spn.project.GenesisState") } -func init() { proto.RegisterFile("project/genesis.proto", fileDescriptor_4845f246be6bdeb0) } +func init() { proto.RegisterFile("spn/project/genesis.proto", fileDescriptor_72a76b64bb972cd9) } -var fileDescriptor_4845f246be6bdeb0 = []byte{ - // 349 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0x4f, 0x4b, 0xc3, 0x40, - 0x10, 0xc5, 0x13, 0x5b, 0x8b, 0x6c, 0xfd, 0x03, 0x4b, 0x95, 0x50, 0x74, 0x1b, 0x04, 0x4b, 0xbd, - 0x24, 0x50, 0xaf, 0x5e, 0xda, 0x1e, 0x3c, 0x09, 0xda, 0x82, 0x07, 0x2f, 0x65, 0x1b, 0x97, 0x34, - 0x62, 0x76, 0x43, 0x76, 0x2a, 0x7a, 0xf7, 0x03, 0xf8, 0xb1, 0x7a, 0xec, 0xd1, 0x93, 0x48, 0xfb, - 0x45, 0xa4, 0x9b, 0x49, 0xb5, 0xc1, 0xe2, 0x69, 0x86, 0x97, 0x37, 0xbf, 0xc7, 0x4b, 0x42, 0x0e, - 0x93, 0x54, 0x3d, 0x8a, 0x00, 0xfc, 0x50, 0x48, 0xa1, 0x23, 0xed, 0x25, 0xa9, 0x02, 0x45, 0x8f, - 0x40, 0xc8, 0x07, 0x91, 0xc6, 0x91, 0x04, 0x4f, 0x27, 0xd2, 0x43, 0x57, 0xbd, 0x16, 0xaa, 0x50, - 0x19, 0x8b, 0xbf, 0xdc, 0x32, 0x77, 0xfd, 0x38, 0x87, 0xe0, 0x1c, 0x06, 0x63, 0x1e, 0x49, 0x64, - 0xd5, 0x57, 0x11, 0xcf, 0x42, 0x43, 0x24, 0xc3, 0xa2, 0x8c, 0x13, 0xe5, 0x93, 0x5c, 0x8e, 0x79, - 0x24, 0xa5, 0x80, 0x21, 0x0f, 0x02, 0x35, 0x91, 0xf9, 0xe3, 0xda, 0xea, 0x8a, 0xa7, 0x3c, 0xc6, - 0x88, 0xd3, 0xb7, 0x12, 0xd9, 0xbd, 0xca, 0x0a, 0x0c, 0x80, 0x83, 0xa0, 0x1d, 0xb2, 0x83, 0x46, - 0xed, 0xd8, 0x6e, 0xa9, 0x55, 0x6d, 0x37, 0xbc, 0xbf, 0x2b, 0x79, 0x37, 0xd9, 0xec, 0x96, 0xa7, - 0x9f, 0x0d, 0xab, 0xbf, 0x3a, 0xa3, 0x4d, 0xb2, 0x8f, 0x7b, 0x6f, 0x99, 0x2f, 0x52, 0x67, 0xcb, - 0xb5, 0x5b, 0xe5, 0x7e, 0x41, 0xa5, 0xb7, 0x64, 0x2f, 0x57, 0x4c, 0x6b, 0xa7, 0x64, 0xf2, 0xce, - 0xfe, 0xc9, 0xcb, 0xcc, 0x98, 0xba, 0x4e, 0xa0, 0x77, 0xe4, 0x00, 0xdb, 0x77, 0xb2, 0xf2, 0xda, - 0x29, 0x1b, 0x68, 0x73, 0x13, 0xf4, 0x7a, 0xcd, 0x8e, 0xd4, 0x22, 0x84, 0xba, 0xa4, 0x0a, 0x0a, - 0xf8, 0xd3, 0x60, 0xcc, 0x53, 0xa1, 0x9d, 0x6d, 0xd3, 0xe7, 0xb7, 0x44, 0x2f, 0x49, 0x25, 0x7b, - 0xb1, 0x4e, 0xc5, 0xb5, 0x5b, 0xd5, 0x36, 0xdb, 0xd8, 0xc2, 0xb8, 0x30, 0x08, 0x6f, 0xba, 0xbd, - 0xe9, 0x9c, 0xd9, 0xb3, 0x39, 0xb3, 0xbf, 0xe6, 0xcc, 0x7e, 0x5f, 0x30, 0x6b, 0xb6, 0x60, 0xd6, - 0xc7, 0x82, 0x59, 0xf7, 0xe7, 0x61, 0x04, 0xe3, 0xc9, 0xc8, 0x0b, 0x54, 0xec, 0xff, 0x10, 0x7d, - 0x9d, 0x48, 0xff, 0x25, 0xff, 0x01, 0x7c, 0x78, 0x4d, 0x84, 0x1e, 0x55, 0xcc, 0x27, 0xbd, 0xf8, - 0x0e, 0x00, 0x00, 0xff, 0xff, 0x6e, 0x0e, 0xd1, 0x3a, 0x9a, 0x02, 0x00, 0x00, +var fileDescriptor_72a76b64bb972cd9 = []byte{ + // 344 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x51, 0x4d, 0x4b, 0xc3, 0x40, + 0x10, 0x4d, 0xda, 0x5a, 0x64, 0xe3, 0x07, 0xac, 0x3d, 0xac, 0x11, 0x62, 0xf4, 0x20, 0xf5, 0x92, + 0x60, 0x05, 0xef, 0xb6, 0xa0, 0x07, 0x11, 0xa4, 0xbd, 0x79, 0x29, 0xdb, 0xb8, 0xa4, 0x11, 0xb3, + 0x1b, 0xb2, 0x53, 0xd1, 0x7f, 0xe1, 0xcf, 0xea, 0xb1, 0xc7, 0x9e, 0x44, 0xda, 0x3f, 0x22, 0xdd, + 0x4c, 0x4b, 0x52, 0x7a, 0x9a, 0x65, 0xde, 0x9b, 0xf7, 0xe6, 0xed, 0x90, 0x53, 0x9d, 0xc9, 0x30, + 0xcb, 0xd5, 0xbb, 0x88, 0x20, 0x8c, 0x85, 0x14, 0x3a, 0xd1, 0x41, 0x96, 0x2b, 0x50, 0xd4, 0xd1, + 0x99, 0x0c, 0x10, 0x72, 0x5b, 0xb1, 0x8a, 0x95, 0xe9, 0x87, 0xab, 0x57, 0x41, 0x71, 0xfd, 0xf2, + 0x34, 0xd6, 0x61, 0x34, 0xe6, 0x89, 0x44, 0x11, 0xb7, 0xa2, 0xff, 0x29, 0x34, 0x24, 0x32, 0xde, + 0x05, 0x61, 0x45, 0xe8, 0xa2, 0x0c, 0xa5, 0x3c, 0x91, 0x52, 0xc0, 0x90, 0x47, 0x91, 0x9a, 0xc8, + 0x35, 0x85, 0x55, 0xa6, 0x79, 0xce, 0x53, 0xb4, 0xbc, 0x9c, 0xd7, 0xc8, 0xc1, 0x63, 0x91, 0x64, + 0x00, 0x1c, 0x04, 0xbd, 0x23, 0xfb, 0x48, 0xd4, 0xcc, 0xf6, 0xeb, 0x6d, 0xa7, 0xd3, 0x0a, 0x4a, + 0xd9, 0x82, 0x97, 0xa2, 0x76, 0x1b, 0xd3, 0xdf, 0x73, 0xab, 0xbf, 0xe1, 0xd2, 0x2b, 0x72, 0x84, + 0xef, 0xde, 0xca, 0x58, 0xe4, 0xac, 0xe6, 0xdb, 0xed, 0x46, 0x7f, 0xab, 0x4b, 0x1f, 0xc8, 0xe1, + 0xba, 0x63, 0xa2, 0xb3, 0xba, 0x31, 0x71, 0x77, 0x99, 0x14, 0x0c, 0xb4, 0xaa, 0x8e, 0xd1, 0x27, + 0x72, 0x8c, 0x59, 0xef, 0x8b, 0xa8, 0x9a, 0x35, 0x8c, 0xd2, 0x59, 0x45, 0xe9, 0xb9, 0xc2, 0x41, + 0xa9, 0xed, 0x49, 0xea, 0x13, 0x07, 0x14, 0xf0, 0x8f, 0xc1, 0x98, 0xe7, 0x42, 0xb3, 0x3d, 0xb3, + 0x79, 0xb9, 0x45, 0x6f, 0x48, 0xb3, 0xf8, 0x37, 0xd6, 0xf4, 0xed, 0xb6, 0xd3, 0x39, 0xa9, 0xee, + 0x6b, 0x20, 0x54, 0x47, 0x62, 0xb7, 0x37, 0x5d, 0x78, 0xf6, 0x6c, 0xe1, 0xd9, 0x7f, 0x0b, 0xcf, + 0xfe, 0x59, 0x7a, 0xd6, 0x6c, 0xe9, 0x59, 0xf3, 0xa5, 0x67, 0xbd, 0x5e, 0xc7, 0x09, 0x8c, 0x27, + 0xa3, 0x20, 0x52, 0x69, 0x08, 0x42, 0xbe, 0x89, 0x3c, 0x4d, 0x24, 0x84, 0xab, 0x23, 0x7d, 0x6d, + 0xce, 0x04, 0xdf, 0x99, 0xd0, 0xa3, 0xa6, 0x39, 0xd3, 0xed, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, + 0x26, 0xce, 0xa2, 0xe4, 0x7b, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/project/types/mainnet_account.pb.go b/x/project/types/mainnet_account.pb.go index fd0736fb0..f43993f9c 100644 --- a/x/project/types/mainnet_account.pb.go +++ b/x/project/types/mainnet_account.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: project/mainnet_account.proto +// source: spn/project/mainnet_account.proto package types @@ -8,8 +8,8 @@ import ( _ "github.com/cosmos/cosmos-proto" _ "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" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -36,7 +36,7 @@ func (m *MainnetAccount) Reset() { *m = MainnetAccount{} } func (m *MainnetAccount) String() string { return proto.CompactTextString(m) } func (*MainnetAccount) ProtoMessage() {} func (*MainnetAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_c44b9965f50b6339, []int{0} + return fileDescriptor_5650b1f89df17362, []int{0} } func (m *MainnetAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -96,7 +96,7 @@ func (m *MainnetAccountBalance) Reset() { *m = MainnetAccountBalance{} } func (m *MainnetAccountBalance) String() string { return proto.CompactTextString(m) } func (*MainnetAccountBalance) ProtoMessage() {} func (*MainnetAccountBalance) Descriptor() ([]byte, []int) { - return fileDescriptor_c44b9965f50b6339, []int{1} + return fileDescriptor_5650b1f89df17362, []int{1} } func (m *MainnetAccountBalance) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -147,37 +147,36 @@ func (m *MainnetAccountBalance) GetCoins() github_com_cosmos_cosmos_sdk_types.Co } func init() { - proto.RegisterType((*MainnetAccount)(nil), "tendermint.spn.project.MainnetAccount") - proto.RegisterType((*MainnetAccountBalance)(nil), "tendermint.spn.project.MainnetAccountBalance") + proto.RegisterType((*MainnetAccount)(nil), "spn.project.MainnetAccount") + proto.RegisterType((*MainnetAccountBalance)(nil), "spn.project.MainnetAccountBalance") } -func init() { proto.RegisterFile("project/mainnet_account.proto", fileDescriptor_c44b9965f50b6339) } +func init() { proto.RegisterFile("spn/project/mainnet_account.proto", fileDescriptor_5650b1f89df17362) } -var fileDescriptor_c44b9965f50b6339 = []byte{ - // 357 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x52, 0x31, 0x4f, 0xe3, 0x30, - 0x18, 0x8d, 0xaf, 0x77, 0x3d, 0x35, 0x27, 0xdd, 0x10, 0x15, 0x94, 0x56, 0xe0, 0x56, 0x5d, 0x08, - 0x43, 0x6d, 0xb5, 0x4c, 0x8c, 0x4d, 0x59, 0x18, 0x58, 0xd2, 0x0d, 0x86, 0xca, 0x71, 0xac, 0x34, - 0xd0, 0xd8, 0x51, 0xec, 0x22, 0xf8, 0x0f, 0x0c, 0xfc, 0x0e, 0x66, 0x7e, 0x44, 0xc7, 0x8a, 0x89, - 0xa9, 0xa0, 0xf6, 0x4f, 0x20, 0x26, 0xd4, 0xd8, 0x55, 0x61, 0x2b, 0x03, 0x53, 0x62, 0xbf, 0xf7, - 0xbd, 0xef, 0x3d, 0xeb, 0xd9, 0xfb, 0x59, 0x2e, 0x2e, 0x19, 0x55, 0x38, 0x25, 0x09, 0xe7, 0x4c, - 0x0d, 0x09, 0xa5, 0x62, 0xc2, 0x15, 0xca, 0x72, 0xa1, 0x84, 0xb3, 0xab, 0x18, 0x8f, 0x58, 0x9e, - 0x26, 0x5c, 0x21, 0x99, 0x71, 0x64, 0xd8, 0xf5, 0x6a, 0x2c, 0x62, 0x51, 0x50, 0xf0, 0xea, 0x4f, - 0xb3, 0xeb, 0x90, 0x0a, 0x99, 0x0a, 0x89, 0x43, 0x22, 0x19, 0xbe, 0xee, 0x84, 0x4c, 0x91, 0x0e, - 0xa6, 0x22, 0xe1, 0x06, 0xaf, 0x69, 0x7c, 0xa8, 0x07, 0xf5, 0x41, 0x43, 0xad, 0x19, 0xb0, 0xff, - 0x9f, 0x69, 0x0b, 0x3d, 0xed, 0xc0, 0xd9, 0xb3, 0x2b, 0x66, 0xdd, 0xe9, 0x89, 0x0b, 0x9a, 0xc0, - 0xfb, 0x1d, 0x6c, 0x2e, 0x9c, 0xae, 0xfd, 0x97, 0x44, 0x51, 0xce, 0xa4, 0x74, 0x7f, 0x35, 0x81, - 0x57, 0xf1, 0xdd, 0xa7, 0xc7, 0x76, 0xd5, 0x68, 0xf6, 0x34, 0x32, 0x50, 0x79, 0xc2, 0xe3, 0x60, - 0x4d, 0x74, 0xc6, 0x76, 0x59, 0x8e, 0x48, 0xce, 0xa4, 0x5b, 0x6a, 0x96, 0xbc, 0x7f, 0xdd, 0x1a, - 0x32, 0xfc, 0x95, 0x61, 0x64, 0x0c, 0xa3, 0xbe, 0x48, 0xb8, 0x7f, 0x3c, 0x9d, 0x37, 0xac, 0xf7, - 0x79, 0xe3, 0x20, 0x4e, 0xd4, 0x68, 0x12, 0x22, 0x2a, 0x52, 0x63, 0xd8, 0x7c, 0xda, 0x32, 0xba, - 0xc2, 0xea, 0x36, 0x63, 0xb2, 0x18, 0x78, 0x78, 0x69, 0x94, 0x07, 0x85, 0x76, 0x60, 0x76, 0xb4, - 0xde, 0x80, 0xbd, 0xf3, 0x35, 0x92, 0x4f, 0xc6, 0x84, 0x53, 0xf6, 0x03, 0xc9, 0xee, 0x80, 0xfd, - 0x67, 0xf5, 0xd0, 0x5b, 0x24, 0xbb, 0xf8, 0x7e, 0x32, 0x6f, 0x4b, 0xaa, 0x0c, 0xb4, 0x09, 0xbf, - 0x3f, 0x5d, 0x40, 0x30, 0x5b, 0x40, 0xf0, 0xba, 0x80, 0xe0, 0x7e, 0x09, 0xad, 0xd9, 0x12, 0x5a, - 0xcf, 0x4b, 0x68, 0x9d, 0x1f, 0x7e, 0x92, 0xda, 0x74, 0x0b, 0xcb, 0x8c, 0xe3, 0x1b, 0xbc, 0xee, - 0x62, 0xa1, 0x18, 0x96, 0x8b, 0x66, 0x1c, 0x7d, 0x04, 0x00, 0x00, 0xff, 0xff, 0xee, 0x97, 0xb6, - 0x91, 0xa3, 0x02, 0x00, 0x00, +var fileDescriptor_5650b1f89df17362 = []byte{ + // 352 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x52, 0x3d, 0x4f, 0xc2, 0x40, + 0x18, 0xee, 0x89, 0x62, 0x28, 0x89, 0x43, 0x83, 0x49, 0x21, 0xe6, 0x40, 0x16, 0xeb, 0x40, 0x2f, + 0xe0, 0xe4, 0x48, 0x71, 0x71, 0x70, 0x29, 0x9b, 0x0e, 0xe4, 0x7a, 0xbd, 0x94, 0x2a, 0xbd, 0x6b, + 0x7a, 0x87, 0xd1, 0xff, 0xe0, 0xe0, 0xef, 0x70, 0xf6, 0x47, 0x30, 0x12, 0x27, 0x27, 0x34, 0xf0, + 0x27, 0x8c, 0x93, 0x69, 0xef, 0xfc, 0xda, 0x70, 0x70, 0x6a, 0xfb, 0x3e, 0xcf, 0xfb, 0x7c, 0x34, + 0xaf, 0xb9, 0x2f, 0x52, 0x86, 0xd2, 0x8c, 0x5f, 0x52, 0x22, 0x51, 0x82, 0x63, 0xc6, 0xa8, 0x1c, + 0x61, 0x42, 0xf8, 0x94, 0x49, 0x37, 0xcd, 0xb8, 0xe4, 0x56, 0x55, 0xa4, 0xcc, 0xd5, 0x94, 0x46, + 0x2d, 0xe2, 0x11, 0x2f, 0xe6, 0x28, 0x7f, 0x53, 0x94, 0x06, 0x24, 0x5c, 0x24, 0x5c, 0xa0, 0x00, + 0x0b, 0x8a, 0xae, 0xbb, 0x01, 0x95, 0xb8, 0x8b, 0x08, 0x8f, 0x99, 0xc6, 0xeb, 0x0a, 0x1f, 0xa9, + 0x45, 0xf5, 0xa1, 0xa0, 0xf6, 0x1c, 0x98, 0x3b, 0x67, 0xca, 0xb7, 0xaf, 0x6c, 0xad, 0x3d, 0xb3, + 0xa2, 0xed, 0x4e, 0x4f, 0x6c, 0xd0, 0x02, 0xce, 0xa6, 0xff, 0x3d, 0xb0, 0x7a, 0xe6, 0x36, 0x0e, + 0xc3, 0x8c, 0x0a, 0x61, 0x6f, 0xb4, 0x80, 0x53, 0xf1, 0xec, 0xa7, 0xc7, 0x4e, 0x4d, 0x6b, 0xf6, + 0x15, 0x32, 0x94, 0x59, 0xcc, 0x22, 0xff, 0x93, 0x68, 0x4d, 0xcc, 0xb2, 0x18, 0xe3, 0x8c, 0x0a, + 0xbb, 0xd4, 0x2a, 0x39, 0xd5, 0x5e, 0xdd, 0xd5, 0xfc, 0x3c, 0xb0, 0xab, 0x03, 0xbb, 0x03, 0x1e, + 0x33, 0xef, 0x78, 0xb6, 0x68, 0x1a, 0xef, 0x8b, 0xe6, 0x41, 0x14, 0xcb, 0xf1, 0x34, 0x70, 0x09, + 0x4f, 0x74, 0x60, 0xfd, 0xe8, 0x88, 0xf0, 0x0a, 0xc9, 0xdb, 0x94, 0x8a, 0x62, 0xe1, 0xe1, 0xa5, + 0x59, 0x1e, 0x16, 0xda, 0xbe, 0xf6, 0x68, 0xbf, 0x01, 0x73, 0xf7, 0x77, 0x25, 0x0f, 0x4f, 0x30, + 0x23, 0xf4, 0x1f, 0x9a, 0xdd, 0x01, 0x73, 0x2b, 0xff, 0xd1, 0x6b, 0x34, 0xbb, 0xf8, 0x7b, 0x33, + 0x67, 0x4d, 0xaa, 0xf0, 0x55, 0x08, 0x6f, 0x30, 0x5b, 0x42, 0x30, 0x5f, 0x42, 0xf0, 0xba, 0x84, + 0xe0, 0x7e, 0x05, 0x8d, 0xf9, 0x0a, 0x1a, 0xcf, 0x2b, 0x68, 0x9c, 0x1f, 0xfe, 0x90, 0x92, 0x94, + 0x85, 0x34, 0x4b, 0x62, 0x26, 0x51, 0x7e, 0x7e, 0x37, 0x5f, 0x07, 0x58, 0x28, 0x06, 0xe5, 0xe2, + 0x32, 0x8e, 0x3e, 0x02, 0x00, 0x00, 0xff, 0xff, 0xbe, 0xc1, 0xf6, 0xb3, 0x9c, 0x02, 0x00, 0x00, } func (m *MainnetAccount) Marshal() (dAtA []byte, err error) { diff --git a/x/project/types/params.pb.go b/x/project/types/params.pb.go index a0e1e3f8c..0ca53e6a1 100644 --- a/x/project/types/params.pb.go +++ b/x/project/types/params.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: project/params.proto +// source: spn/project/params.proto package types @@ -8,8 +8,8 @@ import ( _ "github.com/cosmos/cosmos-proto" _ "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" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -36,7 +36,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_15316631d2950b4e, []int{0} + return fileDescriptor_0959851acf436714, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -96,7 +96,7 @@ func (m *TotalSupplyRange) Reset() { *m = TotalSupplyRange{} } func (m *TotalSupplyRange) String() string { return proto.CompactTextString(m) } func (*TotalSupplyRange) ProtoMessage() {} func (*TotalSupplyRange) Descriptor() ([]byte, []int) { - return fileDescriptor_15316631d2950b4e, []int{1} + return fileDescriptor_0959851acf436714, []int{1} } func (m *TotalSupplyRange) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -126,40 +126,39 @@ func (m *TotalSupplyRange) XXX_DiscardUnknown() { var xxx_messageInfo_TotalSupplyRange proto.InternalMessageInfo func init() { - proto.RegisterType((*Params)(nil), "tendermint.spn.project.Params") - proto.RegisterType((*TotalSupplyRange)(nil), "tendermint.spn.project.TotalSupplyRange") + proto.RegisterType((*Params)(nil), "spn.project.Params") + proto.RegisterType((*TotalSupplyRange)(nil), "spn.project.TotalSupplyRange") } -func init() { proto.RegisterFile("project/params.proto", fileDescriptor_15316631d2950b4e) } +func init() { proto.RegisterFile("spn/project/params.proto", fileDescriptor_0959851acf436714) } -var fileDescriptor_15316631d2950b4e = []byte{ - // 401 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x29, 0x28, 0xca, 0xcf, - 0x4a, 0x4d, 0x2e, 0xd1, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x12, 0x2b, 0x49, 0xcd, 0x4b, 0x49, 0x2d, 0xca, 0xcd, 0xcc, 0x2b, 0xd1, 0x2b, 0x2e, 0xc8, - 0xd3, 0x83, 0x2a, 0x92, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, 0xd1, 0x07, 0xb1, 0x20, 0xaa, - 0xa5, 0xe4, 0x92, 0xf3, 0x8b, 0x73, 0xf3, 0x8b, 0xf5, 0x93, 0x12, 0x8b, 0x53, 0xf5, 0xcb, 0x0c, - 0x93, 0x52, 0x4b, 0x12, 0x0d, 0xf5, 0x93, 0xf3, 0x33, 0xf3, 0xa0, 0xf2, 0x92, 0x10, 0xf9, 0x78, - 0x88, 0x46, 0x08, 0x07, 0x22, 0xa5, 0x74, 0x90, 0x89, 0x8b, 0x2d, 0x00, 0x6c, 0xb3, 0x50, 0x14, - 0x97, 0x40, 0x49, 0x7e, 0x49, 0x62, 0x4e, 0x70, 0x69, 0x41, 0x41, 0x4e, 0x65, 0x50, 0x62, 0x5e, - 0x7a, 0xaa, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0xb7, 0x91, 0x86, 0x1e, 0x76, 0xe7, 0xe8, 0x85, 0xa0, - 0xa9, 0x77, 0x62, 0x39, 0x71, 0x4f, 0x9e, 0x21, 0x08, 0xc3, 0x1c, 0xa1, 0x65, 0x8c, 0x5c, 0x42, - 0x50, 0x4d, 0xce, 0x45, 0xa9, 0x89, 0x25, 0x99, 0xf9, 0x79, 0x6e, 0xa9, 0xa9, 0x12, 0x4c, 0x0a, - 0xcc, 0x1a, 0xdc, 0x46, 0x92, 0x7a, 0x50, 0x27, 0x81, 0xdc, 0xaf, 0x07, 0x75, 0xbf, 0x9e, 0x73, - 0x7e, 0x66, 0x9e, 0x53, 0x34, 0xc8, 0xbc, 0x5f, 0xf7, 0xe4, 0xd5, 0xd3, 0x33, 0x4b, 0x32, 0x4a, - 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xa1, 0xee, 0x87, 0x52, 0xba, 0xc5, 0x29, 0xd9, 0xfa, 0x25, 0x95, - 0x05, 0xa9, 0xc5, 0x60, 0x0d, 0xab, 0xee, 0xcb, 0x6b, 0x10, 0xa9, 0xb4, 0x38, 0x08, 0x8b, 0x8b, - 0x84, 0x74, 0xb8, 0x04, 0x73, 0x13, 0x2b, 0x7c, 0x53, 0x4b, 0x12, 0x53, 0x12, 0x4b, 0x12, 0x7d, - 0x52, 0xf3, 0xd2, 0x4b, 0x32, 0x24, 0x98, 0x15, 0x18, 0x35, 0x58, 0x82, 0x30, 0x25, 0xac, 0x58, - 0x66, 0x2c, 0x90, 0x67, 0x50, 0xba, 0xc7, 0xc8, 0x25, 0x80, 0x1e, 0x12, 0x42, 0x29, 0x5c, 0x7c, - 0xb9, 0x99, 0x79, 0x48, 0xc2, 0xe0, 0xb0, 0xe4, 0x74, 0xb2, 0x01, 0xf9, 0xe8, 0xd6, 0x3d, 0x79, - 0x35, 0x22, 0x9c, 0xe9, 0x99, 0x57, 0x72, 0x69, 0x8b, 0x2e, 0x17, 0x34, 0x74, 0x3c, 0xf3, 0x4a, - 0x82, 0xd0, 0xcc, 0x04, 0xdb, 0x92, 0x58, 0x81, 0x6c, 0x0b, 0x13, 0x55, 0x6c, 0x41, 0x31, 0xd3, - 0xc9, 0xf9, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, - 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x34, 0x91, 0xcc, 0x47, - 0xa4, 0x11, 0xfd, 0xe2, 0x82, 0x3c, 0xfd, 0x0a, 0x7d, 0x58, 0xca, 0x06, 0x5b, 0x93, 0xc4, 0x06, - 0x4e, 0x70, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x63, 0xfe, 0x58, 0x40, 0xf1, 0x02, 0x00, - 0x00, +var fileDescriptor_0959851acf436714 = []byte{ + // 398 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x28, 0x2e, 0xc8, 0xd3, + 0x2f, 0x28, 0xca, 0xcf, 0x4a, 0x4d, 0x2e, 0xd1, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, + 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x2e, 0x2e, 0xc8, 0xd3, 0x83, 0xca, 0x48, 0x89, 0xa4, 0xe7, + 0xa7, 0xe7, 0x83, 0xc5, 0xf5, 0x41, 0x2c, 0x88, 0x12, 0x29, 0xb9, 0xe4, 0xfc, 0xe2, 0xdc, 0xfc, + 0x62, 0xfd, 0xa4, 0xc4, 0xe2, 0x54, 0xfd, 0x32, 0xc3, 0xa4, 0xd4, 0x92, 0x44, 0x43, 0xfd, 0xe4, + 0xfc, 0xcc, 0x3c, 0xa8, 0xbc, 0x24, 0x44, 0x3e, 0x1e, 0xa2, 0x11, 0xc2, 0x81, 0x48, 0x29, 0x6d, + 0x63, 0xe2, 0x62, 0x0b, 0x00, 0x5b, 0x27, 0xe4, 0xcf, 0x25, 0x50, 0x92, 0x5f, 0x92, 0x98, 0x13, + 0x5c, 0x5a, 0x50, 0x90, 0x53, 0x19, 0x94, 0x98, 0x97, 0x9e, 0x2a, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, + 0x6d, 0x24, 0xab, 0x87, 0xe4, 0x06, 0xbd, 0x10, 0x34, 0x45, 0x4e, 0x2c, 0x27, 0xee, 0xc9, 0x33, + 0x04, 0x61, 0x68, 0x16, 0x5a, 0xc6, 0xc8, 0x25, 0x04, 0xd5, 0xe4, 0x5c, 0x94, 0x9a, 0x58, 0x92, + 0x99, 0x9f, 0xe7, 0x96, 0x9a, 0x2a, 0xc1, 0xa4, 0xc0, 0xac, 0xc1, 0x6d, 0x24, 0xa9, 0x07, 0x75, + 0x07, 0xc8, 0xd1, 0x7a, 0x50, 0x47, 0xeb, 0x39, 0xe7, 0x67, 0xe6, 0x39, 0x45, 0x83, 0xcc, 0xfb, + 0x75, 0x4f, 0x5e, 0x3d, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x17, 0xea, 0x68, + 0x28, 0xa5, 0x5b, 0x9c, 0x92, 0xad, 0x5f, 0x52, 0x59, 0x90, 0x5a, 0x0c, 0xd6, 0xb0, 0xea, 0xbe, + 0xbc, 0x06, 0x91, 0x4a, 0x8b, 0x83, 0xb0, 0xb8, 0x48, 0x48, 0x87, 0x4b, 0x30, 0x37, 0xb1, 0xc2, + 0x37, 0xb5, 0x24, 0x31, 0x25, 0xb1, 0x24, 0xd1, 0x27, 0x35, 0x2f, 0xbd, 0x24, 0x43, 0x82, 0x59, + 0x81, 0x51, 0x83, 0x25, 0x08, 0x53, 0xc2, 0x8a, 0x65, 0xc6, 0x02, 0x79, 0x06, 0xa5, 0x7b, 0x8c, + 0x5c, 0x02, 0xe8, 0x21, 0x21, 0x94, 0xc2, 0xc5, 0x97, 0x9b, 0x99, 0x87, 0x24, 0x0c, 0x0e, 0x40, + 0x4e, 0x27, 0x1b, 0x90, 0x8f, 0x6e, 0xdd, 0x93, 0x57, 0x23, 0xc2, 0x99, 0x9e, 0x79, 0x25, 0x97, + 0xb6, 0xe8, 0x72, 0x41, 0x43, 0xc7, 0x33, 0xaf, 0x24, 0x08, 0xcd, 0x4c, 0xb0, 0x2d, 0x89, 0x15, + 0xc8, 0xb6, 0x30, 0x51, 0xc5, 0x16, 0x14, 0x33, 0x9d, 0x9c, 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, 0x4a, 0x13, 0xc9, 0xfc, 0x92, 0xd4, 0xbc, 0x94, 0xd4, 0xa2, 0xdc, 0xcc, + 0xbc, 0x12, 0x7d, 0x50, 0x0a, 0xae, 0x80, 0xa7, 0x61, 0xb0, 0x35, 0x49, 0x6c, 0xe0, 0x54, 0x66, + 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x7e, 0xc4, 0x77, 0xc6, 0xdf, 0x02, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/project/types/project.pb.go b/x/project/types/project.pb.go index bc0061f85..b9c3960ca 100644 --- a/x/project/types/project.pb.go +++ b/x/project/types/project.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: project/project.proto +// source: spn/project/project.proto package types @@ -7,8 +7,8 @@ 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" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -42,7 +42,7 @@ func (m *Project) Reset() { *m = Project{} } func (m *Project) String() string { return proto.CompactTextString(m) } func (*Project) ProtoMessage() {} func (*Project) Descriptor() ([]byte, []int) { - return fileDescriptor_2cf0ca921a221351, []int{0} + return fileDescriptor_03ee4c9f24356a6e, []int{0} } func (m *Project) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -142,42 +142,42 @@ func (m *Project) GetMetadata() []byte { } func init() { - proto.RegisterType((*Project)(nil), "tendermint.spn.project.Project") + proto.RegisterType((*Project)(nil), "spn.project.Project") } -func init() { proto.RegisterFile("project/project.proto", fileDescriptor_2cf0ca921a221351) } +func init() { proto.RegisterFile("spn/project/project.proto", fileDescriptor_03ee4c9f24356a6e) } -var fileDescriptor_2cf0ca921a221351 = []byte{ - // 455 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x53, 0xc1, 0x8e, 0xd3, 0x30, - 0x10, 0xad, 0x69, 0xe9, 0xb6, 0x2e, 0x08, 0xc9, 0x02, 0x64, 0x2a, 0x94, 0x06, 0x84, 0x44, 0x40, - 0xc2, 0xd6, 0x2e, 0x27, 0x8e, 0xdb, 0xdd, 0xcb, 0x5e, 0x10, 0x4a, 0x6f, 0x70, 0x00, 0x37, 0xb1, - 0xba, 0x86, 0xc4, 0x13, 0xc5, 0xb3, 0x88, 0xe5, 0xc0, 0x37, 0x70, 0xe4, 0x1b, 0xf8, 0x92, 0x3d, - 0xee, 0x91, 0xd3, 0x82, 0xda, 0x5f, 0xe0, 0xc4, 0x09, 0xa5, 0x71, 0x9b, 0x02, 0x95, 0x80, 0x93, - 0x33, 0x6f, 0xde, 0xcc, 0x3c, 0x4f, 0x9e, 0xe9, 0x8d, 0xa2, 0x84, 0xd7, 0x3a, 0x41, 0xe9, 0x4f, - 0x51, 0x94, 0x80, 0xc0, 0x6e, 0xa2, 0xb6, 0xa9, 0x2e, 0x73, 0x63, 0x51, 0xb8, 0xc2, 0x0a, 0x9f, - 0x1d, 0x5e, 0x9f, 0xc1, 0x0c, 0x96, 0x14, 0x59, 0x7d, 0xd5, 0xec, 0x61, 0x90, 0x80, 0xcb, 0xc1, - 0xc9, 0xa9, 0x72, 0x5a, 0xbe, 0xdd, 0x9d, 0x6a, 0x54, 0xbb, 0x32, 0x01, 0x63, 0x7d, 0xfe, 0xce, - 0x6a, 0x88, 0x2b, 0x74, 0x62, 0x54, 0xf6, 0x52, 0x65, 0x19, 0x24, 0x0a, 0x0d, 0x58, 0x57, 0x53, - 0xee, 0x7e, 0xef, 0xd0, 0x9d, 0x67, 0x35, 0x8b, 0xdd, 0xa6, 0x7d, 0x5f, 0x70, 0x74, 0xc8, 0x49, - 0x48, 0xa2, 0x4e, 0xdc, 0x00, 0x2c, 0xa4, 0x03, 0x1f, 0x3c, 0x55, 0xb9, 0xe6, 0x97, 0x42, 0x12, - 0xf5, 0xe3, 0x4d, 0x88, 0xdd, 0xa3, 0x57, 0x13, 0x80, 0x32, 0x35, 0x56, 0x21, 0x94, 0x47, 0x87, - 0xbc, 0xbd, 0xec, 0xf1, 0x2b, 0x58, 0x4d, 0x49, 0x4a, 0xad, 0x50, 0xa7, 0xfb, 0xc8, 0x3b, 0x21, - 0x89, 0xda, 0x71, 0x03, 0x54, 0xd9, 0x5c, 0x19, 0x6b, 0x75, 0xa5, 0xe1, 0x72, 0xad, 0x61, 0x0d, - 0x30, 0x41, 0xd9, 0x2a, 0xb0, 0x06, 0x8d, 0xca, 0xcc, 0x7b, 0x9d, 0xf2, 0x6e, 0x48, 0xa2, 0x5e, - 0xbc, 0x25, 0xc3, 0x3e, 0x11, 0x3a, 0x40, 0x40, 0x95, 0x4d, 0x4e, 0x8a, 0x22, 0x3b, 0xe5, 0x3b, - 0x61, 0x3b, 0x1a, 0xec, 0xdd, 0x12, 0xf5, 0xde, 0x44, 0xb5, 0x37, 0xe1, 0xf7, 0x26, 0x0e, 0xc0, - 0xd8, 0xf1, 0x8b, 0xb3, 0x8b, 0x51, 0xeb, 0xc7, 0xc5, 0xe8, 0xfe, 0xcc, 0xe0, 0xf1, 0xc9, 0x54, - 0x24, 0x90, 0x4b, 0xbf, 0xe4, 0xfa, 0x78, 0xe4, 0xd2, 0x37, 0x12, 0x4f, 0x0b, 0xed, 0x96, 0x05, - 0x9f, 0xbf, 0x8e, 0xa2, 0x7f, 0xa4, 0xba, 0x78, 0x53, 0x0a, 0xfb, 0x40, 0xaf, 0xf9, 0xbf, 0xa1, - 0xd3, 0xc9, 0xb1, 0x2a, 0xb5, 0xe3, 0xbd, 0xbf, 0xa9, 0x7b, 0xf2, 0xff, 0xea, 0xba, 0x75, 0xef, - 0xf8, 0xf7, 0x61, 0xec, 0x15, 0x65, 0xde, 0x15, 0xfb, 0x8d, 0x29, 0x78, 0x3f, 0x24, 0xd1, 0x60, - 0xef, 0xa1, 0xd8, 0x6e, 0x43, 0x31, 0xf9, 0xa3, 0x62, 0xdc, 0xa9, 0x34, 0xc5, 0x5b, 0x7a, 0xb1, - 0x21, 0xed, 0xe5, 0x1a, 0x55, 0xaa, 0x50, 0x71, 0x1a, 0x92, 0xe8, 0x4a, 0xbc, 0x8e, 0xc7, 0x07, - 0x67, 0xf3, 0x80, 0x9c, 0xcf, 0x03, 0xf2, 0x6d, 0x1e, 0x90, 0x8f, 0x8b, 0xa0, 0x75, 0xbe, 0x08, - 0x5a, 0x5f, 0x16, 0x41, 0xeb, 0xf9, 0x83, 0x8d, 0xbb, 0x35, 0x2a, 0xa4, 0x2b, 0xac, 0x7c, 0xb7, - 0x7a, 0x2c, 0xf5, 0x15, 0xa7, 0xdd, 0xa5, 0x85, 0x1f, 0xff, 0x0c, 0x00, 0x00, 0xff, 0xff, 0xe9, - 0x81, 0x76, 0xa0, 0x4c, 0x03, 0x00, 0x00, +var fileDescriptor_03ee4c9f24356a6e = []byte{ + // 452 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x52, 0x31, 0x8f, 0xd3, 0x30, + 0x14, 0xae, 0x69, 0xe9, 0xb5, 0x0e, 0x08, 0xc9, 0x62, 0xf0, 0x55, 0x28, 0x8d, 0x10, 0x88, 0x30, + 0xe0, 0xe8, 0x8e, 0x89, 0xf1, 0x7a, 0xb7, 0xdc, 0x82, 0x50, 0x2a, 0x16, 0x18, 0x90, 0xe3, 0x58, + 0x3d, 0x43, 0xe2, 0x67, 0xc5, 0x3e, 0xc4, 0x31, 0xf0, 0x1b, 0x18, 0xf9, 0x0d, 0xfc, 0x92, 0x1b, + 0x6f, 0x64, 0x3a, 0x50, 0x3b, 0xf1, 0x17, 0x98, 0x50, 0x12, 0x5f, 0x1b, 0xa0, 0x12, 0x30, 0x39, + 0xef, 0x7b, 0x9f, 0x9f, 0xbf, 0xf7, 0xe5, 0xc3, 0xbb, 0xd6, 0xe8, 0xc4, 0x54, 0xf0, 0x5a, 0x0a, + 0x77, 0x75, 0x32, 0x53, 0x81, 0x03, 0x12, 0x58, 0xa3, 0x99, 0x87, 0x26, 0xb7, 0x17, 0xb0, 0x80, + 0x06, 0x4f, 0xea, 0xaf, 0x96, 0x32, 0x09, 0x05, 0xd8, 0x12, 0x6c, 0x92, 0x71, 0x2b, 0x93, 0xb7, + 0x7b, 0x99, 0x74, 0x7c, 0x2f, 0x11, 0xa0, 0xb4, 0xef, 0xdf, 0xef, 0x4e, 0xb7, 0x46, 0x0a, 0xc5, + 0x8b, 0x57, 0xbc, 0x28, 0x40, 0x70, 0xa7, 0x40, 0xdb, 0x96, 0x76, 0xf7, 0xfb, 0x00, 0xef, 0x3c, + 0x6b, 0x59, 0xe4, 0x0e, 0x1e, 0xfb, 0x0b, 0xc7, 0x47, 0x14, 0x45, 0x28, 0x1e, 0xa4, 0x1b, 0x80, + 0x44, 0x38, 0xf0, 0xc5, 0x53, 0x5e, 0x4a, 0x7a, 0x2d, 0x42, 0xf1, 0x38, 0xed, 0x42, 0xe4, 0x1e, + 0xbe, 0x29, 0x00, 0xaa, 0x5c, 0x69, 0xee, 0xa0, 0x3a, 0x3e, 0xa2, 0xfd, 0x66, 0xc6, 0xaf, 0x60, + 0xfd, 0x8a, 0xa8, 0x24, 0x77, 0x32, 0x3f, 0x70, 0x74, 0x10, 0xa1, 0xb8, 0x9f, 0x6e, 0x80, 0xba, + 0x5b, 0x72, 0xa5, 0xb5, 0xac, 0x35, 0x5c, 0x6f, 0x35, 0xac, 0x01, 0xc2, 0x30, 0xb9, 0x2a, 0xb4, + 0x72, 0x8a, 0x17, 0xea, 0xbd, 0xcc, 0xe9, 0x30, 0x42, 0xf1, 0x28, 0xdd, 0xd2, 0x21, 0x9f, 0x10, + 0x0e, 0x1c, 0x38, 0x5e, 0xcc, 0x4f, 0x8d, 0x29, 0xce, 0xe8, 0x4e, 0xd4, 0x8f, 0x83, 0xfd, 0x5d, + 0xd6, 0x7a, 0xc7, 0x6a, 0xef, 0x98, 0xf7, 0x8e, 0x1d, 0x82, 0xd2, 0xb3, 0x97, 0xe7, 0x97, 0xd3, + 0xde, 0x8f, 0xcb, 0xe9, 0x83, 0x85, 0x72, 0x27, 0xa7, 0x19, 0x13, 0x50, 0x26, 0xde, 0xe8, 0xf6, + 0x78, 0x64, 0xf3, 0x37, 0x89, 0x3b, 0x33, 0xd2, 0x36, 0x17, 0x3e, 0x7f, 0x9d, 0xc6, 0xff, 0x48, + 0xb5, 0x69, 0x57, 0x0a, 0xf9, 0x80, 0x6f, 0xf9, 0xbf, 0x21, 0xf3, 0xf9, 0x09, 0xaf, 0xa4, 0xa5, + 0xa3, 0xbf, 0xa9, 0x7b, 0xf2, 0xff, 0xea, 0x86, 0xed, 0xec, 0xf4, 0xf7, 0xc7, 0xc8, 0x73, 0x4c, + 0x7c, 0x2a, 0x0e, 0x36, 0xa1, 0xa0, 0xe3, 0x08, 0xc5, 0xc1, 0xfe, 0x94, 0x75, 0xf2, 0xc7, 0xe6, + 0x7f, 0xd0, 0x66, 0x83, 0x5a, 0x48, 0xba, 0x65, 0x00, 0x99, 0xe0, 0x51, 0x29, 0x1d, 0xcf, 0xb9, + 0xe3, 0x14, 0x47, 0x28, 0xbe, 0x91, 0xae, 0xeb, 0xd9, 0xe1, 0xf9, 0x32, 0x44, 0x17, 0xcb, 0x10, + 0x7d, 0x5b, 0x86, 0xe8, 0xe3, 0x2a, 0xec, 0x5d, 0xac, 0xc2, 0xde, 0x97, 0x55, 0xd8, 0x7b, 0xf1, + 0xb0, 0xb3, 0x90, 0x93, 0x3a, 0x97, 0x55, 0xa9, 0x74, 0x1d, 0x5b, 0x9d, 0xbc, 0x5b, 0x87, 0xb8, + 0xd9, 0x2b, 0x1b, 0x36, 0xb9, 0x7d, 0xfc, 0x33, 0x00, 0x00, 0xff, 0xff, 0xf0, 0x8a, 0x34, 0x10, + 0x3e, 0x03, 0x00, 0x00, } func (m *Project) Marshal() (dAtA []byte, err error) { diff --git a/x/project/types/project_chains.pb.go b/x/project/types/project_chains.pb.go index f47bcabf8..a5e983fdb 100644 --- a/x/project/types/project_chains.pb.go +++ b/x/project/types/project_chains.pb.go @@ -1,11 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: project/project_chains.proto +// source: spn/project/project_chains.proto package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -31,7 +31,7 @@ func (m *ProjectChains) Reset() { *m = ProjectChains{} } func (m *ProjectChains) String() string { return proto.CompactTextString(m) } func (*ProjectChains) ProtoMessage() {} func (*ProjectChains) Descriptor() ([]byte, []int) { - return fileDescriptor_f9241ba76ed63f43, []int{0} + return fileDescriptor_954119d7be6667b6, []int{0} } func (m *ProjectChains) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -75,24 +75,24 @@ func (m *ProjectChains) GetChains() []uint64 { } func init() { - proto.RegisterType((*ProjectChains)(nil), "tendermint.spn.project.ProjectChains") + proto.RegisterType((*ProjectChains)(nil), "spn.project.ProjectChains") } -func init() { proto.RegisterFile("project/project_chains.proto", fileDescriptor_f9241ba76ed63f43) } +func init() { proto.RegisterFile("spn/project/project_chains.proto", fileDescriptor_954119d7be6667b6) } -var fileDescriptor_f9241ba76ed63f43 = []byte{ - // 171 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x29, 0x28, 0xca, 0xcf, - 0x4a, 0x4d, 0x2e, 0xd1, 0x87, 0xd2, 0xf1, 0xc9, 0x19, 0x89, 0x99, 0x79, 0xc5, 0x7a, 0x05, 0x45, - 0xf9, 0x25, 0xf9, 0x42, 0x62, 0x25, 0xa9, 0x79, 0x29, 0xa9, 0x45, 0xb9, 0x99, 0x79, 0x25, 0x7a, - 0xc5, 0x05, 0x79, 0x7a, 0x50, 0x45, 0x4a, 0xae, 0x5c, 0xbc, 0x01, 0x10, 0xa6, 0x33, 0x58, 0xb9, - 0x90, 0x0c, 0x17, 0x27, 0x54, 0xce, 0xd3, 0x45, 0x82, 0x51, 0x81, 0x51, 0x83, 0x25, 0x08, 0x21, - 0x20, 0x24, 0xc6, 0xc5, 0x06, 0x31, 0x56, 0x82, 0x49, 0x81, 0x59, 0x83, 0x25, 0x08, 0xca, 0x73, - 0x72, 0x3e, 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, 0xcd, 0xf4, 0xcc, 0x92, - 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x84, 0x1b, 0xf4, 0x8b, 0x0b, 0xf2, 0xf4, 0x2b, - 0x60, 0x4e, 0xd5, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0x3b, 0xd5, 0x18, 0x10, 0x00, - 0x00, 0xff, 0xff, 0xc0, 0x06, 0x0e, 0x1b, 0xca, 0x00, 0x00, 0x00, +var fileDescriptor_954119d7be6667b6 = []byte{ + // 168 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x28, 0x2e, 0xc8, 0xd3, + 0x2f, 0x28, 0xca, 0xcf, 0x4a, 0x4d, 0x2e, 0x81, 0xd1, 0xf1, 0xc9, 0x19, 0x89, 0x99, 0x79, 0xc5, + 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, 0x42, 0xdc, 0xc5, 0x05, 0x79, 0x7a, 0x50, 0x19, 0x25, 0x57, + 0x2e, 0xde, 0x00, 0x08, 0xd3, 0x19, 0xac, 0x46, 0x48, 0x86, 0x8b, 0x13, 0x2a, 0xe7, 0xe9, 0x22, + 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x12, 0x84, 0x10, 0x10, 0x12, 0xe3, 0x62, 0x83, 0x98, 0x25, 0xc1, + 0xa4, 0xc0, 0xac, 0xc1, 0x12, 0x04, 0xe5, 0x39, 0x39, 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, 0x66, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, + 0x49, 0x6a, 0x5e, 0x4a, 0x6a, 0x51, 0x6e, 0x66, 0x5e, 0x89, 0x3e, 0xc8, 0x95, 0x15, 0x70, 0x77, + 0x96, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0xdd, 0x67, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, + 0xe7, 0x9c, 0x16, 0x84, 0xc3, 0x00, 0x00, 0x00, } func (m *ProjectChains) Marshal() (dAtA []byte, err error) { diff --git a/x/project/types/query.pb.go b/x/project/types/query.pb.go index 094c94b1d..cc61c1c42 100644 --- a/x/project/types/query.pb.go +++ b/x/project/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: project/query.proto +// source: spn/project/query.proto package types @@ -10,9 +10,9 @@ import ( _ "github.com/cosmos/cosmos-sdk/types" github_com_cosmos_cosmos_sdk_types "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" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -41,7 +41,7 @@ func (m *QueryGetProjectRequest) Reset() { *m = QueryGetProjectRequest{} func (m *QueryGetProjectRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetProjectRequest) ProtoMessage() {} func (*QueryGetProjectRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{0} + return fileDescriptor_3f97374b6cfb249e, []int{0} } func (m *QueryGetProjectRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -85,7 +85,7 @@ func (m *QueryGetProjectResponse) Reset() { *m = QueryGetProjectResponse func (m *QueryGetProjectResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetProjectResponse) ProtoMessage() {} func (*QueryGetProjectResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{1} + return fileDescriptor_3f97374b6cfb249e, []int{1} } func (m *QueryGetProjectResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -129,7 +129,7 @@ func (m *QueryAllProjectRequest) Reset() { *m = QueryAllProjectRequest{} func (m *QueryAllProjectRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllProjectRequest) ProtoMessage() {} func (*QueryAllProjectRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{2} + return fileDescriptor_3f97374b6cfb249e, []int{2} } func (m *QueryAllProjectRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -174,7 +174,7 @@ func (m *QueryAllProjectResponse) Reset() { *m = QueryAllProjectResponse func (m *QueryAllProjectResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllProjectResponse) ProtoMessage() {} func (*QueryAllProjectResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{3} + return fileDescriptor_3f97374b6cfb249e, []int{3} } func (m *QueryAllProjectResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -225,7 +225,7 @@ func (m *QueryGetProjectChainsRequest) Reset() { *m = QueryGetProjectCha func (m *QueryGetProjectChainsRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetProjectChainsRequest) ProtoMessage() {} func (*QueryGetProjectChainsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{4} + return fileDescriptor_3f97374b6cfb249e, []int{4} } func (m *QueryGetProjectChainsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -269,7 +269,7 @@ func (m *QueryGetProjectChainsResponse) Reset() { *m = QueryGetProjectCh func (m *QueryGetProjectChainsResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetProjectChainsResponse) ProtoMessage() {} func (*QueryGetProjectChainsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{5} + return fileDescriptor_3f97374b6cfb249e, []int{5} } func (m *QueryGetProjectChainsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -313,7 +313,7 @@ func (m *QuerySpecialAllocationsBalanceRequest) Reset() { *m = QuerySpec func (m *QuerySpecialAllocationsBalanceRequest) String() string { return proto.CompactTextString(m) } func (*QuerySpecialAllocationsBalanceRequest) ProtoMessage() {} func (*QuerySpecialAllocationsBalanceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{6} + return fileDescriptor_3f97374b6cfb249e, []int{6} } func (m *QuerySpecialAllocationsBalanceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -360,7 +360,7 @@ func (m *QuerySpecialAllocationsBalanceResponse) Reset() { func (m *QuerySpecialAllocationsBalanceResponse) String() string { return proto.CompactTextString(m) } func (*QuerySpecialAllocationsBalanceResponse) ProtoMessage() {} func (*QuerySpecialAllocationsBalanceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{7} + return fileDescriptor_3f97374b6cfb249e, []int{7} } func (m *QuerySpecialAllocationsBalanceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -412,7 +412,7 @@ func (m *QueryGetMainnetAccountRequest) Reset() { *m = QueryGetMainnetAc func (m *QueryGetMainnetAccountRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetMainnetAccountRequest) ProtoMessage() {} func (*QueryGetMainnetAccountRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{8} + return fileDescriptor_3f97374b6cfb249e, []int{8} } func (m *QueryGetMainnetAccountRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -463,7 +463,7 @@ func (m *QueryGetMainnetAccountResponse) Reset() { *m = QueryGetMainnetA func (m *QueryGetMainnetAccountResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetMainnetAccountResponse) ProtoMessage() {} func (*QueryGetMainnetAccountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{9} + return fileDescriptor_3f97374b6cfb249e, []int{9} } func (m *QueryGetMainnetAccountResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -508,7 +508,7 @@ func (m *QueryAllMainnetAccountRequest) Reset() { *m = QueryAllMainnetAc func (m *QueryAllMainnetAccountRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllMainnetAccountRequest) ProtoMessage() {} func (*QueryAllMainnetAccountRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{10} + return fileDescriptor_3f97374b6cfb249e, []int{10} } func (m *QueryAllMainnetAccountRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -560,7 +560,7 @@ func (m *QueryAllMainnetAccountResponse) Reset() { *m = QueryAllMainnetA func (m *QueryAllMainnetAccountResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllMainnetAccountResponse) ProtoMessage() {} func (*QueryAllMainnetAccountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{11} + return fileDescriptor_3f97374b6cfb249e, []int{11} } func (m *QueryAllMainnetAccountResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -612,7 +612,7 @@ func (m *QueryGetMainnetAccountBalanceRequest) Reset() { *m = QueryGetMa func (m *QueryGetMainnetAccountBalanceRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetMainnetAccountBalanceRequest) ProtoMessage() {} func (*QueryGetMainnetAccountBalanceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{12} + return fileDescriptor_3f97374b6cfb249e, []int{12} } func (m *QueryGetMainnetAccountBalanceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -663,7 +663,7 @@ func (m *QueryGetMainnetAccountBalanceResponse) Reset() { *m = QueryGetM func (m *QueryGetMainnetAccountBalanceResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetMainnetAccountBalanceResponse) ProtoMessage() {} func (*QueryGetMainnetAccountBalanceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{13} + return fileDescriptor_3f97374b6cfb249e, []int{13} } func (m *QueryGetMainnetAccountBalanceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -708,7 +708,7 @@ func (m *QueryAllMainnetAccountBalanceRequest) Reset() { *m = QueryAllMa func (m *QueryAllMainnetAccountBalanceRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllMainnetAccountBalanceRequest) ProtoMessage() {} func (*QueryAllMainnetAccountBalanceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{14} + return fileDescriptor_3f97374b6cfb249e, []int{14} } func (m *QueryAllMainnetAccountBalanceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -760,7 +760,7 @@ func (m *QueryAllMainnetAccountBalanceResponse) Reset() { *m = QueryAllM func (m *QueryAllMainnetAccountBalanceResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllMainnetAccountBalanceResponse) ProtoMessage() {} func (*QueryAllMainnetAccountBalanceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{15} + return fileDescriptor_3f97374b6cfb249e, []int{15} } func (m *QueryAllMainnetAccountBalanceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -811,7 +811,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{16} + return fileDescriptor_3f97374b6cfb249e, []int{16} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -849,7 +849,7 @@ 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_3d559d5280efda17, []int{17} + return fileDescriptor_3f97374b6cfb249e, []int{17} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -892,7 +892,7 @@ func (m *QueryTotalSharesRequest) Reset() { *m = QueryTotalSharesRequest func (m *QueryTotalSharesRequest) String() string { return proto.CompactTextString(m) } func (*QueryTotalSharesRequest) ProtoMessage() {} func (*QueryTotalSharesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{18} + return fileDescriptor_3f97374b6cfb249e, []int{18} } func (m *QueryTotalSharesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -929,7 +929,7 @@ func (m *QueryTotalSharesResponse) Reset() { *m = QueryTotalSharesRespon func (m *QueryTotalSharesResponse) String() string { return proto.CompactTextString(m) } func (*QueryTotalSharesResponse) ProtoMessage() {} func (*QueryTotalSharesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3d559d5280efda17, []int{19} + return fileDescriptor_3f97374b6cfb249e, []int{19} } func (m *QueryTotalSharesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -966,104 +966,103 @@ func (m *QueryTotalSharesResponse) GetTotalShares() uint64 { } func init() { - proto.RegisterType((*QueryGetProjectRequest)(nil), "tendermint.spn.project.QueryGetProjectRequest") - proto.RegisterType((*QueryGetProjectResponse)(nil), "tendermint.spn.project.QueryGetProjectResponse") - proto.RegisterType((*QueryAllProjectRequest)(nil), "tendermint.spn.project.QueryAllProjectRequest") - proto.RegisterType((*QueryAllProjectResponse)(nil), "tendermint.spn.project.QueryAllProjectResponse") - proto.RegisterType((*QueryGetProjectChainsRequest)(nil), "tendermint.spn.project.QueryGetProjectChainsRequest") - proto.RegisterType((*QueryGetProjectChainsResponse)(nil), "tendermint.spn.project.QueryGetProjectChainsResponse") - proto.RegisterType((*QuerySpecialAllocationsBalanceRequest)(nil), "tendermint.spn.project.QuerySpecialAllocationsBalanceRequest") - proto.RegisterType((*QuerySpecialAllocationsBalanceResponse)(nil), "tendermint.spn.project.QuerySpecialAllocationsBalanceResponse") - proto.RegisterType((*QueryGetMainnetAccountRequest)(nil), "tendermint.spn.project.QueryGetMainnetAccountRequest") - proto.RegisterType((*QueryGetMainnetAccountResponse)(nil), "tendermint.spn.project.QueryGetMainnetAccountResponse") - proto.RegisterType((*QueryAllMainnetAccountRequest)(nil), "tendermint.spn.project.QueryAllMainnetAccountRequest") - proto.RegisterType((*QueryAllMainnetAccountResponse)(nil), "tendermint.spn.project.QueryAllMainnetAccountResponse") - proto.RegisterType((*QueryGetMainnetAccountBalanceRequest)(nil), "tendermint.spn.project.QueryGetMainnetAccountBalanceRequest") - proto.RegisterType((*QueryGetMainnetAccountBalanceResponse)(nil), "tendermint.spn.project.QueryGetMainnetAccountBalanceResponse") - proto.RegisterType((*QueryAllMainnetAccountBalanceRequest)(nil), "tendermint.spn.project.QueryAllMainnetAccountBalanceRequest") - proto.RegisterType((*QueryAllMainnetAccountBalanceResponse)(nil), "tendermint.spn.project.QueryAllMainnetAccountBalanceResponse") - proto.RegisterType((*QueryParamsRequest)(nil), "tendermint.spn.project.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "tendermint.spn.project.QueryParamsResponse") - proto.RegisterType((*QueryTotalSharesRequest)(nil), "tendermint.spn.project.QueryTotalSharesRequest") - proto.RegisterType((*QueryTotalSharesResponse)(nil), "tendermint.spn.project.QueryTotalSharesResponse") -} - -func init() { proto.RegisterFile("project/query.proto", fileDescriptor_3d559d5280efda17) } - -var fileDescriptor_3d559d5280efda17 = []byte{ - // 1138 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0xcf, 0x6f, 0x1b, 0x45, - 0x14, 0xce, 0x24, 0x25, 0x51, 0x27, 0x6a, 0x04, 0x93, 0xa4, 0x24, 0x56, 0xba, 0x0e, 0xab, 0x36, - 0x29, 0x2d, 0xd9, 0xa5, 0x49, 0xd3, 0x03, 0x75, 0x88, 0xec, 0x34, 0x8d, 0x38, 0x54, 0x4a, 0x9d, - 0x9e, 0xca, 0xc1, 0x8c, 0xd7, 0xa3, 0xcd, 0xc2, 0x7a, 0x67, 0xb3, 0xb3, 0x8e, 0x5a, 0x55, 0xbd, - 0x20, 0x71, 0x40, 0xe2, 0x80, 0x40, 0xe2, 0x08, 0x12, 0x5c, 0x10, 0x67, 0x0e, 0xdc, 0x7a, 0x43, - 0x3d, 0x56, 0x70, 0x41, 0x02, 0x95, 0x2a, 0xe1, 0x8f, 0x40, 0x9c, 0x90, 0x67, 0x9e, 0x7f, 0xac, - 0xbd, 0x9b, 0x5d, 0xbb, 0x91, 0x7a, 0xb2, 0x33, 0xf3, 0x7e, 0x7c, 0xdf, 0xf7, 0xde, 0xcc, 0x3c, - 0x07, 0x4f, 0xfb, 0x01, 0xff, 0x98, 0x59, 0xa1, 0x79, 0xd0, 0x60, 0xc1, 0x43, 0xc3, 0x0f, 0x78, - 0xc8, 0xc9, 0xf9, 0x90, 0x79, 0x35, 0x16, 0xd4, 0x1d, 0x2f, 0x34, 0x84, 0xef, 0x19, 0x60, 0x93, - 0x5b, 0xb0, 0x39, 0xb7, 0x5d, 0x66, 0x52, 0xdf, 0x31, 0xa9, 0xe7, 0xf1, 0x90, 0x86, 0x0e, 0xf7, - 0x84, 0xf2, 0xca, 0x69, 0x16, 0x17, 0x75, 0x2e, 0xcc, 0x2a, 0x15, 0xcc, 0x3c, 0xbc, 0x56, 0x65, - 0x21, 0xbd, 0x66, 0x5a, 0xdc, 0xf1, 0x60, 0xff, 0x4a, 0xf7, 0xbe, 0x4c, 0xd7, 0xb6, 0xf2, 0xa9, - 0xed, 0x78, 0x32, 0x18, 0xd8, 0xce, 0xd8, 0xdc, 0xe6, 0xf2, 0xab, 0xd9, 0xfc, 0x06, 0xab, 0xf3, - 0x2a, 0x42, 0x45, 0x6d, 0xa8, 0x3f, 0x60, 0x6b, 0xa1, 0xc5, 0x03, 0x3e, 0x2b, 0xd6, 0x3e, 0x75, - 0xda, 0xd0, 0x66, 0x7b, 0x76, 0x7b, 0x97, 0x0f, 0x99, 0x08, 0x1d, 0xcf, 0x86, 0xe5, 0x0b, 0xad, - 0xe5, 0x3a, 0x75, 0x3c, 0x8f, 0x85, 0x15, 0x6a, 0x59, 0xbc, 0xe1, 0xb5, 0xbc, 0x66, 0xda, 0xc1, - 0x68, 0x40, 0xeb, 0x90, 0x42, 0xbf, 0x81, 0xcf, 0xdf, 0x6d, 0x72, 0xda, 0x61, 0xe1, 0xae, 0xda, - 0x2f, 0xb3, 0x83, 0x06, 0x13, 0x21, 0x59, 0xc0, 0x67, 0xc1, 0xe3, 0x83, 0x5b, 0x73, 0x68, 0x11, - 0x5d, 0x3e, 0x53, 0xee, 0x2c, 0xe8, 0xf7, 0xf1, 0x9b, 0x7d, 0x7e, 0xc2, 0xe7, 0x9e, 0x60, 0x64, - 0x13, 0x4f, 0x80, 0x9d, 0x74, 0x9b, 0x5c, 0xcd, 0x1b, 0xf1, 0x85, 0x31, 0xc0, 0xb3, 0x74, 0xe6, - 0xe9, 0xf3, 0xfc, 0x48, 0xb9, 0xe5, 0xa5, 0x7f, 0x04, 0x98, 0x8a, 0xae, 0xdb, 0x83, 0xe9, 0x36, - 0xc6, 0x1d, 0xcd, 0x21, 0xfa, 0x92, 0x01, 0x8a, 0x36, 0x0b, 0x64, 0xa8, 0x7e, 0x80, 0x02, 0x19, - 0xbb, 0xd4, 0x66, 0xe0, 0x5b, 0xee, 0xf2, 0xd4, 0x7f, 0x40, 0x00, 0xbf, 0x3b, 0x45, 0x1c, 0xfc, - 0xb1, 0xc1, 0xe1, 0x93, 0x9d, 0x08, 0xc8, 0x51, 0x09, 0x72, 0x39, 0x15, 0xa4, 0xca, 0x1e, 0x41, - 0x59, 0xc0, 0x0b, 0x3d, 0x1a, 0x6f, 0xc9, 0xee, 0xc8, 0x56, 0xa1, 0x00, 0x5f, 0x48, 0xf0, 0x06, - 0xa2, 0x77, 0xf1, 0x39, 0xbf, 0x7b, 0x03, 0xf4, 0xbc, 0x94, 0x42, 0x57, 0x19, 0x03, 0xe9, 0x68, - 0x04, 0x7d, 0x1b, 0x5f, 0x92, 0x39, 0xf7, 0x7c, 0x66, 0x39, 0xd4, 0x2d, 0xba, 0x2e, 0xb7, 0xd4, - 0x61, 0x2b, 0x51, 0x97, 0x7a, 0x16, 0xcb, 0x06, 0xfd, 0xdf, 0x51, 0xbc, 0x94, 0x16, 0x07, 0x48, - 0xfc, 0x88, 0xf0, 0xb4, 0xcd, 0x3c, 0x26, 0x1c, 0x71, 0xcb, 0x11, 0x61, 0xe0, 0x54, 0x1b, 0xd0, - 0x1b, 0xcd, 0xd2, 0xcd, 0x47, 0x64, 0x6f, 0x09, 0xbe, 0xc5, 0x1d, 0xaf, 0xf4, 0x61, 0x13, 0xff, - 0x7f, 0xcf, 0xf3, 0xcb, 0xb6, 0x13, 0xee, 0x37, 0xaa, 0x86, 0xc5, 0xeb, 0x70, 0x34, 0xe1, 0x63, - 0x45, 0xd4, 0x3e, 0x31, 0xc3, 0x87, 0x3e, 0x13, 0xd2, 0xe1, 0xa7, 0xbf, 0xf3, 0x97, 0x33, 0x9a, - 0x8a, 0x72, 0x1c, 0x24, 0xf2, 0x3d, 0xc2, 0xaf, 0x5b, 0x2e, 0x75, 0xea, 0xb4, 0xea, 0xb2, 0xa2, - 0x13, 0xd4, 0x02, 0xee, 0xcf, 0x8d, 0xbe, 0x52, 0x9c, 0x7d, 0x78, 0xf4, 0x83, 0x4e, 0xd7, 0xdc, - 0x51, 0xd7, 0x48, 0x51, 0xdd, 0x22, 0x99, 0x2a, 0x47, 0x56, 0xf1, 0x04, 0xad, 0xd5, 0x02, 0x26, - 0x84, 0x6c, 0xfc, 0xb3, 0xa5, 0xb9, 0xdf, 0x7e, 0x5e, 0x99, 0x01, 0x72, 0x45, 0xb5, 0xb3, 0x17, - 0x06, 0x8e, 0x67, 0x97, 0x5b, 0x86, 0xfa, 0x21, 0xd6, 0x92, 0x52, 0x42, 0x91, 0xef, 0xe1, 0xa9, - 0x7a, 0x64, 0xa7, 0x7d, 0xf4, 0x13, 0x5a, 0x35, 0x1a, 0x07, 0x7a, 0xb5, 0x27, 0x86, 0xfe, 0x19, - 0x02, 0xae, 0x45, 0xd7, 0x1d, 0x86, 0xeb, 0xed, 0x98, 0x73, 0x3e, 0xcc, 0x65, 0xf4, 0x04, 0x81, - 0x00, 0x31, 0x38, 0x4e, 0x10, 0x60, 0xec, 0x65, 0x05, 0x38, 0xbd, 0x8b, 0xea, 0x01, 0xbe, 0x18, - 0x5f, 0xc1, 0x41, 0x4e, 0xfd, 0x50, 0xbd, 0xf3, 0x15, 0x82, 0x1b, 0x27, 0x39, 0x35, 0x48, 0xe8, - 0xe0, 0xd9, 0x7a, 0x9c, 0x01, 0xb4, 0xd2, 0x4a, 0x46, 0x25, 0x95, 0x13, 0x08, 0x1a, 0x1f, 0x51, - 0xff, 0x02, 0x81, 0x1e, 0x7d, 0x05, 0x1d, 0x48, 0x8f, 0xd3, 0xea, 0xaf, 0x3f, 0x5b, 0x1a, 0x25, - 0xc3, 0x49, 0xd7, 0x68, 0xec, 0x74, 0x35, 0x3a, 0xbd, 0xde, 0x9b, 0xc1, 0x44, 0x92, 0xdb, 0x95, - 0x53, 0x0d, 0xf0, 0xd7, 0xf7, 0xf0, 0x74, 0x64, 0x15, 0x08, 0x16, 0xf0, 0xb8, 0x9a, 0x7e, 0xa0, - 0xea, 0x5a, 0xe2, 0x5b, 0x27, 0xad, 0x80, 0x02, 0xf8, 0xe8, 0xf3, 0x30, 0x34, 0xdc, 0xe3, 0x21, - 0x75, 0xf7, 0xf6, 0x69, 0xc0, 0xda, 0xf9, 0x0a, 0x78, 0xae, 0x7f, 0x0b, 0x92, 0x2e, 0xe2, 0xc9, - 0xb0, 0xb3, 0x0c, 0x75, 0xee, 0x5e, 0x5a, 0x7d, 0x31, 0x85, 0x5f, 0x93, 0xee, 0xe4, 0x3b, 0x84, - 0x27, 0xe0, 0x9d, 0x25, 0x46, 0x12, 0xb8, 0xf8, 0x81, 0x2d, 0x67, 0x66, 0xb6, 0x57, 0xc0, 0xf4, - 0xb5, 0x4f, 0x7f, 0xff, 0xe7, 0xeb, 0xd1, 0x15, 0x72, 0xd5, 0xec, 0x38, 0x9a, 0xc2, 0xf7, 0xcc, - 0x9e, 0xb1, 0xd3, 0x7c, 0xd4, 0x6e, 0xca, 0xc7, 0xe4, 0x1b, 0x84, 0x31, 0x04, 0x2a, 0xba, 0x6e, - 0x0a, 0xc8, 0xbe, 0x09, 0x2e, 0x05, 0x64, 0xff, 0x38, 0xa6, 0x2f, 0x4b, 0x90, 0x6f, 0x91, 0x7c, - 0x0a, 0x48, 0xf2, 0x0b, 0xc2, 0xe7, 0x22, 0x23, 0x0a, 0xb9, 0x9e, 0x51, 0x90, 0xc8, 0x54, 0x95, - 0x5b, 0x1f, 0xd0, 0x0b, 0x70, 0xbe, 0x27, 0x71, 0x5e, 0x27, 0xab, 0x29, 0x38, 0x61, 0xc2, 0x8f, - 0x68, 0x7a, 0x8c, 0xf0, 0x7c, 0xe2, 0xa8, 0x43, 0x36, 0x4e, 0x04, 0x94, 0x36, 0x6a, 0xe5, 0xde, - 0x1f, 0xd6, 0x1d, 0x88, 0xed, 0x48, 0x62, 0x45, 0xb2, 0x99, 0x44, 0x4c, 0xa8, 0x10, 0x15, 0xda, - 0x89, 0x51, 0xa9, 0xaa, 0x20, 0x11, 0x96, 0xbf, 0x22, 0x3c, 0x15, 0xbd, 0x29, 0x48, 0xaa, 0xd6, - 0xb1, 0xef, 0x72, 0xee, 0xc6, 0xa0, 0x6e, 0x40, 0x65, 0x5b, 0x52, 0xd9, 0x24, 0x1b, 0x49, 0x54, - 0x7a, 0x7e, 0x39, 0x75, 0xc3, 0x37, 0x1f, 0xc1, 0x9b, 0xf3, 0x98, 0x3c, 0x41, 0xf8, 0x8d, 0x68, - 0x86, 0xe6, 0x49, 0x58, 0x4f, 0xeb, 0xec, 0x61, 0xb8, 0x24, 0x8e, 0x04, 0xfa, 0x4d, 0xc9, 0x65, - 0x9d, 0xac, 0x0d, 0xc1, 0xa5, 0xd9, 0x70, 0xb3, 0xb1, 0x97, 0x36, 0x29, 0x0c, 0x26, 0x6d, 0x4f, - 0xaf, 0x6d, 0x0c, 0xe9, 0x0d, 0x9c, 0xee, 0x48, 0x4e, 0x3b, 0x64, 0x3b, 0x23, 0xa7, 0xb8, 0x36, - 0xeb, 0xaa, 0xd3, 0x5f, 0x08, 0xcf, 0xc5, 0x26, 0x6c, 0x96, 0xab, 0x30, 0x98, 0xee, 0x03, 0x11, - 0x4d, 0x7b, 0x68, 0xf5, 0x2d, 0x49, 0x74, 0x83, 0xdc, 0x7c, 0x09, 0xa2, 0xe4, 0x73, 0x84, 0xc7, - 0xd5, 0x3b, 0x45, 0xae, 0x9c, 0x08, 0x27, 0xf2, 0x34, 0xe6, 0xae, 0x66, 0xb2, 0x05, 0xa0, 0x4b, - 0x12, 0xe8, 0x22, 0xd1, 0x12, 0x6f, 0x35, 0x05, 0xe0, 0x5b, 0x84, 0x27, 0xbb, 0xde, 0x3e, 0x72, - 0xf2, 0x35, 0xdf, 0xff, 0x80, 0xe6, 0xde, 0xcd, 0xee, 0x00, 0xd0, 0xde, 0x91, 0xd0, 0x96, 0xc8, - 0xc5, 0x24, 0x68, 0xf2, 0x85, 0xad, 0x08, 0xe9, 0x55, 0xda, 0x7a, 0x7a, 0xa4, 0xa1, 0x67, 0x47, - 0x1a, 0x7a, 0x71, 0xa4, 0xa1, 0x2f, 0x8f, 0xb5, 0x91, 0x67, 0xc7, 0xda, 0xc8, 0x1f, 0xc7, 0xda, - 0xc8, 0xfd, 0xb7, 0xbb, 0x7e, 0x2d, 0xf5, 0x44, 0x7a, 0xd0, 0x89, 0xd5, 0xfc, 0xd1, 0x54, 0x1d, - 0x97, 0xff, 0x33, 0x59, 0xfb, 0x3f, 0x00, 0x00, 0xff, 0xff, 0xd8, 0xe5, 0xdf, 0x41, 0x7e, 0x12, - 0x00, 0x00, + proto.RegisterType((*QueryGetProjectRequest)(nil), "spn.project.QueryGetProjectRequest") + proto.RegisterType((*QueryGetProjectResponse)(nil), "spn.project.QueryGetProjectResponse") + proto.RegisterType((*QueryAllProjectRequest)(nil), "spn.project.QueryAllProjectRequest") + proto.RegisterType((*QueryAllProjectResponse)(nil), "spn.project.QueryAllProjectResponse") + proto.RegisterType((*QueryGetProjectChainsRequest)(nil), "spn.project.QueryGetProjectChainsRequest") + proto.RegisterType((*QueryGetProjectChainsResponse)(nil), "spn.project.QueryGetProjectChainsResponse") + proto.RegisterType((*QuerySpecialAllocationsBalanceRequest)(nil), "spn.project.QuerySpecialAllocationsBalanceRequest") + proto.RegisterType((*QuerySpecialAllocationsBalanceResponse)(nil), "spn.project.QuerySpecialAllocationsBalanceResponse") + proto.RegisterType((*QueryGetMainnetAccountRequest)(nil), "spn.project.QueryGetMainnetAccountRequest") + proto.RegisterType((*QueryGetMainnetAccountResponse)(nil), "spn.project.QueryGetMainnetAccountResponse") + proto.RegisterType((*QueryAllMainnetAccountRequest)(nil), "spn.project.QueryAllMainnetAccountRequest") + proto.RegisterType((*QueryAllMainnetAccountResponse)(nil), "spn.project.QueryAllMainnetAccountResponse") + proto.RegisterType((*QueryGetMainnetAccountBalanceRequest)(nil), "spn.project.QueryGetMainnetAccountBalanceRequest") + proto.RegisterType((*QueryGetMainnetAccountBalanceResponse)(nil), "spn.project.QueryGetMainnetAccountBalanceResponse") + proto.RegisterType((*QueryAllMainnetAccountBalanceRequest)(nil), "spn.project.QueryAllMainnetAccountBalanceRequest") + proto.RegisterType((*QueryAllMainnetAccountBalanceResponse)(nil), "spn.project.QueryAllMainnetAccountBalanceResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "spn.project.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "spn.project.QueryParamsResponse") + proto.RegisterType((*QueryTotalSharesRequest)(nil), "spn.project.QueryTotalSharesRequest") + proto.RegisterType((*QueryTotalSharesResponse)(nil), "spn.project.QueryTotalSharesResponse") +} + +func init() { proto.RegisterFile("spn/project/query.proto", fileDescriptor_3f97374b6cfb249e) } + +var fileDescriptor_3f97374b6cfb249e = []byte{ + // 1127 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x97, 0x4f, 0x6f, 0x1b, 0x45, + 0x14, 0xc0, 0x33, 0x49, 0x49, 0xd4, 0x89, 0x52, 0xc1, 0x24, 0xa5, 0x8e, 0x09, 0x4e, 0xba, 0xa4, + 0x49, 0x9b, 0x12, 0xaf, 0xec, 0x14, 0x0e, 0xb4, 0x55, 0x65, 0xa7, 0x49, 0xe8, 0xa1, 0x22, 0x38, + 0x9c, 0x40, 0xc2, 0x8c, 0xd7, 0xa3, 0xcd, 0xd2, 0xf5, 0xce, 0x66, 0x67, 0x5d, 0xb5, 0xaa, 0x2a, + 0x21, 0x10, 0x02, 0x24, 0x0e, 0x48, 0x5c, 0x38, 0x73, 0x02, 0x4e, 0x1c, 0xfa, 0x19, 0x50, 0x2f, + 0x48, 0x11, 0x5c, 0x38, 0x15, 0x94, 0xf0, 0x21, 0x10, 0x27, 0xb4, 0x33, 0xcf, 0xf1, 0xae, 0x3d, + 0x1b, 0x6f, 0x4c, 0xa4, 0x9e, 0xe2, 0xec, 0xfb, 0xf7, 0x7b, 0x7f, 0x76, 0xe6, 0x2d, 0xbe, 0x20, + 0x7c, 0xcf, 0xf4, 0x03, 0xfe, 0x31, 0xb3, 0x42, 0x73, 0xaf, 0xcd, 0x82, 0x87, 0x45, 0x3f, 0xe0, + 0x21, 0x27, 0x93, 0xc2, 0xf7, 0x8a, 0x20, 0xc8, 0xcf, 0xd9, 0x9c, 0xdb, 0x2e, 0x33, 0xa9, 0xef, + 0x98, 0xd4, 0xf3, 0x78, 0x48, 0x43, 0x87, 0x7b, 0x42, 0xa9, 0xe6, 0x0b, 0x16, 0x17, 0x2d, 0x2e, + 0xcc, 0x06, 0x15, 0xcc, 0xbc, 0x5f, 0x6a, 0xb0, 0x90, 0x96, 0x4c, 0x8b, 0x3b, 0x1e, 0xc8, 0x57, + 0xe2, 0x72, 0x19, 0xe3, 0x48, 0xcb, 0xa7, 0xb6, 0xe3, 0x49, 0x67, 0xa0, 0x3b, 0x63, 0x73, 0x9b, + 0xcb, 0x9f, 0x66, 0xf4, 0x0b, 0x9e, 0xce, 0x2a, 0x0f, 0x75, 0x25, 0x50, 0xff, 0x80, 0x68, 0x21, + 0x9e, 0x00, 0xfc, 0xad, 0x5b, 0xbb, 0xd4, 0x39, 0xc2, 0x9b, 0xd5, 0x68, 0xe8, 0x44, 0xf7, 0x99, + 0x08, 0x1d, 0xcf, 0x06, 0xd1, 0xc5, 0xb8, 0xa8, 0x45, 0x1d, 0xcf, 0x63, 0x61, 0x9d, 0x5a, 0x16, + 0x6f, 0x7b, 0x1d, 0xeb, 0x5c, 0xc2, 0x31, 0x0d, 0x68, 0x0b, 0x42, 0x1a, 0x6f, 0xe2, 0x97, 0xdf, + 0x8d, 0xf2, 0xdc, 0x62, 0xe1, 0xb6, 0x92, 0xd7, 0xd8, 0x5e, 0x9b, 0x89, 0x90, 0xcc, 0xe1, 0xb3, + 0x60, 0x71, 0xe7, 0x76, 0x0e, 0x2d, 0xa0, 0xcb, 0x67, 0x6a, 0xdd, 0x07, 0xc6, 0x3b, 0xf8, 0x42, + 0x9f, 0x9d, 0xf0, 0xb9, 0x27, 0x18, 0xb9, 0x86, 0x27, 0x40, 0x4f, 0x9a, 0x4d, 0x96, 0x67, 0x8a, + 0xb1, 0x0e, 0x15, 0x41, 0xbd, 0x7a, 0xe6, 0xe9, 0xb3, 0xf9, 0x91, 0x5a, 0x47, 0xd5, 0xf8, 0x08, + 0x40, 0x2a, 0xae, 0xdb, 0x03, 0xb2, 0x89, 0x71, 0xb7, 0xf8, 0xe0, 0x72, 0xa9, 0x08, 0xa5, 0x8d, + 0x3a, 0x55, 0x54, 0xd3, 0x00, 0x9d, 0x2a, 0x6e, 0x53, 0x9b, 0x81, 0x6d, 0x2d, 0x66, 0x69, 0x7c, + 0x87, 0x80, 0x39, 0x1e, 0x42, 0xc7, 0x3c, 0x96, 0x91, 0x99, 0x6c, 0x25, 0xc8, 0x46, 0x25, 0xd9, + 0xf2, 0x40, 0x32, 0x15, 0x32, 0x81, 0x76, 0x03, 0xcf, 0xf5, 0x54, 0x73, 0x5d, 0xce, 0x45, 0xb6, + 0x5e, 0xd8, 0xf8, 0xd5, 0x14, 0x6b, 0xc8, 0x6e, 0x13, 0x4f, 0xf9, 0x71, 0x01, 0x14, 0x31, 0xaf, + 0xcb, 0x51, 0x69, 0x40, 0xa6, 0x49, 0x33, 0x63, 0x03, 0x5f, 0x92, 0x81, 0x76, 0x7c, 0x66, 0x39, + 0xd4, 0xad, 0xb8, 0x2e, 0xb7, 0xd4, 0xfb, 0x55, 0xa5, 0x2e, 0xf5, 0x2c, 0x96, 0x8d, 0xf7, 0x9f, + 0x51, 0xbc, 0x34, 0xc8, 0x0f, 0x90, 0xff, 0x80, 0xf0, 0xb4, 0xcd, 0x3c, 0x26, 0x1c, 0x71, 0xdb, + 0x11, 0x61, 0xe0, 0x34, 0xda, 0x30, 0x05, 0x51, 0x93, 0x66, 0x13, 0xb5, 0xee, 0x54, 0x79, 0x9d, + 0x3b, 0x5e, 0xf5, 0x83, 0x88, 0xff, 0xdf, 0x67, 0xf3, 0xcb, 0xb6, 0x13, 0xee, 0xb6, 0x1b, 0x45, + 0x8b, 0xb7, 0xe0, 0x6d, 0x84, 0x3f, 0xab, 0xa2, 0x79, 0xcf, 0x0c, 0x1f, 0xfa, 0x4c, 0x48, 0x83, + 0x9f, 0xfe, 0x9c, 0xbf, 0x9c, 0x51, 0x55, 0xd4, 0x74, 0x48, 0xe4, 0x7b, 0x84, 0x5f, 0xb4, 0x5c, + 0xea, 0xb4, 0x68, 0xc3, 0x65, 0x15, 0x27, 0x68, 0x06, 0xdc, 0xcf, 0x8d, 0x3e, 0x57, 0xce, 0x3e, + 0x1e, 0x63, 0xaf, 0x3b, 0x2a, 0x77, 0xd5, 0x49, 0x51, 0x51, 0x07, 0x45, 0xa6, 0xce, 0x91, 0x32, + 0x9e, 0xa0, 0xcd, 0x66, 0xc0, 0x84, 0x90, 0xd3, 0x7e, 0xb6, 0x9a, 0xfb, 0xed, 0xc9, 0xea, 0x0c, + 0x24, 0x57, 0x51, 0x92, 0x9d, 0x30, 0x70, 0x3c, 0xbb, 0xd6, 0x51, 0x34, 0xee, 0xe1, 0x42, 0x5a, + 0x48, 0x68, 0xf2, 0x1d, 0x7c, 0xae, 0x95, 0x90, 0xc0, 0x7c, 0xbe, 0x92, 0x98, 0xcf, 0xa4, 0x31, + 0x0c, 0x68, 0x8f, 0xa1, 0xf1, 0x39, 0x82, 0x04, 0x2b, 0xae, 0x3b, 0x4c, 0x82, 0x9b, 0x9a, 0x37, + 0x7a, 0x98, 0xb3, 0xe6, 0x09, 0x82, 0xac, 0x35, 0x1c, 0xc7, 0x64, 0x3d, 0x36, 0x54, 0xd6, 0xa7, + 0x77, 0x0e, 0x3d, 0xc0, 0x8b, 0xfa, 0x5e, 0x9d, 0xe4, 0xfd, 0x1e, 0x6a, 0x4a, 0xbe, 0x40, 0x70, + 0xb6, 0xa4, 0x87, 0x86, 0xba, 0x7d, 0x88, 0xcf, 0xb7, 0x74, 0x0a, 0x30, 0x34, 0xc6, 0x71, 0xe5, + 0x53, 0x9a, 0x50, 0x45, 0xbd, 0x1b, 0xe3, 0x6b, 0x04, 0x45, 0xe8, 0x6b, 0xdd, 0x89, 0x8a, 0x70, + 0x5a, 0x93, 0xb4, 0xdf, 0x29, 0x4c, 0x3a, 0xce, 0xe0, 0xc2, 0x8c, 0x9d, 0x42, 0x61, 0x4e, 0x6f, + 0xca, 0x66, 0x30, 0x91, 0x19, 0x6d, 0xcb, 0x45, 0x04, 0x92, 0x36, 0xde, 0xc6, 0xd3, 0x89, 0xa7, + 0x90, 0x55, 0x09, 0x8f, 0xab, 0x85, 0x05, 0xfa, 0x3b, 0x9d, 0xbc, 0xb4, 0xa4, 0x08, 0xb8, 0x41, + 0xd1, 0x98, 0x85, 0x7b, 0xfe, 0x3d, 0x1e, 0x52, 0x77, 0x67, 0x97, 0x06, 0xec, 0x28, 0xc8, 0x0d, + 0x9c, 0xeb, 0x17, 0x41, 0xa4, 0x05, 0x3c, 0x19, 0x76, 0x1f, 0x43, 0x47, 0xe3, 0x8f, 0xca, 0x9f, + 0x4d, 0xe1, 0x17, 0xa4, 0x39, 0xf9, 0x0a, 0xe1, 0x09, 0xb8, 0x30, 0xc9, 0x6b, 0x09, 0x22, 0xfd, + 0x36, 0x95, 0x5f, 0x3c, 0x5e, 0x49, 0x21, 0x18, 0x6b, 0x9f, 0xfe, 0xfe, 0xf7, 0xb7, 0xa3, 0xab, + 0xe4, 0xaa, 0x19, 0x32, 0xaf, 0xc9, 0x82, 0x96, 0xe3, 0x85, 0xa6, 0x66, 0x29, 0x34, 0x1f, 0x1d, + 0x0d, 0xda, 0x63, 0xf2, 0x09, 0xc2, 0x18, 0x1c, 0x55, 0x5c, 0x57, 0x87, 0xd3, 0xb7, 0x53, 0xe9, + 0x70, 0xfa, 0xb7, 0x22, 0x63, 0x59, 0xe2, 0x5c, 0x24, 0xf3, 0x03, 0x70, 0xa2, 0xbb, 0x6f, 0x2a, + 0xb1, 0x3f, 0x90, 0x2b, 0xc7, 0xe5, 0x9b, 0x58, 0x6e, 0xf2, 0x2b, 0x59, 0x54, 0x81, 0xe8, 0x2d, + 0x49, 0x74, 0x8d, 0x94, 0x07, 0x10, 0xc1, 0x5e, 0x9d, 0xa8, 0xd3, 0xaf, 0x08, 0xcf, 0xa6, 0x6e, + 0x1c, 0xa4, 0xdc, 0x4f, 0x31, 0x68, 0xcd, 0xc9, 0xaf, 0x9d, 0xc8, 0x06, 0x52, 0xd8, 0x92, 0x29, + 0x54, 0xc8, 0xad, 0xb4, 0x14, 0x84, 0x72, 0x51, 0xa7, 0x5d, 0x1f, 0xf5, 0x86, 0x72, 0x92, 0xc8, + 0xe7, 0x67, 0x84, 0xcf, 0x25, 0x5f, 0x63, 0xa2, 0x2f, 0xa5, 0xf6, 0x22, 0xcc, 0x5f, 0xcd, 0xa4, + 0x0b, 0xd0, 0x1b, 0x12, 0xfa, 0x16, 0xb9, 0x99, 0x06, 0xdd, 0xf3, 0xdd, 0x11, 0x07, 0x35, 0x1f, + 0xc1, 0x21, 0xff, 0x98, 0xfc, 0x88, 0xf0, 0x4b, 0xc9, 0x08, 0xd1, 0xc4, 0xae, 0x68, 0x87, 0x31, + 0x33, 0x75, 0xea, 0x15, 0x6b, 0x5c, 0x97, 0xd4, 0x6f, 0x90, 0xb5, 0x21, 0xa8, 0xa3, 0x71, 0x39, + 0xaf, 0x3d, 0x25, 0x49, 0x29, 0x43, 0xe5, 0x7a, 0x26, 0xa5, 0x7c, 0x12, 0x13, 0xa0, 0xbf, 0x2b, + 0xe9, 0xb7, 0xc8, 0x46, 0x46, 0x7a, 0xdd, 0x90, 0xc4, 0x6a, 0xff, 0x0b, 0xc2, 0x39, 0x6d, 0xc0, + 0xa8, 0x05, 0xa5, 0x0c, 0x65, 0x1d, 0x9c, 0xd2, 0xa0, 0x2b, 0xca, 0x58, 0x97, 0x29, 0xdd, 0x24, + 0xd7, 0xff, 0x47, 0x4a, 0x44, 0xe0, 0x71, 0x75, 0xec, 0x93, 0xf9, 0x7e, 0x84, 0xc4, 0x9d, 0x92, + 0x5f, 0x48, 0x57, 0x00, 0xa2, 0x25, 0x49, 0xb4, 0x40, 0x0a, 0xa9, 0x07, 0x8a, 0x0a, 0xf5, 0x25, + 0xc2, 0x93, 0xb1, 0x4b, 0x83, 0x68, 0x0e, 0xd0, 0xfe, 0xeb, 0x26, 0x7f, 0x69, 0x80, 0x16, 0x40, + 0xbc, 0x2e, 0x21, 0x96, 0xc8, 0x62, 0x1a, 0x84, 0xbc, 0x84, 0xea, 0x42, 0x5a, 0x55, 0xd7, 0x9f, + 0x1e, 0x14, 0xd0, 0xfe, 0x41, 0x01, 0xfd, 0x75, 0x50, 0x40, 0xdf, 0x1c, 0x16, 0x46, 0xf6, 0x0f, + 0x0b, 0x23, 0x7f, 0x1c, 0x16, 0x46, 0xde, 0xbf, 0x12, 0xfb, 0x32, 0xe8, 0xf1, 0xf4, 0xa0, 0xeb, + 0x2b, 0xfa, 0x40, 0x68, 0x8c, 0xcb, 0xcf, 0xff, 0xb5, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x2f, + 0x1d, 0x3f, 0xbc, 0x56, 0x11, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1110,7 +1109,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Project(ctx context.Context, in *QueryGetProjectRequest, opts ...grpc.CallOption) (*QueryGetProjectResponse, error) { out := new(QueryGetProjectResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Query/Project", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Query/Project", in, out, opts...) if err != nil { return nil, err } @@ -1119,7 +1118,7 @@ func (c *queryClient) Project(ctx context.Context, in *QueryGetProjectRequest, o func (c *queryClient) ProjectAll(ctx context.Context, in *QueryAllProjectRequest, opts ...grpc.CallOption) (*QueryAllProjectResponse, error) { out := new(QueryAllProjectResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Query/ProjectAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Query/ProjectAll", in, out, opts...) if err != nil { return nil, err } @@ -1128,7 +1127,7 @@ func (c *queryClient) ProjectAll(ctx context.Context, in *QueryAllProjectRequest func (c *queryClient) ProjectChains(ctx context.Context, in *QueryGetProjectChainsRequest, opts ...grpc.CallOption) (*QueryGetProjectChainsResponse, error) { out := new(QueryGetProjectChainsResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Query/ProjectChains", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Query/ProjectChains", in, out, opts...) if err != nil { return nil, err } @@ -1137,7 +1136,7 @@ func (c *queryClient) ProjectChains(ctx context.Context, in *QueryGetProjectChai func (c *queryClient) SpecialAllocationsBalance(ctx context.Context, in *QuerySpecialAllocationsBalanceRequest, opts ...grpc.CallOption) (*QuerySpecialAllocationsBalanceResponse, error) { out := new(QuerySpecialAllocationsBalanceResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Query/SpecialAllocationsBalance", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Query/SpecialAllocationsBalance", in, out, opts...) if err != nil { return nil, err } @@ -1146,7 +1145,7 @@ func (c *queryClient) SpecialAllocationsBalance(ctx context.Context, in *QuerySp func (c *queryClient) MainnetAccount(ctx context.Context, in *QueryGetMainnetAccountRequest, opts ...grpc.CallOption) (*QueryGetMainnetAccountResponse, error) { out := new(QueryGetMainnetAccountResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Query/MainnetAccount", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Query/MainnetAccount", in, out, opts...) if err != nil { return nil, err } @@ -1155,7 +1154,7 @@ func (c *queryClient) MainnetAccount(ctx context.Context, in *QueryGetMainnetAcc func (c *queryClient) MainnetAccountAll(ctx context.Context, in *QueryAllMainnetAccountRequest, opts ...grpc.CallOption) (*QueryAllMainnetAccountResponse, error) { out := new(QueryAllMainnetAccountResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Query/MainnetAccountAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Query/MainnetAccountAll", in, out, opts...) if err != nil { return nil, err } @@ -1164,7 +1163,7 @@ func (c *queryClient) MainnetAccountAll(ctx context.Context, in *QueryAllMainnet func (c *queryClient) MainnetAccountBalance(ctx context.Context, in *QueryGetMainnetAccountBalanceRequest, opts ...grpc.CallOption) (*QueryGetMainnetAccountBalanceResponse, error) { out := new(QueryGetMainnetAccountBalanceResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Query/MainnetAccountBalance", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Query/MainnetAccountBalance", in, out, opts...) if err != nil { return nil, err } @@ -1173,7 +1172,7 @@ func (c *queryClient) MainnetAccountBalance(ctx context.Context, in *QueryGetMai func (c *queryClient) MainnetAccountBalanceAll(ctx context.Context, in *QueryAllMainnetAccountBalanceRequest, opts ...grpc.CallOption) (*QueryAllMainnetAccountBalanceResponse, error) { out := new(QueryAllMainnetAccountBalanceResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Query/MainnetAccountBalanceAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Query/MainnetAccountBalanceAll", in, out, opts...) if err != nil { return nil, err } @@ -1182,7 +1181,7 @@ func (c *queryClient) MainnetAccountBalanceAll(ctx context.Context, in *QueryAll func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -1191,7 +1190,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) TotalShares(ctx context.Context, in *QueryTotalSharesRequest, opts ...grpc.CallOption) (*QueryTotalSharesResponse, error) { out := new(QueryTotalSharesResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Query/TotalShares", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Query/TotalShares", in, out, opts...) if err != nil { return nil, err } @@ -1271,7 +1270,7 @@ func _Query_Project_Handler(srv interface{}, ctx context.Context, dec func(inter } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Query/Project", + FullMethod: "/spn.project.Query/Project", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Project(ctx, req.(*QueryGetProjectRequest)) @@ -1289,7 +1288,7 @@ func _Query_ProjectAll_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Query/ProjectAll", + FullMethod: "/spn.project.Query/ProjectAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ProjectAll(ctx, req.(*QueryAllProjectRequest)) @@ -1307,7 +1306,7 @@ func _Query_ProjectChains_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Query/ProjectChains", + FullMethod: "/spn.project.Query/ProjectChains", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ProjectChains(ctx, req.(*QueryGetProjectChainsRequest)) @@ -1325,7 +1324,7 @@ func _Query_SpecialAllocationsBalance_Handler(srv interface{}, ctx context.Conte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Query/SpecialAllocationsBalance", + FullMethod: "/spn.project.Query/SpecialAllocationsBalance", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).SpecialAllocationsBalance(ctx, req.(*QuerySpecialAllocationsBalanceRequest)) @@ -1343,7 +1342,7 @@ func _Query_MainnetAccount_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Query/MainnetAccount", + FullMethod: "/spn.project.Query/MainnetAccount", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).MainnetAccount(ctx, req.(*QueryGetMainnetAccountRequest)) @@ -1361,7 +1360,7 @@ func _Query_MainnetAccountAll_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Query/MainnetAccountAll", + FullMethod: "/spn.project.Query/MainnetAccountAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).MainnetAccountAll(ctx, req.(*QueryAllMainnetAccountRequest)) @@ -1379,7 +1378,7 @@ func _Query_MainnetAccountBalance_Handler(srv interface{}, ctx context.Context, } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Query/MainnetAccountBalance", + FullMethod: "/spn.project.Query/MainnetAccountBalance", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).MainnetAccountBalance(ctx, req.(*QueryGetMainnetAccountBalanceRequest)) @@ -1397,7 +1396,7 @@ func _Query_MainnetAccountBalanceAll_Handler(srv interface{}, ctx context.Contex } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Query/MainnetAccountBalanceAll", + FullMethod: "/spn.project.Query/MainnetAccountBalanceAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).MainnetAccountBalanceAll(ctx, req.(*QueryAllMainnetAccountBalanceRequest)) @@ -1415,7 +1414,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Query/Params", + FullMethod: "/spn.project.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -1433,7 +1432,7 @@ func _Query_TotalShares_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Query/TotalShares", + FullMethod: "/spn.project.Query/TotalShares", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).TotalShares(ctx, req.(*QueryTotalSharesRequest)) @@ -1442,7 +1441,7 @@ func _Query_TotalShares_Handler(srv interface{}, ctx context.Context, dec func(i } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "tendermint.spn.project.Query", + ServiceName: "spn.project.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1487,7 +1486,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "project/query.proto", + Metadata: "spn/project/query.proto", } func (m *QueryGetProjectRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/project/types/query.pb.gw.go b/x/project/types/query.pb.gw.go index d18cdb56c..8cf99d709 100644 --- a/x/project/types/query.pb.gw.go +++ b/x/project/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: project/query.proto +// source: spn/project/query.proto /* Package types is a reverse proxy. @@ -1044,25 +1044,25 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Project_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"tendermint", "spn", "project", "projectID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Project_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"tendermint", "spn", "project", "projectID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_ProjectAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 2}, []string{"tendermint", "spn", "project"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_ProjectAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 2}, []string{"tendermint", "spn", "project"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_ProjectChains_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "project", "project_chains", "projectID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_ProjectChains_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "project", "project_chains", "projectID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_SpecialAllocationsBalance_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "project", "special_allocations_balance", "projectID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_SpecialAllocationsBalance_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "project", "special_allocations_balance", "projectID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_MainnetAccount_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"tendermint", "spn", "project", "mainnet_account", "projectID", "address"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_MainnetAccount_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"tendermint", "spn", "project", "mainnet_account", "projectID", "address"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_MainnetAccountAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "project", "mainnet_account", "projectID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_MainnetAccountAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "project", "mainnet_account", "projectID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_MainnetAccountBalance_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"tendermint", "spn", "project", "mainnet_account_balance", "projectID", "address"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_MainnetAccountBalance_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4, 1, 0, 4, 1, 5, 5}, []string{"tendermint", "spn", "project", "mainnet_account_balance", "projectID", "address"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_MainnetAccountBalanceAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "project", "mainnet_account_balance", "projectID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_MainnetAccountBalanceAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "project", "mainnet_account_balance", "projectID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "project", "params"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "project", "params"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_TotalShares_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "project", "total_shares"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_TotalShares_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "project", "total_shares"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/project/types/shares.go b/x/project/types/shares.go index 659339439..27b932800 100644 --- a/x/project/types/shares.go +++ b/x/project/types/shares.go @@ -20,7 +20,7 @@ const ( // EmptyShares returns shares object that contains no share func EmptyShares() Shares { - return Shares(nil) + return Shares{} } // NewShares returns new shares from comma-separated coins (100atom,200iris...) diff --git a/x/project/types/shares_test.go b/x/project/types/shares_test.go index e773272e3..511438860 100644 --- a/x/project/types/shares_test.go +++ b/x/project/types/shares_test.go @@ -23,7 +23,7 @@ var ( func TestEmptyShares(t *testing.T) { t.Run("should allow creation of empty shares", func(t *testing.T) { shares := project.EmptyShares() - require.Equal(t, project.Shares(nil), shares) + require.Equal(t, project.Shares{}, shares) }) } diff --git a/x/project/types/special_allocations.pb.go b/x/project/types/special_allocations.pb.go index 0540c4e9c..91ad2224a 100644 --- a/x/project/types/special_allocations.pb.go +++ b/x/project/types/special_allocations.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: project/special_allocations.proto +// source: spn/project/special_allocations.proto package types @@ -7,8 +7,8 @@ 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" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -34,7 +34,7 @@ func (m *SpecialAllocations) Reset() { *m = SpecialAllocations{} } func (m *SpecialAllocations) String() string { return proto.CompactTextString(m) } func (*SpecialAllocations) ProtoMessage() {} func (*SpecialAllocations) Descriptor() ([]byte, []int) { - return fileDescriptor_26081bc9c5099d44, []int{0} + return fileDescriptor_2b1f4826f7237cca, []int{0} } func (m *SpecialAllocations) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,32 +78,34 @@ func (m *SpecialAllocations) GetClaimableAirdrop() Shares { } func init() { - proto.RegisterType((*SpecialAllocations)(nil), "tendermint.spn.project.SpecialAllocations") + proto.RegisterType((*SpecialAllocations)(nil), "spn.project.SpecialAllocations") } -func init() { proto.RegisterFile("project/special_allocations.proto", fileDescriptor_26081bc9c5099d44) } +func init() { + proto.RegisterFile("spn/project/special_allocations.proto", fileDescriptor_2b1f4826f7237cca) +} -var fileDescriptor_26081bc9c5099d44 = []byte{ - // 301 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x91, 0x3f, 0x4e, 0x2b, 0x31, - 0x10, 0x87, 0xd7, 0x79, 0x52, 0x8a, 0x7d, 0x0d, 0x5a, 0x10, 0x0a, 0x29, 0x1c, 0xa0, 0x01, 0x0a, - 0x6c, 0x05, 0x2a, 0xca, 0x24, 0x9c, 0x80, 0x74, 0x34, 0xc8, 0x76, 0xac, 0x8d, 0x61, 0xd7, 0x63, - 0x79, 0x1c, 0x04, 0x1d, 0x15, 0x35, 0x47, 0xa0, 0xe6, 0x24, 0x29, 0x53, 0x52, 0x05, 0x94, 0xbd, - 0x05, 0x15, 0xda, 0x3f, 0x28, 0x48, 0xd0, 0x52, 0xd9, 0xd2, 0xcc, 0x7c, 0xdf, 0x68, 0x7e, 0xf1, - 0x9e, 0xf3, 0x70, 0xad, 0x55, 0xe0, 0xe8, 0xb4, 0x32, 0x22, 0xbb, 0x12, 0x59, 0x06, 0x4a, 0x04, - 0x03, 0x16, 0x99, 0xf3, 0x10, 0x20, 0xd9, 0x0e, 0xda, 0x4e, 0xb4, 0xcf, 0x8d, 0x0d, 0x0c, 0x9d, - 0x65, 0xcd, 0x44, 0x77, 0x2b, 0x85, 0x14, 0xaa, 0x16, 0x5e, 0xfe, 0xea, 0xee, 0x2e, 0x55, 0x80, - 0x39, 0x20, 0x97, 0x02, 0x35, 0xbf, 0xed, 0x4b, 0x1d, 0x44, 0x9f, 0x2b, 0x30, 0xb6, 0xae, 0xef, - 0x3f, 0xb7, 0xe2, 0x64, 0x5c, 0xbb, 0x06, 0x6b, 0x55, 0xf2, 0x48, 0xe2, 0xcd, 0x54, 0x5b, 0x8d, - 0x06, 0xcf, 0x0d, 0x06, 0x6f, 0xe4, 0xac, 0x2c, 0x74, 0xc8, 0xee, 0xbf, 0xc3, 0xff, 0x27, 0x3b, - 0xac, 0xa6, 0xb2, 0x92, 0xca, 0x1a, 0x2a, 0x1b, 0x81, 0xb1, 0xc3, 0xb3, 0xf9, 0xb2, 0x17, 0x7d, - 0x2c, 0x7b, 0x07, 0xa9, 0x09, 0xd3, 0x99, 0x64, 0x0a, 0x72, 0xde, 0xac, 0x50, 0x3f, 0xc7, 0x38, - 0xb9, 0xe1, 0xe1, 0xde, 0x69, 0xac, 0x06, 0x5e, 0xde, 0x7a, 0xed, 0xf1, 0x54, 0x78, 0x8d, 0x17, - 0xbf, 0x09, 0x93, 0x07, 0x12, 0x6f, 0xa8, 0x4c, 0x98, 0x5c, 0xc8, 0x4c, 0x0f, 0x8c, 0x9f, 0x78, - 0x70, 0x9d, 0xd6, 0x1f, 0x6e, 0xf1, 0xc3, 0x36, 0x1c, 0xcd, 0x57, 0x94, 0x2c, 0x56, 0x94, 0xbc, - 0xaf, 0x28, 0x79, 0x2a, 0x68, 0xb4, 0x28, 0x68, 0xf4, 0x5a, 0xd0, 0xe8, 0xf2, 0xe8, 0x1b, 0x7e, - 0x9d, 0x0a, 0x47, 0x67, 0xf9, 0x1d, 0xff, 0x4a, 0xb2, 0xb2, 0xc8, 0x76, 0x75, 0xee, 0xd3, 0xcf, - 0x00, 0x00, 0x00, 0xff, 0xff, 0xbd, 0xc5, 0x61, 0xcf, 0xe1, 0x01, 0x00, 0x00, +var fileDescriptor_2b1f4826f7237cca = []byte{ + // 298 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x91, 0xbf, 0x4e, 0xc3, 0x30, + 0x10, 0x87, 0xe3, 0x22, 0x75, 0x48, 0x17, 0x14, 0x18, 0x4a, 0x07, 0x17, 0x21, 0x21, 0x60, 0xc0, + 0x56, 0x61, 0x62, 0x6c, 0xcb, 0x13, 0xd0, 0x8d, 0x05, 0xd9, 0xae, 0x95, 0x1a, 0x12, 0x9f, 0xe5, + 0x73, 0x11, 0x6c, 0x4c, 0xcc, 0x3c, 0x02, 0x33, 0x4f, 0xd2, 0xb1, 0x23, 0x53, 0x41, 0xcd, 0x5b, + 0x30, 0xa1, 0xfc, 0x11, 0x20, 0xc1, 0xca, 0x64, 0xcb, 0x77, 0xfe, 0xbe, 0xd3, 0xfd, 0xe2, 0x7d, + 0x74, 0x96, 0x3b, 0x0f, 0xd7, 0x5a, 0x05, 0x8e, 0x4e, 0x2b, 0x23, 0xb2, 0x2b, 0x91, 0x65, 0xa0, + 0x44, 0x30, 0x60, 0x91, 0x39, 0x0f, 0x01, 0x92, 0x0e, 0x3a, 0xcb, 0x9a, 0xb6, 0xde, 0x76, 0x0a, + 0x29, 0x54, 0xef, 0xbc, 0xbc, 0xd5, 0x2d, 0x3d, 0xaa, 0x00, 0x73, 0x40, 0x2e, 0x05, 0x6a, 0x7e, + 0x3b, 0x90, 0x3a, 0x88, 0x01, 0x57, 0x60, 0x6c, 0x5d, 0xdf, 0x7b, 0x6e, 0xc5, 0xc9, 0xa4, 0x16, + 0x0c, 0xbf, 0xf9, 0xc9, 0x23, 0x89, 0xb7, 0x52, 0x6d, 0x35, 0x1a, 0x3c, 0x37, 0x18, 0xbc, 0x91, + 0xf3, 0xb2, 0xd0, 0x25, 0xbb, 0x1b, 0x87, 0x9d, 0x93, 0x1d, 0x56, 0x53, 0x59, 0x49, 0x65, 0x0d, + 0x95, 0x8d, 0xc1, 0xd8, 0xd1, 0xd9, 0x62, 0xd5, 0x8f, 0x3e, 0x56, 0xfd, 0x83, 0xd4, 0x84, 0xd9, + 0x5c, 0x32, 0x05, 0x39, 0x6f, 0x46, 0xa8, 0x8f, 0x63, 0x9c, 0xde, 0xf0, 0x70, 0xef, 0x34, 0x56, + 0x1f, 0x5e, 0xde, 0xfa, 0xed, 0xc9, 0x4c, 0x78, 0x8d, 0x17, 0x7f, 0x09, 0x93, 0x07, 0x12, 0x6f, + 0xaa, 0x4c, 0x98, 0x5c, 0xc8, 0x4c, 0x0f, 0x8d, 0x9f, 0x7a, 0x70, 0xdd, 0xd6, 0x3f, 0x4e, 0xf1, + 0xcb, 0x36, 0x1a, 0x2f, 0xd6, 0x94, 0x2c, 0xd7, 0x94, 0xbc, 0xaf, 0x29, 0x79, 0x2a, 0x68, 0xb4, + 0x2c, 0x68, 0xf4, 0x5a, 0xd0, 0xe8, 0xf2, 0xe8, 0x07, 0x3e, 0x68, 0x3b, 0xd5, 0x3e, 0x37, 0xb6, + 0x0c, 0xcc, 0xf2, 0xbb, 0xaf, 0xf8, 0x2a, 0x8b, 0x6c, 0x57, 0xeb, 0x3e, 0xfd, 0x0c, 0x00, 0x00, + 0xff, 0xff, 0x57, 0xfb, 0x53, 0x10, 0xda, 0x01, 0x00, 0x00, } func (m *SpecialAllocations) Marshal() (dAtA []byte, err error) { diff --git a/x/project/types/tx.pb.go b/x/project/types/tx.pb.go index fef87e113..7f29cecac 100644 --- a/x/project/types/tx.pb.go +++ b/x/project/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: project/tx.proto +// source: spn/project/tx.proto package types @@ -8,9 +8,9 @@ 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" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -41,7 +41,7 @@ func (m *MsgCreateProject) Reset() { *m = MsgCreateProject{} } func (m *MsgCreateProject) String() string { return proto.CompactTextString(m) } func (*MsgCreateProject) ProtoMessage() {} func (*MsgCreateProject) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{0} + return fileDescriptor_fad83f62571a1808, []int{0} } func (m *MsgCreateProject) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -106,7 +106,7 @@ func (m *MsgCreateProjectResponse) Reset() { *m = MsgCreateProjectRespon func (m *MsgCreateProjectResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateProjectResponse) ProtoMessage() {} func (*MsgCreateProjectResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{1} + return fileDescriptor_fad83f62571a1808, []int{1} } func (m *MsgCreateProjectResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -153,7 +153,7 @@ func (m *MsgEditProject) Reset() { *m = MsgEditProject{} } func (m *MsgEditProject) String() string { return proto.CompactTextString(m) } func (*MsgEditProject) ProtoMessage() {} func (*MsgEditProject) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{2} + return fileDescriptor_fad83f62571a1808, []int{2} } func (m *MsgEditProject) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -217,7 +217,7 @@ func (m *MsgEditProjectResponse) Reset() { *m = MsgEditProjectResponse{} func (m *MsgEditProjectResponse) String() string { return proto.CompactTextString(m) } func (*MsgEditProjectResponse) ProtoMessage() {} func (*MsgEditProjectResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{3} + return fileDescriptor_fad83f62571a1808, []int{3} } func (m *MsgEditProjectResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -256,7 +256,7 @@ func (m *MsgUpdateTotalSupply) Reset() { *m = MsgUpdateTotalSupply{} } func (m *MsgUpdateTotalSupply) String() string { return proto.CompactTextString(m) } func (*MsgUpdateTotalSupply) ProtoMessage() {} func (*MsgUpdateTotalSupply) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{4} + return fileDescriptor_fad83f62571a1808, []int{4} } func (m *MsgUpdateTotalSupply) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -313,7 +313,7 @@ func (m *MsgUpdateTotalSupplyResponse) Reset() { *m = MsgUpdateTotalSupp func (m *MsgUpdateTotalSupplyResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateTotalSupplyResponse) ProtoMessage() {} func (*MsgUpdateTotalSupplyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{5} + return fileDescriptor_fad83f62571a1808, []int{5} } func (m *MsgUpdateTotalSupplyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -352,7 +352,7 @@ func (m *MsgUpdateSpecialAllocations) Reset() { *m = MsgUpdateSpecialAll func (m *MsgUpdateSpecialAllocations) String() string { return proto.CompactTextString(m) } func (*MsgUpdateSpecialAllocations) ProtoMessage() {} func (*MsgUpdateSpecialAllocations) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{6} + return fileDescriptor_fad83f62571a1808, []int{6} } func (m *MsgUpdateSpecialAllocations) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -409,7 +409,7 @@ func (m *MsgUpdateSpecialAllocationsResponse) Reset() { *m = MsgUpdateSp func (m *MsgUpdateSpecialAllocationsResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateSpecialAllocationsResponse) ProtoMessage() {} func (*MsgUpdateSpecialAllocationsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{7} + return fileDescriptor_fad83f62571a1808, []int{7} } func (m *MsgUpdateSpecialAllocationsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -450,7 +450,7 @@ func (m *MsgInitializeMainnet) Reset() { *m = MsgInitializeMainnet{} } func (m *MsgInitializeMainnet) String() string { return proto.CompactTextString(m) } func (*MsgInitializeMainnet) ProtoMessage() {} func (*MsgInitializeMainnet) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{8} + return fileDescriptor_fad83f62571a1808, []int{8} } func (m *MsgInitializeMainnet) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -522,7 +522,7 @@ func (m *MsgInitializeMainnetResponse) Reset() { *m = MsgInitializeMainn func (m *MsgInitializeMainnetResponse) String() string { return proto.CompactTextString(m) } func (*MsgInitializeMainnetResponse) ProtoMessage() {} func (*MsgInitializeMainnetResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{9} + return fileDescriptor_fad83f62571a1808, []int{9} } func (m *MsgInitializeMainnetResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -568,7 +568,7 @@ func (m *MsgMintVouchers) Reset() { *m = MsgMintVouchers{} } func (m *MsgMintVouchers) String() string { return proto.CompactTextString(m) } func (*MsgMintVouchers) ProtoMessage() {} func (*MsgMintVouchers) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{10} + return fileDescriptor_fad83f62571a1808, []int{10} } func (m *MsgMintVouchers) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -625,7 +625,7 @@ func (m *MsgMintVouchersResponse) Reset() { *m = MsgMintVouchersResponse func (m *MsgMintVouchersResponse) String() string { return proto.CompactTextString(m) } func (*MsgMintVouchersResponse) ProtoMessage() {} func (*MsgMintVouchersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{11} + return fileDescriptor_fad83f62571a1808, []int{11} } func (m *MsgMintVouchersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -664,7 +664,7 @@ func (m *MsgBurnVouchers) Reset() { *m = MsgBurnVouchers{} } func (m *MsgBurnVouchers) String() string { return proto.CompactTextString(m) } func (*MsgBurnVouchers) ProtoMessage() {} func (*MsgBurnVouchers) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{12} + return fileDescriptor_fad83f62571a1808, []int{12} } func (m *MsgBurnVouchers) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -721,7 +721,7 @@ func (m *MsgBurnVouchersResponse) Reset() { *m = MsgBurnVouchersResponse func (m *MsgBurnVouchersResponse) String() string { return proto.CompactTextString(m) } func (*MsgBurnVouchersResponse) ProtoMessage() {} func (*MsgBurnVouchersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{13} + return fileDescriptor_fad83f62571a1808, []int{13} } func (m *MsgBurnVouchersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -761,7 +761,7 @@ func (m *MsgRedeemVouchers) Reset() { *m = MsgRedeemVouchers{} } func (m *MsgRedeemVouchers) String() string { return proto.CompactTextString(m) } func (*MsgRedeemVouchers) ProtoMessage() {} func (*MsgRedeemVouchers) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{14} + return fileDescriptor_fad83f62571a1808, []int{14} } func (m *MsgRedeemVouchers) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -825,7 +825,7 @@ func (m *MsgRedeemVouchersResponse) Reset() { *m = MsgRedeemVouchersResp func (m *MsgRedeemVouchersResponse) String() string { return proto.CompactTextString(m) } func (*MsgRedeemVouchersResponse) ProtoMessage() {} func (*MsgRedeemVouchersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{15} + return fileDescriptor_fad83f62571a1808, []int{15} } func (m *MsgRedeemVouchersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -864,7 +864,7 @@ func (m *MsgUnredeemVouchers) Reset() { *m = MsgUnredeemVouchers{} } func (m *MsgUnredeemVouchers) String() string { return proto.CompactTextString(m) } func (*MsgUnredeemVouchers) ProtoMessage() {} func (*MsgUnredeemVouchers) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{16} + return fileDescriptor_fad83f62571a1808, []int{16} } func (m *MsgUnredeemVouchers) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -921,7 +921,7 @@ func (m *MsgUnredeemVouchersResponse) Reset() { *m = MsgUnredeemVouchers func (m *MsgUnredeemVouchersResponse) String() string { return proto.CompactTextString(m) } func (*MsgUnredeemVouchersResponse) ProtoMessage() {} func (*MsgUnredeemVouchersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_29af2eb8fda0baa4, []int{17} + return fileDescriptor_fad83f62571a1808, []int{17} } func (m *MsgUnredeemVouchersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -951,86 +951,86 @@ func (m *MsgUnredeemVouchersResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgUnredeemVouchersResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgCreateProject)(nil), "tendermint.spn.project.MsgCreateProject") - proto.RegisterType((*MsgCreateProjectResponse)(nil), "tendermint.spn.project.MsgCreateProjectResponse") - proto.RegisterType((*MsgEditProject)(nil), "tendermint.spn.project.MsgEditProject") - proto.RegisterType((*MsgEditProjectResponse)(nil), "tendermint.spn.project.MsgEditProjectResponse") - proto.RegisterType((*MsgUpdateTotalSupply)(nil), "tendermint.spn.project.MsgUpdateTotalSupply") - proto.RegisterType((*MsgUpdateTotalSupplyResponse)(nil), "tendermint.spn.project.MsgUpdateTotalSupplyResponse") - proto.RegisterType((*MsgUpdateSpecialAllocations)(nil), "tendermint.spn.project.MsgUpdateSpecialAllocations") - proto.RegisterType((*MsgUpdateSpecialAllocationsResponse)(nil), "tendermint.spn.project.MsgUpdateSpecialAllocationsResponse") - proto.RegisterType((*MsgInitializeMainnet)(nil), "tendermint.spn.project.MsgInitializeMainnet") - proto.RegisterType((*MsgInitializeMainnetResponse)(nil), "tendermint.spn.project.MsgInitializeMainnetResponse") - proto.RegisterType((*MsgMintVouchers)(nil), "tendermint.spn.project.MsgMintVouchers") - proto.RegisterType((*MsgMintVouchersResponse)(nil), "tendermint.spn.project.MsgMintVouchersResponse") - proto.RegisterType((*MsgBurnVouchers)(nil), "tendermint.spn.project.MsgBurnVouchers") - proto.RegisterType((*MsgBurnVouchersResponse)(nil), "tendermint.spn.project.MsgBurnVouchersResponse") - proto.RegisterType((*MsgRedeemVouchers)(nil), "tendermint.spn.project.MsgRedeemVouchers") - proto.RegisterType((*MsgRedeemVouchersResponse)(nil), "tendermint.spn.project.MsgRedeemVouchersResponse") - proto.RegisterType((*MsgUnredeemVouchers)(nil), "tendermint.spn.project.MsgUnredeemVouchers") - proto.RegisterType((*MsgUnredeemVouchersResponse)(nil), "tendermint.spn.project.MsgUnredeemVouchersResponse") -} - -func init() { proto.RegisterFile("project/tx.proto", fileDescriptor_29af2eb8fda0baa4) } - -var fileDescriptor_29af2eb8fda0baa4 = []byte{ - // 894 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0xcd, 0x6e, 0xeb, 0x44, - 0x14, 0x8e, 0x9b, 0x10, 0x9a, 0x93, 0x52, 0x5a, 0x53, 0x8a, 0xeb, 0x16, 0x37, 0x18, 0xd1, 0xa6, - 0xfc, 0xd8, 0xb4, 0x65, 0x01, 0x82, 0x0d, 0x49, 0x91, 0xa8, 0x84, 0x11, 0x72, 0x29, 0x0b, 0x58, - 0xc0, 0xc4, 0x19, 0x39, 0xa6, 0xc9, 0x8c, 0xe5, 0x99, 0x94, 0x96, 0x15, 0x0f, 0x00, 0x12, 0x42, - 0x2c, 0x78, 0x00, 0x56, 0xbc, 0x01, 0x12, 0x12, 0xdb, 0x2e, 0xbb, 0x64, 0x81, 0x0a, 0x6a, 0x5f, - 0xe2, 0xea, 0x4a, 0x57, 0xba, 0xf2, 0x4f, 0x1c, 0xc7, 0x4e, 0xdd, 0xf4, 0xe6, 0xea, 0xf6, 0xae, - 0x9a, 0x39, 0xfd, 0xe6, 0x3b, 0xe7, 0xfb, 0xe6, 0xcc, 0x99, 0x04, 0x16, 0x5c, 0x8f, 0x7e, 0x8b, - 0x2d, 0xae, 0xf3, 0x13, 0xcd, 0xf5, 0x28, 0xa7, 0xe2, 0x32, 0xc7, 0xa4, 0x8d, 0xbd, 0x9e, 0x43, - 0xb8, 0xc6, 0x5c, 0xa2, 0x45, 0x00, 0x79, 0xc9, 0xa6, 0x36, 0x0d, 0x20, 0xba, 0xff, 0x29, 0x44, - 0xcb, 0x8a, 0x45, 0x59, 0x8f, 0x32, 0xbd, 0x85, 0x18, 0xd6, 0x8f, 0xb7, 0x5b, 0x98, 0xa3, 0x6d, - 0xdd, 0xa2, 0x0e, 0x89, 0xfe, 0xff, 0xe2, 0x80, 0xff, 0x18, 0x33, 0xee, 0x10, 0x3b, 0x0a, 0xbf, - 0x32, 0x08, 0x33, 0x17, 0x5b, 0x0e, 0xea, 0x7e, 0x8d, 0xba, 0x5d, 0x6a, 0x21, 0xee, 0x50, 0xc2, - 0x42, 0x88, 0xfa, 0xd3, 0x0c, 0x2c, 0x18, 0xcc, 0x6e, 0x7a, 0x18, 0x71, 0xfc, 0x59, 0x08, 0x17, - 0x6b, 0x50, 0xb5, 0x28, 0xf5, 0xda, 0x0e, 0x41, 0x9c, 0x7a, 0x92, 0x50, 0x13, 0xea, 0x15, 0x33, - 0x19, 0xf2, 0x11, 0x11, 0xf7, 0xa7, 0xa8, 0x87, 0xa5, 0x99, 0x10, 0x91, 0x08, 0x89, 0xbf, 0x09, - 0x50, 0xe5, 0x94, 0xa3, 0xee, 0x41, 0xdf, 0x75, 0xbb, 0xa7, 0x52, 0xb1, 0x56, 0xac, 0x57, 0x77, - 0x56, 0xb4, 0x50, 0x89, 0xe6, 0x2b, 0xd1, 0x22, 0x25, 0x5a, 0x93, 0x3a, 0xa4, 0xf1, 0xd5, 0xd9, - 0xc5, 0x7a, 0xe1, 0xfe, 0xc5, 0xfa, 0xa6, 0xed, 0xf0, 0x4e, 0xbf, 0xa5, 0x59, 0xb4, 0xa7, 0x47, - 0xb2, 0xc3, 0x3f, 0x6f, 0xb1, 0xf6, 0x91, 0xce, 0x4f, 0x5d, 0xcc, 0x82, 0x0d, 0x7f, 0xfc, 0xb7, - 0x5e, 0x9f, 0x10, 0xca, 0xcc, 0x64, 0x29, 0xa2, 0x0c, 0xb3, 0x3d, 0xcc, 0x51, 0x1b, 0x71, 0x24, - 0x95, 0x6a, 0x42, 0x7d, 0xce, 0x8c, 0xd7, 0xea, 0xbb, 0x20, 0xa5, 0xed, 0x30, 0x31, 0x73, 0x29, - 0x61, 0x58, 0x5c, 0x83, 0x4a, 0xa4, 0x70, 0x7f, 0x2f, 0x30, 0xa5, 0x64, 0x0e, 0x03, 0xea, 0x0f, - 0x02, 0xcc, 0x1b, 0xcc, 0xfe, 0xa8, 0xed, 0xf0, 0xc9, 0x7d, 0x1c, 0xa1, 0x9c, 0x49, 0x51, 0x8a, - 0x22, 0x94, 0x88, 0x6f, 0x6f, 0x31, 0xd8, 0x18, 0x7c, 0xce, 0x2d, 0x5e, 0x82, 0xe5, 0xd1, 0x0a, - 0x06, 0xa5, 0xab, 0x0f, 0x04, 0x58, 0x32, 0x98, 0x7d, 0xe8, 0xb6, 0x11, 0xc7, 0x9f, 0x27, 0xbc, - 0x98, 0xb6, 0xc4, 0xdf, 0x05, 0x58, 0x4c, 0x78, 0x1b, 0x26, 0xb8, 0xe3, 0xc3, 0xce, 0x16, 0xa4, - 0x2a, 0xb0, 0x36, 0x4e, 0x7e, 0xec, 0xcf, 0xdf, 0x02, 0xac, 0xc6, 0x80, 0x83, 0xf0, 0xb6, 0x7c, - 0x38, 0xbc, 0x2c, 0x53, 0xdb, 0xf4, 0x0d, 0x88, 0x2c, 0xc3, 0x1a, 0x9c, 0x6b, 0x75, 0xe7, 0x75, - 0x6d, 0xfc, 0x2c, 0xd0, 0xb2, 0x75, 0x34, 0x4a, 0xbe, 0x6f, 0xe6, 0x18, 0x2e, 0xf5, 0x35, 0x78, - 0x35, 0x47, 0x40, 0x2c, 0xf4, 0xaf, 0xb0, 0x11, 0xf6, 0x89, 0xc3, 0x1d, 0xd4, 0x75, 0xbe, 0xc7, - 0x06, 0x72, 0x08, 0xc1, 0xd3, 0xf7, 0xea, 0x1a, 0x54, 0x18, 0xed, 0x7b, 0x16, 0x3e, 0x34, 0x3f, - 0x89, 0x1a, 0x76, 0x18, 0x10, 0x15, 0x80, 0x70, 0xf1, 0x31, 0x62, 0x9d, 0xa0, 0x6f, 0x2b, 0x66, - 0x22, 0x22, 0x6e, 0xc0, 0x7c, 0x2f, 0x2c, 0xa4, 0xd9, 0x41, 0x0e, 0xd9, 0xdf, 0x93, 0x9e, 0x09, - 0x30, 0xa9, 0xa8, 0xfa, 0x41, 0x70, 0x8e, 0x99, 0xea, 0x93, 0x57, 0x34, 0xda, 0x31, 0xbc, 0xa2, - 0x71, 0xc0, 0x3f, 0xe5, 0xe7, 0x0d, 0x66, 0x1b, 0x0e, 0xe1, 0x5f, 0xd0, 0xbe, 0xd5, 0xc1, 0xde, - 0xf4, 0x27, 0xdb, 0x85, 0x32, 0xeb, 0x20, 0x0f, 0xb3, 0x9b, 0x9b, 0xfe, 0xbd, 0xdb, 0x37, 0x7d, - 0xf9, 0x20, 0xe0, 0x36, 0xa3, 0x1c, 0xea, 0x0a, 0xbc, 0x94, 0x12, 0x10, 0x9f, 0xec, 0xbf, 0xa1, - 0xb8, 0x46, 0xdf, 0x23, 0xb1, 0xb8, 0x65, 0x28, 0xb3, 0xa0, 0xb7, 0x22, 0x5d, 0xd1, 0xea, 0x06, - 0x49, 0xbf, 0x08, 0x30, 0x7b, 0x1c, 0x51, 0xdc, 0xf1, 0x55, 0x8e, 0xeb, 0x88, 0x94, 0x27, 0xd5, - 0xc5, 0xca, 0xef, 0x09, 0xb0, 0x68, 0x30, 0xdb, 0xc4, 0x6d, 0x8c, 0x7b, 0x53, 0x6a, 0x97, 0xe0, - 0x59, 0x64, 0x59, 0xb4, 0x4f, 0x78, 0xd4, 0xc4, 0x83, 0xe5, 0xa8, 0x2b, 0xa5, 0xa7, 0xc4, 0x95, - 0x55, 0x58, 0xc9, 0x28, 0x8f, 0x7d, 0xf9, 0x53, 0x80, 0x17, 0xfc, 0x99, 0x40, 0xbc, 0xc7, 0xe1, - 0xcc, 0xb0, 0xd1, 0x4b, 0x4f, 0xa0, 0xd1, 0x5f, 0x0e, 0xe7, 0x71, 0xaa, 0xf4, 0x81, 0xb4, 0x9d, - 0x5f, 0x67, 0xa1, 0x68, 0x30, 0x5b, 0x3c, 0x82, 0xe7, 0x46, 0xbf, 0xba, 0xd4, 0xaf, 0x1b, 0xa6, - 0xe9, 0x57, 0x5d, 0x7e, 0x7b, 0x52, 0x64, 0x3c, 0x5c, 0x30, 0x54, 0x93, 0xaf, 0xfb, 0x46, 0x0e, - 0x41, 0x02, 0x27, 0x6b, 0x93, 0xe1, 0xe2, 0x34, 0xdf, 0xc1, 0x62, 0xf6, 0x9d, 0x7e, 0x33, 0x87, - 0x24, 0x83, 0x96, 0xdf, 0xb9, 0x0d, 0x3a, 0x4e, 0xfc, 0xa3, 0x00, 0xd2, 0xb5, 0x2f, 0xe0, 0xee, - 0x8d, 0x94, 0xd9, 0x4d, 0xf2, 0xfb, 0x8f, 0xb0, 0x29, 0xe9, 0x43, 0xf6, 0x99, 0xca, 0xf3, 0x21, - 0x83, 0xce, 0xf5, 0xe1, 0xfa, 0x47, 0xa4, 0x03, 0x73, 0x23, 0x4f, 0xc4, 0x66, 0x0e, 0x4b, 0x12, - 0x28, 0xeb, 0x13, 0x02, 0x93, 0x99, 0x46, 0xe6, 0x75, 0x5e, 0xa6, 0x24, 0x30, 0x37, 0xd3, 0xb8, - 0x19, 0x29, 0x12, 0x98, 0x4f, 0xcd, 0xc7, 0xad, 0x1c, 0x8a, 0x51, 0xa8, 0xbc, 0x3d, 0x31, 0x34, - 0xce, 0xc7, 0x61, 0x21, 0x33, 0x77, 0xde, 0xc8, 0xeb, 0x86, 0x14, 0x58, 0xde, 0xbd, 0x05, 0x78, - 0x90, 0xb5, 0xd1, 0x3c, 0xbb, 0x54, 0x84, 0xf3, 0x4b, 0x45, 0xf8, 0xff, 0x52, 0x11, 0x7e, 0xbe, - 0x52, 0x0a, 0xe7, 0x57, 0x4a, 0xe1, 0x9f, 0x2b, 0xa5, 0xf0, 0xe5, 0x56, 0x62, 0x14, 0x0d, 0x89, - 0x75, 0xe6, 0x12, 0xfd, 0x44, 0x8f, 0x7f, 0x9d, 0xf9, 0x13, 0xa9, 0x55, 0x0e, 0x7e, 0x19, 0xed, - 0x3e, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x75, 0x5f, 0xfb, 0xee, 0xb5, 0x0d, 0x00, 0x00, + proto.RegisterType((*MsgCreateProject)(nil), "spn.project.MsgCreateProject") + proto.RegisterType((*MsgCreateProjectResponse)(nil), "spn.project.MsgCreateProjectResponse") + proto.RegisterType((*MsgEditProject)(nil), "spn.project.MsgEditProject") + proto.RegisterType((*MsgEditProjectResponse)(nil), "spn.project.MsgEditProjectResponse") + proto.RegisterType((*MsgUpdateTotalSupply)(nil), "spn.project.MsgUpdateTotalSupply") + proto.RegisterType((*MsgUpdateTotalSupplyResponse)(nil), "spn.project.MsgUpdateTotalSupplyResponse") + proto.RegisterType((*MsgUpdateSpecialAllocations)(nil), "spn.project.MsgUpdateSpecialAllocations") + proto.RegisterType((*MsgUpdateSpecialAllocationsResponse)(nil), "spn.project.MsgUpdateSpecialAllocationsResponse") + proto.RegisterType((*MsgInitializeMainnet)(nil), "spn.project.MsgInitializeMainnet") + proto.RegisterType((*MsgInitializeMainnetResponse)(nil), "spn.project.MsgInitializeMainnetResponse") + proto.RegisterType((*MsgMintVouchers)(nil), "spn.project.MsgMintVouchers") + proto.RegisterType((*MsgMintVouchersResponse)(nil), "spn.project.MsgMintVouchersResponse") + proto.RegisterType((*MsgBurnVouchers)(nil), "spn.project.MsgBurnVouchers") + proto.RegisterType((*MsgBurnVouchersResponse)(nil), "spn.project.MsgBurnVouchersResponse") + proto.RegisterType((*MsgRedeemVouchers)(nil), "spn.project.MsgRedeemVouchers") + proto.RegisterType((*MsgRedeemVouchersResponse)(nil), "spn.project.MsgRedeemVouchersResponse") + proto.RegisterType((*MsgUnredeemVouchers)(nil), "spn.project.MsgUnredeemVouchers") + proto.RegisterType((*MsgUnredeemVouchersResponse)(nil), "spn.project.MsgUnredeemVouchersResponse") +} + +func init() { proto.RegisterFile("spn/project/tx.proto", fileDescriptor_fad83f62571a1808) } + +var fileDescriptor_fad83f62571a1808 = []byte{ + // 888 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x57, 0x4f, 0x8f, 0xdb, 0x44, + 0x14, 0x5f, 0x6f, 0x42, 0x68, 0x5e, 0xca, 0xd2, 0x35, 0xab, 0xe2, 0x78, 0x53, 0x27, 0xb8, 0x6c, + 0x49, 0x0f, 0xd8, 0x74, 0xb9, 0x80, 0xc4, 0x85, 0xa4, 0x48, 0xac, 0x84, 0x01, 0x79, 0x09, 0x42, + 0x20, 0x81, 0x26, 0xce, 0xc8, 0x31, 0x24, 0x33, 0x96, 0x67, 0x12, 0xb5, 0x9c, 0xf8, 0x02, 0x48, + 0x88, 0x13, 0x1f, 0x80, 0x13, 0x67, 0x2e, 0x48, 0x48, 0x5c, 0x7b, 0x41, 0xea, 0x91, 0x03, 0x2a, + 0x68, 0xf7, 0x4b, 0x20, 0x24, 0x24, 0xe4, 0x3f, 0x71, 0xc6, 0x9e, 0x34, 0x59, 0x14, 0xc4, 0x72, + 0xda, 0xcc, 0x7b, 0xbf, 0xf9, 0xcd, 0xfb, 0xbd, 0x79, 0xef, 0xcd, 0x1a, 0x0e, 0x58, 0x48, 0xec, + 0x30, 0xa2, 0x9f, 0x62, 0x8f, 0xdb, 0xfc, 0x9e, 0x15, 0x46, 0x94, 0x53, 0xb5, 0xc1, 0x42, 0x62, + 0x65, 0x56, 0xfd, 0xc0, 0xa7, 0x3e, 0x4d, 0xec, 0x76, 0xfc, 0x2b, 0x85, 0xe8, 0x86, 0x47, 0xd9, + 0x94, 0x32, 0x7b, 0x88, 0x18, 0xb6, 0xe7, 0x77, 0x86, 0x98, 0xa3, 0x3b, 0xb6, 0x47, 0x03, 0x92, + 0xf9, 0x9b, 0x22, 0xf1, 0x1c, 0x33, 0x1e, 0x10, 0x3f, 0x73, 0x1d, 0x89, 0x2e, 0x16, 0x62, 0x2f, + 0x40, 0x93, 0x4f, 0xd0, 0x64, 0x42, 0x3d, 0xc4, 0x03, 0x4a, 0x58, 0x0a, 0x33, 0xbf, 0xdc, 0x85, + 0x6b, 0x0e, 0xf3, 0xfb, 0x11, 0x46, 0x1c, 0xbf, 0x9b, 0xc2, 0xd5, 0x0e, 0x34, 0x3c, 0x4a, 0xa3, + 0x51, 0x40, 0x10, 0xa7, 0x91, 0xa6, 0x74, 0x94, 0x6e, 0xdd, 0x15, 0x4d, 0x31, 0x22, 0xe3, 0x7e, + 0x1b, 0x4d, 0xb1, 0xb6, 0x9b, 0x22, 0x04, 0x93, 0xfa, 0x8d, 0x02, 0x0d, 0x4e, 0x39, 0x9a, 0x9c, + 0xce, 0xc2, 0x70, 0x72, 0x5f, 0xab, 0x74, 0x2a, 0xdd, 0xc6, 0x71, 0xd3, 0x4a, 0x15, 0x59, 0xb1, + 0x22, 0x2b, 0x53, 0x64, 0xf5, 0x69, 0x40, 0x7a, 0x1f, 0x3d, 0x78, 0xd4, 0xde, 0xf9, 0xf3, 0x51, + 0xfb, 0x05, 0x3f, 0xe0, 0xe3, 0xd9, 0xd0, 0xf2, 0xe8, 0xd4, 0xce, 0xe4, 0xa7, 0x7f, 0x5e, 0x64, + 0xa3, 0xcf, 0x6c, 0x7e, 0x3f, 0xc4, 0x2c, 0xd9, 0xf0, 0xdd, 0x6f, 0xed, 0xee, 0x05, 0xa1, 0xcc, + 0x15, 0x43, 0x51, 0x75, 0xb8, 0x32, 0xc5, 0x1c, 0x8d, 0x10, 0x47, 0x5a, 0xb5, 0xa3, 0x74, 0xaf, + 0xba, 0xf9, 0xda, 0x7c, 0x05, 0xb4, 0x72, 0x3a, 0x5c, 0xcc, 0x42, 0x4a, 0x18, 0x56, 0x5b, 0x50, + 0xcf, 0x14, 0x9e, 0xdc, 0x4d, 0x92, 0x52, 0x75, 0x97, 0x06, 0xf3, 0x0b, 0x05, 0xf6, 0x1c, 0xe6, + 0xbf, 0x31, 0x0a, 0xf8, 0xc5, 0xf3, 0x58, 0xa0, 0xdc, 0x2d, 0x51, 0xaa, 0x2a, 0x54, 0x49, 0x9c, + 0xde, 0x4a, 0xb2, 0x31, 0xf9, 0xbd, 0x36, 0x78, 0x0d, 0xae, 0x17, 0x23, 0x58, 0x84, 0x6e, 0xfe, + 0xa5, 0xc0, 0x81, 0xc3, 0xfc, 0x41, 0x38, 0x42, 0x1c, 0xbf, 0x27, 0xe4, 0x62, 0xdb, 0x10, 0xbf, + 0x55, 0x60, 0x5f, 0xc8, 0x6d, 0x7a, 0xc0, 0x25, 0x5f, 0xb6, 0x1c, 0x90, 0x69, 0x40, 0x6b, 0x95, + 0xfc, 0x3c, 0x3f, 0xdf, 0x2b, 0x70, 0x98, 0x03, 0x4e, 0xd3, 0x6e, 0x79, 0x7d, 0xd9, 0x2c, 0x5b, + 0xa7, 0x69, 0x00, 0x2a, 0x93, 0x58, 0x93, 0x7b, 0x6d, 0x1c, 0xb7, 0x2d, 0x61, 0x10, 0x58, 0xf2, + 0xe1, 0xbd, 0x6a, 0x9c, 0x2c, 0x77, 0x05, 0x81, 0x79, 0x04, 0x37, 0xd7, 0x44, 0x9d, 0xab, 0xfb, + 0x31, 0xbd, 0xfd, 0x13, 0x12, 0xf0, 0x00, 0x4d, 0x82, 0xcf, 0xb1, 0x83, 0x02, 0x42, 0xf0, 0xf6, + 0x05, 0xda, 0x82, 0x3a, 0xa3, 0xb3, 0xc8, 0xc3, 0x03, 0xf7, 0xad, 0xac, 0x4a, 0x97, 0x06, 0xd5, + 0x00, 0x48, 0x17, 0x6f, 0x22, 0x36, 0x4e, 0x8a, 0xb5, 0xee, 0x0a, 0x16, 0xf5, 0x16, 0xec, 0x4d, + 0xd3, 0x40, 0xfa, 0x63, 0x14, 0x90, 0x93, 0xbb, 0xda, 0x13, 0x09, 0xa6, 0x64, 0x35, 0x5f, 0x4b, + 0x2e, 0x4f, 0x8a, 0x5e, 0xec, 0xcb, 0x6c, 0xc7, 0xb2, 0x2f, 0x73, 0x83, 0xf9, 0x93, 0x02, 0x4f, + 0x3b, 0xcc, 0x77, 0x02, 0xc2, 0xdf, 0xa7, 0x33, 0x6f, 0x8c, 0xa3, 0xed, 0xaf, 0x73, 0x02, 0x35, + 0x36, 0x46, 0x11, 0x66, 0x9b, 0x2b, 0xfd, 0xd5, 0x7f, 0x5e, 0xe9, 0xb5, 0xd3, 0x84, 0xdb, 0xcd, + 0xce, 0x30, 0x9b, 0xf0, 0x6c, 0x49, 0x40, 0x7e, 0xb3, 0xbf, 0xa6, 0xe2, 0x7a, 0xb3, 0x88, 0xe4, + 0xe2, 0xae, 0x43, 0x8d, 0x61, 0x32, 0xc2, 0x0b, 0x5d, 0xd9, 0x6a, 0x83, 0xa4, 0xaf, 0x15, 0xb8, + 0x32, 0xcf, 0x28, 0x2e, 0xb9, 0x7f, 0xf3, 0x38, 0x32, 0xe5, 0xa2, 0xba, 0x5c, 0xf9, 0x1f, 0x0a, + 0xec, 0x3b, 0xcc, 0x77, 0xf1, 0x08, 0xe3, 0xe9, 0x96, 0xda, 0x35, 0x78, 0x12, 0x79, 0x1e, 0x9d, + 0x11, 0x9e, 0x15, 0xf1, 0x62, 0x59, 0xcc, 0x4a, 0xf5, 0x7f, 0x92, 0x95, 0x43, 0x68, 0x4a, 0xca, + 0xf3, 0xbc, 0xfc, 0xa0, 0xc0, 0x33, 0xf1, 0x4c, 0x20, 0xd1, 0xbf, 0x91, 0x99, 0x65, 0xa1, 0x57, + 0xff, 0x83, 0x42, 0xbf, 0x91, 0x0e, 0xe1, 0x52, 0xe8, 0x0b, 0x69, 0xc7, 0x3f, 0xd7, 0xa0, 0xe2, + 0x30, 0x5f, 0x1d, 0xc0, 0x53, 0xc5, 0xff, 0x57, 0x6e, 0x14, 0x26, 0x68, 0xf9, 0xfd, 0xd6, 0x8f, + 0xd6, 0xba, 0xf3, 0x31, 0xf2, 0x0e, 0x34, 0xc4, 0xc7, 0xfb, 0xb0, 0xbc, 0x4b, 0x70, 0xea, 0x37, + 0xd7, 0x38, 0x73, 0x42, 0x04, 0xfb, 0xf2, 0x83, 0xfb, 0x5c, 0x79, 0xa7, 0x04, 0xd1, 0x6f, 0x6f, + 0x84, 0xe4, 0x47, 0xcc, 0x41, 0x7b, 0xec, 0x9b, 0xd5, 0x5d, 0x4d, 0x23, 0x23, 0xf5, 0x97, 0x2e, + 0x8a, 0x14, 0xa5, 0xc9, 0xaf, 0x89, 0x24, 0x4d, 0x82, 0xc8, 0xd2, 0x1e, 0x3f, 0xd5, 0x5d, 0xb8, + 0x5a, 0x98, 0xd9, 0xad, 0xf2, 0x56, 0xd1, 0xab, 0x3f, 0xbf, 0xce, 0x2b, 0x72, 0x16, 0x46, 0xa5, + 0xc4, 0x29, 0x7a, 0x65, 0xce, 0x55, 0x83, 0x48, 0xfd, 0x00, 0xf6, 0x4a, 0x43, 0xc8, 0x28, 0xef, + 0x2b, 0xfa, 0xf5, 0x5b, 0xeb, 0xfd, 0x39, 0xf3, 0xc7, 0x70, 0x4d, 0x6a, 0xe3, 0x8e, 0x74, 0x55, + 0x25, 0x84, 0xde, 0xdd, 0x84, 0x58, 0xf0, 0xf7, 0xfa, 0x0f, 0xce, 0x0c, 0xe5, 0xe1, 0x99, 0xa1, + 0xfc, 0x7e, 0x66, 0x28, 0x5f, 0x9d, 0x1b, 0x3b, 0x0f, 0xcf, 0x8d, 0x9d, 0x5f, 0xce, 0x8d, 0x9d, + 0x0f, 0x6f, 0x0b, 0x3d, 0xcc, 0x93, 0x39, 0x31, 0x0d, 0x48, 0xfc, 0x19, 0x41, 0xec, 0x7b, 0xcb, + 0x0f, 0x99, 0xb8, 0x95, 0x87, 0xb5, 0xe4, 0x3b, 0xe2, 0xe5, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, + 0xd8, 0x10, 0xde, 0xbb, 0xe4, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1066,7 +1066,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) CreateProject(ctx context.Context, in *MsgCreateProject, opts ...grpc.CallOption) (*MsgCreateProjectResponse, error) { out := new(MsgCreateProjectResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Msg/CreateProject", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Msg/CreateProject", in, out, opts...) if err != nil { return nil, err } @@ -1075,7 +1075,7 @@ func (c *msgClient) CreateProject(ctx context.Context, in *MsgCreateProject, opt func (c *msgClient) EditProject(ctx context.Context, in *MsgEditProject, opts ...grpc.CallOption) (*MsgEditProjectResponse, error) { out := new(MsgEditProjectResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Msg/EditProject", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Msg/EditProject", in, out, opts...) if err != nil { return nil, err } @@ -1084,7 +1084,7 @@ func (c *msgClient) EditProject(ctx context.Context, in *MsgEditProject, opts .. func (c *msgClient) UpdateTotalSupply(ctx context.Context, in *MsgUpdateTotalSupply, opts ...grpc.CallOption) (*MsgUpdateTotalSupplyResponse, error) { out := new(MsgUpdateTotalSupplyResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Msg/UpdateTotalSupply", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Msg/UpdateTotalSupply", in, out, opts...) if err != nil { return nil, err } @@ -1093,7 +1093,7 @@ func (c *msgClient) UpdateTotalSupply(ctx context.Context, in *MsgUpdateTotalSup func (c *msgClient) UpdateSpecialAllocations(ctx context.Context, in *MsgUpdateSpecialAllocations, opts ...grpc.CallOption) (*MsgUpdateSpecialAllocationsResponse, error) { out := new(MsgUpdateSpecialAllocationsResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Msg/UpdateSpecialAllocations", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Msg/UpdateSpecialAllocations", in, out, opts...) if err != nil { return nil, err } @@ -1102,7 +1102,7 @@ func (c *msgClient) UpdateSpecialAllocations(ctx context.Context, in *MsgUpdateS func (c *msgClient) InitializeMainnet(ctx context.Context, in *MsgInitializeMainnet, opts ...grpc.CallOption) (*MsgInitializeMainnetResponse, error) { out := new(MsgInitializeMainnetResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Msg/InitializeMainnet", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Msg/InitializeMainnet", in, out, opts...) if err != nil { return nil, err } @@ -1111,7 +1111,7 @@ func (c *msgClient) InitializeMainnet(ctx context.Context, in *MsgInitializeMain func (c *msgClient) MintVouchers(ctx context.Context, in *MsgMintVouchers, opts ...grpc.CallOption) (*MsgMintVouchersResponse, error) { out := new(MsgMintVouchersResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Msg/MintVouchers", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Msg/MintVouchers", in, out, opts...) if err != nil { return nil, err } @@ -1120,7 +1120,7 @@ func (c *msgClient) MintVouchers(ctx context.Context, in *MsgMintVouchers, opts func (c *msgClient) BurnVouchers(ctx context.Context, in *MsgBurnVouchers, opts ...grpc.CallOption) (*MsgBurnVouchersResponse, error) { out := new(MsgBurnVouchersResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Msg/BurnVouchers", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Msg/BurnVouchers", in, out, opts...) if err != nil { return nil, err } @@ -1129,7 +1129,7 @@ func (c *msgClient) BurnVouchers(ctx context.Context, in *MsgBurnVouchers, opts func (c *msgClient) RedeemVouchers(ctx context.Context, in *MsgRedeemVouchers, opts ...grpc.CallOption) (*MsgRedeemVouchersResponse, error) { out := new(MsgRedeemVouchersResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Msg/RedeemVouchers", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Msg/RedeemVouchers", in, out, opts...) if err != nil { return nil, err } @@ -1138,7 +1138,7 @@ func (c *msgClient) RedeemVouchers(ctx context.Context, in *MsgRedeemVouchers, o func (c *msgClient) UnredeemVouchers(ctx context.Context, in *MsgUnredeemVouchers, opts ...grpc.CallOption) (*MsgUnredeemVouchersResponse, error) { out := new(MsgUnredeemVouchersResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.project.Msg/UnredeemVouchers", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.project.Msg/UnredeemVouchers", in, out, opts...) if err != nil { return nil, err } @@ -1204,7 +1204,7 @@ func _Msg_CreateProject_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Msg/CreateProject", + FullMethod: "/spn.project.Msg/CreateProject", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).CreateProject(ctx, req.(*MsgCreateProject)) @@ -1222,7 +1222,7 @@ func _Msg_EditProject_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Msg/EditProject", + FullMethod: "/spn.project.Msg/EditProject", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).EditProject(ctx, req.(*MsgEditProject)) @@ -1240,7 +1240,7 @@ func _Msg_UpdateTotalSupply_Handler(srv interface{}, ctx context.Context, dec fu } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Msg/UpdateTotalSupply", + FullMethod: "/spn.project.Msg/UpdateTotalSupply", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateTotalSupply(ctx, req.(*MsgUpdateTotalSupply)) @@ -1258,7 +1258,7 @@ func _Msg_UpdateSpecialAllocations_Handler(srv interface{}, ctx context.Context, } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Msg/UpdateSpecialAllocations", + FullMethod: "/spn.project.Msg/UpdateSpecialAllocations", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UpdateSpecialAllocations(ctx, req.(*MsgUpdateSpecialAllocations)) @@ -1276,7 +1276,7 @@ func _Msg_InitializeMainnet_Handler(srv interface{}, ctx context.Context, dec fu } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Msg/InitializeMainnet", + FullMethod: "/spn.project.Msg/InitializeMainnet", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).InitializeMainnet(ctx, req.(*MsgInitializeMainnet)) @@ -1294,7 +1294,7 @@ func _Msg_MintVouchers_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Msg/MintVouchers", + FullMethod: "/spn.project.Msg/MintVouchers", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).MintVouchers(ctx, req.(*MsgMintVouchers)) @@ -1312,7 +1312,7 @@ func _Msg_BurnVouchers_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Msg/BurnVouchers", + FullMethod: "/spn.project.Msg/BurnVouchers", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).BurnVouchers(ctx, req.(*MsgBurnVouchers)) @@ -1330,7 +1330,7 @@ func _Msg_RedeemVouchers_Handler(srv interface{}, ctx context.Context, dec func( } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Msg/RedeemVouchers", + FullMethod: "/spn.project.Msg/RedeemVouchers", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).RedeemVouchers(ctx, req.(*MsgRedeemVouchers)) @@ -1348,7 +1348,7 @@ func _Msg_UnredeemVouchers_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.project.Msg/UnredeemVouchers", + FullMethod: "/spn.project.Msg/UnredeemVouchers", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).UnredeemVouchers(ctx, req.(*MsgUnredeemVouchers)) @@ -1357,7 +1357,7 @@ func _Msg_UnredeemVouchers_Handler(srv interface{}, ctx context.Context, dec fun } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "tendermint.spn.project.Msg", + ServiceName: "spn.project.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -1398,7 +1398,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "project/tx.proto", + Metadata: "spn/project/tx.proto", } func (m *MsgCreateProject) Marshal() (dAtA []byte, err error) { diff --git a/x/project/types/vesting.pb.go b/x/project/types/vesting.pb.go index 6e1c4864f..bbeddce35 100644 --- a/x/project/types/vesting.pb.go +++ b/x/project/types/vesting.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: project/vesting.proto +// source: spn/project/vesting.proto package types @@ -7,9 +7,9 @@ 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" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" @@ -39,7 +39,7 @@ func (m *ShareVestingOptions) Reset() { *m = ShareVestingOptions{} } func (m *ShareVestingOptions) String() string { return proto.CompactTextString(m) } func (*ShareVestingOptions) ProtoMessage() {} func (*ShareVestingOptions) Descriptor() ([]byte, []int) { - return fileDescriptor_52fa5802eb46e759, []int{0} + return fileDescriptor_0ffa7a33cd775a24, []int{0} } func (m *ShareVestingOptions) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -114,7 +114,7 @@ func (m *ShareDelayedVesting) Reset() { *m = ShareDelayedVesting{} } func (m *ShareDelayedVesting) String() string { return proto.CompactTextString(m) } func (*ShareDelayedVesting) ProtoMessage() {} func (*ShareDelayedVesting) Descriptor() ([]byte, []int) { - return fileDescriptor_52fa5802eb46e759, []int{1} + return fileDescriptor_0ffa7a33cd775a24, []int{1} } func (m *ShareDelayedVesting) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -165,38 +165,38 @@ func (m *ShareDelayedVesting) GetEndTime() time.Time { } func init() { - proto.RegisterType((*ShareVestingOptions)(nil), "tendermint.spn.project.ShareVestingOptions") - proto.RegisterType((*ShareDelayedVesting)(nil), "tendermint.spn.project.ShareDelayedVesting") -} - -func init() { proto.RegisterFile("project/vesting.proto", fileDescriptor_52fa5802eb46e759) } - -var fileDescriptor_52fa5802eb46e759 = []byte{ - // 376 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x52, 0x3d, 0x4f, 0x2a, 0x41, - 0x14, 0xdd, 0x85, 0x04, 0xde, 0x5b, 0x92, 0x57, 0xec, 0x7b, 0xcf, 0xac, 0x14, 0xbb, 0x84, 0x46, - 0x8c, 0x71, 0x26, 0x60, 0x65, 0x63, 0xb1, 0x58, 0xd8, 0x99, 0x20, 0x5a, 0xd8, 0xed, 0xc7, 0xb8, - 0x8c, 0xb2, 0x73, 0x37, 0x3b, 0x03, 0xca, 0xbf, 0xe0, 0x77, 0xf8, 0x1f, 0xec, 0x29, 0x29, 0xad, - 0xc0, 0xc0, 0xbf, 0xb0, 0x32, 0xcc, 0xcc, 0x46, 0x30, 0xb6, 0x56, 0x73, 0x33, 0xf7, 0x9e, 0x7b, - 0xce, 0x99, 0x33, 0xd6, 0xff, 0x2c, 0x87, 0x7b, 0x12, 0x09, 0x3c, 0x26, 0x5c, 0x50, 0x96, 0xa0, - 0x2c, 0x07, 0x01, 0xf6, 0x9e, 0x20, 0x2c, 0x26, 0x79, 0x4a, 0x99, 0x40, 0x3c, 0x63, 0x48, 0x4f, - 0xd5, 0xbd, 0x04, 0x20, 0x19, 0x12, 0x2c, 0xa7, 0xc2, 0xd1, 0x1d, 0x16, 0x34, 0x25, 0x5c, 0x04, - 0x69, 0xa6, 0x80, 0xf5, 0x7f, 0x09, 0x24, 0x20, 0x4b, 0xbc, 0xa9, 0xf4, 0xad, 0x1b, 0x01, 0x4f, - 0x81, 0xe3, 0x30, 0xe0, 0x04, 0x8f, 0xdb, 0x21, 0x11, 0x41, 0x1b, 0x47, 0x40, 0x99, 0xea, 0x37, - 0x1f, 0xad, 0xbf, 0x57, 0x83, 0x20, 0x27, 0x37, 0x4a, 0xc4, 0x65, 0x26, 0x28, 0x30, 0x6e, 0x5f, - 0x5b, 0x7f, 0x62, 0x32, 0x0c, 0x26, 0x24, 0xd6, 0x0d, 0xc7, 0x6c, 0x98, 0xad, 0x5a, 0xe7, 0x08, - 0x7d, 0x2f, 0x0f, 0xc9, 0x25, 0xe7, 0x3b, 0x90, 0x0b, 0xa3, 0xf7, 0x65, 0x89, 0xff, 0xdb, 0xaa, - 0x82, 0x62, 0x68, 0xbe, 0x94, 0x34, 0xf3, 0x2e, 0xc8, 0x1e, 0x5b, 0x35, 0x01, 0x22, 0x18, 0xca, - 0x1e, 0x77, 0xcc, 0x46, 0xb9, 0x55, 0xeb, 0xec, 0x23, 0x65, 0x03, 0x6d, 0x6c, 0x20, 0x6d, 0x03, - 0x75, 0x81, 0x32, 0xff, 0x74, 0xb6, 0xf0, 0x8c, 0xf7, 0x85, 0x77, 0x90, 0x50, 0x31, 0x18, 0x85, - 0x28, 0x82, 0x14, 0x6b, 0xcf, 0xea, 0x38, 0xe6, 0xf1, 0x03, 0x16, 0x93, 0x8c, 0x70, 0x09, 0x78, - 0x5e, 0x7a, 0x15, 0xb5, 0xbb, 0xb7, 0x4d, 0x64, 0x33, 0xab, 0xaa, 0x83, 0x70, 0x4a, 0x3f, 0xc8, - 0x59, 0x90, 0xd8, 0x67, 0x56, 0x95, 0xb0, 0xb8, 0x4f, 0x53, 0xe2, 0x94, 0xe5, 0xd3, 0xd6, 0x91, - 0x4a, 0x18, 0x15, 0x09, 0xa3, 0x7e, 0x91, 0xb0, 0xff, 0x6b, 0x43, 0x38, 0x5d, 0x7a, 0x66, 0xaf, - 0x00, 0xf9, 0xdd, 0xd9, 0xca, 0x35, 0xe7, 0x2b, 0xd7, 0x7c, 0x5b, 0xb9, 0xe6, 0x74, 0xed, 0x1a, - 0xf3, 0xb5, 0x6b, 0xbc, 0xae, 0x5d, 0xe3, 0xf6, 0x70, 0x4b, 0xd5, 0x67, 0x5a, 0x98, 0x67, 0x0c, - 0x3f, 0xe1, 0xe2, 0xd3, 0x49, 0x71, 0x61, 0x45, 0x72, 0x9d, 0x7c, 0x04, 0x00, 0x00, 0xff, 0xff, - 0x41, 0x48, 0x6b, 0xde, 0x8c, 0x02, 0x00, 0x00, + proto.RegisterType((*ShareVestingOptions)(nil), "spn.project.ShareVestingOptions") + proto.RegisterType((*ShareDelayedVesting)(nil), "spn.project.ShareDelayedVesting") +} + +func init() { proto.RegisterFile("spn/project/vesting.proto", fileDescriptor_0ffa7a33cd775a24) } + +var fileDescriptor_0ffa7a33cd775a24 = []byte{ + // 372 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x92, 0xbf, 0x4e, 0xf3, 0x30, + 0x14, 0xc5, 0x93, 0x56, 0x6a, 0xbf, 0x2f, 0x91, 0x18, 0x02, 0x43, 0xda, 0x21, 0xa9, 0xba, 0x50, + 0x06, 0x6c, 0xb5, 0x4c, 0x2c, 0x0c, 0x29, 0x03, 0x62, 0x41, 0x2a, 0x15, 0x03, 0x5b, 0xfe, 0x98, + 0xd4, 0x90, 0xf8, 0x46, 0xb1, 0x5b, 0xd1, 0xb7, 0xe8, 0x73, 0xf0, 0x0e, 0xec, 0x1d, 0x3b, 0x32, + 0xb5, 0xa8, 0x7d, 0x0b, 0x26, 0x14, 0x3b, 0x41, 0x2d, 0x3b, 0x53, 0xac, 0x1c, 0x9f, 0xfb, 0x3b, + 0xbe, 0xf7, 0x1a, 0x2d, 0x9e, 0x31, 0x9c, 0xe5, 0xf0, 0x4c, 0x42, 0x81, 0x67, 0x84, 0x0b, 0xca, + 0x62, 0x94, 0xe5, 0x20, 0xc0, 0x32, 0x79, 0xc6, 0x50, 0x29, 0xb5, 0xdd, 0x18, 0x20, 0x4e, 0x08, + 0x96, 0x52, 0x30, 0x7d, 0xc2, 0x82, 0xa6, 0x84, 0x0b, 0x3f, 0xcd, 0xd4, 0xed, 0xf6, 0x49, 0x0c, + 0x31, 0xc8, 0x23, 0x2e, 0x4e, 0xe5, 0x5f, 0x27, 0x04, 0x9e, 0x02, 0xc7, 0x81, 0xcf, 0x09, 0x9e, + 0xf5, 0x03, 0x22, 0xfc, 0x3e, 0x0e, 0x81, 0x32, 0xa5, 0x77, 0x13, 0xe3, 0xf8, 0x7e, 0xe2, 0xe7, + 0xe4, 0x41, 0x91, 0xef, 0x32, 0x41, 0x81, 0x71, 0xeb, 0xd6, 0x38, 0x8a, 0x48, 0xe2, 0xcf, 0x49, + 0x54, 0x0a, 0xb6, 0xde, 0xd1, 0x7b, 0xe6, 0xa0, 0x83, 0xf6, 0x32, 0x21, 0xe9, 0xbc, 0x3e, 0xb8, + 0x77, 0xa3, 0x8d, 0x7e, 0x39, 0xbd, 0xff, 0x46, 0x13, 0x54, 0xd9, 0xee, 0x7b, 0xad, 0xc4, 0x1d, + 0x9a, 0xac, 0x99, 0x61, 0x0a, 0x10, 0x7e, 0x22, 0x35, 0x6e, 0xeb, 0x9d, 0x7a, 0xcf, 0x1c, 0xb4, + 0x90, 0xca, 0x8e, 0x8a, 0xec, 0xa8, 0xcc, 0x8e, 0x86, 0x40, 0x99, 0x77, 0xb9, 0x5c, 0xbb, 0xda, + 0xd7, 0xda, 0x3d, 0x8d, 0xa9, 0x98, 0x4c, 0x03, 0x14, 0x42, 0x8a, 0xcb, 0x87, 0xaa, 0xcf, 0x39, + 0x8f, 0x5e, 0xb0, 0x98, 0x67, 0x84, 0x4b, 0xc3, 0xdb, 0xc6, 0x6d, 0xa8, 0xda, 0xa3, 0x7d, 0x90, + 0xc5, 0x8c, 0x66, 0xd9, 0x72, 0xbb, 0xf6, 0x87, 0xcc, 0x0a, 0x62, 0x5d, 0x19, 0x4d, 0xc2, 0xa2, + 0x31, 0x4d, 0x89, 0x5d, 0x97, 0xfd, 0x6c, 0x23, 0x35, 0x56, 0x54, 0x8d, 0x15, 0x8d, 0xab, 0xb1, + 0x7a, 0xff, 0x0a, 0xe0, 0x62, 0xe3, 0xea, 0xa3, 0xca, 0xe4, 0x0d, 0x97, 0x5b, 0x47, 0x5f, 0x6d, + 0x1d, 0xfd, 0x73, 0xeb, 0xe8, 0x8b, 0x9d, 0xa3, 0xad, 0x76, 0x8e, 0xf6, 0xb1, 0x73, 0xb4, 0xc7, + 0xb3, 0xbd, 0x54, 0x82, 0xb0, 0x88, 0xe4, 0x29, 0x65, 0x02, 0x17, 0xcb, 0xf5, 0xfa, 0xb3, 0x5e, + 0x32, 0x5c, 0xd0, 0x90, 0xac, 0x8b, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x05, 0x04, 0x09, 0xa2, + 0x7a, 0x02, 0x00, 0x00, } func (m *ShareVestingOptions) Marshal() (dAtA []byte, err error) { @@ -272,7 +272,7 @@ func (m *ShareDelayedVesting) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - n2, err2 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.EndTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.EndTime):]) + n2, err2 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.EndTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.EndTime):]) if err2 != nil { return 0, err2 } @@ -364,7 +364,7 @@ func (m *ShareDelayedVesting) Size() (n int) { n += 1 + l + sovVesting(uint64(l)) } } - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.EndTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.EndTime) n += 1 + l + sovVesting(uint64(l)) return n } @@ -586,7 +586,7 @@ func (m *ShareDelayedVesting) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.EndTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.EndTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/reward/client/cli/query_reward_pool_test.go b/x/reward/client/cli/query_reward_pool_test.go index 2ca98c228..3fb4c8e2b 100644 --- a/x/reward/client/cli/query_reward_pool_test.go +++ b/x/reward/client/cli/query_reward_pool_test.go @@ -5,10 +5,10 @@ import ( "strconv" "testing" + tmcli "github.com/cometbft/cometbft/libs/cli" "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/stretchr/testify/require" - tmcli "github.com/tendermint/tendermint/libs/cli" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/reward/keeper/keeper.go b/x/reward/keeper/keeper.go index 7ee2244de..7709f16d9 100644 --- a/x/reward/keeper/keeper.go +++ b/x/reward/keeper/keeper.go @@ -3,11 +3,11 @@ package keeper import ( "fmt" + "github.com/cometbft/cometbft/libs/log" "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/tendermint/tendermint/libs/log" "github.com/tendermint/spn/x/reward/types" ) diff --git a/x/reward/keeper/msg_set_reward.go b/x/reward/keeper/msg_set_reward.go index baa55be05..930f5fae3 100644 --- a/x/reward/keeper/msg_set_reward.go +++ b/x/reward/keeper/msg_set_reward.go @@ -5,6 +5,7 @@ import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" + ignterrors "github.com/ignite/modules/pkg/errors" launchtypes "github.com/tendermint/spn/x/launch/types" diff --git a/x/reward/keeper/reward_distribution.go b/x/reward/keeper/reward_distribution.go index f466d38b2..c6138fbe1 100644 --- a/x/reward/keeper/reward_distribution.go +++ b/x/reward/keeper/reward_distribution.go @@ -6,6 +6,7 @@ import ( sdkerrors "cosmossdk.io/errors" sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" + ignterrors "github.com/ignite/modules/pkg/errors" spntypes "github.com/tendermint/spn/pkg/types" diff --git a/x/reward/keeper/reward_distribution_test.go b/x/reward/keeper/reward_distribution_test.go index cc9ed3b5e..994ffd29d 100644 --- a/x/reward/keeper/reward_distribution_test.go +++ b/x/reward/keeper/reward_distribution_test.go @@ -5,9 +5,10 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - ignterrors "github.com/ignite/modules/pkg/errors" "github.com/stretchr/testify/require" + ignterrors "github.com/ignite/modules/pkg/errors" + spntypes "github.com/tendermint/spn/pkg/types" tc "github.com/tendermint/spn/testutil/constructor" testkeeper "github.com/tendermint/spn/testutil/keeper" diff --git a/x/reward/module.go b/x/reward/module.go index 6117caa06..09e987ff1 100644 --- a/x/reward/module.go +++ b/x/reward/module.go @@ -5,6 +5,7 @@ import ( "encoding/json" "fmt" + abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" cdctypes "github.com/cosmos/cosmos-sdk/codec/types" @@ -13,7 +14,6 @@ import ( "github.com/gorilla/mux" "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - abci "github.com/tendermint/tendermint/abci/types" "github.com/tendermint/spn/x/reward/client/cli" "github.com/tendermint/spn/x/reward/keeper" @@ -121,19 +121,9 @@ func (am AppModule) Name() string { return am.AppModuleBasic.Name() } -// Route returns the reward module's message routing key. -func (am AppModule) Route() sdk.Route { - return sdk.Route{} -} - // QuerierRoute returns the reward module's query routing key. func (AppModule) QuerierRoute() string { return types.QuerierRoute } -// LegacyQuerierHandler returns the reward module's Querier. -func (am AppModule) LegacyQuerierHandler(_ *codec.LegacyAmino) sdk.Querier { - return nil -} - // RegisterServices registers a GRPC query service to respond to the // module-specific GRPC queries. func (am AppModule) RegisterServices(cfg module.Configurator) { diff --git a/x/reward/module_simulation.go b/x/reward/module_simulation.go index 3c41824e1..777d846d8 100644 --- a/x/reward/module_simulation.go +++ b/x/reward/module_simulation.go @@ -37,8 +37,8 @@ func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedP } // RandomizedParams creates randomized param changes for the simulator -func (am AppModule) RandomizedParams(_ *rand.Rand) []simtypes.ParamChange { - return []simtypes.ParamChange{} +func (am AppModule) RandomizedParams(_ *rand.Rand) []simtypes.LegacyParamChange { + return []simtypes.LegacyParamChange{} } // RegisterStoreDecoder registers a decoder diff --git a/x/reward/simulation/simulation.go b/x/reward/simulation/simulation.go index 50c4ff0dc..bea0102be 100644 --- a/x/reward/simulation/simulation.go +++ b/x/reward/simulation/simulation.go @@ -5,12 +5,11 @@ import ( sdkmath "cosmossdk.io/math" "github.com/cosmos/cosmos-sdk/baseapp" - "github.com/cosmos/cosmos-sdk/simapp/helpers" - simappparams "github.com/cosmos/cosmos-sdk/simapp/params" + simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" sdksimulation "github.com/cosmos/cosmos-sdk/x/simulation" - + "github.com/tendermint/spn/testutil/encoding" "github.com/tendermint/spn/testutil/simulation" "github.com/tendermint/spn/x/reward/keeper" "github.com/tendermint/spn/x/reward/types" @@ -90,7 +89,7 @@ func SimulateMsgSetRewards( txCtx := sdksimulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: encoding.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: msg, MsgType: msg.Type(), @@ -102,6 +101,6 @@ func SimulateMsgSetRewards( CoinsSpentInMsg: wantCoin, } - return simulation.GenAndDeliverTxWithRandFees(txCtx, helpers.DefaultGenTxGas) + return simulation.GenAndDeliverTxWithRandFees(txCtx, simtestutil.DefaultGenTxGas) } } diff --git a/x/reward/types/events.pb.go b/x/reward/types/events.pb.go index e44f6c5d6..0cb343532 100644 --- a/x/reward/types/events.pb.go +++ b/x/reward/types/events.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: reward/events.proto +// source: spn/reward/events.proto package types @@ -7,8 +7,8 @@ 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" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -34,7 +34,7 @@ func (m *EventRewardPoolCreated) Reset() { *m = EventRewardPoolCreated{} func (m *EventRewardPoolCreated) String() string { return proto.CompactTextString(m) } func (*EventRewardPoolCreated) ProtoMessage() {} func (*EventRewardPoolCreated) Descriptor() ([]byte, []int) { - return fileDescriptor_3aa0ffbf8147a08e, []int{0} + return fileDescriptor_169f73667c05bc72, []int{0} } func (m *EventRewardPoolCreated) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -85,7 +85,7 @@ func (m *EventRewardPoolRemoved) Reset() { *m = EventRewardPoolRemoved{} func (m *EventRewardPoolRemoved) String() string { return proto.CompactTextString(m) } func (*EventRewardPoolRemoved) ProtoMessage() {} func (*EventRewardPoolRemoved) Descriptor() ([]byte, []int) { - return fileDescriptor_3aa0ffbf8147a08e, []int{1} + return fileDescriptor_169f73667c05bc72, []int{1} } func (m *EventRewardPoolRemoved) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -131,7 +131,7 @@ func (m *EventRewardsDistributed) Reset() { *m = EventRewardsDistributed func (m *EventRewardsDistributed) String() string { return proto.CompactTextString(m) } func (*EventRewardsDistributed) ProtoMessage() {} func (*EventRewardsDistributed) Descriptor() ([]byte, []int) { - return fileDescriptor_3aa0ffbf8147a08e, []int{2} + return fileDescriptor_169f73667c05bc72, []int{2} } func (m *EventRewardsDistributed) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -182,36 +182,37 @@ func (m *EventRewardsDistributed) GetRewards() github_com_cosmos_cosmos_sdk_type } func init() { - proto.RegisterType((*EventRewardPoolCreated)(nil), "tendermint.spn.reward.EventRewardPoolCreated") - proto.RegisterType((*EventRewardPoolRemoved)(nil), "tendermint.spn.reward.EventRewardPoolRemoved") - proto.RegisterType((*EventRewardsDistributed)(nil), "tendermint.spn.reward.EventRewardsDistributed") -} - -func init() { proto.RegisterFile("reward/events.proto", fileDescriptor_3aa0ffbf8147a08e) } - -var fileDescriptor_3aa0ffbf8147a08e = []byte{ - // 336 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x51, 0xbb, 0x4e, 0xc3, 0x30, - 0x14, 0x8d, 0x29, 0xe2, 0x11, 0xb6, 0xf2, 0x0a, 0x1d, 0xd2, 0xaa, 0x0b, 0x59, 0xb0, 0x55, 0xe0, - 0x0b, 0xda, 0x32, 0xb0, 0x55, 0x19, 0x61, 0x40, 0x79, 0x5c, 0xb5, 0x16, 0x8d, 0x6f, 0x64, 0xbb, - 0x01, 0xfe, 0xa2, 0xdf, 0xc1, 0x97, 0x74, 0xec, 0xc8, 0x54, 0x50, 0xcb, 0x57, 0x30, 0xa1, 0xc4, - 0xe9, 0x43, 0x42, 0x42, 0x9d, 0xae, 0xaf, 0xee, 0x39, 0xc7, 0x47, 0xe7, 0xd8, 0xc7, 0x12, 0x5e, - 0x02, 0x19, 0x33, 0xc8, 0x40, 0x68, 0x45, 0x53, 0x89, 0x1a, 0xab, 0xa7, 0x1a, 0x44, 0x0c, 0x32, - 0xe1, 0x42, 0x53, 0x95, 0x0a, 0x6a, 0x30, 0xb5, 0x93, 0x3e, 0xf6, 0xb1, 0x40, 0xb0, 0xfc, 0x65, - 0xc0, 0x35, 0xa7, 0x54, 0x30, 0xe3, 0x29, 0x45, 0x1c, 0x96, 0x17, 0x37, 0x42, 0x95, 0xa0, 0x62, - 0x61, 0xa0, 0x80, 0x65, 0xad, 0x10, 0x74, 0xd0, 0x62, 0x11, 0x72, 0x61, 0xee, 0xcd, 0x9e, 0x7d, - 0x76, 0x97, 0x7f, 0xeb, 0x17, 0xcc, 0x1e, 0xe2, 0xb0, 0x23, 0x21, 0xd0, 0x10, 0x57, 0x6b, 0xf6, - 0xc1, 0x30, 0x18, 0x89, 0x68, 0x70, 0xdf, 0x75, 0x48, 0x83, 0x78, 0xbb, 0xfe, 0x6a, 0xcf, 0x6f, - 0xa9, 0xc4, 0x8c, 0xc7, 0x20, 0x9d, 0x9d, 0x06, 0xf1, 0x0e, 0xfd, 0xd5, 0xde, 0xbc, 0xfd, 0xa3, - 0xe8, 0x43, 0x82, 0xd9, 0xff, 0x8a, 0xcd, 0x6f, 0x62, 0x9f, 0x6f, 0xd0, 0x54, 0x97, 0x2b, 0x2d, - 0x79, 0x38, 0xda, 0xc2, 0x89, 0x84, 0x08, 0x78, 0xb6, 0x76, 0xb2, 0xdc, 0xab, 0x63, 0x62, 0xef, - 0x9b, 0x44, 0x94, 0x53, 0x69, 0x54, 0xbc, 0xa3, 0xeb, 0x0b, 0x6a, 0xe2, 0xa0, 0x79, 0x1c, 0xb4, - 0x8c, 0x83, 0x76, 0x90, 0x8b, 0xf6, 0xe3, 0x64, 0x56, 0xb7, 0x7e, 0x66, 0xf5, 0xcb, 0x3e, 0xd7, - 0x83, 0x51, 0x48, 0x23, 0x4c, 0x58, 0x99, 0x9d, 0x19, 0x57, 0x2a, 0x7e, 0x66, 0xfa, 0x2d, 0x05, - 0x55, 0x10, 0xde, 0x3f, 0xeb, 0xde, 0x96, 0x50, 0xe5, 0x2f, 0x6d, 0xb4, 0xdb, 0x93, 0xb9, 0x4b, - 0xa6, 0x73, 0x97, 0x7c, 0xcd, 0x5d, 0x32, 0x5e, 0xb8, 0xd6, 0x74, 0xe1, 0x5a, 0x1f, 0x0b, 0xd7, - 0x7a, 0xd8, 0x14, 0x5b, 0x57, 0xcf, 0x54, 0x2a, 0xd8, 0x6b, 0xd9, 0xab, 0x91, 0x0c, 0xf7, 0x8a, - 0xe6, 0x6e, 0x7e, 0x03, 0x00, 0x00, 0xff, 0xff, 0xf2, 0xc4, 0x60, 0x04, 0x37, 0x02, 0x00, 0x00, + proto.RegisterType((*EventRewardPoolCreated)(nil), "spn.reward.EventRewardPoolCreated") + proto.RegisterType((*EventRewardPoolRemoved)(nil), "spn.reward.EventRewardPoolRemoved") + proto.RegisterType((*EventRewardsDistributed)(nil), "spn.reward.EventRewardsDistributed") +} + +func init() { proto.RegisterFile("spn/reward/events.proto", fileDescriptor_169f73667c05bc72) } + +var fileDescriptor_169f73667c05bc72 = []byte{ + // 337 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x51, 0xcd, 0x4e, 0xf2, 0x40, + 0x14, 0xed, 0x7c, 0x7c, 0xf1, 0xa7, 0xee, 0x88, 0x11, 0x24, 0x66, 0x20, 0x6c, 0xec, 0xc6, 0x99, + 0xa0, 0x3e, 0x01, 0xe0, 0xc2, 0x1d, 0xe9, 0x52, 0x17, 0xa6, 0x3f, 0x37, 0x30, 0x91, 0xce, 0x6d, + 0x66, 0x86, 0xaa, 0x6f, 0xc1, 0x73, 0xf8, 0x24, 0x2c, 0x59, 0xba, 0x42, 0x03, 0x3e, 0x85, 0x2b, + 0xd3, 0x0e, 0x60, 0x13, 0x13, 0xc3, 0xea, 0xf6, 0xf6, 0xdc, 0x73, 0xe6, 0xe4, 0x1c, 0xb7, 0xa6, + 0x53, 0xc9, 0x15, 0x3c, 0x05, 0x2a, 0xe6, 0x90, 0x81, 0x34, 0x9a, 0xa5, 0x0a, 0x0d, 0x56, 0x5d, + 0x9d, 0x4a, 0x66, 0x81, 0xc6, 0xf1, 0x10, 0x87, 0x58, 0xfc, 0xe6, 0xf9, 0x97, 0xbd, 0x68, 0x9c, + 0x95, 0xa8, 0x76, 0x3c, 0xa4, 0x88, 0xe3, 0x35, 0x4a, 0x23, 0xd4, 0x09, 0x6a, 0x1e, 0x06, 0x1a, + 0x78, 0xd6, 0x09, 0xc1, 0x04, 0x1d, 0x1e, 0xa1, 0x90, 0x16, 0x6f, 0x0f, 0xdc, 0x93, 0x9b, 0xfc, + 0x3d, 0xbf, 0x60, 0x0e, 0x10, 0xc7, 0x3d, 0x05, 0x81, 0x81, 0xb8, 0xda, 0x70, 0x0f, 0xc6, 0xc1, + 0x44, 0x46, 0xa3, 0xdb, 0x7e, 0x9d, 0xb4, 0x88, 0xf7, 0xdf, 0xdf, 0xee, 0x39, 0x96, 0x2a, 0xcc, + 0x44, 0x0c, 0xaa, 0xfe, 0xaf, 0x45, 0xbc, 0x43, 0x7f, 0xbb, 0xb7, 0xaf, 0x7f, 0x29, 0xfa, 0x90, + 0x60, 0xf6, 0xb7, 0x62, 0xfb, 0x93, 0xb8, 0xb5, 0x12, 0x4d, 0xf7, 0x85, 0x36, 0x4a, 0x84, 0x93, + 0x1d, 0x9c, 0x28, 0x88, 0x40, 0x64, 0x3f, 0x4e, 0x36, 0x7b, 0x75, 0x4a, 0xdc, 0x7d, 0x9b, 0x88, + 0xae, 0x57, 0x5a, 0x15, 0xef, 0xe8, 0xf2, 0x94, 0xd9, 0x38, 0x58, 0x1e, 0x07, 0x5b, 0xc7, 0xc1, + 0x7a, 0x28, 0x64, 0xf7, 0x7e, 0xb6, 0x68, 0x3a, 0x5f, 0x8b, 0xe6, 0xf9, 0x50, 0x98, 0xd1, 0x24, + 0x64, 0x11, 0x26, 0x7c, 0x9d, 0x9d, 0x1d, 0x17, 0x3a, 0x7e, 0xe4, 0xe6, 0x25, 0x05, 0x5d, 0x10, + 0x5e, 0xdf, 0x9b, 0xde, 0x8e, 0xa7, 0xda, 0xdf, 0xd8, 0xe8, 0x76, 0x67, 0x4b, 0x4a, 0xe6, 0x4b, + 0x4a, 0x3e, 0x96, 0x94, 0x4c, 0x57, 0xd4, 0x99, 0xaf, 0xa8, 0xf3, 0xb6, 0xa2, 0xce, 0x5d, 0x59, + 0xcc, 0x80, 0x8c, 0x41, 0x25, 0x42, 0x1a, 0x9e, 0x97, 0xfb, 0xbc, 0xa9, 0xb7, 0x90, 0x0c, 0xf7, + 0x8a, 0xe6, 0xae, 0xbe, 0x03, 0x00, 0x00, 0xff, 0xff, 0x03, 0xbc, 0xe0, 0x1c, 0x34, 0x02, 0x00, + 0x00, } func (m *EventRewardPoolCreated) Marshal() (dAtA []byte, err error) { diff --git a/x/reward/types/genesis.pb.go b/x/reward/types/genesis.pb.go index 2f5863ab0..57ec13c7a 100644 --- a/x/reward/types/genesis.pb.go +++ b/x/reward/types/genesis.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: reward/genesis.proto +// source: spn/reward/genesis.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -33,7 +33,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_2da9a85e50a9a82a, []int{0} + return fileDescriptor_6b625f51106f241b, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -77,28 +77,28 @@ func (m *GenesisState) GetParams() Params { } func init() { - proto.RegisterType((*GenesisState)(nil), "tendermint.spn.reward.GenesisState") + proto.RegisterType((*GenesisState)(nil), "spn.reward.GenesisState") } -func init() { proto.RegisterFile("reward/genesis.proto", fileDescriptor_2da9a85e50a9a82a) } +func init() { proto.RegisterFile("spn/reward/genesis.proto", fileDescriptor_6b625f51106f241b) } -var fileDescriptor_2da9a85e50a9a82a = []byte{ - // 236 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x29, 0x4a, 0x2d, 0x4f, - 0x2c, 0x4a, 0xd1, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x12, 0x2d, 0x49, 0xcd, 0x4b, 0x49, 0x2d, 0xca, 0xcd, 0xcc, 0x2b, 0xd1, 0x2b, 0x2e, 0xc8, - 0xd3, 0x83, 0x28, 0x92, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xab, 0xd0, 0x07, 0xb1, 0x20, 0x8a, - 0xa5, 0x84, 0xa1, 0x46, 0x14, 0x24, 0x16, 0x25, 0xe6, 0x42, 0x4d, 0x90, 0x92, 0x80, 0x0a, 0x42, - 0xa8, 0xf8, 0x82, 0xfc, 0xfc, 0x1c, 0x88, 0x8c, 0xd2, 0x34, 0x46, 0x2e, 0x1e, 0x77, 0x88, 0x6d, - 0xc1, 0x25, 0x89, 0x25, 0xa9, 0x42, 0x9e, 0x5c, 0xdc, 0x10, 0x55, 0x01, 0xf9, 0xf9, 0x39, 0xc5, - 0x12, 0x8c, 0x0a, 0xcc, 0x1a, 0xdc, 0x46, 0x8a, 0x7a, 0x58, 0x9d, 0xa0, 0x17, 0x04, 0x57, 0xe9, - 0xc4, 0x72, 0xe2, 0x9e, 0x3c, 0x43, 0x10, 0xb2, 0x5e, 0x21, 0x6b, 0x2e, 0x36, 0x88, 0x2b, 0x24, - 0x98, 0x14, 0x18, 0x35, 0xb8, 0x8d, 0x64, 0x71, 0x98, 0x12, 0x00, 0x56, 0x04, 0x35, 0x01, 0xaa, - 0xc5, 0xc9, 0xe9, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, - 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x34, 0xd2, 0x33, - 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x11, 0x06, 0xea, 0x17, 0x17, 0xe4, 0xe9, - 0x57, 0x40, 0x7d, 0xa8, 0x5f, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0xf6, 0xa3, 0x31, 0x20, - 0x00, 0x00, 0xff, 0xff, 0x61, 0x3a, 0x2c, 0x60, 0x57, 0x01, 0x00, 0x00, +var fileDescriptor_6b625f51106f241b = []byte{ + // 233 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x28, 0x2e, 0xc8, 0xd3, + 0x2f, 0x4a, 0x2d, 0x4f, 0x2c, 0x4a, 0xd1, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, + 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x2a, 0x2e, 0xc8, 0xd3, 0x83, 0xc8, 0x48, 0x89, 0xa4, 0xe7, + 0xa7, 0xe7, 0x83, 0x85, 0xf5, 0x41, 0x2c, 0x88, 0x0a, 0x29, 0x71, 0x24, 0xbd, 0x05, 0x89, 0x45, + 0x89, 0xb9, 0x50, 0xad, 0x52, 0x32, 0x48, 0x12, 0x10, 0x2a, 0xbe, 0x20, 0x3f, 0x3f, 0x07, 0x22, + 0xab, 0xd4, 0xc0, 0xc8, 0xc5, 0xe3, 0x0e, 0xb1, 0x2a, 0xb8, 0x24, 0xb1, 0x24, 0x55, 0xc8, 0x8e, + 0x8b, 0x1b, 0xa2, 0x2a, 0x20, 0x3f, 0x3f, 0xa7, 0x58, 0x82, 0x51, 0x81, 0x59, 0x83, 0xdb, 0x48, + 0x4c, 0x0f, 0x61, 0xbf, 0x5e, 0x10, 0x5c, 0xda, 0x89, 0xe5, 0xc4, 0x3d, 0x79, 0x86, 0x20, 0x64, + 0x0d, 0x42, 0x06, 0x5c, 0x6c, 0x10, 0xeb, 0x25, 0x98, 0x14, 0x18, 0x35, 0xb8, 0x8d, 0x84, 0x90, + 0xb5, 0x06, 0x80, 0x65, 0xa0, 0xda, 0xa0, 0xea, 0x9c, 0x9c, 0x4e, 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, 0x4a, 0x23, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, + 0xbf, 0x24, 0x35, 0x2f, 0x25, 0xb5, 0x28, 0x37, 0x33, 0xaf, 0x44, 0x1f, 0xe4, 0xa1, 0x0a, 0x98, + 0x97, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xbe, 0x31, 0x06, 0x04, 0x00, 0x00, 0xff, + 0xff, 0x0e, 0xc5, 0xd1, 0x09, 0x42, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/reward/types/params.pb.go b/x/reward/types/params.pb.go index ffc01f302..24793a828 100644 --- a/x/reward/types/params.pb.go +++ b/x/reward/types/params.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: reward/params.proto +// source: spn/reward/params.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -30,7 +30,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_809b48e6a5b4e716, []int{0} + return fileDescriptor_27177e20b9cac2b9, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -60,23 +60,23 @@ func (m *Params) XXX_DiscardUnknown() { var xxx_messageInfo_Params proto.InternalMessageInfo func init() { - proto.RegisterType((*Params)(nil), "tendermint.spn.reward.Params") + proto.RegisterType((*Params)(nil), "spn.reward.Params") } -func init() { proto.RegisterFile("reward/params.proto", fileDescriptor_809b48e6a5b4e716) } +func init() { proto.RegisterFile("spn/reward/params.proto", fileDescriptor_27177e20b9cac2b9) } -var fileDescriptor_809b48e6a5b4e716 = []byte{ - // 152 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x2e, 0x4a, 0x2d, 0x4f, - 0x2c, 0x4a, 0xd1, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, - 0x12, 0x2d, 0x49, 0xcd, 0x4b, 0x49, 0x2d, 0xca, 0xcd, 0xcc, 0x2b, 0xd1, 0x2b, 0x2e, 0xc8, 0xd3, - 0x83, 0xa8, 0x91, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xab, 0xd0, 0x07, 0xb1, 0x20, 0x8a, 0x95, - 0xf8, 0xb8, 0xd8, 0x02, 0xc0, 0x9a, 0xad, 0x58, 0x66, 0x2c, 0x90, 0x67, 0x70, 0x72, 0x3a, 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, 0x8d, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, - 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x84, 0x0d, 0xfa, 0xc5, 0x05, 0x79, 0xfa, 0x15, 0xfa, 0x50, 0x77, - 0x94, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x8d, 0x36, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, - 0x3c, 0x6e, 0x81, 0x60, 0x9e, 0x00, 0x00, 0x00, +var fileDescriptor_27177e20b9cac2b9 = []byte{ + // 150 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x2f, 0x2e, 0xc8, 0xd3, + 0x2f, 0x4a, 0x2d, 0x4f, 0x2c, 0x4a, 0xd1, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, + 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x2a, 0x2e, 0xc8, 0xd3, 0x83, 0x48, 0x48, 0x89, 0xa4, 0xe7, 0xa7, + 0xe7, 0x83, 0x85, 0xf5, 0x41, 0x2c, 0x88, 0x0a, 0x25, 0x3e, 0x2e, 0xb6, 0x00, 0xb0, 0x0e, 0x2b, + 0x96, 0x19, 0x0b, 0xe4, 0x19, 0x9c, 0x9c, 0x4e, 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, 0x4a, 0x23, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0xbf, 0x24, 0x35, + 0x2f, 0x25, 0xb5, 0x28, 0x37, 0x33, 0xaf, 0x44, 0x1f, 0x64, 0x75, 0x05, 0xcc, 0xf2, 0x92, 0xca, + 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0xd1, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x1f, 0x04, + 0x3d, 0x0d, 0x97, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/reward/types/query.pb.go b/x/reward/types/query.pb.go index b21a7bb24..0e473529f 100644 --- a/x/reward/types/query.pb.go +++ b/x/reward/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: reward/query.proto +// source: spn/reward/query.proto package types @@ -8,9 +8,9 @@ import ( 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" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -39,7 +39,7 @@ func (m *QueryGetRewardPoolRequest) Reset() { *m = QueryGetRewardPoolReq func (m *QueryGetRewardPoolRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRewardPoolRequest) ProtoMessage() {} func (*QueryGetRewardPoolRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_05f327bea4a9f461, []int{0} + return fileDescriptor_1f245591884c6468, []int{0} } func (m *QueryGetRewardPoolRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -83,7 +83,7 @@ func (m *QueryGetRewardPoolResponse) Reset() { *m = QueryGetRewardPoolRe func (m *QueryGetRewardPoolResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRewardPoolResponse) ProtoMessage() {} func (*QueryGetRewardPoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_05f327bea4a9f461, []int{1} + return fileDescriptor_1f245591884c6468, []int{1} } func (m *QueryGetRewardPoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -127,7 +127,7 @@ func (m *QueryAllRewardPoolRequest) Reset() { *m = QueryAllRewardPoolReq func (m *QueryAllRewardPoolRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllRewardPoolRequest) ProtoMessage() {} func (*QueryAllRewardPoolRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_05f327bea4a9f461, []int{2} + return fileDescriptor_1f245591884c6468, []int{2} } func (m *QueryAllRewardPoolRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -172,7 +172,7 @@ func (m *QueryAllRewardPoolResponse) Reset() { *m = QueryAllRewardPoolRe func (m *QueryAllRewardPoolResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllRewardPoolResponse) ProtoMessage() {} func (*QueryAllRewardPoolResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_05f327bea4a9f461, []int{3} + return fileDescriptor_1f245591884c6468, []int{3} } func (m *QueryAllRewardPoolResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -223,7 +223,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_05f327bea4a9f461, []int{4} + return fileDescriptor_1f245591884c6468, []int{4} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -261,7 +261,7 @@ 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_05f327bea4a9f461, []int{5} + return fileDescriptor_1f245591884c6468, []int{5} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -298,51 +298,50 @@ func (m *QueryParamsResponse) GetParams() Params { } func init() { - proto.RegisterType((*QueryGetRewardPoolRequest)(nil), "tendermint.spn.reward.QueryGetRewardPoolRequest") - proto.RegisterType((*QueryGetRewardPoolResponse)(nil), "tendermint.spn.reward.QueryGetRewardPoolResponse") - proto.RegisterType((*QueryAllRewardPoolRequest)(nil), "tendermint.spn.reward.QueryAllRewardPoolRequest") - proto.RegisterType((*QueryAllRewardPoolResponse)(nil), "tendermint.spn.reward.QueryAllRewardPoolResponse") - proto.RegisterType((*QueryParamsRequest)(nil), "tendermint.spn.reward.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "tendermint.spn.reward.QueryParamsResponse") -} - -func init() { proto.RegisterFile("reward/query.proto", fileDescriptor_05f327bea4a9f461) } - -var fileDescriptor_05f327bea4a9f461 = []byte{ - // 514 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xcf, 0x6f, 0xd3, 0x30, - 0x14, 0xc7, 0xeb, 0x6d, 0x54, 0xc8, 0x88, 0x8b, 0x37, 0xa4, 0x11, 0xb1, 0x0c, 0x22, 0x7e, 0x8c, - 0x4a, 0xd8, 0x74, 0x08, 0x71, 0xe0, 0xb4, 0x0a, 0x31, 0x71, 0x2b, 0x39, 0x72, 0x41, 0x6e, 0x66, - 0x65, 0x91, 0x52, 0x3f, 0x2f, 0x76, 0x81, 0x09, 0x71, 0xe1, 0xc0, 0x19, 0x89, 0x7f, 0x80, 0x23, - 0x27, 0xfe, 0x8e, 0x1d, 0x27, 0x71, 0xe1, 0x34, 0xa1, 0x96, 0x3f, 0x04, 0xd5, 0x76, 0x96, 0x76, - 0x4b, 0x56, 0xe0, 0x54, 0xf7, 0xe5, 0x7d, 0xbf, 0xef, 0xf3, 0x9e, 0x5f, 0x82, 0x49, 0x21, 0xde, - 0xf2, 0x62, 0x8f, 0x1d, 0x8c, 0x44, 0x71, 0x48, 0x55, 0x01, 0x06, 0xc8, 0x35, 0x23, 0xe4, 0x9e, - 0x28, 0x86, 0x99, 0x34, 0x54, 0x2b, 0x49, 0x5d, 0x4a, 0x70, 0x23, 0x05, 0x48, 0x73, 0xc1, 0xb8, - 0xca, 0x18, 0x97, 0x12, 0x0c, 0x37, 0x19, 0x48, 0xed, 0x44, 0x41, 0x27, 0x01, 0x3d, 0x04, 0xcd, - 0x06, 0x5c, 0x0b, 0xe7, 0xc6, 0xde, 0x74, 0x07, 0xc2, 0xf0, 0x2e, 0x53, 0x3c, 0xcd, 0xa4, 0x4d, - 0xf6, 0xb9, 0xab, 0xbe, 0xa8, 0xe2, 0x05, 0x1f, 0x96, 0x06, 0xeb, 0x3e, 0xe8, 0x7e, 0x5e, 0x2b, - 0x80, 0xdc, 0x3f, 0x09, 0x67, 0xad, 0x4b, 0xd3, 0x04, 0xb2, 0xd2, 0x6e, 0x2d, 0x85, 0x14, 0xec, - 0x91, 0x4d, 0x4f, 0x2e, 0x1a, 0x3d, 0xc1, 0xd7, 0x5f, 0x4e, 0x31, 0x76, 0x85, 0x89, 0xad, 0x65, - 0x1f, 0x20, 0x8f, 0xc5, 0xc1, 0x48, 0x68, 0x43, 0x02, 0x7c, 0x39, 0xe7, 0x23, 0x99, 0xec, 0xbf, - 0x78, 0xb6, 0x8e, 0x6e, 0xa2, 0xad, 0x95, 0xf8, 0xf4, 0x7f, 0x24, 0x70, 0x50, 0x27, 0xd4, 0x0a, - 0xa4, 0x16, 0x64, 0x17, 0xe3, 0xe2, 0x34, 0x6a, 0xb5, 0x57, 0xb6, 0x6f, 0xd1, 0xda, 0x89, 0xd1, - 0x4a, 0xde, 0x5b, 0x39, 0x3a, 0xd9, 0x6c, 0xc5, 0x33, 0xd2, 0x28, 0xf1, 0x7c, 0x3b, 0x79, 0x7e, - 0x9e, 0xef, 0x39, 0xc6, 0xd5, 0xd4, 0x7c, 0x95, 0xbb, 0xd4, 0xcd, 0x81, 0x4e, 0xe7, 0x40, 0xdd, - 0x85, 0xf9, 0x69, 0xd0, 0x3e, 0x4f, 0x85, 0xd7, 0xc6, 0x33, 0xca, 0xe8, 0x3b, 0xf2, 0xcd, 0x9c, - 0xa9, 0xd2, 0xd0, 0xcc, 0xf2, 0x7f, 0x36, 0x33, 0x35, 0x9a, 0xe1, 0x5d, 0xb2, 0xbc, 0xf7, 0x16, - 0xf2, 0x3a, 0x8a, 0x39, 0xe0, 0x35, 0x4c, 0x2c, 0x6f, 0xdf, 0xae, 0x86, 0x6f, 0x29, 0x8a, 0xf1, - 0xea, 0x5c, 0xd4, 0xe3, 0x3f, 0xc5, 0x6d, 0xb7, 0x42, 0x7e, 0x42, 0x1b, 0x0d, 0xe8, 0x4e, 0xe6, - 0xb1, 0xbd, 0x64, 0xfb, 0x64, 0x19, 0x5f, 0xb2, 0xa6, 0xe4, 0x1b, 0xc2, 0xb8, 0xea, 0x8e, 0x3c, - 0x6c, 0x70, 0x69, 0xdc, 0xa6, 0xa0, 0xfb, 0x0f, 0x0a, 0x87, 0x1e, 0x3d, 0xfe, 0xf8, 0xe3, 0xf7, - 0x97, 0x25, 0x46, 0x1e, 0xb0, 0x4a, 0xca, 0xb4, 0x92, 0xec, 0xfc, 0x5b, 0xc0, 0xde, 0x97, 0xab, - 0xf9, 0x81, 0x7c, 0x45, 0xf8, 0x6a, 0xe5, 0xb6, 0x93, 0x2f, 0xa0, 0xad, 0xdb, 0xad, 0x8b, 0x69, - 0x6b, 0xf7, 0x24, 0xea, 0x58, 0xda, 0xdb, 0x24, 0x5a, 0x4c, 0x4b, 0x3e, 0x21, 0xdc, 0x76, 0x03, - 0x27, 0xf7, 0x2f, 0xaa, 0x34, 0x77, 0xc3, 0x41, 0xe7, 0x6f, 0x52, 0x3d, 0xcd, 0x1d, 0x4b, 0xb3, - 0x49, 0x36, 0x1a, 0x68, 0xdc, 0x05, 0xf7, 0x7a, 0x47, 0xe3, 0x10, 0x1d, 0x8f, 0x43, 0xf4, 0x6b, - 0x1c, 0xa2, 0xcf, 0x93, 0xb0, 0x75, 0x3c, 0x09, 0x5b, 0x3f, 0x27, 0x61, 0xeb, 0xd5, 0x56, 0x9a, - 0x99, 0xfd, 0xd1, 0x80, 0x26, 0x30, 0x3c, 0x6b, 0xf1, 0xae, 0x34, 0x31, 0x87, 0x4a, 0xe8, 0x41, - 0xdb, 0x7e, 0x4b, 0x1e, 0xfd, 0x09, 0x00, 0x00, 0xff, 0xff, 0xbb, 0x1d, 0x19, 0xc6, 0x27, 0x05, - 0x00, 0x00, + proto.RegisterType((*QueryGetRewardPoolRequest)(nil), "spn.reward.QueryGetRewardPoolRequest") + proto.RegisterType((*QueryGetRewardPoolResponse)(nil), "spn.reward.QueryGetRewardPoolResponse") + proto.RegisterType((*QueryAllRewardPoolRequest)(nil), "spn.reward.QueryAllRewardPoolRequest") + proto.RegisterType((*QueryAllRewardPoolResponse)(nil), "spn.reward.QueryAllRewardPoolResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "spn.reward.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "spn.reward.QueryParamsResponse") +} + +func init() { proto.RegisterFile("spn/reward/query.proto", fileDescriptor_1f245591884c6468) } + +var fileDescriptor_1f245591884c6468 = []byte{ + // 506 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0x31, 0x6f, 0x13, 0x31, + 0x14, 0xc7, 0x73, 0x6d, 0x89, 0xd0, 0x43, 0x2c, 0xa6, 0x2a, 0x70, 0x2a, 0x17, 0x74, 0xa2, 0xa5, + 0xaa, 0x84, 0x4d, 0x8b, 0x10, 0x0b, 0x4b, 0x23, 0x44, 0xc4, 0x16, 0x32, 0x76, 0x41, 0xce, 0xd5, + 0xba, 0x9e, 0x74, 0xf1, 0x73, 0xcf, 0x0e, 0x50, 0x21, 0x16, 0x46, 0x26, 0x04, 0x23, 0x23, 0x5f, + 0xa6, 0x63, 0x25, 0x16, 0x26, 0x84, 0x12, 0x3e, 0x08, 0x8a, 0xed, 0xeb, 0x5d, 0xda, 0x8b, 0x22, + 0xa6, 0x38, 0xf6, 0x7b, 0xff, 0xf7, 0xfb, 0xbf, 0xf7, 0x0e, 0x36, 0xb4, 0x92, 0xac, 0x10, 0xef, + 0x78, 0x71, 0xc4, 0x4e, 0xc6, 0xa2, 0x38, 0xa5, 0xaa, 0x40, 0x83, 0x04, 0xb4, 0x92, 0xd4, 0xdd, + 0x87, 0x9b, 0x29, 0x62, 0x9a, 0x0b, 0xc6, 0x55, 0xc6, 0xb8, 0x94, 0x68, 0xb8, 0xc9, 0x50, 0x6a, + 0x17, 0x19, 0xee, 0x26, 0xa8, 0x47, 0xa8, 0xd9, 0x90, 0x6b, 0xe1, 0x24, 0xd8, 0xdb, 0xbd, 0xa1, + 0x30, 0x7c, 0x8f, 0x29, 0x9e, 0x66, 0xd2, 0x06, 0xfb, 0xd8, 0xdb, 0xb5, 0x6a, 0x8a, 0x17, 0x7c, + 0x54, 0x8a, 0x6c, 0xd6, 0x1e, 0xdc, 0xcf, 0x1b, 0x85, 0x98, 0xfb, 0xd7, 0xa8, 0x5e, 0xa2, 0x14, + 0x4f, 0x30, 0x2b, 0x65, 0xd7, 0x53, 0x4c, 0xd1, 0x1e, 0xd9, 0xec, 0xe4, 0x6e, 0xe3, 0x67, 0x70, + 0xf7, 0xf5, 0x0c, 0xa7, 0x27, 0xcc, 0xc0, 0x4a, 0xf6, 0x11, 0xf3, 0x81, 0x38, 0x19, 0x0b, 0x6d, + 0x48, 0x08, 0xd7, 0x73, 0x3e, 0x96, 0xc9, 0xf1, 0xab, 0x17, 0x77, 0x82, 0xfb, 0xc1, 0xce, 0xda, + 0xe0, 0xe2, 0x7f, 0x7c, 0x08, 0x61, 0x53, 0xa2, 0x56, 0x28, 0xb5, 0x20, 0xcf, 0x01, 0x8a, 0x8b, + 0x5b, 0x9b, 0x7b, 0x63, 0x7f, 0x83, 0x56, 0xed, 0xa2, 0x55, 0x4e, 0x77, 0xed, 0xec, 0x77, 0xa7, + 0x35, 0xa8, 0xc5, 0xc7, 0x89, 0x87, 0x3a, 0xc8, 0xf3, 0xab, 0x50, 0x2f, 0x01, 0xaa, 0x96, 0x79, + 0xe9, 0x6d, 0xea, 0xcc, 0xd3, 0x99, 0x79, 0xea, 0x46, 0xe4, 0x5b, 0x40, 0xfb, 0x3c, 0x15, 0x3e, + 0x77, 0x50, 0xcb, 0x8c, 0x7f, 0x04, 0xde, 0xc1, 0xa5, 0x2a, 0x0b, 0x1c, 0xac, 0xfe, 0x8f, 0x03, + 0xd2, 0x9b, 0x83, 0x5c, 0xb1, 0x90, 0x0f, 0x97, 0x42, 0xba, 0xd2, 0x73, 0x94, 0xeb, 0x40, 0x2c, + 0x64, 0xdf, 0x2e, 0x82, 0xf7, 0x11, 0xf7, 0xe0, 0xd6, 0xdc, 0xad, 0x67, 0x7e, 0x0c, 0x6d, 0xb7, + 0x30, 0xbe, 0x2d, 0xa4, 0xce, 0xeb, 0x62, 0x3d, 0xab, 0x8f, 0xdb, 0xff, 0xbe, 0x0a, 0xd7, 0xac, + 0x12, 0xf9, 0x1a, 0x00, 0x54, 0x96, 0xc8, 0x56, 0x3d, 0x75, 0xe1, 0x86, 0x84, 0xdb, 0xcb, 0xc2, + 0x1c, 0x59, 0xfc, 0xf4, 0xd3, 0xcf, 0xbf, 0xdf, 0x56, 0x18, 0x79, 0xc4, 0x8c, 0x90, 0x47, 0xa2, + 0x18, 0x65, 0xd2, 0xb0, 0xe6, 0x75, 0x66, 0x1f, 0xca, 0x1d, 0xfb, 0x48, 0x3e, 0x07, 0x70, 0xb3, + 0x52, 0x3b, 0xc8, 0x9b, 0xb8, 0x9a, 0x96, 0xa4, 0x81, 0xab, 0x71, 0xca, 0xf1, 0xae, 0xe5, 0x7a, + 0x40, 0xe2, 0xe5, 0x5c, 0x44, 0x41, 0xdb, 0xf5, 0x90, 0x44, 0x57, 0xd4, 0xe7, 0xc6, 0x13, 0x76, + 0x16, 0xbe, 0xfb, 0xb2, 0x5b, 0xb6, 0x6c, 0x87, 0xdc, 0x5b, 0x50, 0xd6, 0x4d, 0xa7, 0xdb, 0x3d, + 0x9b, 0x44, 0xc1, 0xf9, 0x24, 0x0a, 0xfe, 0x4c, 0xa2, 0xe0, 0xcb, 0x34, 0x6a, 0x9d, 0x4f, 0xa3, + 0xd6, 0xaf, 0x69, 0xd4, 0x3a, 0xdc, 0x49, 0x33, 0x73, 0x3c, 0x1e, 0xd2, 0x04, 0x47, 0x97, 0x25, + 0xde, 0x97, 0x22, 0xe6, 0x54, 0x09, 0x3d, 0x6c, 0xdb, 0xef, 0xfc, 0xc9, 0xbf, 0x00, 0x00, 0x00, + 0xff, 0xff, 0xe5, 0xb9, 0xfe, 0xaf, 0xc4, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -375,7 +374,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) RewardPool(ctx context.Context, in *QueryGetRewardPoolRequest, opts ...grpc.CallOption) (*QueryGetRewardPoolResponse, error) { out := new(QueryGetRewardPoolResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.reward.Query/RewardPool", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.reward.Query/RewardPool", in, out, opts...) if err != nil { return nil, err } @@ -384,7 +383,7 @@ func (c *queryClient) RewardPool(ctx context.Context, in *QueryGetRewardPoolRequ func (c *queryClient) RewardPoolAll(ctx context.Context, in *QueryAllRewardPoolRequest, opts ...grpc.CallOption) (*QueryAllRewardPoolResponse, error) { out := new(QueryAllRewardPoolResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.reward.Query/RewardPoolAll", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.reward.Query/RewardPoolAll", in, out, opts...) if err != nil { return nil, err } @@ -393,7 +392,7 @@ func (c *queryClient) RewardPoolAll(ctx context.Context, in *QueryAllRewardPoolR func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.reward.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.reward.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -438,7 +437,7 @@ func _Query_RewardPool_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.reward.Query/RewardPool", + FullMethod: "/spn.reward.Query/RewardPool", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).RewardPool(ctx, req.(*QueryGetRewardPoolRequest)) @@ -456,7 +455,7 @@ func _Query_RewardPoolAll_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.reward.Query/RewardPoolAll", + FullMethod: "/spn.reward.Query/RewardPoolAll", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).RewardPoolAll(ctx, req.(*QueryAllRewardPoolRequest)) @@ -474,7 +473,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.reward.Query/Params", + FullMethod: "/spn.reward.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -483,7 +482,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "tendermint.spn.reward.Query", + ServiceName: "spn.reward.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { @@ -500,7 +499,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "reward/query.proto", + Metadata: "spn/reward/query.proto", } func (m *QueryGetRewardPoolRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/reward/types/query.pb.gw.go b/x/reward/types/query.pb.gw.go index af753271f..ee6257ce8 100644 --- a/x/reward/types/query.pb.gw.go +++ b/x/reward/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: reward/query.proto +// source: spn/reward/query.proto /* Package types is a reverse proxy. @@ -321,11 +321,11 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_RewardPool_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "reward", "reward_pool", "launchID"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RewardPool_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"tendermint", "spn", "reward", "reward_pool", "launchID"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_RewardPoolAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "reward", "reward_pool"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_RewardPoolAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "reward", "reward_pool"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "reward", "params"}, "", runtime.AssumeColonVerbOpt(true))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"tendermint", "spn", "reward", "params"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/reward/types/reward_pool.pb.go b/x/reward/types/reward_pool.pb.go index a02996608..4f572d8fe 100644 --- a/x/reward/types/reward_pool.pb.go +++ b/x/reward/types/reward_pool.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: reward/reward_pool.proto +// source: spn/reward/reward_pool.proto package types @@ -7,8 +7,8 @@ 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" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -39,7 +39,7 @@ func (m *RewardPool) Reset() { *m = RewardPool{} } func (m *RewardPool) String() string { return proto.CompactTextString(m) } func (*RewardPool) ProtoMessage() {} func (*RewardPool) Descriptor() ([]byte, []int) { - return fileDescriptor_609e0d2ccc6b594f, []int{0} + return fileDescriptor_9b26030b17d54fe7, []int{0} } func (m *RewardPool) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -118,37 +118,36 @@ func (m *RewardPool) GetClosed() bool { } func init() { - proto.RegisterType((*RewardPool)(nil), "tendermint.spn.reward.RewardPool") + proto.RegisterType((*RewardPool)(nil), "spn.reward.RewardPool") } -func init() { proto.RegisterFile("reward/reward_pool.proto", fileDescriptor_609e0d2ccc6b594f) } +func init() { proto.RegisterFile("spn/reward/reward_pool.proto", fileDescriptor_9b26030b17d54fe7) } -var fileDescriptor_609e0d2ccc6b594f = []byte{ - // 371 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x92, 0xbd, 0x4e, 0xe3, 0x40, - 0x14, 0x85, 0x3d, 0xeb, 0x6c, 0x36, 0x3b, 0xbb, 0x5a, 0xad, 0xbc, 0x3f, 0xf2, 0xa6, 0x70, 0xac, - 0x6d, 0xb0, 0x90, 0x98, 0x21, 0xf0, 0x06, 0x81, 0x02, 0x3a, 0xe4, 0x12, 0x0a, 0xe4, 0x9f, 0x91, - 0x33, 0xc2, 0x9e, 0x6b, 0xcd, 0x4c, 0x02, 0xbc, 0x05, 0x35, 0x05, 0x0f, 0xc0, 0x93, 0xa4, 0x4c, - 0x49, 0x15, 0x50, 0xf2, 0x12, 0x88, 0x0a, 0xd9, 0x63, 0x05, 0x02, 0x14, 0x74, 0x54, 0xd7, 0xd7, - 0xf7, 0x9b, 0x39, 0xe7, 0x6a, 0x0e, 0x76, 0x25, 0x3b, 0x8d, 0x64, 0x4a, 0x4d, 0x39, 0x2e, 0x01, - 0x72, 0x52, 0x4a, 0xd0, 0xe0, 0xfc, 0xd1, 0x4c, 0xa4, 0x4c, 0x16, 0x5c, 0x68, 0xa2, 0x4a, 0x41, - 0x0c, 0xd1, 0xfd, 0x9d, 0x41, 0x06, 0x35, 0x41, 0xab, 0x2f, 0x03, 0x77, 0xbd, 0x04, 0x54, 0x01, - 0x8a, 0xc6, 0x91, 0x62, 0x74, 0xdc, 0x8f, 0x99, 0x8e, 0xfa, 0x34, 0x01, 0x2e, 0xcc, 0xfc, 0xff, - 0xbd, 0x8d, 0x71, 0x58, 0x5f, 0x70, 0x00, 0x90, 0x3b, 0x5d, 0xdc, 0xc9, 0xa3, 0x91, 0x48, 0x86, - 0xfb, 0xbb, 0x2e, 0xf2, 0x51, 0xd0, 0x0a, 0x97, 0x7d, 0x35, 0x2b, 0x25, 0x8c, 0x79, 0xca, 0xa4, - 0xfb, 0xc9, 0x47, 0xc1, 0xd7, 0x70, 0xd9, 0x3b, 0x97, 0x08, 0x7f, 0xe7, 0x82, 0x6b, 0x1e, 0xe5, - 0x3b, 0xc0, 0x85, 0x72, 0x6d, 0xdf, 0x0e, 0xbe, 0x6d, 0xfd, 0x23, 0x46, 0x9e, 0x54, 0xf2, 0xa4, - 0x91, 0x27, 0x15, 0x31, 0x38, 0x9a, 0xcc, 0x7a, 0xd6, 0xc3, 0xac, 0xb7, 0x96, 0x71, 0x3d, 0x1c, - 0xc5, 0x24, 0x81, 0x82, 0x36, 0x5e, 0x4d, 0xd9, 0x50, 0xe9, 0x09, 0xd5, 0xe7, 0x25, 0x53, 0xf5, - 0x81, 0xeb, 0xdb, 0x5e, 0xf0, 0x4e, 0x54, 0x85, 0x2b, 0x5e, 0x9c, 0x2b, 0x84, 0x7f, 0x48, 0x56, - 0x44, 0x5c, 0x70, 0x91, 0x19, 0x7b, 0xad, 0x0f, 0xb5, 0xf7, 0xc2, 0x8d, 0xb3, 0x8e, 0x7f, 0xe6, - 0x91, 0xd2, 0xe6, 0x1d, 0xf6, 0x18, 0xcf, 0x86, 0xda, 0xfd, 0xec, 0xa3, 0xc0, 0x0e, 0x5f, 0xfd, - 0x77, 0x36, 0xf1, 0xaf, 0x64, 0x24, 0x25, 0x13, 0xab, 0x78, 0xbb, 0xc6, 0xdf, 0x1a, 0x39, 0x7f, - 0x71, 0x3b, 0xc9, 0x41, 0xb1, 0xd4, 0xfd, 0xe2, 0xa3, 0xa0, 0x13, 0x36, 0xdd, 0x60, 0x30, 0x99, - 0x7b, 0x68, 0x3a, 0xf7, 0xd0, 0xdd, 0xdc, 0x43, 0x17, 0x0b, 0xcf, 0x9a, 0x2e, 0x3c, 0xeb, 0x66, - 0xe1, 0x59, 0x87, 0xcf, 0x37, 0x79, 0x0a, 0x1b, 0x55, 0xa5, 0xa0, 0x67, 0x4d, 0x20, 0xcd, 0x3e, - 0x71, 0xbb, 0x4e, 0xd1, 0xf6, 0x63, 0x00, 0x00, 0x00, 0xff, 0xff, 0x19, 0xa5, 0x0b, 0xc4, 0xae, - 0x02, 0x00, 0x00, +var fileDescriptor_9b26030b17d54fe7 = []byte{ + // 367 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x52, 0xbd, 0x4e, 0xeb, 0x30, + 0x14, 0x8e, 0x6f, 0x7a, 0x7b, 0x7b, 0x7d, 0xaf, 0x10, 0x0a, 0x08, 0x85, 0x0a, 0xa5, 0x11, 0x0b, + 0x11, 0x12, 0x31, 0x85, 0x37, 0x28, 0x0c, 0xb0, 0xa1, 0x8c, 0x30, 0xa0, 0xfc, 0x58, 0xa9, 0x45, + 0xe2, 0x13, 0xd9, 0x6e, 0x81, 0xb7, 0x60, 0x66, 0xe0, 0x01, 0x78, 0x92, 0x8e, 0x1d, 0x99, 0x0a, + 0x6a, 0x5f, 0x02, 0x31, 0xa1, 0xc4, 0xa1, 0xa2, 0xc0, 0xc0, 0xc6, 0x74, 0x7c, 0xce, 0xf7, 0xd9, + 0xdf, 0x77, 0xe4, 0x0f, 0x6f, 0xc8, 0x82, 0x13, 0x41, 0x2f, 0x43, 0x91, 0xd4, 0xe5, 0xbc, 0x00, + 0xc8, 0xfc, 0x42, 0x80, 0x02, 0x0b, 0xcb, 0x82, 0xfb, 0x7a, 0xdc, 0x5e, 0x4d, 0x21, 0x85, 0x6a, + 0x4c, 0xca, 0x93, 0x66, 0xb4, 0x9d, 0x18, 0x64, 0x0e, 0x92, 0x44, 0xa1, 0xa4, 0x64, 0xd8, 0x8d, + 0xa8, 0x0a, 0xbb, 0x24, 0x06, 0xc6, 0x35, 0xbe, 0xf9, 0x6c, 0x62, 0x1c, 0x54, 0x0f, 0x9c, 0x00, + 0x64, 0x56, 0x1b, 0xb7, 0xb2, 0x70, 0xc0, 0xe3, 0xfe, 0xf1, 0xa1, 0x8d, 0x5c, 0xe4, 0x35, 0x82, + 0x79, 0x5f, 0x62, 0x85, 0x80, 0x21, 0x4b, 0xa8, 0xb0, 0x7f, 0xb9, 0xc8, 0xfb, 0x1b, 0xcc, 0x7b, + 0xeb, 0x16, 0xe1, 0xff, 0x8c, 0x33, 0xc5, 0xc2, 0xec, 0x00, 0x18, 0x97, 0xb6, 0xe9, 0x9a, 0xde, + 0xbf, 0xbd, 0x75, 0x5f, 0xcb, 0xfb, 0xa5, 0xbc, 0x5f, 0xcb, 0xfb, 0x25, 0xa3, 0x77, 0x36, 0x9a, + 0x74, 0x8c, 0x97, 0x49, 0x67, 0x2b, 0x65, 0xaa, 0x3f, 0x88, 0xfc, 0x18, 0x72, 0x52, 0x7b, 0xd5, + 0x65, 0x47, 0x26, 0x17, 0x44, 0x5d, 0x17, 0x54, 0x56, 0x17, 0xee, 0x1f, 0x3b, 0xde, 0x37, 0xa9, + 0x32, 0x58, 0xf0, 0x62, 0xdd, 0x21, 0xbc, 0x24, 0x68, 0x1e, 0x32, 0xce, 0x78, 0xaa, 0xed, 0x35, + 0x7e, 0xd4, 0xde, 0x07, 0x37, 0xd6, 0x36, 0x5e, 0xce, 0x42, 0xa9, 0xf4, 0x3f, 0x1c, 0x51, 0x96, + 0xf6, 0x95, 0xfd, 0xdb, 0x45, 0x9e, 0x19, 0x7c, 0x9a, 0x5b, 0xbb, 0x78, 0x25, 0x1e, 0x08, 0x41, + 0xf9, 0x22, 0xbd, 0x59, 0xd1, 0xbf, 0x82, 0xac, 0x35, 0xdc, 0x8c, 0x33, 0x90, 0x34, 0xb1, 0xff, + 0xb8, 0xc8, 0x6b, 0x05, 0x75, 0xd7, 0xeb, 0x8d, 0xa6, 0x0e, 0x1a, 0x4f, 0x1d, 0xf4, 0x34, 0x75, + 0xd0, 0xcd, 0xcc, 0x31, 0xc6, 0x33, 0xc7, 0x78, 0x98, 0x39, 0xc6, 0xe9, 0xfb, 0x4d, 0x14, 0xe5, + 0x09, 0x15, 0x39, 0xe3, 0x8a, 0x94, 0x51, 0xbc, 0x7a, 0x0b, 0x63, 0xb5, 0x4f, 0xd4, 0xac, 0x52, + 0xb4, 0xff, 0x1a, 0x00, 0x00, 0xff, 0xff, 0xe9, 0x02, 0xfd, 0xac, 0xa7, 0x02, 0x00, 0x00, } func (m *RewardPool) Marshal() (dAtA []byte, err error) { diff --git a/x/reward/types/tx.pb.go b/x/reward/types/tx.pb.go index 4a7c863f1..b7e74480d 100644 --- a/x/reward/types/tx.pb.go +++ b/x/reward/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: reward/tx.proto +// source: spn/reward/tx.proto package types @@ -8,9 +8,9 @@ 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" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -41,7 +41,7 @@ func (m *MsgSetRewards) Reset() { *m = MsgSetRewards{} } func (m *MsgSetRewards) String() string { return proto.CompactTextString(m) } func (*MsgSetRewards) ProtoMessage() {} func (*MsgSetRewards) Descriptor() ([]byte, []int) { - return fileDescriptor_837cc604acddc9f4, []int{0} + return fileDescriptor_192686481304f833, []int{0} } func (m *MsgSetRewards) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -109,7 +109,7 @@ func (m *MsgSetRewardsResponse) Reset() { *m = MsgSetRewardsResponse{} } func (m *MsgSetRewardsResponse) String() string { return proto.CompactTextString(m) } func (*MsgSetRewardsResponse) ProtoMessage() {} func (*MsgSetRewardsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_837cc604acddc9f4, []int{1} + return fileDescriptor_192686481304f833, []int{1} } func (m *MsgSetRewardsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -167,40 +167,40 @@ func (m *MsgSetRewardsResponse) GetNewLastRewardHeight() int64 { } func init() { - proto.RegisterType((*MsgSetRewards)(nil), "tendermint.spn.reward.MsgSetRewards") - proto.RegisterType((*MsgSetRewardsResponse)(nil), "tendermint.spn.reward.MsgSetRewardsResponse") -} - -func init() { proto.RegisterFile("reward/tx.proto", fileDescriptor_837cc604acddc9f4) } - -var fileDescriptor_837cc604acddc9f4 = []byte{ - // 416 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x53, 0xbd, 0x8e, 0xd3, 0x40, - 0x10, 0xf6, 0xc6, 0x01, 0x85, 0x45, 0x11, 0x68, 0x21, 0x92, 0x71, 0xe1, 0x58, 0x11, 0x12, 0x16, - 0x82, 0x5d, 0x12, 0x3a, 0xca, 0x84, 0x02, 0xa4, 0xa4, 0x31, 0x1d, 0x34, 0xf8, 0x67, 0xe5, 0x58, - 0x24, 0xbb, 0x96, 0x67, 0xf3, 0x43, 0x4b, 0x4d, 0x81, 0xa8, 0x79, 0x02, 0xde, 0xe0, 0xde, 0x20, - 0x65, 0xca, 0xab, 0x72, 0xa7, 0xe4, 0x2d, 0xae, 0x3a, 0xd9, 0x4e, 0x72, 0xc9, 0x5d, 0x4e, 0x4a, - 0x77, 0x57, 0x79, 0x66, 0xbe, 0x99, 0xf1, 0xf7, 0xed, 0xcc, 0xe0, 0x27, 0x29, 0x9f, 0x78, 0x69, - 0xc8, 0xd4, 0x94, 0x26, 0xa9, 0x54, 0x92, 0xd4, 0x14, 0x17, 0x21, 0x4f, 0x87, 0xb1, 0x50, 0x14, - 0x12, 0x41, 0x0b, 0xdc, 0xb4, 0x02, 0x09, 0x43, 0x09, 0xcc, 0xf7, 0x80, 0xb3, 0x71, 0xd3, 0xe7, - 0xca, 0x6b, 0xb2, 0x40, 0xc6, 0xa2, 0x28, 0x33, 0x9f, 0x47, 0x32, 0x92, 0xb9, 0xc9, 0x32, 0xab, - 0x88, 0x36, 0x7e, 0x95, 0x70, 0xb5, 0x07, 0xd1, 0x17, 0xae, 0xdc, 0xbc, 0x0d, 0x10, 0x13, 0x57, - 0x92, 0x54, 0x8e, 0xe3, 0x90, 0xa7, 0x06, 0xb2, 0x91, 0xf3, 0xc8, 0xdd, 0xfa, 0x19, 0x36, 0xf0, - 0x46, 0x22, 0xe8, 0x7f, 0xfe, 0x68, 0x94, 0x6c, 0xe4, 0x94, 0xdd, 0xad, 0x4f, 0x7e, 0x23, 0xfc, - 0x20, 0xfb, 0x1d, 0x18, 0xba, 0xad, 0x3b, 0x8f, 0x5b, 0x2f, 0x68, 0x41, 0x88, 0x66, 0x84, 0xe8, - 0x9a, 0x10, 0xed, 0xc8, 0x58, 0xb4, 0xbf, 0xcd, 0x16, 0x75, 0xed, 0x62, 0x51, 0x7f, 0x15, 0xc5, - 0xaa, 0x3f, 0xf2, 0x69, 0x20, 0x87, 0x6c, 0xcd, 0xbe, 0xf8, 0xbc, 0x85, 0xf0, 0x07, 0x53, 0x3f, - 0x13, 0x0e, 0x79, 0xc1, 0xff, 0xb3, 0xba, 0x73, 0x64, 0x2a, 0xb8, 0x05, 0x09, 0xf2, 0x1a, 0x3f, - 0x1d, 0x78, 0xb0, 0x56, 0xf5, 0x89, 0xc7, 0x51, 0x5f, 0x19, 0x65, 0x1b, 0x39, 0xba, 0x7b, 0x23, - 0xde, 0x38, 0xd1, 0x71, 0x6d, 0xef, 0x11, 0x5c, 0x0e, 0x89, 0x14, 0xc0, 0xc9, 0x3f, 0x84, 0xab, - 0x49, 0xca, 0xc7, 0xb1, 0x1c, 0x41, 0xde, 0xde, 0x40, 0x77, 0x2a, 0x6e, 0x9f, 0x0c, 0xf9, 0x80, - 0x8d, 0x4d, 0xa0, 0x7b, 0x5d, 0x6c, 0x29, 0x17, 0x7b, 0x2b, 0x4e, 0xfe, 0x22, 0x5c, 0x11, 0x7c, - 0xd2, 0xb9, 0x07, 0x23, 0xdb, 0xf2, 0x20, 0xef, 0xf0, 0x33, 0xc1, 0x27, 0xdd, 0xc3, 0x83, 0x3b, - 0x04, 0xb5, 0x22, 0xac, 0xf7, 0x20, 0x22, 0xdf, 0x31, 0xde, 0xd9, 0xe1, 0x97, 0xf4, 0xe0, 0x8d, - 0xd0, 0xbd, 0x21, 0x9b, 0x6f, 0x8e, 0xc9, 0xda, 0xac, 0x42, 0xbb, 0x3d, 0x5b, 0x5a, 0x68, 0xbe, - 0xb4, 0xd0, 0xf9, 0xd2, 0x42, 0x7f, 0x56, 0x96, 0x36, 0x5f, 0x59, 0xda, 0xe9, 0xca, 0xd2, 0xbe, - 0xee, 0x0a, 0xbd, 0xea, 0xc8, 0x20, 0x11, 0x6c, 0xca, 0x36, 0xd7, 0x9b, 0xc9, 0xf5, 0x1f, 0xe6, - 0x47, 0xf7, 0xfe, 0x32, 0x00, 0x00, 0xff, 0xff, 0x08, 0x89, 0x34, 0xfe, 0xd4, 0x03, 0x00, 0x00, + proto.RegisterType((*MsgSetRewards)(nil), "spn.reward.MsgSetRewards") + proto.RegisterType((*MsgSetRewardsResponse)(nil), "spn.reward.MsgSetRewardsResponse") +} + +func init() { proto.RegisterFile("spn/reward/tx.proto", fileDescriptor_192686481304f833) } + +var fileDescriptor_192686481304f833 = []byte{ + // 412 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x53, 0xbd, 0xae, 0xd3, 0x30, + 0x18, 0x8d, 0x9b, 0x82, 0x8a, 0x51, 0x25, 0xe4, 0x82, 0x94, 0x66, 0x48, 0x43, 0x17, 0x22, 0x24, + 0x6c, 0x5a, 0x36, 0xc6, 0x96, 0x01, 0x50, 0x3b, 0x10, 0x36, 0x98, 0xf2, 0x63, 0xa5, 0x11, 0xad, + 0x1d, 0xe5, 0x73, 0x7f, 0x58, 0x99, 0x19, 0x10, 0x33, 0x4f, 0xc0, 0x1b, 0xf0, 0x06, 0x1d, 0x3b, + 0x32, 0x15, 0xd4, 0xbe, 0x05, 0x13, 0x4a, 0xd2, 0xe6, 0xb6, 0xf7, 0xb6, 0xd2, 0xdd, 0xee, 0x9d, + 0x62, 0x9f, 0xe3, 0x7c, 0x39, 0x27, 0xc7, 0x07, 0x37, 0x20, 0x11, 0x2c, 0xe5, 0x73, 0x2f, 0x0d, + 0x99, 0x5a, 0xd0, 0x24, 0x95, 0x4a, 0x12, 0x0c, 0x89, 0xa0, 0x05, 0x68, 0x5a, 0x81, 0x84, 0x89, + 0x04, 0xe6, 0x7b, 0xc0, 0xd9, 0xac, 0xe3, 0x73, 0xe5, 0x75, 0x58, 0x20, 0x63, 0x51, 0x9c, 0x35, + 0x1f, 0x46, 0x32, 0x92, 0xf9, 0x92, 0x65, 0xab, 0x02, 0x6d, 0x7f, 0xa9, 0xe0, 0xfa, 0x10, 0xa2, + 0xf7, 0x5c, 0xb9, 0xf9, 0x18, 0x20, 0x26, 0xae, 0x25, 0xa9, 0x9c, 0xc5, 0x21, 0x4f, 0x0d, 0x64, + 0x23, 0xe7, 0x9e, 0x5b, 0xee, 0x33, 0x6e, 0xec, 0x4d, 0x45, 0x30, 0x7a, 0xf3, 0xca, 0xa8, 0xd8, + 0xc8, 0xa9, 0xba, 0xe5, 0x9e, 0x7c, 0x45, 0xf8, 0x4e, 0xf6, 0x39, 0x30, 0x74, 0x5b, 0x77, 0xee, + 0x77, 0x9b, 0xb4, 0x10, 0x44, 0x33, 0x41, 0x74, 0x27, 0x88, 0xf6, 0x65, 0x2c, 0x7a, 0x1f, 0x97, + 0xeb, 0x96, 0xf6, 0x6f, 0xdd, 0x7a, 0x12, 0xc5, 0x6a, 0x34, 0xf5, 0x69, 0x20, 0x27, 0x6c, 0xa7, + 0xbe, 0x78, 0x3c, 0x83, 0xf0, 0x13, 0x53, 0x9f, 0x13, 0x0e, 0xf9, 0x0b, 0x3f, 0xff, 0xb4, 0x9c, + 0x6b, 0x1e, 0x05, 0xb7, 0x10, 0x41, 0x9e, 0xe2, 0x07, 0x63, 0x0f, 0x76, 0xae, 0x5e, 0xf3, 0x38, + 0x1a, 0x29, 0xa3, 0x6a, 0x23, 0x47, 0x77, 0xaf, 0xe0, 0xed, 0x5f, 0x3a, 0x7e, 0x74, 0xf4, 0x13, + 0x5c, 0x0e, 0x89, 0x14, 0xc0, 0xc9, 0x0f, 0x84, 0xeb, 0x49, 0xca, 0x67, 0xb1, 0x9c, 0x42, 0x3e, + 0xde, 0x40, 0x37, 0x6a, 0xee, 0x58, 0x0c, 0x79, 0x89, 0x8d, 0x3d, 0x30, 0xb8, 0x6c, 0xb6, 0x92, + 0x9b, 0x3d, 0xcb, 0x93, 0xef, 0x08, 0xd7, 0x04, 0x9f, 0xf7, 0x6f, 0x41, 0x64, 0xa5, 0x0e, 0xf2, + 0x1c, 0x37, 0x04, 0x9f, 0x0f, 0x4e, 0x07, 0x77, 0x8a, 0xea, 0xbe, 0xc3, 0xfa, 0x10, 0x22, 0xf2, + 0x16, 0xe3, 0x83, 0x3b, 0xdc, 0xa4, 0x17, 0xc5, 0xa0, 0x47, 0xc9, 0x9a, 0x8f, 0xcf, 0x52, 0xfb, + 0xd0, 0x7b, 0xbd, 0xe5, 0xc6, 0x42, 0xab, 0x8d, 0x85, 0xfe, 0x6e, 0x2c, 0xf4, 0x6d, 0x6b, 0x69, + 0xab, 0xad, 0xa5, 0xfd, 0xde, 0x5a, 0xda, 0x87, 0x43, 0x4b, 0x8a, 0x8b, 0x90, 0xa7, 0x93, 0x58, + 0x28, 0x96, 0x55, 0x73, 0x51, 0x96, 0x33, 0x33, 0xe6, 0xdf, 0xcd, 0xeb, 0xf5, 0xe2, 0x7f, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x27, 0x82, 0x7c, 0x6e, 0xb7, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -228,7 +228,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) SetRewards(ctx context.Context, in *MsgSetRewards, opts ...grpc.CallOption) (*MsgSetRewardsResponse, error) { out := new(MsgSetRewardsResponse) - err := c.cc.Invoke(ctx, "/tendermint.spn.reward.Msg/SetRewards", in, out, opts...) + err := c.cc.Invoke(ctx, "/spn.reward.Msg/SetRewards", in, out, opts...) if err != nil { return nil, err } @@ -262,7 +262,7 @@ func _Msg_SetRewards_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/tendermint.spn.reward.Msg/SetRewards", + FullMethod: "/spn.reward.Msg/SetRewards", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).SetRewards(ctx, req.(*MsgSetRewards)) @@ -271,7 +271,7 @@ func _Msg_SetRewards_Handler(srv interface{}, ctx context.Context, dec func(inte } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "tendermint.spn.reward.Msg", + ServiceName: "spn.reward.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -280,7 +280,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "reward/tx.proto", + Metadata: "spn/reward/tx.proto", } func (m *MsgSetRewards) Marshal() (dAtA []byte, err error) {