diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ce559ef290..8c7b7fa46e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,10 +18,10 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 - - uses: actions/setup-go@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.18.3 - name: Build binary file run: | make build diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml index 11ebc86c35..a22192fa54 100644 --- a/.github/workflows/goreleaser.yml +++ b/.github/workflows/goreleaser.yml @@ -9,12 +9,12 @@ jobs: runs-on: ubuntu-latest environment: release steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 with: submodules: true - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.18.3 - name: Setup release env env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a9d4db8eed..2b9dd37abd 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -12,10 +12,10 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v2.4.0 - - uses: actions/setup-go@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.18.3 - name: Install golint run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.44.0 # TODO: Remove after fixing lint @@ -27,10 +27,10 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v2.4.0 - - uses: actions/setup-go@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.18.3 # TODO: Remove after fixing format - name: Run format check if: ${{ false }} diff --git a/.github/workflows/proto.yml b/.github/workflows/proto.yml index a39ab71d6d..1f8587aaf7 100644 --- a/.github/workflows/proto.yml +++ b/.github/workflows/proto.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 5 steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - name: update proto dependency run: make proto-update-deps - name: format-check diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6fea607deb..6dd92473e7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,9 +12,9 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v2.4.0 - - uses: actions/setup-go@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 with: - go-version: 1.18 + go-version: 1.18.3 - name: Run go test run: make test diff --git a/.tool-versions b/.tool-versions index 4933a41e2e..00c8508d03 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1 @@ -golang 1.18 +golang 1.18.3 diff --git a/Dockerfile b/Dockerfile index 1750f17907..c8264d31a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM likecoin/rbuilder:cf0d1a9f3731e30540bbfa36a36d13e4dcccf5eb as builder +FROM likecoin/rbuilder:go1.18.3 as builder USER root ARG LIKED_VERSION=unknown @@ -20,7 +20,7 @@ ENV COMMIT=$LIKED_COMMIT RUN rm -rf /sources/artifacts RUN /bin/bash -c /sources/.build.sh -FROM debian:buster +FROM debian:bullseye RUN groupadd --gid 1000 likechain \ && useradd --uid 1000 --gid likechain --shell /bin/bash likechain diff --git a/Makefile b/Makefile index 92a87b4d33..eb2546f107 100644 --- a/Makefile +++ b/Makefile @@ -9,10 +9,10 @@ DOCKER := $(shell which docker) DOCKER_BUF := $(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace bufbuild/buf LIKE_HOME := '$(HOME)/.liked' IMAGE_TAG = likecoin/likecoin-chain:$(VERSION) -RBUILDER_IMAGE_TAG = likecoin/rbuilder:go1.18 +RBUILDER_IMAGE_TAG = likecoin/rbuilder:go1.18.3 BUILDDIR ?= $(CURDIR)/build GOPATH ?= '$(HOME)/go' -GOLANG_VERSION ?= 1.18 +GOLANG_VERSION ?= 1.18.3 GOLANG_CROSS_VERSION := v$(GOLANG_VERSION) ############################################################################### diff --git a/app/app.go b/app/app.go index f89563394a..5758105cdd 100644 --- a/app/app.go +++ b/app/app.go @@ -86,19 +86,13 @@ import ( ibcclient "github.com/cosmos/ibc-go/v2/modules/core/02-client" ibcclientclient "github.com/cosmos/ibc-go/v2/modules/core/02-client/client" ibcclienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" - ibcconnectiontypes "github.com/cosmos/ibc-go/v2/modules/core/03-connection/types" porttypes "github.com/cosmos/ibc-go/v2/modules/core/05-port/types" ibchost "github.com/cosmos/ibc-go/v2/modules/core/24-host" ibckeeper "github.com/cosmos/ibc-go/v2/modules/core/keeper" - "github.com/likecoin/likecoin-chain/v2/x/iscn" - iscnkeeper "github.com/likecoin/likecoin-chain/v2/x/iscn/keeper" - iscntypes "github.com/likecoin/likecoin-chain/v2/x/iscn/types" - - bech32authmigration "github.com/likecoin/likecoin-chain/v2/bech32-migration/auth" - bech32govmigration "github.com/likecoin/likecoin-chain/v2/bech32-migration/gov" - bech32slashingmigration "github.com/likecoin/likecoin-chain/v2/bech32-migration/slashing" - bech32stakingmigration "github.com/likecoin/likecoin-chain/v2/bech32-migration/staking" + "github.com/likecoin/likecoin-chain/v3/x/iscn" + iscnkeeper "github.com/likecoin/likecoin-chain/v3/x/iscn/keeper" + iscntypes "github.com/likecoin/likecoin-chain/v3/x/iscn/types" ) var ( @@ -512,32 +506,34 @@ func NewLikeApp( // Upgrade Handler func (app *LikeApp) registerUpgradeHandlers() { - app.UpgradeKeeper.SetUpgradeHandler("v2.0.0", func(ctx sdk.Context, plan upgradetypes.Plan, _ module.VersionMap) (module.VersionMap, error) { - app.IBCKeeper.ConnectionKeeper.SetParams(ctx, ibcconnectiontypes.DefaultParams()) - - ctx.Logger().Info("First step: Migrate sdk modules") - // using 1 as fromVersion to avoid running InitGenesis for existing modules - // note newer sdk already guarantees auth module is migrated last - fromVM := make(map[string]uint64) - for moduleName := range app.mm.Modules { - fromVM[moduleName] = 1 + app.UpgradeKeeper.SetUpgradeHandler("v3.0.0", func(ctx sdk.Context, plan upgradetypes.Plan, fromVM module.VersionMap) (module.VersionMap, error) { + // Migration for ibc-go v2.1.0 to v2.3.0: Support base denoms with slashes + // Ref: https://github.com/cosmos/ibc-go/blob/main/docs/migrations/support-denoms-with-slashes.md + + // list of traces that must replace the old traces in store + var newTraces []ibctransfertypes.DenomTrace + equalTraces := func(dtA, dtB ibctransfertypes.DenomTrace) bool { + return dtA.BaseDenom == dtB.BaseDenom && dtA.Path == dtB.Path } - // exclude new modules to not skip InitGenesis - delete(fromVM, authz.ModuleName) - delete(fromVM, feegrant.ModuleName) - // run - newVM, err := app.mm.RunMigrations(ctx, app.configurator, fromVM) - if err != nil { - return nil, err + app.TransferKeeper.IterateDenomTraces(ctx, + func(dt ibctransfertypes.DenomTrace) bool { + // check if the new way of splitting FullDenom + // into Trace and BaseDenom passes validation and + // is the same as the current DenomTrace. + // If it isn't then store the new DenomTrace in the list of new traces. + newTrace := ibctransfertypes.ParseDenomTrace(dt.GetFullDenomPath()) + if err := newTrace.Validate(); err == nil && !equalTraces(newTrace, dt) { + newTraces = append(newTraces, newTrace) + } + return false + }) + + // replace the outdated traces with the new trace information + for _, nt := range newTraces { + app.TransferKeeper.SetDenomTrace(ctx, nt) } - ctx.Logger().Info("Second step: Migrate addresses stored in bech32 form to use new prefix") - bech32stakingmigration.MigrateAddressBech32(ctx, app.keys[stakingtypes.StoreKey], app.appCodec) - bech32slashingmigration.MigrateAddressBech32(ctx, app.keys[slashingtypes.StoreKey], app.appCodec) - bech32govmigration.MigrateAddressBech32(ctx, app.keys[govtypes.StoreKey], app.appCodec) - bech32authmigration.MigrateAddressBech32(ctx, app.keys[authtypes.StoreKey], app.appCodec) - - return newVM, nil + return app.mm.RunMigrations(ctx, app.configurator, fromVM) }) upgradeInfo, err := app.UpgradeKeeper.ReadUpgradeInfoFromDisk() @@ -545,9 +541,10 @@ func (app *LikeApp) registerUpgradeHandlers() { panic(err) } - if upgradeInfo.Name == "v2.0.0" && !app.UpgradeKeeper.IsSkipHeight(upgradeInfo.Height) { + if upgradeInfo.Name == "v3.0.0" && !app.UpgradeKeeper.IsSkipHeight(upgradeInfo.Height) { storeUpgrades := storetypes.StoreUpgrades{ - Added: []string{authz.ModuleName, feegrant.ModuleName}, + // TODO: register x/nft and x/likenft here after rebase + // Added: []string{}, } // configure store loader that checks if version == upgradeHeight and applies store upgrades diff --git a/bech32-migration/auth/auth.go b/bech32-migration/auth/auth.go index 33d80dcdd1..beed7abefc 100644 --- a/bech32-migration/auth/auth.go +++ b/bech32-migration/auth/auth.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/auth/types" vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" - "github.com/likecoin/likecoin-chain/v2/bech32-migration/utils" + "github.com/likecoin/likecoin-chain/v3/bech32-migration/utils" ) func MigrateAddressBech32(ctx sdk.Context, storeKey sdk.StoreKey, cdc codec.BinaryCodec) { diff --git a/bech32-migration/gov/gov.go b/bech32-migration/gov/gov.go index 502f25bc50..3852e7f59e 100644 --- a/bech32-migration/gov/gov.go +++ b/bech32-migration/gov/gov.go @@ -8,7 +8,7 @@ import ( distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/likecoin/likecoin-chain/v2/bech32-migration/utils" + "github.com/likecoin/likecoin-chain/v3/bech32-migration/utils" ) func MigrateAddressBech32(ctx sdk.Context, storeKey sdk.StoreKey, cdc codec.BinaryCodec) { diff --git a/bech32-migration/slashing/slashing.go b/bech32-migration/slashing/slashing.go index d60dd96e38..9ba5628e4d 100644 --- a/bech32-migration/slashing/slashing.go +++ b/bech32-migration/slashing/slashing.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/slashing/types" - "github.com/likecoin/likecoin-chain/v2/bech32-migration/utils" + "github.com/likecoin/likecoin-chain/v3/bech32-migration/utils" ) func MigrateAddressBech32(ctx sdk.Context, storeKey sdk.StoreKey, cdc codec.BinaryCodec) { diff --git a/bech32-migration/staking/staking.go b/bech32-migration/staking/staking.go index e4111da7cf..1244226a4c 100644 --- a/bech32-migration/staking/staking.go +++ b/bech32-migration/staking/staking.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/likecoin/likecoin-chain/v2/bech32-migration/utils" + "github.com/likecoin/likecoin-chain/v3/bech32-migration/utils" ) func MigrateAddressBech32(ctx sdk.Context, storeKey sdk.StoreKey, cdc codec.BinaryCodec) { diff --git a/bech32-migration/test/migrate.go b/bech32-migration/test/migrate.go index 1f5785c1b4..ea742c833d 100644 --- a/bech32-migration/test/migrate.go +++ b/bech32-migration/test/migrate.go @@ -10,19 +10,19 @@ import ( "github.com/cosmos/cosmos-sdk/server/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/crisis" - "github.com/likecoin/likecoin-chain/v2/testutil" + "github.com/likecoin/likecoin-chain/v3/testutil" - bech32migrationtestutil "github.com/likecoin/likecoin-chain/v2/bech32-migration/testutil" + bech32migrationtestutil "github.com/likecoin/likecoin-chain/v3/bech32-migration/testutil" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - bech32authmigration "github.com/likecoin/likecoin-chain/v2/bech32-migration/auth" - bech32govmigration "github.com/likecoin/likecoin-chain/v2/bech32-migration/gov" - bech32slashingmigration "github.com/likecoin/likecoin-chain/v2/bech32-migration/slashing" - bech32stakingmigration "github.com/likecoin/likecoin-chain/v2/bech32-migration/staking" + bech32authmigration "github.com/likecoin/likecoin-chain/v3/bech32-migration/auth" + bech32govmigration "github.com/likecoin/likecoin-chain/v3/bech32-migration/gov" + bech32slashingmigration "github.com/likecoin/likecoin-chain/v3/bech32-migration/slashing" + bech32stakingmigration "github.com/likecoin/likecoin-chain/v3/bech32-migration/staking" ) type MTAppOptions struct{} diff --git a/bech32-migration/testutil/auth.go b/bech32-migration/testutil/auth.go index 197fd71028..10605e6743 100644 --- a/bech32-migration/testutil/auth.go +++ b/bech32-migration/testutil/auth.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/auth/types" vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types" - "github.com/likecoin/likecoin-chain/v2/bech32-migration/utils" + "github.com/likecoin/likecoin-chain/v3/bech32-migration/utils" ) func AssertAuthAddressBech32(ctx sdk.Context, storeKey sdk.StoreKey, cdc codec.BinaryCodec) bool { diff --git a/bech32-migration/testutil/gov.go b/bech32-migration/testutil/gov.go index 971afd726d..99be54de95 100644 --- a/bech32-migration/testutil/gov.go +++ b/bech32-migration/testutil/gov.go @@ -10,7 +10,7 @@ import ( distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/likecoin/likecoin-chain/v2/bech32-migration/utils" + "github.com/likecoin/likecoin-chain/v3/bech32-migration/utils" ) func AssertGovAddressBech32(ctx sdk.Context, storeKey sdk.StoreKey, cdc codec.BinaryCodec) bool { diff --git a/bech32-migration/testutil/slashing.go b/bech32-migration/testutil/slashing.go index 3412c50008..f74652811e 100644 --- a/bech32-migration/testutil/slashing.go +++ b/bech32-migration/testutil/slashing.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/slashing/types" - "github.com/likecoin/likecoin-chain/v2/bech32-migration/utils" + "github.com/likecoin/likecoin-chain/v3/bech32-migration/utils" ) func AssertSlashingAddressBech32(ctx sdk.Context, storeKey sdk.StoreKey, cdc codec.BinaryCodec) bool { diff --git a/bech32-migration/testutil/staking.go b/bech32-migration/testutil/staking.go index df10f3d8a3..e78811d237 100644 --- a/bech32-migration/testutil/staking.go +++ b/bech32-migration/testutil/staking.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/likecoin/likecoin-chain/v2/bech32-migration/utils" + "github.com/likecoin/likecoin-chain/v3/bech32-migration/utils" ) func AssertStakingAddressBech32(ctx sdk.Context, storeKey sdk.StoreKey, cdc codec.BinaryCodec) bool { diff --git a/cmd/liked/cmd/cmd.go b/cmd/liked/cmd/cmd.go index 36bf8ca136..fde4d8eb00 100644 --- a/cmd/liked/cmd/cmd.go +++ b/cmd/liked/cmd/cmd.go @@ -14,7 +14,7 @@ import ( "github.com/tendermint/tendermint/libs/log" dbm "github.com/tendermint/tm-db" - "github.com/likecoin/likecoin-chain/v2/app" + "github.com/likecoin/likecoin-chain/v3/app" "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/codec" @@ -44,7 +44,7 @@ import ( simappcli "github.com/cosmos/cosmos-sdk/simapp/simd/cmd" - "github.com/likecoin/likecoin-chain/v2/ip" + "github.com/likecoin/likecoin-chain/v3/ip" serverconfig "github.com/cosmos/cosmos-sdk/server/config" ) diff --git a/cmd/liked/main.go b/cmd/liked/main.go index 7642cc657c..9a6f1c1ba5 100644 --- a/cmd/liked/main.go +++ b/cmd/liked/main.go @@ -1,6 +1,6 @@ package main -import "github.com/likecoin/likecoin-chain/v2/cmd/liked/cmd" +import "github.com/likecoin/likecoin-chain/v3/cmd/liked/cmd" func main() { cmd.Execute() diff --git a/deploy/.tool-versions b/deploy/.tool-versions index 4933a41e2e..00c8508d03 100644 --- a/deploy/.tool-versions +++ b/deploy/.tool-versions @@ -1 +1 @@ -golang 1.18 +golang 1.18.3 diff --git a/docker/Dockerfile b/docker/Dockerfile index 369b828000..302f365988 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.18-alpine AS base +FROM golang:1.18.3-alpine AS base RUN apk update && apk add --no-cache build-base git bash curl linux-headers ca-certificates WORKDIR / diff --git a/dual_prefix_tests/bank_test.go b/dual_prefix_tests/bank_test.go index 47414d8aad..c718e70b28 100644 --- a/dual_prefix_tests/bank_test.go +++ b/dual_prefix_tests/bank_test.go @@ -4,7 +4,7 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/likecoin/likecoin-chain/v2/testutil" + "github.com/likecoin/likecoin-chain/v3/testutil" "github.com/stretchr/testify/require" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" diff --git a/dual_prefix_tests/iscn_test.go b/dual_prefix_tests/iscn_test.go index bf7de8824d..f2b782440b 100644 --- a/dual_prefix_tests/iscn_test.go +++ b/dual_prefix_tests/iscn_test.go @@ -4,8 +4,8 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/likecoin/likecoin-chain/v2/testutil" - iscntypes "github.com/likecoin/likecoin-chain/v2/x/iscn/types" + "github.com/likecoin/likecoin-chain/v3/testutil" + iscntypes "github.com/likecoin/likecoin-chain/v3/x/iscn/types" "github.com/stretchr/testify/require" ) diff --git a/go.mod b/go.mod index 1e62fab9c9..e45af4ceb3 100644 --- a/go.mod +++ b/go.mod @@ -1,10 +1,10 @@ -module github.com/likecoin/likecoin-chain/v2 +module github.com/likecoin/likecoin-chain/v3 go 1.18 require ( - github.com/cosmos/cosmos-sdk v0.44.8 - github.com/cosmos/ibc-go/v2 v2.1.0 + github.com/cosmos/cosmos-sdk v0.45.6 + github.com/cosmos/ibc-go/v2 v2.3.0 github.com/gogo/protobuf v1.3.3 github.com/golang/protobuf v1.5.2 github.com/gorilla/mux v1.8.0 @@ -17,7 +17,7 @@ require ( github.com/stretchr/testify v1.7.1 github.com/tendermint/tendermint v0.34.19 github.com/tendermint/tm-db v0.6.6 - google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa + google.golang.org/genproto v0.0.0-20211223182754-3ac035c7e7cb google.golang.org/grpc v1.45.0 ) @@ -128,10 +128,10 @@ require ( nhooyr.io/websocket v1.8.6 // indirect ) -// point sdk to fork and follow replaces at https://github.com/cosmos/cosmos-sdk/blob/v0.44.8/go.mod +// point sdk to fork and follow replaces at https://github.com/cosmos/cosmos-sdk/blob/v0.45.6/go.mod replace ( github.com/99designs/keyring => github.com/cosmos/keyring v1.1.7-0.20210622111912-ef00f8ac3d76 - github.com/cosmos/cosmos-sdk => github.com/likecoin/cosmos-sdk v0.44.8-dual-prefix-hotfix-3 + github.com/cosmos/cosmos-sdk => github.com/likecoin/cosmos-sdk v0.45.6-dual-prefix github.com/gin-gonic/gin => github.com/gin-gonic/gin v1.7.0 github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 google.golang.org/grpc => google.golang.org/grpc v1.33.2 diff --git a/go.sum b/go.sum index 41b3206f30..fcb152cca4 100644 --- a/go.sum +++ b/go.sum @@ -140,7 +140,6 @@ github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQ github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/bits-and-blooms/bitset v1.2.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= github.com/bketelsen/crypt v0.0.3-0.20200106085610-5cbc8cc4026c/go.mod h1:MKsuJmJgSg28kpZDP6UIiPt0e0Oz0kqKNGyRaWEPv84= -github.com/bketelsen/crypt v0.0.4/go.mod h1:aI6NrJ0pMGgvZKL1iVgXLnfIFJtfV+bKCoqOes/6LfM= github.com/btcsuite/btcd v0.0.0-20171128150713-2e60448ffcc6/go.mod h1:Dmm/EzmjnCiweXmzRIAiUWCInVmPgjkzgv5k4tVyXiQ= github.com/btcsuite/btcd v0.0.0-20190115013929-ed77733ec07d/go.mod h1:d3C0AkH6BRcvO8T0UEPu53cnw4IbV63x1bEjildYhO0= github.com/btcsuite/btcd v0.0.0-20190315201642-aa6e0f35703c/go.mod h1:DrZx5ec/dmnfpw9KyYoQyYo7d0KEvTkk/5M/vbZjAr8= @@ -219,8 +218,8 @@ 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/iavl v0.17.3 h1:s2N819a2olOmiauVa0WAhoIJq9EhSXE9HDBAoR9k+8Y= github.com/cosmos/iavl v0.17.3/go.mod h1:prJoErZFABYZGDHka1R6Oay4z9PrNeFFiMKHDAMOi4w= -github.com/cosmos/ibc-go/v2 v2.1.0 h1:+tV7cvT4rA+MyiHF8lZn60V0zpYa4mAFPifc74Qzt/4= -github.com/cosmos/ibc-go/v2 v2.1.0/go.mod h1:v3DgNy4Uh+6znWqG1eAqjrpouZn8jozUDdg2Z+4WeH0= +github.com/cosmos/ibc-go/v2 v2.3.0 h1:/+j8i83NsPjdepsefPAMs1YcFtD531Z7I/X6WWpe204= +github.com/cosmos/ibc-go/v2 v2.3.0/go.mod h1:cS41UWIsZXjrOuqYWKuzLZhIgn95QUpdCB0prV/ZLdk= github.com/cosmos/keyring v1.1.7-0.20210622111912-ef00f8ac3d76 h1:DdzS1m6o/pCqeZ8VOAit/gyATedRgjvkVI+UCrLpyuU= github.com/cosmos/keyring v1.1.7-0.20210622111912-ef00f8ac3d76/go.mod h1:0mkLWIoZuQ7uBoospo5Q9zIpqq6rYCPJDSUdeCJvPM8= github.com/cosmos/ledger-cosmos-go v0.11.1 h1:9JIYsGnXP613pb2vPjFeMMjBI5lEDsEaF6oYorTy6J4= @@ -446,7 +445,6 @@ github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5m 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/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= -github.com/gordonklaus/ineffassign v0.0.0-20200309095847-7953dde2c7bf/go.mod h1:cuNKsD1zp2v6XfE/orVX2QE1LC+i254ceGcVeDT3pTU= github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= github.com/gorilla/handlers v1.5.1 h1:9lRY6j8DEeeBT10CvO9hGW0gmky0BprnvDI5vfhUHH4= github.com/gorilla/handlers v1.5.1/go.mod h1:t8XrUpc4KVXb7HGyJ4/cEnwQiaxrX/hz1Zv/4g96P1Q= @@ -552,7 +550,6 @@ github.com/jedisct1/go-minisign v0.0.0-20190909160543-45766022959e/go.mod h1:G1C github.com/jessevdk/go-flags v0.0.0-20141203071132-1679536dcc89/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= github.com/jhump/protoreflect v1.9.0 h1:npqHz788dryJiR/l6K/RUQAyh2SwV91+d1dnh4RjO9w= -github.com/jhump/protoreflect v1.9.0/go.mod h1:7GcYQDdMU/O/BBrl/cX6PNHpXh6cenjd8pneu5yW7Tg= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= @@ -610,8 +607,8 @@ github.com/libp2p/go-buffer-pool v0.0.2 h1:QNK2iAFa8gjAe1SPz6mHSMuCcjs+X1wlHzeOS github.com/libp2p/go-buffer-pool v0.0.2/go.mod h1:MvaB6xw5vOrDl8rYZGLFdKAuk/hRoRZd1Vi32+RXyFM= github.com/lightstep/lightstep-tracer-common/golang/gogo v0.0.0-20190605223551-bc2310a04743/go.mod h1:qklhhLq1aX+mtWk9cPHPzaBjWImj5ULL6C7HFJtXQMM= github.com/lightstep/lightstep-tracer-go v0.18.1/go.mod h1:jlF1pusYV4pidLvZ+XD0UBX0ZE6WURAspgAczcDHrL4= -github.com/likecoin/cosmos-sdk v0.44.8-dual-prefix-hotfix-3 h1:hDeHrHYBJqEXhaSXYXB1AIBdGtJBLsdqB0gkpCueGlk= -github.com/likecoin/cosmos-sdk v0.44.8-dual-prefix-hotfix-3/go.mod h1:xkaQHdLk55zxd1C2sR6dKh53QVoBW0IWFsKv3nQKwtY= +github.com/likecoin/cosmos-sdk v0.45.6-dual-prefix h1:9d+CcWOhVJLqQzlAF+SBsodaq+tCPbVJ6PTg5yOzu/Y= +github.com/likecoin/cosmos-sdk v0.45.6-dual-prefix/go.mod h1:bPeeVMEtVvH3y3xAGHVbK+/CZlpaazzh77hG8ZrcJpI= github.com/lucasjones/reggen v0.0.0-20180717132126-cdb49ff09d77/go.mod h1:5ELEyG+X8f+meRWHuqUOewBOhvHkl7M76pdGEansxW4= github.com/lyft/protoc-gen-star v0.5.3/go.mod h1:V0xaHgaf5oCCqmcxYcWiDfTiKsZsRc87/1qhoTACD8w= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= @@ -666,7 +663,6 @@ github.com/mitchellh/iochan v1.0.0/go.mod h1:JwYml1nuB7xOzsp52dPpHFffvOCDupsG0Qu github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.3.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= -github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mitchellh/mapstructure v1.4.2/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mitchellh/mapstructure v1.4.3 h1:OVowDSCllw/YjdLkam3/sm7wEtOy59d8ndGgCcyj8cs= github.com/mitchellh/mapstructure v1.4.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= @@ -720,7 +716,6 @@ github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OS github.com/neilotoole/errgroup v0.1.5/go.mod h1:Q2nLGf+594h0CLBs/Mbg6qOr7GtqDK7C2S41udRnToE= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= -github.com/nishanths/predeclared v0.0.0-20200524104333-86fad755b4d3/go.mod h1:nt3d53pc1VYcphSCIaYAJtnPYnr3Zyn8fMq2wvPGPso= github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE= github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= @@ -736,7 +731,6 @@ github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108 github.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= github.com/onsi/ginkgo v1.16.2/go.mod h1:CObGmKUOKaSC0RjmoAK7tKyn4Azo5P2IWuoMnvwxz1E= github.com/onsi/ginkgo v1.16.4 h1:29JGrr5oVBm5ulCWet69zQkzWipVXIol6ygQUe/EzNc= -github.com/onsi/ginkgo v1.16.4/go.mod h1:dX+/inL/fNMqNlz0e9LfyB9TswhZpCVdJM/Z6Vvnwo0= 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= github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= @@ -769,11 +763,6 @@ github.com/openzipkin/zipkin-go v0.2.5/go.mod h1:KpXfKdgRDnnhsxw4pNIH9Md5lyFqKUa github.com/ory/dockertest v3.3.5+incompatible h1:iLLK6SQwIhcbrG783Dghaaa3WPzGc+4Emza6EbVUUGA= github.com/ory/dockertest v3.3.5+incompatible/go.mod h1:1vX4m9wsvi00u5bseYwXaSnhNrne+V0E6LAcBILJdPs= github.com/otiai10/copy v1.6.0 h1:IinKAryFFuPONZ7cm6T6E2QX/vcJwSnlaA5lfoaXIiQ= -github.com/otiai10/copy v1.6.0/go.mod h1:XWfuS3CrI0R6IE0FbgHsEazaXO8G0LpMp9o8tos0x4E= -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= -github.com/otiai10/mint v1.3.2/go.mod h1:/yxELlJQ0ufhjUwhshSj+wFjZ78CnZ48/1wtmBH1OTc= github.com/pact-foundation/pact-go v1.0.4/go.mod h1:uExwJY4kCzNPcHRj+hCR/HBbOOIwwtUjcrb0b5/5kLM= github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= github.com/pascaldekloe/goe v0.1.0 h1:cBOtyMzM9HTpWjXfbbunk26uA6nG3a8n06Wieeh0MwY= @@ -781,7 +770,6 @@ github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144T github.com/pborman/uuid v0.0.0-20170112150404-1b00554d8222/go.mod h1:VyrYX9gd7irzKovcSS6BIIEwPRkP2Wm2m9ufcdFSJ34= 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.3/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= github.com/pelletier/go-toml v1.9.4 h1:tjENF6MfZAg8e4ZmZTeWaWiT2vXtsoO6+iuOjFhECwM= github.com/pelletier/go-toml v1.9.4/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac= @@ -901,14 +889,12 @@ github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY52 github.com/spf13/afero v1.6.0 h1:xoax2sJ2DT8S8xA2paPFjDCScCNeWsg75VG0DLRreiY= github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cast v1.3.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cast v1.4.1 h1:s0hze+J0196ZfEMTs80N7UlFt0BDuQ7Q+JDnHiMWKdA= github.com/spf13/cast v1.4.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= github.com/spf13/cobra v1.0.0/go.mod h1:/6GTrnGXV9HjY+aR4k0oJ5tcvakLuG6EuKReYlHNrgE= github.com/spf13/cobra v1.1.1/go.mod h1:WnodtKOvamDL/PwE2M4iKs8aMDBZ5Q5klgD3qfVJQMI= -github.com/spf13/cobra v1.2.1/go.mod h1:ExllRjgxM/piMAM+3tAZvg8fsklGAf3tPfi+i8t68Nk= github.com/spf13/cobra v1.4.0 h1:y+wJpx64xcgO1V+RcnwW0LEHxTKRi2ZDPSBjWnrg88Q= github.com/spf13/cobra v1.4.0/go.mod h1:Wo4iy3BUC+X2Fybo0PDqwJIv3dNRiZLHQymsfxlB84g= github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= @@ -922,7 +908,6 @@ github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DM github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= github.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= github.com/spf13/viper v1.7.1/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg= -github.com/spf13/viper v1.8.1/go.mod h1:o0Pch8wJ9BVSWGQMbra6iw0oQ5oktSIBaujf1rJH9Ns= github.com/spf13/viper v1.10.1 h1:nuJZuYpG7gTj/XqiUwg8bA0cp1+M2mC3J4g5luUYBKk= github.com/spf13/viper v1.10.1/go.mod h1:IGlFPqhNAPKRxohIzWpI5QEy4kuI7tcl5WvR+8qy1rU= github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q= @@ -1181,7 +1166,6 @@ golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ 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-20210402161424-2e8d93401602/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= @@ -1361,10 +1345,8 @@ golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWc golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200522201501-cb1345f3a375/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200717024301-6ddee64345a6/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= @@ -1413,7 +1395,6 @@ google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34q google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= 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.44.0/go.mod h1:EBOGZqzyhtvMDoxwS97ctnh0zUmYY6CxqXsc1AvkYD8= 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= @@ -1499,8 +1480,9 @@ google.golang.org/genproto v0.0.0-20211008145708-270636b82663/go.mod h1:5CzLGKJ6 google.golang.org/genproto v0.0.0-20211028162531-8db9c33dc351/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 h1:I0YcKz0I7OAhddo7ya8kMnvprhcWM045PmkBdMO9zN0= google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211223182754-3ac035c7e7cb h1:ZrsicilzPCS/Xr8qtBZZLpy4P9TYXAfl49ctG1/5tgw= +google.golang.org/genproto v0.0.0-20211223182754-3ac035c7e7cb/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= google.golang.org/grpc v1.33.2 h1:EQyQC3sa8M+p6Ulc8yy9SWSS2GVwyRc83gAbG8lrl4o= google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= @@ -1514,7 +1496,6 @@ google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2 google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= -google.golang.org/protobuf v1.25.1-0.20200805231151-a709e31e5d12/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.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ= @@ -1531,8 +1512,6 @@ gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/gcfg.v1 v1.2.3/go.mod h1:yesOnuUOFQAhST5vPY4nbZsb/huCgGGXlipJsBn0b3o= gopkg.in/ini.v1 v1.51.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/ini.v1 v1.62.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/ini.v1 v1.63.2/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/ini.v1 v1.66.2 h1:XfR1dOYubytKy4Shzc2LHrrGhU0lDCfDGG1yLPmpgsI= gopkg.in/ini.v1 v1.66.2/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c= diff --git a/ibc_tests/transfer_test.go b/ibc_tests/transfer_test.go index c9f01c4cbb..f6e3587bc4 100644 --- a/ibc_tests/transfer_test.go +++ b/ibc_tests/transfer_test.go @@ -4,7 +4,7 @@ import ( "encoding/json" "testing" - likeapp "github.com/likecoin/likecoin-chain/v2/app" + likeapp "github.com/likecoin/likecoin-chain/v3/app" "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" "github.com/tendermint/tendermint/libs/log" diff --git a/proto/iscn/genesis.proto b/proto/iscn/genesis.proto index 9b7192e988..ad8a25081e 100644 --- a/proto/iscn/genesis.proto +++ b/proto/iscn/genesis.proto @@ -5,7 +5,7 @@ package likechain.iscn; import "gogoproto/gogo.proto"; import "iscn/params.proto"; -option go_package = "github.com/likecoin/likecoin-chain/v2/x/iscn/types"; +option go_package = "github.com/likecoin/likecoin-chain/v3/x/iscn/types"; message GenesisState { message ContentIdRecord { diff --git a/proto/iscn/iscnid.proto b/proto/iscn/iscnid.proto index 6b5b235226..804ec831d0 100644 --- a/proto/iscn/iscnid.proto +++ b/proto/iscn/iscnid.proto @@ -4,7 +4,7 @@ package likechain.iscn; import "gogoproto/gogo.proto"; -option go_package = "github.com/likecoin/likecoin-chain/v2/x/iscn/types"; +option go_package = "github.com/likecoin/likecoin-chain/v3/x/iscn/types"; message IscnIdPrefix { option (gogoproto.equal) = true; diff --git a/proto/iscn/params.proto b/proto/iscn/params.proto index 77a693b2d8..6ed88c9749 100644 --- a/proto/iscn/params.proto +++ b/proto/iscn/params.proto @@ -5,7 +5,7 @@ package likechain.iscn; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/likecoin/likecoin-chain/v2/x/iscn/types"; +option go_package = "github.com/likecoin/likecoin-chain/v3/x/iscn/types"; message Params { option (gogoproto.equal) = false; diff --git a/proto/iscn/query.proto b/proto/iscn/query.proto index cbaa2ae950..6ea325bf5d 100644 --- a/proto/iscn/query.proto +++ b/proto/iscn/query.proto @@ -6,7 +6,7 @@ import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "iscn/params.proto"; -option go_package = "github.com/likecoin/likecoin-chain/v2/x/iscn/types"; +option go_package = "github.com/likecoin/likecoin-chain/v3/x/iscn/types"; service Query { // Usage: diff --git a/proto/iscn/store.proto b/proto/iscn/store.proto index 84196fa5d1..c9542ae001 100644 --- a/proto/iscn/store.proto +++ b/proto/iscn/store.proto @@ -5,7 +5,7 @@ package likechain.iscn; import "gogoproto/gogo.proto"; import "iscn/iscnid.proto"; -option go_package = "github.com/likecoin/likecoin-chain/v2/x/iscn/types"; +option go_package = "github.com/likecoin/likecoin-chain/v3/x/iscn/types"; message StoreRecord { IscnId iscn_id = 1 [(gogoproto.nullable) = false]; diff --git a/proto/iscn/tx.proto b/proto/iscn/tx.proto index d0b1b37294..d84e6d192e 100644 --- a/proto/iscn/tx.proto +++ b/proto/iscn/tx.proto @@ -4,7 +4,7 @@ package likechain.iscn; import "gogoproto/gogo.proto"; -option go_package = "github.com/likecoin/likecoin-chain/v2/x/iscn/types"; +option go_package = "github.com/likecoin/likecoin-chain/v3/x/iscn/types"; // Msg defines the bank Msg service. service Msg { diff --git a/testutil/network/network.go b/testutil/network/network.go index 0e902ef650..1788d6c5b1 100644 --- a/testutil/network/network.go +++ b/testutil/network/network.go @@ -17,7 +17,7 @@ import ( tmrand "github.com/tendermint/tendermint/libs/rand" tmdb "github.com/tendermint/tm-db" - "github.com/likecoin/likecoin-chain/v2/app" + "github.com/likecoin/likecoin-chain/v3/app" ) type ( diff --git a/testutil/testing_app.go b/testutil/testing_app.go index 2ddc15640b..75529339ff 100644 --- a/testutil/testing_app.go +++ b/testutil/testing_app.go @@ -23,9 +23,9 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types" - likeapp "github.com/likecoin/likecoin-chain/v2/app" + likeapp "github.com/likecoin/likecoin-chain/v3/app" - "github.com/likecoin/likecoin-chain/v2/x/iscn/types" + "github.com/likecoin/likecoin-chain/v3/x/iscn/types" ) const DefaultNodeHome = "/tmp/.liked-test" diff --git a/x/iscn/app_test.go b/x/iscn/app_test.go index 0d5b0a1389..f2c19ffbb2 100644 --- a/x/iscn/app_test.go +++ b/x/iscn/app_test.go @@ -15,10 +15,10 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types" - "github.com/likecoin/likecoin-chain/v2/x/iscn/keeper" - "github.com/likecoin/likecoin-chain/v2/x/iscn/types" + "github.com/likecoin/likecoin-chain/v3/x/iscn/keeper" + "github.com/likecoin/likecoin-chain/v3/x/iscn/types" - testutil "github.com/likecoin/likecoin-chain/v2/testutil" + testutil "github.com/likecoin/likecoin-chain/v3/testutil" ) var ( diff --git a/x/iscn/client/cli/query.go b/x/iscn/client/cli/query.go index 1a3b05fb1c..07edeb31c6 100644 --- a/x/iscn/client/cli/query.go +++ b/x/iscn/client/cli/query.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/likecoin/likecoin-chain/v2/x/iscn/types" + "github.com/likecoin/likecoin-chain/v3/x/iscn/types" ) const ( diff --git a/x/iscn/client/cli/tx.go b/x/iscn/client/cli/tx.go index 613e3f433d..bac5af3382 100644 --- a/x/iscn/client/cli/tx.go +++ b/x/iscn/client/cli/tx.go @@ -14,7 +14,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/version" - "github.com/likecoin/likecoin-chain/v2/x/iscn/types" + "github.com/likecoin/likecoin-chain/v3/x/iscn/types" ) func NewTxCmd() *cobra.Command { diff --git a/x/iscn/handler.go b/x/iscn/handler.go index f981508873..0aebb0354d 100644 --- a/x/iscn/handler.go +++ b/x/iscn/handler.go @@ -4,8 +4,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/likecoin/likecoin-chain/v2/x/iscn/keeper" - "github.com/likecoin/likecoin-chain/v2/x/iscn/types" + "github.com/likecoin/likecoin-chain/v3/x/iscn/keeper" + "github.com/likecoin/likecoin-chain/v3/x/iscn/types" ) func NewHandler(k keeper.Keeper) sdk.Handler { diff --git a/x/iscn/keeper/alias.go b/x/iscn/keeper/alias.go index 6e06e5a71e..4bc6df7bdd 100644 --- a/x/iscn/keeper/alias.go +++ b/x/iscn/keeper/alias.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/likecoin/likecoin-chain/v2/x/iscn/types" + "github.com/likecoin/likecoin-chain/v3/x/iscn/types" ) type ( diff --git a/x/iscn/keeper/genesis.go b/x/iscn/keeper/genesis.go index a9cf4039da..a6a1cad50b 100644 --- a/x/iscn/keeper/genesis.go +++ b/x/iscn/keeper/genesis.go @@ -4,7 +4,7 @@ import ( "encoding/json" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/likecoin/likecoin-chain/v2/x/iscn/types" + "github.com/likecoin/likecoin-chain/v3/x/iscn/types" ) func (k Keeper) InitGenesis(ctx sdk.Context, genesis *types.GenesisState) { diff --git a/x/iscn/keeper/grpc_query.go b/x/iscn/keeper/grpc_query.go index 4d599476cf..72f88efdfc 100644 --- a/x/iscn/keeper/grpc_query.go +++ b/x/iscn/keeper/grpc_query.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/likecoin/likecoin-chain/v2/x/iscn/types" + "github.com/likecoin/likecoin-chain/v3/x/iscn/types" ) const FingerprintRecordsPageLimit = 100 diff --git a/x/iscn/keeper/invariants.go b/x/iscn/keeper/invariants.go index 3a40fa4ed7..4ffbaf6450 100644 --- a/x/iscn/keeper/invariants.go +++ b/x/iscn/keeper/invariants.go @@ -13,7 +13,7 @@ import ( gocid "github.com/ipfs/go-cid" - "github.com/likecoin/likecoin-chain/v2/x/iscn/types" + "github.com/likecoin/likecoin-chain/v3/x/iscn/types" ) const ( diff --git a/x/iscn/keeper/keeper.go b/x/iscn/keeper/keeper.go index 8e00e8e1e8..65dbba96ec 100644 --- a/x/iscn/keeper/keeper.go +++ b/x/iscn/keeper/keeper.go @@ -11,7 +11,7 @@ import ( authTypes "github.com/cosmos/cosmos-sdk/x/auth/types" paramTypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/likecoin/likecoin-chain/v2/x/iscn/types" + "github.com/likecoin/likecoin-chain/v3/x/iscn/types" ) type AccountKeeper interface { diff --git a/x/iscn/keeper/msg_server.go b/x/iscn/keeper/msg_server.go index b8a234f52a..dfd3647254 100644 --- a/x/iscn/keeper/msg_server.go +++ b/x/iscn/keeper/msg_server.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/likecoin/likecoin-chain/v2/x/iscn/types" + "github.com/likecoin/likecoin-chain/v3/x/iscn/types" ) type msgServer struct { diff --git a/x/iscn/module.go b/x/iscn/module.go index 3d85c86a93..070a88ac2e 100644 --- a/x/iscn/module.go +++ b/x/iscn/module.go @@ -16,9 +16,9 @@ import ( "github.com/spf13/cobra" abci "github.com/tendermint/tendermint/abci/types" - "github.com/likecoin/likecoin-chain/v2/x/iscn/client/cli" - "github.com/likecoin/likecoin-chain/v2/x/iscn/keeper" - "github.com/likecoin/likecoin-chain/v2/x/iscn/types" + "github.com/likecoin/likecoin-chain/v3/x/iscn/client/cli" + "github.com/likecoin/likecoin-chain/v3/x/iscn/keeper" + "github.com/likecoin/likecoin-chain/v3/x/iscn/types" ) var ( diff --git a/x/iscn/types/genesis.pb.go b/x/iscn/types/genesis.pb.go index 80357ee067..be14c9263c 100644 --- a/x/iscn/types/genesis.pb.go +++ b/x/iscn/types/genesis.pb.go @@ -144,29 +144,29 @@ func init() { func init() { proto.RegisterFile("iscn/genesis.proto", fileDescriptor_540482c90f072702) } var fileDescriptor_540482c90f072702 = []byte{ - // 344 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x91, 0xc1, 0x4a, 0xf3, 0x40, - 0x14, 0x85, 0x93, 0xa6, 0x7f, 0x7f, 0x3a, 0xad, 0xd5, 0x0e, 0x45, 0x43, 0x17, 0x69, 0x10, 0x84, - 0x2c, 0x34, 0x81, 0xd8, 0x27, 0xa8, 0x0b, 0x09, 0xb8, 0x90, 0x08, 0x2e, 0xdc, 0xd4, 0x74, 0x32, - 0xa4, 0x83, 0xed, 0x4c, 0xc8, 0x4c, 0xab, 0xbe, 0x85, 0x2f, 0x25, 0x74, 0xd9, 0xa5, 0xb8, 0x28, - 0xd2, 0xbc, 0x88, 0xcc, 0x4c, 0x28, 0xb6, 0xbb, 0xb9, 0xe7, 0x9e, 0xf3, 0x5d, 0xe6, 0x5e, 0x00, - 0x09, 0x47, 0x34, 0xc8, 0x30, 0xc5, 0x9c, 0x70, 0x3f, 0x2f, 0x98, 0x60, 0xb0, 0x33, 0x23, 0x2f, - 0x18, 0x4d, 0x13, 0x42, 0x7d, 0xd9, 0xed, 0xf7, 0x32, 0x96, 0x31, 0xd5, 0x0a, 0xe4, 0x4b, 0xbb, - 0xfa, 0x5d, 0x95, 0xcc, 0x93, 0x22, 0x99, 0x57, 0xc1, 0xf3, 0xcf, 0x1a, 0x68, 0xdf, 0x6a, 0xd4, - 0x83, 0x48, 0x04, 0x86, 0x43, 0xd0, 0xd0, 0x06, 0xdb, 0x74, 0x4d, 0xaf, 0x15, 0x9e, 0xfa, 0xfb, - 0x68, 0xff, 0x5e, 0x75, 0x47, 0xf5, 0xd5, 0x66, 0x60, 0xc4, 0x95, 0x17, 0x3e, 0x03, 0x88, 0x18, - 0x15, 0x98, 0x8a, 0x31, 0x49, 0xc7, 0x05, 0x46, 0xac, 0x48, 0xb9, 0x5d, 0x73, 0x2d, 0xaf, 0x15, - 0x5e, 0x1e, 0x12, 0xfe, 0xce, 0xf3, 0x6f, 0x74, 0x2c, 0x4a, 0x63, 0x15, 0xaa, 0xb8, 0x27, 0x68, - 0x5f, 0xe6, 0x70, 0x08, 0xda, 0x32, 0xbc, 0x63, 0x5b, 0xae, 0xe5, 0xb5, 0x47, 0x5d, 0xe9, 0xfe, - 0xde, 0x0c, 0x9a, 0x11, 0x47, 0x34, 0xa2, 0xf9, 0x42, 0xc4, 0x2d, 0x69, 0xab, 0x52, 0xfd, 0x0c, - 0x1c, 0x1f, 0x0c, 0x80, 0x67, 0xe0, 0xbf, 0x02, 0x91, 0x54, 0xfd, 0xb0, 0x19, 0x37, 0x64, 0x19, - 0xa5, 0xb0, 0x07, 0xfe, 0xb1, 0x57, 0x8a, 0x0b, 0xbb, 0xa6, 0x64, 0x5d, 0xc0, 0x0b, 0xd0, 0x99, - 0x25, 0x02, 0x73, 0x31, 0x5e, 0xe2, 0x82, 0x13, 0x46, 0x6d, 0xcb, 0x35, 0xbd, 0x7a, 0x7c, 0xa4, - 0xd5, 0x47, 0x2d, 0x8e, 0xee, 0x56, 0x5b, 0xc7, 0x5c, 0x6f, 0x1d, 0xf3, 0x67, 0xeb, 0x98, 0x1f, - 0xa5, 0x63, 0xac, 0x4b, 0xc7, 0xf8, 0x2a, 0x1d, 0xe3, 0x29, 0xcc, 0x88, 0x98, 0x2e, 0x26, 0x3e, - 0x62, 0xf3, 0x40, 0x2d, 0x82, 0x11, 0xba, 0x7b, 0x5c, 0xa9, 0xb5, 0x04, 0xcb, 0x30, 0x78, 0x0b, - 0xd4, 0x71, 0xc4, 0x7b, 0x8e, 0xf9, 0xa4, 0xa1, 0x8e, 0x73, 0xfd, 0x1b, 0x00, 0x00, 0xff, 0xff, - 0x12, 0x2c, 0xe7, 0xf6, 0xeb, 0x01, 0x00, 0x00, + // 343 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x91, 0x41, 0x4f, 0xc2, 0x30, + 0x14, 0xc7, 0x37, 0x86, 0x18, 0x0a, 0xa2, 0x34, 0x44, 0x17, 0x0e, 0x63, 0x31, 0x31, 0xd9, 0x41, + 0xb7, 0x04, 0xf8, 0x04, 0x78, 0x30, 0x4b, 0x3c, 0x98, 0x99, 0x78, 0xf0, 0x82, 0xa3, 0x6b, 0x46, + 0x23, 0xb4, 0xcb, 0x5a, 0x50, 0xbf, 0x85, 0x5f, 0xca, 0x84, 0x23, 0x47, 0xe3, 0x81, 0x18, 0xf6, + 0x45, 0x4c, 0xdb, 0x85, 0x08, 0xb7, 0xbe, 0xff, 0xfb, 0xff, 0x7f, 0x2f, 0x7d, 0x0f, 0x40, 0xc2, + 0x11, 0x0d, 0x52, 0x4c, 0x31, 0x27, 0xdc, 0xcf, 0x72, 0x26, 0x18, 0x6c, 0xcd, 0xc8, 0x2b, 0x46, + 0xd3, 0x98, 0x50, 0x5f, 0x76, 0xbb, 0x9d, 0x94, 0xa5, 0x4c, 0xb5, 0x02, 0xf9, 0xd2, 0xae, 0x6e, + 0x5b, 0x25, 0xb3, 0x38, 0x8f, 0xe7, 0x65, 0xf0, 0xf2, 0xab, 0x02, 0x9a, 0x77, 0x1a, 0xf5, 0x28, + 0x62, 0x81, 0xe1, 0x10, 0xd4, 0xb4, 0xc1, 0x36, 0x5d, 0xd3, 0x6b, 0xf4, 0xcf, 0xfd, 0x7d, 0xb4, + 0xff, 0xa0, 0xba, 0xa3, 0xea, 0x6a, 0xd3, 0x33, 0xa2, 0xd2, 0x0b, 0x5f, 0x00, 0x44, 0x8c, 0x0a, + 0x4c, 0xc5, 0x98, 0x24, 0xe3, 0x1c, 0x23, 0x96, 0x27, 0xdc, 0xae, 0xb8, 0x96, 0xd7, 0xe8, 0x5f, + 0x1f, 0x12, 0xfe, 0xcf, 0xf3, 0x6f, 0x75, 0x2c, 0x4c, 0x22, 0x15, 0x2a, 0xb9, 0x67, 0x68, 0x5f, + 0xe6, 0x70, 0x08, 0x9a, 0x32, 0xbc, 0x63, 0x5b, 0xae, 0xe5, 0x35, 0x47, 0x6d, 0xe9, 0xfe, 0xd9, + 0xf4, 0xea, 0x21, 0x47, 0x34, 0xa4, 0xd9, 0x42, 0x44, 0x0d, 0x69, 0x2b, 0x53, 0xdd, 0x14, 0x9c, + 0x1e, 0x0c, 0x80, 0x17, 0xe0, 0x58, 0x81, 0x48, 0xa2, 0x7e, 0x58, 0x8f, 0x6a, 0xb2, 0x0c, 0x13, + 0xd8, 0x01, 0x47, 0xec, 0x8d, 0xe2, 0xdc, 0xae, 0x28, 0x59, 0x17, 0xf0, 0x0a, 0xb4, 0x66, 0xb1, + 0xc0, 0x5c, 0x8c, 0x97, 0x38, 0xe7, 0x84, 0x51, 0xdb, 0x72, 0x4d, 0xaf, 0x1a, 0x9d, 0x68, 0xf5, + 0x49, 0x8b, 0xa3, 0xfb, 0xd5, 0xd6, 0x31, 0xd7, 0x5b, 0xc7, 0xfc, 0xdd, 0x3a, 0xe6, 0x67, 0xe1, + 0x18, 0xeb, 0xc2, 0x31, 0xbe, 0x0b, 0xc7, 0x78, 0xee, 0xa7, 0x44, 0x4c, 0x17, 0x13, 0x1f, 0xb1, + 0x79, 0xa0, 0x16, 0xc1, 0x08, 0xdd, 0x3d, 0x6e, 0xd4, 0x5a, 0x82, 0xe5, 0x20, 0x78, 0x0f, 0xd4, + 0x71, 0xc4, 0x47, 0x86, 0xf9, 0xa4, 0xa6, 0x8e, 0x33, 0xf8, 0x0b, 0x00, 0x00, 0xff, 0xff, 0xd2, + 0x48, 0xcf, 0xe1, 0xeb, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/iscn/types/iscnid.pb.go b/x/iscn/types/iscnid.pb.go index 19ca85ce23..aac4f79ab8 100644 --- a/x/iscn/types/iscnid.pb.go +++ b/x/iscn/types/iscnid.pb.go @@ -149,8 +149,8 @@ var fileDescriptor_954c94e7d9de942f = []byte{ 0xf2, 0x39, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xa3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xb0, 0xbd, 0xf9, 0x99, 0x79, 0x70, 0x86, 0x2e, - 0xd8, 0x15, 0xfa, 0x65, 0x46, 0xfa, 0x15, 0xe0, 0x50, 0xd4, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, - 0x62, 0x03, 0x07, 0x92, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x45, 0x12, 0x24, 0x65, 0x5f, 0x01, + 0xd8, 0x15, 0xfa, 0x65, 0xc6, 0xfa, 0x15, 0xe0, 0x50, 0xd4, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, + 0x62, 0x03, 0x07, 0x92, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x85, 0x76, 0x0c, 0x72, 0x5f, 0x01, 0x00, 0x00, } diff --git a/x/iscn/types/params.pb.go b/x/iscn/types/params.pb.go index 0ce77c0235..92cf3ec251 100644 --- a/x/iscn/types/params.pb.go +++ b/x/iscn/types/params.pb.go @@ -68,25 +68,25 @@ func init() { func init() { proto.RegisterFile("iscn/params.proto", fileDescriptor_298b1f4ec809e756) } var fileDescriptor_298b1f4ec809e756 = []byte{ - // 283 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x3c, 0x90, 0x31, 0x4b, 0x33, 0x31, - 0x1c, 0xc6, 0x93, 0x97, 0x97, 0x82, 0x67, 0x15, 0x2d, 0x0e, 0xa5, 0x48, 0xae, 0xe8, 0xd2, 0xc5, - 0x84, 0x9e, 0x9b, 0xe3, 0xd9, 0x51, 0xa4, 0x74, 0x74, 0x39, 0x72, 0xe1, 0xdf, 0x6b, 0xd0, 0x4b, - 0x8e, 0x24, 0x16, 0x6f, 0x73, 0x11, 0x1c, 0x1d, 0x1d, 0xef, 0xe3, 0x74, 0xec, 0xe8, 0x20, 0x22, - 0x77, 0x8b, 0x1f, 0x43, 0x2e, 0xa7, 0x6e, 0x3f, 0x9e, 0x84, 0xff, 0x8f, 0xe7, 0x09, 0x0e, 0xa5, - 0x15, 0x8a, 0x15, 0xdc, 0xf0, 0xdc, 0xd2, 0xc2, 0x68, 0xa7, 0x07, 0xfb, 0x77, 0xf2, 0x16, 0xc4, - 0x8a, 0x4b, 0x45, 0xdb, 0xc7, 0x11, 0x11, 0xda, 0xe6, 0xda, 0xb2, 0x94, 0x5b, 0x60, 0xeb, 0x69, - 0x0a, 0x8e, 0x4f, 0x99, 0xd0, 0x52, 0x75, 0xff, 0x47, 0x47, 0x99, 0xce, 0xb4, 0x47, 0xd6, 0x52, - 0x97, 0x9e, 0x3c, 0xe1, 0xa0, 0x37, 0xf7, 0x67, 0x07, 0xa7, 0xc1, 0x9e, 0x81, 0x4c, 0x5a, 0x67, - 0xca, 0x44, 0xf1, 0x1c, 0x86, 0x78, 0x8c, 0x27, 0x3b, 0x8b, 0xfe, 0x6f, 0x78, 0xcd, 0x73, 0x18, - 0xcc, 0x82, 0xfe, 0x12, 0x20, 0x29, 0xc0, 0x24, 0x69, 0xe9, 0x60, 0xf8, 0x6f, 0x8c, 0x27, 0xbb, - 0xd1, 0x31, 0xed, 0xe4, 0xb4, 0x95, 0xd3, 0x1f, 0x39, 0x9d, 0x81, 0xb8, 0xd4, 0x52, 0xc5, 0xff, - 0x37, 0x1f, 0x21, 0x5a, 0x04, 0x4b, 0x80, 0x39, 0x98, 0xb8, 0x74, 0x70, 0x71, 0xf0, 0x5c, 0x85, - 0xe8, 0xb5, 0x0a, 0xd1, 0x57, 0x15, 0xa2, 0xc7, 0xf7, 0x31, 0x8a, 0xaf, 0x36, 0x35, 0xc1, 0xdb, - 0x9a, 0xe0, 0xcf, 0x9a, 0xe0, 0x97, 0x86, 0xa0, 0x6d, 0x43, 0xd0, 0x5b, 0x43, 0xd0, 0x4d, 0x94, - 0x49, 0xb7, 0xba, 0x4f, 0xa9, 0xd0, 0x39, 0xf3, 0x95, 0xb5, 0x54, 0x7f, 0x70, 0xe6, 0x07, 0x60, - 0xeb, 0x88, 0x3d, 0x30, 0x3f, 0x91, 0x2b, 0x0b, 0xb0, 0x69, 0xcf, 0x97, 0x3b, 0xff, 0x0e, 0x00, - 0x00, 0xff, 0xff, 0xb4, 0x1c, 0x75, 0x1a, 0x37, 0x01, 0x00, 0x00, + // 282 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x3c, 0x90, 0x31, 0x4b, 0x03, 0x31, + 0x18, 0x86, 0x13, 0x91, 0x82, 0x67, 0x15, 0x2d, 0x0e, 0xa5, 0x48, 0xae, 0xe8, 0xd2, 0xc5, 0x84, + 0xb6, 0x9b, 0xe3, 0xd9, 0x51, 0xa4, 0x74, 0x74, 0x39, 0x72, 0xe1, 0xeb, 0x35, 0xe8, 0x25, 0x47, + 0x12, 0x8b, 0xb7, 0xb9, 0x08, 0x8e, 0x8e, 0x8e, 0xf7, 0x73, 0x3a, 0x76, 0x74, 0x10, 0x91, 0xbb, + 0xc5, 0x9f, 0x21, 0x97, 0x53, 0xb7, 0x87, 0x37, 0xe1, 0x7b, 0x78, 0xdf, 0xe0, 0x58, 0x5a, 0xa1, + 0x58, 0xce, 0x0d, 0xcf, 0x2c, 0xcd, 0x8d, 0x76, 0xba, 0x77, 0x78, 0x2f, 0xef, 0x40, 0xac, 0xb8, + 0x54, 0xb4, 0x79, 0x1c, 0x10, 0xa1, 0x6d, 0xa6, 0x2d, 0x4b, 0xb8, 0x05, 0xb6, 0x1e, 0x27, 0xe0, + 0xf8, 0x98, 0x09, 0x2d, 0x55, 0xfb, 0x7f, 0x70, 0x92, 0xea, 0x54, 0x7b, 0x64, 0x0d, 0xb5, 0xe9, + 0xd9, 0x33, 0x0e, 0x3a, 0x73, 0x7f, 0xb6, 0x77, 0x1e, 0x1c, 0x18, 0x48, 0xa5, 0x75, 0xa6, 0x88, + 0x15, 0xcf, 0xa0, 0x8f, 0x87, 0x78, 0xb4, 0xb7, 0xe8, 0xfe, 0x85, 0x37, 0x3c, 0x83, 0xde, 0x2c, + 0xe8, 0x2e, 0x01, 0xe2, 0x1c, 0x4c, 0x9c, 0x14, 0x0e, 0xfa, 0x3b, 0x43, 0x3c, 0xda, 0x9f, 0x9c, + 0xd2, 0x56, 0x4e, 0x1b, 0x39, 0xfd, 0x95, 0xd3, 0x19, 0x88, 0x2b, 0x2d, 0x55, 0xb4, 0xbb, 0xf9, + 0x0c, 0xd1, 0x22, 0x58, 0x02, 0xcc, 0xc1, 0x44, 0x85, 0x83, 0xcb, 0xa3, 0x97, 0x32, 0x44, 0x6f, + 0x65, 0x88, 0xbe, 0xcb, 0x10, 0x3d, 0x7d, 0x0c, 0x51, 0x74, 0xbd, 0xa9, 0x08, 0xde, 0x56, 0x04, + 0x7f, 0x55, 0x04, 0xbf, 0xd6, 0x04, 0x6d, 0x6b, 0x82, 0xde, 0x6b, 0x82, 0x6e, 0x27, 0xa9, 0x74, + 0xab, 0x87, 0x84, 0x0a, 0x9d, 0x31, 0x5f, 0x59, 0x4b, 0xf5, 0x0f, 0x17, 0x7e, 0x00, 0xb6, 0x9e, + 0xb2, 0x47, 0xe6, 0x27, 0x72, 0x45, 0x0e, 0x36, 0xe9, 0xf8, 0x72, 0xd3, 0x9f, 0x00, 0x00, 0x00, + 0xff, 0xff, 0x74, 0x78, 0x5d, 0x0d, 0x37, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/iscn/types/query.pb.go b/x/iscn/types/query.pb.go index 5411525692..0b4d5996b7 100644 --- a/x/iscn/types/query.pb.go +++ b/x/iscn/types/query.pb.go @@ -786,56 +786,56 @@ func init() { proto.RegisterFile("iscn/query.proto", fileDescriptor_06598f8bde0a var fileDescriptor_06598f8bde0adb8a = []byte{ // 801 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x56, 0x4f, 0x4f, 0xdb, 0x48, - 0x1c, 0x8d, 0x49, 0x08, 0xcb, 0x04, 0x10, 0x0c, 0x59, 0xc8, 0x9a, 0xdd, 0x10, 0x8c, 0x80, 0x2c, - 0x88, 0x78, 0x37, 0xbb, 0x9f, 0x20, 0x48, 0xbb, 0x1b, 0xed, 0x4a, 0x4b, 0x8d, 0xd4, 0x4a, 0xbd, - 0x44, 0xc6, 0x1e, 0xc2, 0x88, 0x30, 0x63, 0x3c, 0x13, 0x0a, 0x54, 0x55, 0xa5, 0x1e, 0xda, 0x53, - 0xa5, 0x4a, 0xbd, 0x56, 0xfd, 0x3c, 0x1c, 0x91, 0x7a, 0xa9, 0x7a, 0x40, 0x15, 0xf4, 0x5b, 0xf4, - 0x52, 0xcd, 0x1f, 0x27, 0x76, 0x48, 0x02, 0xed, 0xa1, 0xb7, 0xf1, 0x6f, 0x9e, 0xdf, 0x7b, 0xbf, - 0xdf, 0xcc, 0xb3, 0x0c, 0xa6, 0x31, 0xf3, 0x88, 0x7d, 0xd4, 0x46, 0xe1, 0x69, 0x25, 0x08, 0x29, - 0xa7, 0x70, 0xaa, 0x85, 0x0f, 0x90, 0xb7, 0xef, 0x62, 0x52, 0x11, 0x7b, 0x66, 0xbe, 0x49, 0x9b, - 0x54, 0x6e, 0xd9, 0x62, 0xa5, 0x50, 0xe6, 0xcf, 0x4d, 0x4a, 0x9b, 0x2d, 0x64, 0xbb, 0x01, 0xb6, - 0x5d, 0x42, 0x28, 0x77, 0x39, 0xa6, 0x84, 0xe9, 0xdd, 0x19, 0xc9, 0x1a, 0xb8, 0xa1, 0x7b, 0xa8, - 0x4b, 0xd6, 0x36, 0x98, 0xbd, 0x27, 0x54, 0x1c, 0xc4, 0x02, 0x4a, 0x18, 0x72, 0x90, 0x47, 0x43, - 0x1f, 0x42, 0x90, 0xc1, 0x41, 0xcb, 0x2f, 0x18, 0x25, 0xa3, 0x3c, 0xee, 0xc8, 0x35, 0x5c, 0x01, - 0x19, 0xdf, 0xe5, 0x6e, 0x61, 0xa4, 0x64, 0x94, 0x27, 0x6a, 0x33, 0xe7, 0x97, 0x8b, 0xa9, 0x0f, - 0x97, 0x8b, 0xe3, 0x75, 0xe6, 0x91, 0x3a, 0x09, 0xda, 0xdc, 0x91, 0xdb, 0x16, 0x07, 0xf3, 0x9a, - 0x51, 0x30, 0xb1, 0xda, 0x69, 0xdd, 0x77, 0xd0, 0x51, 0x1b, 0x31, 0x0e, 0xe7, 0xc1, 0x98, 0x70, - 0xd0, 0xc0, 0x11, 0x71, 0x56, 0x3c, 0xd6, 0x7d, 0xb8, 0x04, 0x26, 0xf6, 0x42, 0x7a, 0xd8, 0x38, - 0x46, 0x21, 0xc3, 0x94, 0x48, 0x89, 0x8c, 0x93, 0x13, 0xb5, 0xfb, 0xaa, 0x04, 0x7f, 0x01, 0x80, - 0xd3, 0x0e, 0x20, 0x2d, 0x01, 0xe3, 0x9c, 0xea, 0x6d, 0xeb, 0x8d, 0x01, 0x0a, 0x37, 0x65, 0x55, - 0x4f, 0x30, 0x0f, 0x46, 0xe9, 0x23, 0x82, 0x42, 0xad, 0xaa, 0x1e, 0xe0, 0x0a, 0x98, 0x6a, 0xb9, - 0x1c, 0x31, 0xde, 0x23, 0x3b, 0xa9, 0xaa, 0x91, 0xf0, 0x16, 0x18, 0x0b, 0x15, 0x67, 0x21, 0x5d, - 0x4a, 0x97, 0x73, 0xd5, 0xe5, 0x4a, 0xf2, 0x28, 0x2a, 0x7d, 0x06, 0x58, 0xcb, 0x88, 0xf1, 0x38, - 0xd1, 0x9b, 0x16, 0x06, 0xa5, 0xa4, 0xbb, 0xbf, 0x30, 0x69, 0xa2, 0x30, 0x08, 0x31, 0xe1, 0xd1, - 0x74, 0x4a, 0x20, 0xb7, 0xd7, 0xad, 0x6a, 0xaf, 0xf1, 0x12, 0x5c, 0x06, 0x93, 0x72, 0x4c, 0x4c, - 0xbc, 0x41, 0x3c, 0xa4, 0x0d, 0xcb, 0xd9, 0xed, 0xe8, 0x9a, 0xf5, 0xd2, 0x00, 0x4b, 0x43, 0xb4, - 0xf4, 0x48, 0x62, 0x5d, 0x19, 0xdf, 0xda, 0x95, 0xf0, 0x43, 0xd0, 0x09, 0xbf, 0xe1, 0x47, 0x14, - 0x3b, 0x7e, 0x1e, 0x00, 0x33, 0x69, 0xe7, 0x7f, 0x31, 0xfd, 0xa8, 0xe9, 0xfe, 0x47, 0x73, 0xa7, - 0x46, 0x5f, 0x18, 0x60, 0xa1, 0x2f, 0xf3, 0x77, 0x6f, 0x31, 0x0f, 0xa0, 0xa4, 0xda, 0x96, 0xc9, - 0xd2, 0xad, 0x59, 0xff, 0xea, 0x68, 0x45, 0x55, 0x6d, 0xeb, 0x4f, 0x90, 0x55, 0x09, 0x94, 0x2d, - 0xe7, 0xaa, 0x73, 0xbd, 0xae, 0x14, 0x5e, 0x1b, 0xd1, 0x58, 0x6b, 0x55, 0x4b, 0xfc, 0x8d, 0xf8, - 0x16, 0xee, 0x04, 0x6a, 0x1a, 0xa4, 0xbd, 0x4e, 0x98, 0xc4, 0xd2, 0xfa, 0x55, 0x8b, 0x46, 0x38, - 0x2d, 0x0a, 0x75, 0x76, 0x05, 0x72, 0x42, 0x07, 0x75, 0x1d, 0xcc, 0xc5, 0xa0, 0x3b, 0xf8, 0x0c, - 0x0d, 0xa6, 0xdd, 0xd4, 0xa1, 0x8e, 0x63, 0xbb, 0xd4, 0x0c, 0x9f, 0x21, 0x89, 0xce, 0x38, 0x72, - 0xdd, 0x71, 0xfb, 0x8f, 0xcb, 0x86, 0xba, 0xdd, 0xd0, 0x6e, 0x23, 0x5c, 0x37, 0xaf, 0xe8, 0x04, - 0x33, 0x95, 0x81, 0x1f, 0x1c, 0xf5, 0x50, 0xfd, 0x9c, 0x05, 0xa3, 0x12, 0x0d, 0xcf, 0x40, 0x2e, - 0x16, 0x73, 0xb8, 0x36, 0xe0, 0x5c, 0x7b, 0xbf, 0x3f, 0x66, 0xf9, 0x76, 0xa0, 0x72, 0x60, 0x15, - 0x9e, 0xbd, 0xfb, 0xf4, 0x7a, 0x04, 0xc2, 0x69, 0x5b, 0x7e, 0x32, 0xf5, 0x6d, 0xb0, 0xb1, 0x0f, - 0xdf, 0x1a, 0x20, 0xdf, 0x2f, 0x59, 0xf0, 0xb7, 0xe1, 0xe4, 0x37, 0x03, 0x6f, 0xfe, 0xfe, 0x15, - 0x6f, 0x68, 0x5f, 0x4b, 0xd2, 0xd7, 0x02, 0xfc, 0x29, 0xe9, 0x2b, 0xfe, 0x91, 0x78, 0x6e, 0x80, - 0xa9, 0x64, 0x22, 0xe0, 0xfa, 0x70, 0xa1, 0x78, 0x20, 0xcd, 0x8d, 0x3b, 0x61, 0xb5, 0x9d, 0x05, - 0x69, 0xe7, 0x47, 0x38, 0x9b, 0xb4, 0xa3, 0x42, 0x7c, 0x00, 0xb2, 0xea, 0x2a, 0x43, 0xab, 0x2f, - 0x67, 0x22, 0x2d, 0xe6, 0xf2, 0x50, 0x4c, 0xff, 0x63, 0x91, 0xd9, 0x40, 0x1c, 0x85, 0x0c, 0x12, - 0x90, 0x55, 0x77, 0x73, 0x80, 0x58, 0x22, 0x37, 0x03, 0xc4, 0x92, 0x99, 0xe9, 0x6d, 0xae, 0x89, - 0x78, 0xc3, 0xc3, 0xbe, 0xfd, 0xd8, 0xc3, 0xfe, 0x13, 0xa1, 0xa7, 0x2e, 0xed, 0x00, 0xbd, 0xc4, - 0xcd, 0x1f, 0xa0, 0x97, 0xbc, 0xf5, 0xbd, 0x7a, 0xfb, 0x2e, 0x8b, 0xe9, 0x3d, 0x05, 0xa0, 0x9b, - 0x3d, 0xb8, 0x3a, 0xc4, 0x7f, 0x2c, 0xc8, 0xe6, 0xda, 0xad, 0x38, 0xad, 0x5d, 0x92, 0xda, 0x26, - 0x2c, 0x24, 0x7a, 0x6d, 0x88, 0x30, 0x2b, 0x03, 0xb5, 0xff, 0xce, 0xaf, 0x8a, 0xc6, 0xc5, 0x55, - 0xd1, 0xf8, 0x78, 0x55, 0x34, 0x5e, 0x5d, 0x17, 0x53, 0x17, 0xd7, 0xc5, 0xd4, 0xfb, 0xeb, 0x62, - 0xea, 0x61, 0xb5, 0x89, 0xf9, 0x7e, 0x7b, 0xb7, 0xe2, 0xd1, 0x43, 0x5b, 0xca, 0x51, 0x4c, 0x3a, - 0x8b, 0x4d, 0x29, 0x6e, 0x1f, 0x57, 0xed, 0x13, 0x45, 0xcd, 0x4f, 0x03, 0xc4, 0x76, 0xb3, 0xf2, - 0xef, 0xe3, 0x8f, 0x2f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xa2, 0x3a, 0x3e, 0x13, 0xe8, 0x08, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x56, 0x4f, 0x4f, 0x1b, 0x47, + 0x1c, 0xf5, 0x62, 0x63, 0xca, 0x18, 0x10, 0x0c, 0x2e, 0xb8, 0x4b, 0x6b, 0xcc, 0x22, 0xc0, 0x05, + 0xe1, 0x6d, 0x4d, 0x3f, 0x81, 0x91, 0xda, 0x5a, 0xad, 0x54, 0xba, 0x48, 0xad, 0x94, 0x8b, 0xb5, + 0xec, 0x0e, 0x66, 0x84, 0x99, 0x59, 0x76, 0xc6, 0x04, 0x88, 0xa2, 0x48, 0x39, 0x24, 0xa7, 0x48, + 0x91, 0x72, 0x8d, 0xf2, 0x79, 0x38, 0x22, 0xe5, 0x12, 0xe5, 0x80, 0x22, 0xc8, 0xb7, 0xc8, 0x25, + 0x9a, 0x3f, 0x6b, 0xef, 0x1a, 0xdb, 0x90, 0x1c, 0x72, 0x9b, 0xfd, 0xcd, 0xdb, 0xf7, 0xde, 0xef, + 0x37, 0xf3, 0x56, 0x0b, 0xa6, 0x31, 0xf3, 0x88, 0x7d, 0xdc, 0x46, 0xe1, 0x59, 0x25, 0x08, 0x29, + 0xa7, 0x70, 0xaa, 0x85, 0x0f, 0x91, 0x77, 0xe0, 0x62, 0x52, 0x11, 0x7b, 0x66, 0xbe, 0x49, 0x9b, + 0x54, 0x6e, 0xd9, 0x62, 0xa5, 0x50, 0xe6, 0x8f, 0x4d, 0x4a, 0x9b, 0x2d, 0x64, 0xbb, 0x01, 0xb6, + 0x5d, 0x42, 0x28, 0x77, 0x39, 0xa6, 0x84, 0xe9, 0xdd, 0x19, 0xc9, 0x1a, 0xb8, 0xa1, 0x7b, 0xa4, + 0x4b, 0xd6, 0x0e, 0x98, 0xfd, 0x57, 0xa8, 0x38, 0x88, 0x05, 0x94, 0x30, 0xe4, 0x20, 0x8f, 0x86, + 0x3e, 0x84, 0x20, 0x83, 0x83, 0x96, 0x5f, 0x30, 0x4a, 0x46, 0x79, 0xdc, 0x91, 0x6b, 0xb8, 0x02, + 0x32, 0xbe, 0xcb, 0xdd, 0xc2, 0x48, 0xc9, 0x28, 0x4f, 0xd4, 0x66, 0x2e, 0xae, 0x16, 0x53, 0xef, + 0xaf, 0x16, 0xc7, 0xeb, 0xcc, 0x23, 0x75, 0x12, 0xb4, 0xb9, 0x23, 0xb7, 0x2d, 0x0e, 0xe6, 0x35, + 0xa3, 0x60, 0x62, 0xb5, 0xb3, 0xba, 0xef, 0xa0, 0xe3, 0x36, 0x62, 0x1c, 0xce, 0x83, 0x31, 0xe1, + 0xa0, 0x81, 0x23, 0xe2, 0xac, 0x78, 0xac, 0xfb, 0x70, 0x09, 0x4c, 0xec, 0x87, 0xf4, 0xa8, 0x71, + 0x82, 0x42, 0x86, 0x29, 0x91, 0x12, 0x19, 0x27, 0x27, 0x6a, 0xff, 0xa9, 0x12, 0xfc, 0x09, 0x00, + 0x4e, 0x3b, 0x80, 0xb4, 0x04, 0x8c, 0x73, 0xaa, 0xb7, 0xad, 0xd7, 0x06, 0x28, 0xdc, 0x96, 0x55, + 0x3d, 0xc1, 0x3c, 0x18, 0xa5, 0x0f, 0x09, 0x0a, 0xb5, 0xaa, 0x7a, 0x80, 0x2b, 0x60, 0xaa, 0xe5, + 0x72, 0xc4, 0x78, 0x8f, 0xec, 0xa4, 0xaa, 0x46, 0xc2, 0xdb, 0x60, 0x2c, 0x54, 0x9c, 0x85, 0x74, + 0x29, 0x5d, 0xce, 0x55, 0x97, 0x2b, 0xc9, 0xa3, 0xa8, 0xf4, 0x19, 0x60, 0x2d, 0x23, 0xc6, 0xe3, + 0x44, 0x6f, 0x5a, 0x18, 0x94, 0x92, 0xee, 0x7e, 0xc7, 0xa4, 0x89, 0xc2, 0x20, 0xc4, 0x84, 0x47, + 0xd3, 0x29, 0x81, 0xdc, 0x7e, 0xb7, 0xaa, 0xbd, 0xc6, 0x4b, 0x70, 0x19, 0x4c, 0xca, 0x31, 0x31, + 0xf1, 0x06, 0xf1, 0x90, 0x36, 0x2c, 0x67, 0xb7, 0xab, 0x6b, 0xd6, 0x0b, 0x03, 0x2c, 0x0d, 0xd1, + 0xd2, 0x23, 0x89, 0x75, 0x65, 0x7c, 0x6d, 0x57, 0xc2, 0x0f, 0x41, 0xa7, 0xfc, 0x96, 0x1f, 0x51, + 0xec, 0xf8, 0xf9, 0x1f, 0x98, 0x49, 0x3b, 0xff, 0x88, 0xe9, 0x47, 0x4d, 0xf7, 0x3f, 0x9a, 0x7b, + 0x35, 0xfa, 0xdc, 0x00, 0x0b, 0x7d, 0x99, 0xbf, 0x79, 0x8b, 0x79, 0x00, 0x25, 0xd5, 0x8e, 0x4c, + 0x96, 0x6e, 0xcd, 0xfa, 0x4b, 0x47, 0x2b, 0xaa, 0x6a, 0x5b, 0xbf, 0x81, 0xac, 0x4a, 0xa0, 0x6c, + 0x39, 0x57, 0x9d, 0xeb, 0x75, 0xa5, 0xf0, 0xda, 0x88, 0xc6, 0x5a, 0xab, 0x5a, 0xe2, 0x0f, 0xc4, + 0xb7, 0x71, 0x27, 0x50, 0xd3, 0x20, 0xed, 0x75, 0xc2, 0x24, 0x96, 0xd6, 0xcf, 0x5a, 0x34, 0xc2, + 0x69, 0x51, 0xa8, 0xb3, 0x2b, 0x90, 0x13, 0x3a, 0xa8, 0xeb, 0x60, 0x2e, 0x06, 0xdd, 0xc5, 0xe7, + 0x68, 0x30, 0xed, 0xa6, 0x0e, 0x75, 0x1c, 0xdb, 0xa5, 0x66, 0xf8, 0x1c, 0x49, 0x74, 0xc6, 0x91, + 0xeb, 0x8e, 0xdb, 0x3f, 0x5d, 0x36, 0xd4, 0xed, 0x86, 0x76, 0x1b, 0xe1, 0xba, 0x79, 0x45, 0xa7, + 0x98, 0xa9, 0x0c, 0x7c, 0xe7, 0xa8, 0x87, 0xea, 0xa7, 0x2c, 0x18, 0x95, 0x68, 0x78, 0x0e, 0x72, + 0xb1, 0x98, 0xc3, 0xb5, 0x01, 0xe7, 0xda, 0xfb, 0xfd, 0x31, 0xcb, 0x77, 0x03, 0x95, 0x03, 0xab, + 0xf0, 0xf4, 0xed, 0xc7, 0x57, 0x23, 0x10, 0x4e, 0xdb, 0xf2, 0x93, 0xa9, 0x6f, 0x83, 0x8d, 0x7d, + 0xf8, 0xc6, 0x00, 0xf9, 0x7e, 0xc9, 0x82, 0xbf, 0x0c, 0x27, 0xbf, 0x1d, 0x78, 0xf3, 0xd7, 0x2f, + 0x78, 0x43, 0xfb, 0x5a, 0x92, 0xbe, 0x16, 0xe0, 0x0f, 0x49, 0x5f, 0xf1, 0x8f, 0xc4, 0x33, 0x03, + 0x4c, 0x25, 0x13, 0x01, 0xd7, 0x87, 0x0b, 0xc5, 0x03, 0x69, 0x6e, 0xdc, 0x0b, 0xab, 0xed, 0x2c, + 0x48, 0x3b, 0xdf, 0xc3, 0xd9, 0xa4, 0x1d, 0x15, 0xe2, 0x43, 0x90, 0x55, 0x57, 0x19, 0x5a, 0x7d, + 0x39, 0x13, 0x69, 0x31, 0x97, 0x87, 0x62, 0xfa, 0x1f, 0x8b, 0xcc, 0x06, 0xe2, 0x28, 0x64, 0x90, + 0x80, 0xac, 0xba, 0x9b, 0x03, 0xc4, 0x12, 0xb9, 0x19, 0x20, 0x96, 0xcc, 0x4c, 0x6f, 0x73, 0x4d, + 0xc4, 0x1b, 0x1e, 0xf6, 0xed, 0x47, 0x1e, 0xf6, 0x1f, 0x0b, 0x3d, 0x75, 0x69, 0x07, 0xe8, 0x25, + 0x6e, 0xfe, 0x00, 0xbd, 0xe4, 0xad, 0xef, 0xd5, 0x3b, 0x70, 0x59, 0x4c, 0xef, 0x09, 0x00, 0xdd, + 0xec, 0xc1, 0xd5, 0x21, 0xfe, 0x63, 0x41, 0x36, 0xd7, 0xee, 0xc4, 0x69, 0xed, 0x92, 0xd4, 0x36, + 0x61, 0x21, 0xd1, 0x6b, 0x43, 0x84, 0x59, 0x19, 0xa8, 0xfd, 0x7d, 0x71, 0x5d, 0x34, 0x2e, 0xaf, + 0x8b, 0xc6, 0x87, 0xeb, 0xa2, 0xf1, 0xf2, 0xa6, 0x98, 0xba, 0xbc, 0x29, 0xa6, 0xde, 0xdd, 0x14, + 0x53, 0x0f, 0xaa, 0x4d, 0xcc, 0x0f, 0xda, 0x7b, 0x15, 0x8f, 0x1e, 0xd9, 0x52, 0x8e, 0x62, 0xd2, + 0x59, 0x6c, 0x4a, 0x71, 0xfb, 0x64, 0xcb, 0x3e, 0x55, 0xd4, 0xfc, 0x2c, 0x40, 0x6c, 0x2f, 0x2b, + 0xff, 0x3e, 0xb6, 0x3e, 0x07, 0x00, 0x00, 0xff, 0xff, 0x62, 0x5e, 0x16, 0x04, 0xe8, 0x08, 0x00, 0x00, } diff --git a/x/iscn/types/store.pb.go b/x/iscn/types/store.pb.go index 0823c0ff23..59f08b9559 100644 --- a/x/iscn/types/store.pb.go +++ b/x/iscn/types/store.pb.go @@ -136,27 +136,27 @@ func init() { func init() { proto.RegisterFile("iscn/store.proto", fileDescriptor_f257c949a7742486) } var fileDescriptor_f257c949a7742486 = []byte{ - // 319 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x90, 0xc1, 0x4a, 0x3b, 0x31, - 0x10, 0xc6, 0x37, 0xff, 0x7f, 0xa9, 0x36, 0xd5, 0x6a, 0x57, 0x91, 0x52, 0x21, 0x2d, 0x05, 0xa1, - 0x17, 0x13, 0xa8, 0xf8, 0x00, 0xae, 0xa7, 0x82, 0xa7, 0x15, 0x3c, 0x78, 0x59, 0xb6, 0x49, 0x68, - 0x83, 0x35, 0x29, 0x49, 0x5a, 0xed, 0x1b, 0x78, 0xf4, 0xb1, 0x7a, 0xec, 0x51, 0x3c, 0x14, 0xe9, - 0xbe, 0x88, 0x64, 0xb6, 0x0a, 0x5e, 0x96, 0x99, 0xef, 0xb7, 0x33, 0xdf, 0xe4, 0xc3, 0xc7, 0xca, - 0x71, 0xcd, 0x9c, 0x37, 0x56, 0xd2, 0x99, 0x35, 0xde, 0xc4, 0x8d, 0xa9, 0x7a, 0x92, 0x7c, 0x92, - 0x2b, 0x4d, 0x03, 0x6b, 0x9f, 0x8e, 0xcd, 0xd8, 0x00, 0x62, 0xa1, 0x2a, 0xff, 0x6a, 0x37, 0x61, - 0x2e, 0x7c, 0x94, 0x28, 0xa5, 0xde, 0x1b, 0xc2, 0xf5, 0xfb, 0xb0, 0x28, 0x95, 0xdc, 0x58, 0x11, - 0x5f, 0xe3, 0xbd, 0xc0, 0x33, 0x25, 0x5a, 0xa8, 0x8b, 0xfa, 0xf5, 0xc1, 0x19, 0xfd, 0xbb, 0x9a, - 0x0e, 0x1d, 0xd7, 0x43, 0x91, 0x54, 0x56, 0x9b, 0x4e, 0x94, 0x56, 0x15, 0x74, 0xf1, 0x39, 0xae, - 0x71, 0x25, 0xb2, 0xd1, 0xd2, 0x4b, 0xd7, 0xfa, 0xd7, 0x45, 0xfd, 0x83, 0x74, 0x9f, 0x2b, 0x91, - 0x84, 0x3e, 0xbe, 0xc0, 0x15, 0x91, 0xfb, 0xbc, 0xf5, 0x3f, 0xe8, 0x49, 0x33, 0x0c, 0x7e, 0x6e, - 0x3a, 0x35, 0x58, 0xa4, 0x67, 0x73, 0x9f, 0x02, 0xee, 0x4d, 0xf0, 0xd1, 0xad, 0xd1, 0x5e, 0x6a, - 0x3f, 0x14, 0xbb, 0x6b, 0x28, 0x3e, 0x31, 0x2f, 0x5a, 0xda, 0x2c, 0x17, 0xc2, 0x4a, 0xe7, 0x76, - 0x06, 0x08, 0x0c, 0x9a, 0x80, 0x6e, 0x4a, 0xf2, 0xe3, 0xd4, 0x98, 0xe6, 0x5e, 0x3a, 0x9f, 0x2d, - 0xa4, 0x75, 0xca, 0x68, 0xb8, 0xa5, 0x92, 0x1e, 0x96, 0xea, 0x43, 0x29, 0x26, 0x77, 0xab, 0x2d, - 0x41, 0xeb, 0x2d, 0x41, 0x5f, 0x5b, 0x82, 0xde, 0x0b, 0x12, 0xad, 0x0b, 0x12, 0x7d, 0x14, 0x24, - 0x7a, 0x1c, 0x8c, 0x95, 0x9f, 0xcc, 0x47, 0x94, 0x9b, 0x67, 0x06, 0xef, 0x36, 0x4a, 0xff, 0x16, - 0x97, 0x90, 0x02, 0x5b, 0x0c, 0xd8, 0x2b, 0x84, 0xc8, 0xfc, 0x72, 0x26, 0xdd, 0xa8, 0x0a, 0x49, - 0x5e, 0x7d, 0x07, 0x00, 0x00, 0xff, 0xff, 0x22, 0xe8, 0x91, 0x82, 0x96, 0x01, 0x00, 0x00, + // 318 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x90, 0xc1, 0x4e, 0x02, 0x31, + 0x10, 0x86, 0xb7, 0x4a, 0x50, 0x8a, 0xa2, 0xac, 0xc6, 0x10, 0x4c, 0x0a, 0x21, 0x31, 0xe1, 0x62, + 0x9b, 0x40, 0x7c, 0x00, 0xd7, 0x13, 0x89, 0xa7, 0x35, 0xf1, 0xe0, 0x65, 0xb3, 0xb4, 0x0d, 0x34, + 0x62, 0x4b, 0xda, 0x82, 0xf2, 0x06, 0x1e, 0x7d, 0x2c, 0x8e, 0x1c, 0x8d, 0x07, 0x62, 0xe0, 0x45, + 0x4c, 0x67, 0xd1, 0xc4, 0xcb, 0x66, 0xe6, 0xff, 0x76, 0xe6, 0x9f, 0xfe, 0xf8, 0x54, 0x39, 0xae, + 0x99, 0xf3, 0xc6, 0x4a, 0x3a, 0xb5, 0xc6, 0x9b, 0xb8, 0x36, 0x51, 0xcf, 0x92, 0x8f, 0x73, 0xa5, + 0x69, 0x60, 0xcd, 0xf3, 0x91, 0x19, 0x19, 0x40, 0x2c, 0x54, 0xc5, 0x5f, 0xcd, 0x3a, 0xcc, 0x85, + 0x8f, 0x12, 0x85, 0xd4, 0x79, 0x47, 0xb8, 0xfa, 0x10, 0x16, 0xa5, 0x92, 0x1b, 0x2b, 0xe2, 0x1b, + 0x7c, 0x10, 0x78, 0xa6, 0x44, 0x03, 0xb5, 0x51, 0xb7, 0xda, 0xbb, 0xa0, 0xff, 0x57, 0xd3, 0x81, + 0xe3, 0x7a, 0x20, 0x92, 0xd2, 0x72, 0xdd, 0x8a, 0xd2, 0xb2, 0x82, 0x2e, 0xbe, 0xc4, 0x15, 0xae, + 0x44, 0x36, 0x5c, 0x78, 0xe9, 0x1a, 0x7b, 0x6d, 0xd4, 0x3d, 0x4a, 0x0f, 0xb9, 0x12, 0x49, 0xe8, + 0xe3, 0x2b, 0x5c, 0x12, 0xb9, 0xcf, 0x1b, 0xfb, 0x41, 0x4f, 0xea, 0x61, 0xf0, 0x6b, 0xdd, 0xaa, + 0xc0, 0x22, 0x3d, 0x9d, 0xf9, 0x14, 0x70, 0x67, 0x8c, 0x4f, 0xee, 0x8c, 0xf6, 0x52, 0xfb, 0x81, + 0xd8, 0x5d, 0x43, 0xf1, 0x99, 0x79, 0xd5, 0xd2, 0x66, 0xb9, 0x10, 0x56, 0x3a, 0xb7, 0x33, 0x40, + 0x60, 0x50, 0x07, 0x74, 0x5b, 0x90, 0x5f, 0xa7, 0xda, 0x24, 0xf7, 0xd2, 0xf9, 0x6c, 0x2e, 0xad, + 0x53, 0x46, 0xc3, 0x2d, 0xa5, 0xf4, 0xb8, 0x50, 0x1f, 0x0b, 0x31, 0xb9, 0x5f, 0x6e, 0x08, 0x5a, + 0x6d, 0x08, 0xfa, 0xde, 0x10, 0xf4, 0xb1, 0x25, 0xd1, 0x6a, 0x4b, 0xa2, 0xcf, 0x2d, 0x89, 0x9e, + 0x7a, 0x23, 0xe5, 0xc7, 0xb3, 0x21, 0xe5, 0xe6, 0x85, 0xc1, 0xbb, 0x8d, 0xd2, 0x7f, 0xc5, 0x35, + 0xa4, 0xc0, 0xe6, 0x7d, 0xf6, 0x06, 0x21, 0x32, 0xbf, 0x98, 0x4a, 0x37, 0x2c, 0x43, 0x92, 0xfd, + 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe2, 0x8c, 0xb9, 0x95, 0x96, 0x01, 0x00, 0x00, } func (m *StoreRecord) Marshal() (dAtA []byte, err error) { diff --git a/x/iscn/types/tx.pb.go b/x/iscn/types/tx.pb.go index 42bc507f9b..8c873e5950 100644 --- a/x/iscn/types/tx.pb.go +++ b/x/iscn/types/tx.pb.go @@ -409,39 +409,39 @@ func init() { func init() { proto.RegisterFile("iscn/tx.proto", fileDescriptor_00266e05c7423087) } var fileDescriptor_00266e05c7423087 = []byte{ - // 501 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x94, 0xd1, 0x8a, 0xd3, 0x4c, - 0x14, 0xc7, 0x9b, 0xa6, 0xf4, 0xfb, 0x72, 0xb6, 0xab, 0xeb, 0xac, 0x60, 0xec, 0x4a, 0x1a, 0xa2, - 0x48, 0x40, 0x4d, 0xb4, 0x7a, 0x21, 0x78, 0x57, 0x41, 0x28, 0x58, 0x85, 0x80, 0x08, 0xde, 0x94, - 0x6c, 0x32, 0x26, 0xc3, 0x76, 0x67, 0x86, 0x99, 0x59, 0xbb, 0x82, 0xe0, 0x2b, 0xf8, 0x58, 0x7b, - 0x59, 0xbc, 0x12, 0x2f, 0x16, 0x69, 0x5f, 0x44, 0x32, 0x69, 0x77, 0xdb, 0x6e, 0xaa, 0xae, 0x78, - 0x77, 0x32, 0xf3, 0x3f, 0xe7, 0x77, 0xfe, 0xe7, 0x84, 0x81, 0x6d, 0x22, 0x13, 0x1a, 0xaa, 0xe3, - 0x80, 0x0b, 0xa6, 0x18, 0xba, 0x32, 0x22, 0x07, 0x38, 0xc9, 0x63, 0x42, 0x83, 0xe2, 0xa2, 0x7d, - 0x3d, 0x63, 0x19, 0xd3, 0x57, 0x61, 0x11, 0x95, 0x2a, 0x6f, 0x62, 0x00, 0xf4, 0x65, 0x42, 0x23, - 0x9c, 0x30, 0x91, 0x22, 0x17, 0xb6, 0x84, 0x8e, 0x5e, 0x31, 0x85, 0xa5, 0x6d, 0xb8, 0x86, 0x6f, - 0x45, 0xcb, 0x47, 0xe8, 0x21, 0xec, 0x26, 0x8c, 0x2a, 0x4c, 0xd5, 0x0b, 0x42, 0x33, 0x2c, 0xb8, - 0x20, 0x54, 0x49, 0xbb, 0xee, 0x9a, 0xbe, 0x15, 0x55, 0x5d, 0xa1, 0x47, 0xd0, 0x92, 0x2a, 0x3e, - 0xc0, 0x39, 0x1b, 0xa5, 0x58, 0x48, 0xdb, 0x74, 0x4d, 0xbf, 0xd5, 0xdb, 0xfe, 0x7e, 0xda, 0xb1, - 0x0a, 0x72, 0x9f, 0xf2, 0x23, 0x15, 0xad, 0x48, 0xd0, 0x33, 0xb8, 0x3a, 0xaf, 0x34, 0xc0, 0x2a, - 0x4e, 0x63, 0x15, 0xdb, 0x0d, 0xd7, 0xf0, 0x5b, 0xbd, 0x6b, 0x27, 0xa7, 0x9d, 0xda, 0x6a, 0xe6, - 0xba, 0xd2, 0x4b, 0x60, 0x77, 0x20, 0xb3, 0xe7, 0x02, 0xc7, 0x0a, 0x2f, 0x59, 0x43, 0xd0, 0x78, - 0x2f, 0xd8, 0xe1, 0xdc, 0x93, 0x8e, 0xd1, 0x53, 0x68, 0x96, 0xde, 0xec, 0xba, 0x6b, 0xf8, 0x5b, - 0xdd, 0x76, 0xb0, 0x3a, 0xb4, 0xe0, 0x3c, 0xbf, 0xd7, 0x28, 0xd0, 0xd1, 0x5c, 0xef, 0xbd, 0x85, - 0xbd, 0x0a, 0x48, 0x84, 0x25, 0x67, 0x54, 0x62, 0x74, 0x03, 0xfe, 0x2b, 0xf2, 0x87, 0x24, 0x9d, - 0xf3, 0x9a, 0xc5, 0x67, 0x3f, 0x45, 0x9d, 0xc5, 0x80, 0x87, 0x84, 0x8f, 0x4a, 0xac, 0x15, 0x41, - 0x79, 0xd4, 0xe7, 0xa3, 0xd4, 0xfb, 0xa4, 0xbb, 0x7f, 0xc3, 0xd3, 0xdf, 0x77, 0xbf, 0x04, 0xa9, - 0xaf, 0x40, 0xce, 0x6d, 0x99, 0x7f, 0x65, 0x6b, 0x9d, 0xfe, 0x0f, 0x6c, 0xe5, 0x70, 0xab, 0x98, - 0x57, 0x1e, 0xd3, 0x6c, 0xa9, 0xf0, 0xeb, 0x31, 0xc5, 0x42, 0xe6, 0x84, 0x5f, 0xce, 0xdf, 0x1e, - 0x58, 0x14, 0x8f, 0x87, 0xac, 0xc8, 0xd6, 0x16, 0xad, 0xe8, 0x7f, 0x8a, 0xc7, 0xba, 0x9a, 0x77, - 0x17, 0xee, 0xfc, 0x8a, 0xb4, 0xf0, 0xd2, 0xfd, 0x5a, 0x07, 0x73, 0x20, 0x33, 0x94, 0xc2, 0xce, - 0x85, 0x7f, 0xe5, 0xf6, 0xfa, 0xc0, 0x2a, 0x76, 0xdd, 0xbe, 0xf7, 0x07, 0xa2, 0xb3, 0xc9, 0xa5, - 0xb0, 0x73, 0x61, 0xa7, 0x55, 0x94, 0x75, 0x51, 0x25, 0x65, 0xe3, 0x7e, 0x3e, 0xc3, 0xcd, 0xcd, - 0x23, 0xbe, 0x5f, 0xd5, 0xef, 0x26, 0x75, 0xfb, 0xc9, 0x65, 0xd4, 0x8b, 0x06, 0x7a, 0x2f, 0x4f, - 0xa6, 0x8e, 0x31, 0x99, 0x3a, 0xc6, 0x8f, 0xa9, 0x63, 0x7c, 0x99, 0x39, 0xb5, 0xc9, 0xcc, 0xa9, - 0x7d, 0x9b, 0x39, 0xb5, 0x77, 0xdd, 0x8c, 0xa8, 0xfc, 0x68, 0x3f, 0x48, 0xd8, 0x61, 0xa8, 0x2b, - 0x33, 0x42, 0xcf, 0x82, 0x07, 0x9a, 0x13, 0x7e, 0xe8, 0x86, 0xc7, 0x61, 0xf9, 0x8a, 0x7d, 0xe4, - 0x58, 0xee, 0x37, 0xf5, 0x1b, 0xf5, 0xf8, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb8, 0x86, 0xc0, - 0x9b, 0xda, 0x04, 0x00, 0x00, + // 500 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x94, 0x41, 0x8b, 0xd3, 0x40, + 0x14, 0xc7, 0x9b, 0x66, 0xa9, 0xe6, 0x6d, 0x57, 0xd7, 0x59, 0xc1, 0xd8, 0x95, 0x34, 0x44, 0x91, + 0x80, 0x9a, 0x68, 0xd7, 0x83, 0xe0, 0xad, 0x82, 0x50, 0xb0, 0x0a, 0x01, 0x11, 0xbc, 0x94, 0x6c, + 0x32, 0x26, 0xc3, 0x76, 0x67, 0x86, 0x99, 0x59, 0xbb, 0x82, 0xe0, 0x57, 0xf0, 0x63, 0xed, 0xb1, + 0x78, 0x12, 0x0f, 0x8b, 0xb4, 0x5f, 0x44, 0x32, 0x69, 0x77, 0xdb, 0x6e, 0xaa, 0xae, 0x78, 0x7b, + 0x99, 0xf9, 0xbf, 0xf7, 0x7b, 0xff, 0xf7, 0xc2, 0xc0, 0x16, 0x91, 0x09, 0x0d, 0xd5, 0x71, 0xc0, + 0x05, 0x53, 0x0c, 0x5d, 0x1b, 0x92, 0x03, 0x9c, 0xe4, 0x31, 0xa1, 0x41, 0x71, 0xd1, 0xba, 0x99, + 0xb1, 0x8c, 0xe9, 0xab, 0xb0, 0x88, 0x4a, 0x95, 0x37, 0x36, 0x00, 0x7a, 0x32, 0xa1, 0x11, 0x4e, + 0x98, 0x48, 0x91, 0x0b, 0x9b, 0x42, 0x47, 0xaf, 0x99, 0xc2, 0xd2, 0x36, 0x5c, 0xc3, 0xb7, 0xa2, + 0xc5, 0x23, 0xf4, 0x18, 0x76, 0x12, 0x46, 0x15, 0xa6, 0xea, 0x25, 0xa1, 0x19, 0x16, 0x5c, 0x10, + 0xaa, 0xa4, 0x5d, 0x77, 0x4d, 0xdf, 0x8a, 0xaa, 0xae, 0xd0, 0x13, 0x68, 0x4a, 0x15, 0x1f, 0xe0, + 0x9c, 0x0d, 0x53, 0x2c, 0xa4, 0x6d, 0xba, 0xa6, 0xdf, 0xec, 0x6e, 0xfd, 0x38, 0x6d, 0x5b, 0x05, + 0xb9, 0x47, 0xf9, 0x91, 0x8a, 0x96, 0x24, 0xe8, 0x39, 0x5c, 0x9f, 0x55, 0xea, 0x63, 0x15, 0xa7, + 0xb1, 0x8a, 0xed, 0x0d, 0xd7, 0xf0, 0x9b, 0xdd, 0x1b, 0x27, 0xa7, 0xed, 0xda, 0x72, 0xe6, 0xaa, + 0xd2, 0x4b, 0x60, 0xa7, 0x2f, 0xb3, 0x17, 0x02, 0xc7, 0x0a, 0x2f, 0x58, 0x43, 0xb0, 0xf1, 0x41, + 0xb0, 0xc3, 0x99, 0x27, 0x1d, 0xa3, 0x67, 0xd0, 0x28, 0xbd, 0xd9, 0x75, 0xd7, 0xf0, 0x37, 0x3b, + 0xad, 0x60, 0x79, 0x68, 0xc1, 0x79, 0x7e, 0x77, 0xa3, 0x40, 0x47, 0x33, 0xbd, 0xf7, 0x0e, 0x76, + 0x2b, 0x20, 0x11, 0x96, 0x9c, 0x51, 0x89, 0xd1, 0x2d, 0xb8, 0x52, 0xe4, 0x0f, 0x48, 0x3a, 0xe3, + 0x35, 0x8a, 0xcf, 0x5e, 0x8a, 0xda, 0xf3, 0x01, 0x0f, 0x08, 0x1f, 0x96, 0x58, 0x2b, 0x82, 0xf2, + 0xa8, 0xc7, 0x87, 0xa9, 0xf7, 0x59, 0x77, 0xff, 0x96, 0xa7, 0x7f, 0xee, 0x7e, 0x01, 0x52, 0x5f, + 0x82, 0x9c, 0xdb, 0x32, 0xff, 0xc9, 0xd6, 0x2a, 0xfd, 0x3f, 0xd8, 0xca, 0xe1, 0x4e, 0x31, 0xaf, + 0x3c, 0xa6, 0xd9, 0x42, 0xe1, 0x37, 0x23, 0x8a, 0x85, 0xcc, 0x09, 0xbf, 0x9c, 0xbf, 0x5d, 0xb0, + 0x28, 0x1e, 0x0d, 0x58, 0x91, 0xad, 0x2d, 0x5a, 0xd1, 0x55, 0x8a, 0x47, 0xba, 0x9a, 0x77, 0x1f, + 0xee, 0xfd, 0x8e, 0x34, 0xf7, 0xd2, 0xf9, 0x56, 0x07, 0xb3, 0x2f, 0x33, 0x94, 0xc2, 0xf6, 0x85, + 0x7f, 0xe5, 0xee, 0xea, 0xc0, 0x2a, 0x76, 0xdd, 0x7a, 0xf0, 0x17, 0xa2, 0xb3, 0xc9, 0xa5, 0xb0, + 0x7d, 0x61, 0xa7, 0x55, 0x94, 0x55, 0x51, 0x25, 0x65, 0xed, 0x7e, 0xbe, 0xc0, 0xed, 0xf5, 0x23, + 0x7e, 0x58, 0xd5, 0xef, 0x3a, 0x75, 0xeb, 0xe9, 0x65, 0xd4, 0xf3, 0x06, 0xba, 0xaf, 0x4e, 0x26, + 0x8e, 0x31, 0x9e, 0x38, 0xc6, 0xcf, 0x89, 0x63, 0x7c, 0x9d, 0x3a, 0xb5, 0xf1, 0xd4, 0xa9, 0x7d, + 0x9f, 0x3a, 0xb5, 0xf7, 0x9d, 0x8c, 0xa8, 0xfc, 0x68, 0x3f, 0x48, 0xd8, 0x61, 0xa8, 0x2b, 0x33, + 0x42, 0xcf, 0x82, 0x47, 0x9a, 0x13, 0x7e, 0xdc, 0x0b, 0x8f, 0xc3, 0xf2, 0x15, 0xfb, 0xc4, 0xb1, + 0xdc, 0x6f, 0xe8, 0x37, 0x6a, 0xef, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x78, 0xe2, 0xe8, 0x8c, + 0xda, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.