From 3388e0fcd4f2020432d4d4b3e3d61dc3b174bb08 Mon Sep 17 00:00:00 2001 From: Vitalis Salis Date: Fri, 14 Apr 2023 14:06:47 +0300 Subject: [PATCH] fix: Use the account specified in app.toml to sign BLS transactions (#348) --- app/test_helpers.go | 4 +- app/utils.go | 19 ++- client/tx/tx.go | 2 - cmd/babylond/cmd/custom_babylon_config.go | 2 +- cmd/babylond/cmd/root.go | 11 +- proto/babylon/checkpointing/v1/tx.proto | 8 +- x/checkpointing/client/cli/tx.go | 2 +- x/checkpointing/keeper/bls_signer.go | 2 +- x/checkpointing/keeper/msg_server_test.go | 10 +- x/checkpointing/types/genesis.pb.go | 45 ++++--- x/checkpointing/types/msgs.go | 23 ++-- x/checkpointing/types/query.pb.go | 116 +++++++++--------- x/checkpointing/types/tx.pb.go | 102 +++++++++++----- x/monitor/types/genesis.pb.go | 16 ++- x/monitor/types/query.pb.go | 53 ++++----- x/zoneconcierge/types/genesis.pb.go | 20 ++-- x/zoneconcierge/types/query.pb.go | 138 +++++++++++----------- 17 files changed, 315 insertions(+), 258 deletions(-) diff --git a/app/test_helpers.go b/app/test_helpers.go index 043397397..3794e0be4 100644 --- a/app/test_helpers.go +++ b/app/test_helpers.go @@ -226,13 +226,13 @@ func Setup(t *testing.T, isCheckTx bool) *BabylonApp { // SetupPrivSigner sets up a PrivSigner for testing func SetupPrivSigner() (*PrivSigner, error) { - nodeCfg := tmconfig.DefaultConfig() kr, err := client.NewKeyringFromBackend(client.Context{}, keyring.BackendMemory) if err != nil { return nil, err } + nodeCfg := tmconfig.DefaultConfig() encodingCfg := appparams.GetEncodingConfig() - privSigner, _ := InitPrivSigner(client.Context{}, ".", kr, encodingCfg) + privSigner, _ := InitPrivSigner(client.Context{}, ".", kr, "", encodingCfg) privSigner.WrappedPV.Clean(nodeCfg.PrivValidatorKeyFile(), nodeCfg.PrivValidatorStateFile()) return privSigner, nil } diff --git a/app/utils.go b/app/utils.go index 435160090..4bbd2fd41 100644 --- a/app/utils.go +++ b/app/utils.go @@ -13,7 +13,6 @@ import ( tmos "github.com/cometbft/cometbft/libs/os" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/config" - sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/auth/types" appparams "github.com/babylonchain/babylon/app/params" @@ -44,7 +43,7 @@ type PrivSigner struct { ClientCtx client.Context } -func InitPrivSigner(clientCtx client.Context, nodeDir string, kr keyring.Keyring, encodingCfg appparams.EncodingConfig) (*PrivSigner, error) { +func InitPrivSigner(clientCtx client.Context, nodeDir string, kr keyring.Keyring, feePayer string, encodingCfg appparams.EncodingConfig) (*PrivSigner, error) { // setup private validator nodeCfg := tmconfig.DefaultConfig() pvKeyFile := filepath.Join(nodeDir, nodeCfg.PrivValidatorKeyFile()) @@ -65,12 +64,24 @@ func InitPrivSigner(clientCtx client.Context, nodeDir string, kr keyring.Keyring WithLegacyAmino(encodingCfg.Amino). WithTxConfig(encodingCfg.TxConfig). WithAccountRetriever(types.AccountRetriever{}). - WithFromAddress(sdk.AccAddress(wrappedPV.GetAddress())). - WithFeeGranterAddress(sdk.AccAddress(wrappedPV.GetAddress())). WithSkipConfirmation(true). WithKeyring(kr). WithNodeURI(nodeCfg.RPC.ListenAddress) + if feePayer != "" { + feePayerRecord, err := kr.Key(feePayer) + if err != nil { + return nil, err + } + feePayerAddress, err := feePayerRecord.GetAddress() + if err != nil { + return nil, err + } + clientCtx = clientCtx. + WithFromAddress(feePayerAddress). + WithFromName(feePayer) + } + return &PrivSigner{ WrappedPV: wrappedPV, ClientCtx: clientCtx, diff --git a/client/tx/tx.go b/client/tx/tx.go index 5701bc471..cc7b9b4e3 100644 --- a/client/tx/tx.go +++ b/client/tx/tx.go @@ -28,7 +28,6 @@ func SendMsgsToTendermint(clientCtx client.Context, msgs []sdk.Msg) (*sdk.TxResp WithAccountRetriever(clientCtx.AccountRetriever). WithKeybase(clientCtx.Keyring). WithChainID(clientCtx.ChainID). - WithFeeGranter(clientCtx.FeeGranter). WithFeePayer(clientCtx.FeePayer). WithGasPrices(gasPrice). WithGasAdjustment(gasAdjustment) @@ -113,7 +112,6 @@ func prepareFactory(clientCtx client.Context, txf sdktx.Factory) (sdktx.Factory, if initNum == 0 { txf = txf.WithAccountNumber(num) } - if initSeq == 0 { txf = txf.WithSequence(seq) } diff --git a/cmd/babylond/cmd/custom_babylon_config.go b/cmd/babylond/cmd/custom_babylon_config.go index 7af72488a..f52d949e7 100644 --- a/cmd/babylond/cmd/custom_babylon_config.go +++ b/cmd/babylond/cmd/custom_babylon_config.go @@ -9,7 +9,7 @@ import ( ) const ( - defaultKeyName = "default" + defaultKeyName = "" defaultGasPrice = "0.01ubbn" defaultGasAdjustment = 1.5 ) diff --git a/cmd/babylond/cmd/root.go b/cmd/babylond/cmd/root.go index 9b93146dd..709402c37 100644 --- a/cmd/babylond/cmd/root.go +++ b/cmd/babylond/cmd/root.go @@ -279,16 +279,12 @@ func (a appCreator) newApp(logger log.Logger, db dbm.DB, traceStore io.Writer, a panic(err) } - // parse the key name that will be used for signing BLS-sig txs from app.toml - keyName := bbntypes.ParseKeyNameFromConfig(appOpts) - clientCtx, err := config.ReadFromClientConfig( client.Context{}. WithHomeDir(homeDir). WithViper(""). WithKeyringDir(homeDir). WithInput(os.Stdin). - WithFromName(keyName). // Warning: It is important that ReadFromClientConfig receives context // with already initialized codec. It creates keyring inside, and from cosmos // 0.46.0 keyring requires codec. Without codec, operations performed by @@ -298,7 +294,10 @@ func (a appCreator) newApp(logger log.Logger, db dbm.DB, traceStore io.Writer, a if err != nil { panic(err) } - privSigner, err := app.InitPrivSigner(clientCtx, homeDir, clientCtx.Keyring, a.encCfg) + // parse the key name that will be used for signing BLS-sig txs from app.toml + keyName := bbntypes.ParseKeyNameFromConfig(appOpts) + + privSigner, err := app.InitPrivSigner(clientCtx, homeDir, clientCtx.Keyring, keyName, a.encCfg) if err != nil { panic(err) } @@ -376,7 +375,7 @@ func (a appCreator) appExport( panic(err) } - privSigner, err := app.InitPrivSigner(clientCtx, homePath, kr, a.encCfg) + privSigner, err := app.InitPrivSigner(clientCtx, homePath, kr, "", a.encCfg) if err != nil { panic(err) } diff --git a/proto/babylon/checkpointing/v1/tx.proto b/proto/babylon/checkpointing/v1/tx.proto index 47345c5f7..78a990491 100644 --- a/proto/babylon/checkpointing/v1/tx.proto +++ b/proto/babylon/checkpointing/v1/tx.proto @@ -5,6 +5,7 @@ import "gogoproto/gogo.proto"; import "babylon/checkpointing/v1/checkpoint.proto"; import "babylon/checkpointing/v1/bls_key.proto"; import "cosmos/staking/v1beta1/tx.proto"; +import "cosmos_proto/cosmos.proto"; option go_package = "github.com/babylonchain/babylon/x/checkpointing/types"; @@ -24,7 +25,12 @@ message MsgAddBlsSig { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - BlsSig bls_sig = 1; + // signer corresponds to the submitter of the transaction + // This might be a different entity compared to the one that created the BLS signature + // (i.e. the validator owner of the BLS key which is specified by the `bls_sig.signer_address`) + string signer = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; + + BlsSig bls_sig = 2; } // MsgAddBlsSigResponse defines the MsgAddBlsSig response type. diff --git a/x/checkpointing/client/cli/tx.go b/x/checkpointing/client/cli/tx.go index d4986d8cb..6c32ab132 100644 --- a/x/checkpointing/client/cli/tx.go +++ b/x/checkpointing/client/cli/tx.go @@ -72,7 +72,7 @@ func CmdTxAddBlsSig() *cobra.Command { return err } - msg := types.NewMsgAddBlsSig(epoch_num, lch, blsSig, addr) + msg := types.NewMsgAddBlsSig(clientCtx.GetFromAddress(), epoch_num, lch, blsSig, addr) return tx.GenerateOrBroadcastTxCLI(clientCtx, cmd.Flags(), msg) }, diff --git a/x/checkpointing/keeper/bls_signer.go b/x/checkpointing/keeper/bls_signer.go index 584de5bea..e6d432316 100644 --- a/x/checkpointing/keeper/bls_signer.go +++ b/x/checkpointing/keeper/bls_signer.go @@ -40,7 +40,7 @@ func (k Keeper) SendBlsSig(ctx sdk.Context, epochNum uint64, lch types.LastCommi } // create MsgAddBlsSig message - msg := types.NewMsgAddBlsSig(epochNum, lch, blsSig, addr) + msg := types.NewMsgAddBlsSig(k.clientCtx.GetFromAddress(), epochNum, lch, blsSig, addr) // keep sending the message to Tendermint until success or timeout // TODO should read the parameters from config file diff --git a/x/checkpointing/keeper/msg_server_test.go b/x/checkpointing/keeper/msg_server_test.go index afe1e648f..d20caf652 100644 --- a/x/checkpointing/keeper/msg_server_test.go +++ b/x/checkpointing/keeper/msg_server_test.go @@ -242,7 +242,7 @@ func FuzzAddBlsSig_NoError(f *testing.F) { blsSig := bls12381.Sign(blsPrivKey, signBytes) // create MsgAddBlsSig message - msg := types.NewMsgAddBlsSig(endingEpoch, lch, blsSig, addr) + msg := types.NewMsgAddBlsSig(sdk.AccAddress(addr), endingEpoch, lch, blsSig, addr) _, err = msgServer.AddBlsSig(ctx, msg) require.NoError(t, err) afterCkpt, err := ck.GetRawCheckpoint(ctx, endingEpoch) @@ -285,7 +285,7 @@ func FuzzAddBlsSig_NotInValSet(f *testing.F) { valAddr := datagen.GenRandomValidatorAddress() signBytes := types.GetSignBytes(endingEpoch, lch) blsSig := bls12381.Sign(blsPrivKey, signBytes) - msg := types.NewMsgAddBlsSig(endingEpoch, lch, blsSig, valAddr) + msg := types.NewMsgAddBlsSig(sdk.AccAddress(valAddr), endingEpoch, lch, blsSig, valAddr) _, err = msgServer.AddBlsSig(ctx, msg) require.Error(t, err, types.ErrCkptDoesNotExist) @@ -318,7 +318,7 @@ func FuzzAddBlsSig_CkptNotExist(f *testing.F) { addr := helper.ValBlsPrivKeys[i].Address signBytes := types.GetSignBytes(epoch.EpochNumber-1, lch) blsSig := bls12381.Sign(blsPrivKey, signBytes) - msg := types.NewMsgAddBlsSig(epoch.EpochNumber-1, lch, blsSig, addr) + msg := types.NewMsgAddBlsSig(sdk.AccAddress(addr), epoch.EpochNumber-1, lch, blsSig, addr) // add the BLS signature _, err := msgServer.AddBlsSig(ctx, msg) @@ -361,7 +361,7 @@ func FuzzAddBlsSig_WrongLastCommitHash(f *testing.F) { addr := helper.ValBlsPrivKeys[i].Address signBytes := types.GetSignBytes(endingEpoch, lch) blsSig := bls12381.Sign(blsPrivKey, signBytes) - msg := types.NewMsgAddBlsSig(endingEpoch, lch, blsSig, addr) + msg := types.NewMsgAddBlsSig(sdk.AccAddress(addr), endingEpoch, lch, blsSig, addr) // add the BLS signature _, err = msgServer.AddBlsSig(ctx, msg) @@ -401,7 +401,7 @@ func FuzzAddBlsSig_InvalidSignature(f *testing.F) { lch := ctx.BlockHeader().LastCommitHash addr := helper.ValBlsPrivKeys[i].Address blsSig := datagen.GenRandomBlsMultiSig() - msg := types.NewMsgAddBlsSig(endingEpoch, lch, blsSig, addr) + msg := types.NewMsgAddBlsSig(sdk.AccAddress(addr), endingEpoch, lch, blsSig, addr) // add the BLS signature message _, err = msgServer.AddBlsSig(ctx, msg) diff --git a/x/checkpointing/types/genesis.pb.go b/x/checkpointing/types/genesis.pb.go index 081845c81..380afef3d 100644 --- a/x/checkpointing/types/genesis.pb.go +++ b/x/checkpointing/types/genesis.pb.go @@ -6,7 +6,6 @@ package types import ( fmt "fmt" ed25519 "github.com/cosmos/cosmos-sdk/crypto/keys/ed25519" - _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" math "math" @@ -144,28 +143,28 @@ func init() { } var fileDescriptor_bf2c524ebc9800de = []byte{ - // 335 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x90, 0xb1, 0x4a, 0x03, 0x31, - 0x1c, 0xc6, 0x1b, 0x0b, 0x95, 0xa6, 0x1d, 0xf4, 0x70, 0x28, 0x05, 0x8f, 0xa3, 0x88, 0x14, 0x84, - 0x84, 0x56, 0x3a, 0x14, 0x5c, 0xec, 0xd2, 0xc1, 0xc1, 0x52, 0x07, 0xc1, 0xa5, 0x24, 0x77, 0xe1, - 0x1a, 0x9a, 0x5e, 0x8e, 0x4b, 0x7a, 0x98, 0xb7, 0xf0, 0x59, 0x7c, 0x0a, 0xc7, 0x8e, 0x8e, 0xd2, - 0xbe, 0x88, 0x5c, 0x12, 0x2b, 0x0a, 0x9d, 0xee, 0x7f, 0xf9, 0xff, 0xbe, 0xff, 0xf7, 0xf1, 0xc1, - 0x6b, 0x4a, 0xa8, 0x11, 0x32, 0xc3, 0xf1, 0x92, 0xc5, 0xab, 0x5c, 0xf2, 0x4c, 0xf3, 0x2c, 0xc5, - 0xe5, 0x00, 0xa7, 0x2c, 0x63, 0x8a, 0x2b, 0x94, 0x17, 0x52, 0xcb, 0xa0, 0xe3, 0x39, 0xf4, 0x87, - 0x43, 0xe5, 0xa0, 0x7b, 0x91, 0xca, 0x54, 0x5a, 0x08, 0x57, 0x93, 0xe3, 0xbb, 0x51, 0x2c, 0xd5, - 0x5a, 0x2a, 0x1c, 0x17, 0x26, 0xd7, 0x12, 0xb3, 0x64, 0x38, 0x1a, 0x0d, 0xc6, 0x78, 0xc5, 0x8c, - 0xbf, 0xd8, 0x3d, 0xee, 0x4c, 0x85, 0x5a, 0xac, 0x98, 0x71, 0x5c, 0xef, 0x19, 0xb6, 0xa7, 0x2e, - 0xca, 0x93, 0x26, 0x9a, 0x05, 0x53, 0xd8, 0xf6, 0xd1, 0x2a, 0x48, 0x75, 0x40, 0x54, 0xef, 0xb7, - 0x86, 0x57, 0xe8, 0x58, 0x40, 0xe4, 0xd5, 0x0f, 0xcc, 0xcc, 0x5b, 0xe9, 0x61, 0x56, 0xbd, 0x77, - 0x00, 0xe1, 0xef, 0x2e, 0xb8, 0x81, 0xe7, 0x25, 0x11, 0x3c, 0x21, 0x5a, 0x16, 0x0b, 0x92, 0x24, - 0x05, 0x53, 0xd5, 0x71, 0xd0, 0x6f, 0xce, 0xcf, 0x0e, 0x8b, 0x7b, 0xf7, 0x1e, 0x8c, 0xe1, 0xa9, - 0x4f, 0xd9, 0x39, 0x89, 0x40, 0xbf, 0x35, 0x8c, 0x8e, 0xfb, 0x4f, 0x84, 0xf5, 0x6e, 0x50, 0xfb, - 0x0d, 0xee, 0x20, 0x2c, 0x89, 0x58, 0xe4, 0x1b, 0x5a, 0xa9, 0xeb, 0x56, 0x7d, 0x89, 0x5c, 0x5d, - 0xc8, 0xd5, 0x85, 0x7c, 0x5d, 0x68, 0xb6, 0xa1, 0x95, 0xb4, 0x59, 0x12, 0x31, 0xb3, 0xfc, 0xe4, - 0xf1, 0x63, 0x17, 0x82, 0xed, 0x2e, 0x04, 0x5f, 0xbb, 0x10, 0xbc, 0xed, 0xc3, 0xda, 0x76, 0x1f, - 0xd6, 0x3e, 0xf7, 0x61, 0xed, 0x65, 0x94, 0x72, 0xbd, 0xdc, 0x50, 0x14, 0xcb, 0x35, 0xf6, 0x59, - 0xe2, 0x25, 0xe1, 0xd9, 0xcf, 0x0f, 0x7e, 0xfd, 0xd7, 0xb4, 0x36, 0x39, 0x53, 0xb4, 0x61, 0x5b, - 0xbe, 0xfd, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x41, 0x5b, 0x7a, 0x70, 0x09, 0x02, 0x00, 0x00, + // 325 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x90, 0xcf, 0x6a, 0x2a, 0x31, + 0x18, 0xc5, 0xcd, 0x15, 0xbc, 0x18, 0x5d, 0xb4, 0xb3, 0x12, 0xa1, 0x61, 0x90, 0x52, 0x84, 0x42, + 0x82, 0x16, 0x17, 0x42, 0x37, 0x75, 0xe3, 0xa2, 0x8b, 0x8a, 0x5d, 0x14, 0xba, 0x91, 0x24, 0x13, + 0xc6, 0x60, 0x9c, 0x0c, 0x93, 0x38, 0x34, 0x6f, 0xd1, 0x67, 0xe9, 0x53, 0x74, 0xe9, 0xb2, 0xcb, + 0xa2, 0x2f, 0x52, 0x66, 0x26, 0xb5, 0xb4, 0x30, 0xab, 0xfc, 0xf9, 0xce, 0xf9, 0xce, 0xe1, 0x07, + 0xaf, 0x18, 0x65, 0x4e, 0xe9, 0x84, 0xf0, 0xb5, 0xe0, 0x9b, 0x54, 0xcb, 0xc4, 0xca, 0x24, 0x26, + 0xf9, 0x88, 0xc4, 0x22, 0x11, 0x46, 0x1a, 0x9c, 0x66, 0xda, 0xea, 0xa0, 0xe7, 0x75, 0xf8, 0x97, + 0x0e, 0xe7, 0xa3, 0x7e, 0xc8, 0xb5, 0xd9, 0x6a, 0x43, 0x78, 0xe6, 0x52, 0xab, 0x89, 0x88, 0xc6, + 0x93, 0xc9, 0x68, 0x4a, 0x36, 0xc2, 0x79, 0x6f, 0xbf, 0x3e, 0x83, 0x29, 0xb3, 0xda, 0x08, 0x57, + 0xe9, 0x06, 0x4f, 0xb0, 0x3b, 0xaf, 0x42, 0x1f, 0x2d, 0xb5, 0x22, 0x98, 0xc3, 0xae, 0x2f, 0x51, + 0x88, 0x4c, 0x0f, 0x84, 0xcd, 0x61, 0x67, 0x7c, 0x89, 0xeb, 0xaa, 0x60, 0xef, 0xbe, 0x17, 0x6e, + 0xd9, 0x89, 0x4f, 0x77, 0x33, 0x78, 0x03, 0x10, 0xfe, 0xcc, 0x82, 0x6b, 0x78, 0x9e, 0x53, 0x25, + 0x23, 0x6a, 0x75, 0xb6, 0xa2, 0x51, 0x94, 0x09, 0x53, 0x2c, 0x07, 0xc3, 0xf6, 0xf2, 0xec, 0x34, + 0xb8, 0xab, 0xfe, 0x83, 0x29, 0xfc, 0xef, 0x5b, 0xf6, 0xfe, 0x85, 0x60, 0xd8, 0x19, 0x87, 0xf5, + 0xf9, 0x33, 0x55, 0x66, 0xb7, 0x58, 0x79, 0x06, 0xb7, 0x10, 0xe6, 0x54, 0xad, 0xd2, 0x1d, 0x2b, + 0xdc, 0xcd, 0xd2, 0x7d, 0x81, 0x2b, 0x5c, 0xb8, 0xc2, 0x85, 0x3d, 0x2e, 0xbc, 0xd8, 0xb1, 0xc2, + 0xda, 0xce, 0xa9, 0x5a, 0x94, 0xfa, 0xd9, 0xc3, 0xfb, 0x01, 0x81, 0xfd, 0x01, 0x81, 0xcf, 0x03, + 0x02, 0xaf, 0x47, 0xd4, 0xd8, 0x1f, 0x51, 0xe3, 0xe3, 0x88, 0x1a, 0xcf, 0x93, 0x58, 0xda, 0xf5, + 0x8e, 0x61, 0xae, 0xb7, 0xc4, 0x77, 0xe1, 0x6b, 0x2a, 0x93, 0xef, 0x07, 0x79, 0xf9, 0x43, 0xda, + 0xba, 0x54, 0x18, 0xd6, 0x2a, 0x29, 0xdf, 0x7c, 0x05, 0x00, 0x00, 0xff, 0xff, 0x1c, 0xab, 0xd1, + 0x3a, 0xf3, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/checkpointing/types/msgs.go b/x/checkpointing/types/msgs.go index aee1604ab..aee9efd03 100644 --- a/x/checkpointing/types/msgs.go +++ b/x/checkpointing/types/msgs.go @@ -16,13 +16,16 @@ var ( _ sdk.Msg = (*MsgAddBlsSig)(nil) ) -func NewMsgAddBlsSig(epochNum uint64, lch LastCommitHash, sig bls12381.Signature, addr sdk.ValAddress) *MsgAddBlsSig { - return &MsgAddBlsSig{BlsSig: &BlsSig{ - EpochNum: epochNum, - LastCommitHash: &lch, - BlsSig: &sig, - SignerAddress: addr.String(), - }} +func NewMsgAddBlsSig(signer sdk.AccAddress, epochNum uint64, lch LastCommitHash, sig bls12381.Signature, addr sdk.ValAddress) *MsgAddBlsSig { + return &MsgAddBlsSig{ + Signer: signer.String(), + BlsSig: &BlsSig{ + EpochNum: epochNum, + LastCommitHash: &lch, + BlsSig: &sig, + SignerAddress: addr.String(), + }, + } } func NewMsgWrappedCreateValidator(msgCreateVal *stakingtypes.MsgCreateValidator, blsPK *bls12381.PublicKey, pop *ProofOfPossession) (*MsgWrappedCreateValidator, error) { @@ -56,12 +59,14 @@ func (m *MsgAddBlsSig) ValidateBasic() error { } func (m *MsgAddBlsSig) GetSigners() []sdk.AccAddress { - signer, err := sdk.ValAddressFromBech32(m.BlsSig.SignerAddress) + signer, err := sdk.AccAddressFromBech32(m.Signer) if err != nil { + // Panic, since the GetSigners method is called after ValidateBasic + // which performs the same check. panic(err) } - return []sdk.AccAddress{sdk.AccAddress(signer)} + return []sdk.AccAddress{signer} } func (m *MsgWrappedCreateValidator) VerifyPoP(valPubkey cryptotypes.PubKey) bool { diff --git a/x/checkpointing/types/query.pb.go b/x/checkpointing/types/query.pb.go index 7bf8126d4..f74b0e6f3 100644 --- a/x/checkpointing/types/query.pb.go +++ b/x/checkpointing/types/query.pb.go @@ -7,7 +7,6 @@ import ( context "context" fmt "fmt" query "github.com/cosmos/cosmos-sdk/types/query" - _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" @@ -661,64 +660,63 @@ func init() { } var fileDescriptor_113f1ca5c3c2ca44 = []byte{ - // 898 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0xcf, 0x8f, 0xdb, 0x44, - 0x14, 0xc7, 0xd7, 0x59, 0x5a, 0xb1, 0x2f, 0x74, 0x59, 0x46, 0x2b, 0x1a, 0xdc, 0x12, 0x2a, 0x53, - 0xda, 0xa5, 0x52, 0x3d, 0x4a, 0xf6, 0x57, 0xb4, 0xb4, 0x8b, 0x94, 0x6a, 0xe1, 0xd0, 0xb2, 0x14, - 0x23, 0x15, 0xc4, 0x81, 0x68, 0xec, 0x8e, 0x1c, 0xb3, 0x8e, 0xc7, 0x9b, 0x19, 0x27, 0x44, 0x55, - 0x2f, 0xf0, 0x0f, 0x20, 0x21, 0xf1, 0x4f, 0x20, 0x0e, 0xdc, 0x38, 0xc3, 0x85, 0x03, 0x42, 0x2b, - 0x71, 0x41, 0xe2, 0x82, 0x76, 0xf9, 0x43, 0x90, 0xc7, 0x93, 0x4d, 0xec, 0xac, 0xd7, 0xc9, 0x36, - 0x37, 0xe7, 0x65, 0xbe, 0xf3, 0x3e, 0xdf, 0x37, 0x6f, 0x9e, 0x0d, 0x37, 0x6d, 0x62, 0x0f, 0x7c, - 0x16, 0x60, 0xa7, 0x4d, 0x9d, 0x83, 0x90, 0x79, 0x81, 0xf0, 0x02, 0x17, 0xf7, 0x6a, 0xf8, 0x30, - 0xa2, 0xdd, 0x81, 0x19, 0x76, 0x99, 0x60, 0xa8, 0xa2, 0x56, 0x99, 0xa9, 0x55, 0x66, 0xaf, 0xa6, - 0xdf, 0xca, 0xd5, 0xdb, 0x3e, 0x6f, 0x1d, 0x50, 0xb5, 0x83, 0x7e, 0xc7, 0x61, 0xbc, 0xc3, 0x38, - 0xb6, 0x09, 0xa7, 0xc9, 0xd6, 0xb8, 0x57, 0xb3, 0xa9, 0x20, 0x35, 0x1c, 0x12, 0xd7, 0x0b, 0x88, - 0xf0, 0x58, 0xa0, 0xd6, 0xae, 0xba, 0xcc, 0x65, 0xf2, 0x11, 0xc7, 0x4f, 0x2a, 0x7a, 0xdd, 0x65, - 0xcc, 0xf5, 0x29, 0x26, 0xa1, 0x87, 0x49, 0x10, 0x30, 0x21, 0x25, 0x5c, 0xfd, 0xfb, 0x6e, 0x2e, - 0xc7, 0x28, 0x90, 0x2c, 0x35, 0x7e, 0xd4, 0xe0, 0xcd, 0x4f, 0x62, 0x02, 0x8b, 0xf4, 0x1f, 0x9c, - 0xfe, 0xf9, 0xc8, 0xe3, 0xc2, 0xa2, 0x87, 0x11, 0xe5, 0x02, 0x35, 0xe1, 0x32, 0x17, 0x44, 0x44, - 0xbc, 0xa2, 0xdd, 0xd0, 0xd6, 0x96, 0xeb, 0x77, 0xcc, 0x3c, 0xff, 0xe6, 0x68, 0x83, 0x4f, 0xa5, - 0xc2, 0x52, 0x4a, 0xf4, 0x01, 0xc0, 0xc8, 0x58, 0xa5, 0x74, 0x43, 0x5b, 0x2b, 0xd7, 0x6f, 0x99, - 0x49, 0x15, 0xcc, 0xb8, 0x0a, 0x66, 0x52, 0x60, 0x55, 0x05, 0xf3, 0x31, 0x71, 0xa9, 0xca, 0x6f, - 0x8d, 0x29, 0x8d, 0xdf, 0x34, 0xa8, 0xe6, 0xd1, 0xf2, 0x90, 0x05, 0x9c, 0xa2, 0xcf, 0xe1, 0xd5, - 0x2e, 0xe9, 0xb7, 0x46, 0x6c, 0x31, 0xf7, 0xe2, 0x5a, 0xb9, 0x8e, 0xf3, 0xb9, 0x53, 0xbb, 0x7d, - 0xe6, 0x89, 0xf6, 0x47, 0x54, 0x10, 0x6b, 0xb9, 0x3b, 0x1e, 0xe6, 0xe8, 0xc3, 0x33, 0x4c, 0xdc, - 0x2e, 0x34, 0x91, 0x60, 0xa5, 0x5c, 0x34, 0xe0, 0x8d, 0x49, 0x13, 0xc3, 0x72, 0x5f, 0x83, 0x25, - 0x1a, 0x32, 0xa7, 0xdd, 0x0a, 0xa2, 0x8e, 0xac, 0xf8, 0x4b, 0xd6, 0xcb, 0x32, 0xb0, 0x1f, 0x75, - 0x0c, 0x01, 0xfa, 0x59, 0x4a, 0x65, 0xfd, 0x09, 0x2c, 0xa7, 0xad, 0x4b, 0xfd, 0x05, 0x9c, 0x5f, - 0x49, 0x39, 0x37, 0xbe, 0xd5, 0xe0, 0xba, 0x4c, 0xdb, 0xf4, 0xf9, 0xe3, 0xc8, 0xf6, 0x3d, 0xe7, - 0x21, 0x1d, 0x8c, 0xb7, 0xc8, 0x79, 0xcc, 0x73, 0x3b, 0xfb, 0x3f, 0x87, 0x9d, 0x3a, 0x49, 0xa1, - 0xfc, 0x3f, 0x85, 0xab, 0x3d, 0xe2, 0x7b, 0x4f, 0x89, 0x60, 0xdd, 0x56, 0xdf, 0x13, 0xed, 0x96, - 0xba, 0x76, 0xc3, 0x16, 0xb8, 0x9b, 0x5f, 0x88, 0x27, 0x43, 0x61, 0x5c, 0x84, 0xa6, 0xcf, 0x1f, - 0xd2, 0x81, 0xb5, 0xda, 0x9b, 0x0c, 0xce, 0xb1, 0x0d, 0xb6, 0xe0, 0xaa, 0xf4, 0xb3, 0x17, 0x57, - 0x4a, 0x5d, 0x98, 0x69, 0x9a, 0xe0, 0x4b, 0xa8, 0x4c, 0xea, 0x54, 0x09, 0xe6, 0x70, 0x59, 0x8d, - 0x3d, 0x30, 0x92, 0x26, 0xa3, 0x0e, 0x0d, 0xc4, 0x58, 0x96, 0x07, 0x2c, 0x1a, 0xf5, 0xe9, 0x5b, - 0x50, 0x4e, 0x10, 0x9d, 0x38, 0xaa, 0x20, 0x41, 0x86, 0xe4, 0x3a, 0xe3, 0x87, 0x12, 0xbc, 0x7d, - 0xee, 0x3e, 0x0a, 0xf9, 0x1a, 0x2c, 0x09, 0x2f, 0x6c, 0x49, 0xe5, 0xd0, 0xab, 0xf0, 0x42, 0xb9, - 0x3e, 0x9b, 0xa5, 0x94, 0xcd, 0x82, 0x0e, 0xe1, 0x95, 0x04, 0x5b, 0xad, 0x58, 0x94, 0x07, 0xbd, - 0x9f, 0x6f, 0x7b, 0x0a, 0x24, 0x73, 0x2c, 0xb6, 0x17, 0x88, 0xee, 0xc0, 0x2a, 0xf3, 0x51, 0x44, - 0xdf, 0x85, 0x95, 0xec, 0x02, 0xb4, 0x02, 0x8b, 0x07, 0x74, 0x20, 0xf1, 0x97, 0xac, 0xf8, 0x11, - 0xad, 0xc2, 0xa5, 0x1e, 0xf1, 0x23, 0xaa, 0x98, 0x93, 0x1f, 0x3b, 0xa5, 0x86, 0x66, 0x7c, 0x05, - 0x37, 0x25, 0xc4, 0x23, 0xc2, 0x45, 0xfa, 0xf2, 0xa5, 0x9b, 0x60, 0x1e, 0x67, 0xd9, 0x87, 0x77, - 0x0a, 0x72, 0xa9, 0x53, 0xd8, 0xcf, 0x99, 0x1d, 0xb7, 0xa7, 0x9c, 0x1d, 0x99, 0x99, 0x51, 0xff, - 0x69, 0x09, 0x2e, 0xc9, 0xcc, 0xe8, 0x57, 0x0d, 0x5e, 0x9b, 0x18, 0xd7, 0x68, 0xbb, 0xe8, 0x84, - 0x72, 0x5e, 0x47, 0x7a, 0x63, 0x76, 0x61, 0x62, 0xd1, 0xd8, 0xf9, 0xe6, 0xaf, 0xff, 0xbe, 0x2f, - 0x6d, 0xa0, 0x3a, 0xce, 0x7d, 0x3d, 0x66, 0xde, 0x1c, 0xf8, 0x59, 0x52, 0xc6, 0xe7, 0xe8, 0x17, - 0x0d, 0xae, 0xa4, 0x76, 0x46, 0xeb, 0xb3, 0x70, 0x0c, 0xe1, 0x37, 0x66, 0x13, 0x29, 0xf0, 0x7b, - 0x12, 0x7c, 0x0b, 0x6d, 0x4c, 0x0b, 0x8e, 0x9f, 0x9d, 0x4e, 0x8f, 0xe7, 0x71, 0xfd, 0x57, 0xb2, - 0x23, 0x13, 0x6d, 0x15, 0x80, 0xe4, 0x4c, 0x7a, 0x7d, 0x7b, 0x66, 0x9d, 0xf2, 0x70, 0x5f, 0x7a, - 0xd8, 0x46, 0x9b, 0xf8, 0xdc, 0x6f, 0xa4, 0x50, 0x8a, 0xe5, 0xcc, 0x4e, 0x99, 0xf8, 0x59, 0x83, - 0xf2, 0xd8, 0x75, 0x45, 0xb5, 0x02, 0x8e, 0xc9, 0x99, 0xaa, 0xd7, 0x67, 0x91, 0x28, 0xea, 0xf7, - 0x24, 0xf5, 0x26, 0x5a, 0xcf, 0xa7, 0x96, 0x90, 0x29, 0x58, 0xac, 0x3e, 0x7a, 0xfe, 0xd0, 0xe0, - 0xf5, 0xb3, 0x07, 0x0d, 0xba, 0x77, 0xc1, 0xf9, 0x94, 0x38, 0xb9, 0xff, 0x42, 0xd3, 0xcd, 0xd8, - 0x94, 0xa6, 0x30, 0xba, 0x5b, 0x64, 0x6a, 0x67, 0x7c, 0xb2, 0xa2, 0x7f, 0x34, 0xa8, 0xe4, 0x8d, - 0x11, 0xb4, 0x5b, 0x80, 0x54, 0x30, 0xeb, 0xf4, 0xf7, 0x2f, 0xac, 0x57, 0xa6, 0x76, 0xa5, 0xa9, - 0x06, 0xda, 0xca, 0x37, 0xe5, 0x13, 0x2e, 0x5a, 0xd9, 0x8b, 0xa2, 0x2e, 0x78, 0xf3, 0xe3, 0xdf, - 0x8f, 0xab, 0xda, 0xd1, 0x71, 0x55, 0xfb, 0xf7, 0xb8, 0xaa, 0x7d, 0x77, 0x52, 0x5d, 0x38, 0x3a, - 0xa9, 0x2e, 0xfc, 0x7d, 0x52, 0x5d, 0xf8, 0x62, 0xd3, 0xf5, 0x44, 0x3b, 0xb2, 0x4d, 0x87, 0x75, - 0x86, 0x7b, 0x3b, 0x6d, 0xe2, 0x05, 0xa7, 0x89, 0xbe, 0xce, 0xa4, 0x12, 0x83, 0x90, 0x72, 0xfb, - 0xb2, 0xfc, 0xbe, 0x5e, 0xff, 0x3f, 0x00, 0x00, 0xff, 0xff, 0x51, 0xee, 0xea, 0x49, 0x54, 0x0c, - 0x00, 0x00, + // 886 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0x41, 0x6f, 0xe3, 0x44, + 0x14, 0xae, 0x53, 0x76, 0x45, 0x5e, 0xd8, 0x52, 0x46, 0x2b, 0x36, 0x78, 0x97, 0xb0, 0x32, 0xa5, + 0x2d, 0x95, 0x6a, 0x2b, 0x69, 0x93, 0x46, 0xa5, 0x2d, 0x52, 0xaa, 0xc2, 0xa1, 0xa5, 0x14, 0x23, + 0x15, 0xc4, 0x81, 0x68, 0xec, 0x8e, 0x12, 0x53, 0xc7, 0x76, 0x33, 0xe3, 0x84, 0xa8, 0xea, 0x05, + 0xfe, 0x00, 0x12, 0x12, 0x7f, 0x02, 0x71, 0xe0, 0xc6, 0x19, 0x2e, 0x1c, 0x10, 0xaa, 0xc4, 0x05, + 0x89, 0x0b, 0x6a, 0xf9, 0x21, 0xc8, 0xe3, 0x49, 0x13, 0x3b, 0x75, 0x9d, 0x74, 0x73, 0x4b, 0x9e, + 0xdf, 0x37, 0xef, 0xfb, 0xde, 0xbc, 0xf7, 0xd9, 0xb0, 0x60, 0x60, 0xa3, 0x67, 0xbb, 0x8e, 0x66, + 0x36, 0x89, 0x79, 0xea, 0xb9, 0x96, 0xc3, 0x2c, 0xa7, 0xa1, 0x75, 0x8a, 0xda, 0x99, 0x4f, 0xda, + 0x3d, 0xd5, 0x6b, 0xbb, 0xcc, 0x45, 0x79, 0x91, 0xa5, 0x46, 0xb2, 0xd4, 0x4e, 0x51, 0x5e, 0x4c, + 0xc4, 0x1b, 0x36, 0xad, 0x9f, 0x12, 0x71, 0x82, 0xbc, 0x62, 0xba, 0xb4, 0xe5, 0x52, 0xcd, 0xc0, + 0x94, 0x84, 0x47, 0x6b, 0x9d, 0xa2, 0x41, 0x18, 0x2e, 0x6a, 0x1e, 0x6e, 0x58, 0x0e, 0x66, 0x96, + 0xeb, 0x88, 0xdc, 0x67, 0x0d, 0xd7, 0x6d, 0xd8, 0x44, 0xc3, 0x9e, 0xa5, 0x61, 0xc7, 0x71, 0x19, + 0x7f, 0x48, 0xc5, 0xd3, 0x77, 0x13, 0x2b, 0x0e, 0x02, 0x61, 0xaa, 0xf2, 0xa3, 0x04, 0x6f, 0x7e, + 0x12, 0xd4, 0xd2, 0x71, 0x77, 0xf7, 0xe6, 0xe1, 0x81, 0x45, 0x99, 0x4e, 0xce, 0x7c, 0x42, 0x19, + 0xaa, 0xc1, 0x43, 0xca, 0x30, 0xf3, 0x69, 0x5e, 0x7a, 0x2e, 0x2d, 0xcf, 0x95, 0x56, 0xd4, 0x24, + 0xa5, 0xea, 0xe0, 0x80, 0x4f, 0x39, 0x42, 0x17, 0x48, 0xf4, 0x01, 0xc0, 0x40, 0x42, 0x3e, 0xf3, + 0x5c, 0x5a, 0xce, 0x95, 0x16, 0xd5, 0x50, 0xaf, 0x1a, 0xe8, 0x55, 0xc3, 0x56, 0x0a, 0xbd, 0xea, + 0x11, 0x6e, 0x10, 0x51, 0x5f, 0x1f, 0x42, 0x2a, 0xbf, 0x49, 0x50, 0x48, 0x62, 0x4b, 0x3d, 0xd7, + 0xa1, 0x04, 0x7d, 0x0e, 0xaf, 0xb6, 0x71, 0xb7, 0x3e, 0xe0, 0x16, 0xf0, 0x9e, 0x5d, 0xce, 0x95, + 0xb4, 0x64, 0xde, 0x91, 0xd3, 0x3e, 0xb3, 0x58, 0xf3, 0x23, 0xc2, 0xb0, 0x3e, 0xd7, 0x1e, 0x0e, + 0x53, 0xf4, 0xe1, 0x2d, 0x22, 0x96, 0x52, 0x45, 0x84, 0xb4, 0x22, 0x2a, 0xaa, 0xf0, 0xc6, 0xa8, + 0x88, 0x7e, 0xbb, 0x9f, 0x42, 0x96, 0x78, 0xae, 0xd9, 0xac, 0x3b, 0x7e, 0x8b, 0x77, 0xfc, 0x25, + 0xfd, 0x65, 0x1e, 0x38, 0xf4, 0x5b, 0x0a, 0x03, 0xf9, 0x36, 0xa4, 0x90, 0x7e, 0x0c, 0x73, 0x51, + 0xe9, 0x1c, 0x7f, 0x0f, 0xe5, 0x8f, 0x22, 0xca, 0x95, 0x6f, 0x25, 0x78, 0xc6, 0xcb, 0xd6, 0x6c, + 0x7a, 0xe4, 0x1b, 0xb6, 0x65, 0xee, 0x93, 0xde, 0xf0, 0x88, 0xdc, 0xc5, 0x79, 0x6a, 0x77, 0xff, + 0x67, 0x7f, 0x52, 0x47, 0x59, 0x08, 0xfd, 0x27, 0xf0, 0xa4, 0x83, 0x6d, 0xeb, 0x04, 0x33, 0xb7, + 0x5d, 0xef, 0x5a, 0xac, 0x59, 0x17, 0x0b, 0xd6, 0x1f, 0x81, 0xd5, 0xe4, 0x46, 0x1c, 0xf7, 0x81, + 0x41, 0x13, 0x6a, 0x36, 0xdd, 0x27, 0x3d, 0xfd, 0x71, 0x67, 0x34, 0x38, 0xc5, 0x31, 0xa8, 0xc0, + 0x13, 0xae, 0x67, 0x2f, 0xe8, 0x94, 0x58, 0x98, 0x71, 0x86, 0xe0, 0x4b, 0xc8, 0x8f, 0xe2, 0x44, + 0x0b, 0xa6, 0xb0, 0xac, 0xca, 0x1e, 0x28, 0xe1, 0x90, 0x11, 0x93, 0x38, 0x6c, 0xa8, 0xca, 0xae, + 0xeb, 0x0f, 0xe6, 0xf4, 0x2d, 0xc8, 0x85, 0x14, 0xcd, 0x20, 0x2a, 0x48, 0x02, 0x0f, 0xf1, 0x3c, + 0xe5, 0x87, 0x0c, 0xbc, 0x7d, 0xe7, 0x39, 0x82, 0xf2, 0x53, 0xc8, 0x32, 0xcb, 0xab, 0x73, 0x64, + 0x5f, 0x2b, 0xb3, 0x3c, 0x9e, 0x1f, 0xaf, 0x92, 0x89, 0x57, 0x41, 0x67, 0xf0, 0x4a, 0x48, 0x5b, + 0x64, 0xcc, 0xf2, 0x8b, 0x3e, 0x4c, 0x96, 0x3d, 0x06, 0x25, 0x75, 0x28, 0xb6, 0xe7, 0xb0, 0x76, + 0x4f, 0xcf, 0xd1, 0x41, 0x44, 0xde, 0x81, 0xf9, 0x78, 0x02, 0x9a, 0x87, 0xd9, 0x53, 0xd2, 0xe3, + 0xf4, 0xb3, 0x7a, 0xf0, 0x13, 0x3d, 0x86, 0x07, 0x1d, 0x6c, 0xfb, 0x44, 0x70, 0x0e, 0xff, 0x6c, + 0x66, 0xaa, 0x92, 0xf2, 0x15, 0x2c, 0x70, 0x12, 0x07, 0x98, 0xb2, 0xe8, 0xf2, 0x45, 0x87, 0x60, + 0x1a, 0x77, 0xd9, 0x85, 0x77, 0x52, 0x6a, 0x89, 0x5b, 0x38, 0x4c, 0xf0, 0x8e, 0xa5, 0x31, 0xbd, + 0x23, 0xe6, 0x19, 0xa5, 0x9f, 0xb2, 0xf0, 0x80, 0x57, 0x46, 0xbf, 0x4a, 0xf0, 0xda, 0x88, 0x5d, + 0xa3, 0x8d, 0xb4, 0x1b, 0x4a, 0x78, 0x1d, 0xc9, 0xd5, 0xc9, 0x81, 0xa1, 0x44, 0x65, 0xf3, 0x9b, + 0xbf, 0xfe, 0xfb, 0x3e, 0xb3, 0x8e, 0x4a, 0x5a, 0xe2, 0xeb, 0x31, 0xf6, 0xe6, 0xd0, 0xce, 0xc3, + 0x36, 0x5e, 0xa0, 0x5f, 0x24, 0x78, 0x14, 0x39, 0x19, 0xad, 0x4d, 0xc2, 0xa3, 0x4f, 0x7e, 0x7d, + 0x32, 0x90, 0x20, 0xbe, 0xc5, 0x89, 0x57, 0xd0, 0xfa, 0xb8, 0xc4, 0xb5, 0xf3, 0x1b, 0xf7, 0xb8, + 0x08, 0xfa, 0x3f, 0x1f, 0xb7, 0x4c, 0x54, 0x49, 0x21, 0x92, 0xe0, 0xf4, 0xf2, 0xc6, 0xc4, 0x38, + 0xa1, 0x61, 0x9b, 0x6b, 0xd8, 0x40, 0x65, 0xed, 0xce, 0xaf, 0x21, 0x8f, 0x83, 0xb9, 0x67, 0x47, + 0x44, 0xfc, 0x2c, 0x41, 0x6e, 0x68, 0x5d, 0x51, 0x31, 0x85, 0xc7, 0xa8, 0xa7, 0xca, 0xa5, 0x49, + 0x20, 0x82, 0xf5, 0x7b, 0x9c, 0x75, 0x19, 0xad, 0x25, 0xb3, 0xe6, 0x24, 0x23, 0x64, 0x35, 0xf1, + 0xd1, 0xf3, 0x87, 0x04, 0xaf, 0xdf, 0x6e, 0x34, 0x68, 0xeb, 0x9e, 0xfe, 0x14, 0x2a, 0xd9, 0x7e, + 0x21, 0x77, 0x53, 0xca, 0x5c, 0x94, 0x86, 0x56, 0xd3, 0x44, 0x6d, 0x0e, 0x3b, 0x2b, 0xfa, 0x47, + 0x82, 0x7c, 0x92, 0x8d, 0xa0, 0x9d, 0x14, 0x4a, 0x29, 0x5e, 0x27, 0xbf, 0x7f, 0x6f, 0xbc, 0x10, + 0xb5, 0xc3, 0x45, 0x55, 0x51, 0x25, 0x59, 0x94, 0x8d, 0x29, 0xab, 0xc7, 0x17, 0x45, 0x2c, 0x78, + 0xed, 0xe3, 0xdf, 0xaf, 0x0a, 0xd2, 0xe5, 0x55, 0x41, 0xfa, 0xf7, 0xaa, 0x20, 0x7d, 0x77, 0x5d, + 0x98, 0xb9, 0xbc, 0x2e, 0xcc, 0xfc, 0x7d, 0x5d, 0x98, 0xf9, 0xa2, 0xdc, 0xb0, 0x58, 0xd3, 0x37, + 0x54, 0xd3, 0x6d, 0xf5, 0xcf, 0x36, 0x9b, 0xd8, 0x72, 0x6e, 0x0a, 0x7d, 0x1d, 0x2b, 0xc5, 0x7a, + 0x1e, 0xa1, 0xc6, 0x43, 0xfe, 0x7d, 0xbd, 0xf6, 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x26, 0xf7, + 0x47, 0x75, 0x3e, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/checkpointing/types/tx.pb.go b/x/checkpointing/types/tx.pb.go index 05dc31f9b..18b6a0a87 100644 --- a/x/checkpointing/types/tx.pb.go +++ b/x/checkpointing/types/tx.pb.go @@ -6,6 +6,7 @@ package types import ( context "context" fmt "fmt" + _ "github.com/cosmos/cosmos-proto" types "github.com/cosmos/cosmos-sdk/x/staking/types" _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" @@ -32,7 +33,8 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // MsgAddBlsSig defines a message to add a bls signature from a // validator type MsgAddBlsSig struct { - BlsSig *BlsSig `protobuf:"bytes,1,opt,name=bls_sig,json=blsSig,proto3" json:"bls_sig,omitempty"` + Signer string `protobuf:"bytes,1,opt,name=signer,proto3" json:"signer,omitempty"` + BlsSig *BlsSig `protobuf:"bytes,2,opt,name=bls_sig,json=blsSig,proto3" json:"bls_sig,omitempty"` } func (m *MsgAddBlsSig) Reset() { *m = MsgAddBlsSig{} } @@ -192,32 +194,35 @@ func init() { func init() { proto.RegisterFile("babylon/checkpointing/v1/tx.proto", fileDescriptor_6b16c54750152c21) } var fileDescriptor_6b16c54750152c21 = []byte{ - // 399 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x92, 0xcd, 0x4a, 0xeb, 0x40, - 0x14, 0xc7, 0x33, 0xb7, 0xd0, 0x7b, 0xef, 0xdc, 0xbb, 0x0a, 0xa5, 0xd4, 0x2c, 0xd2, 0x0f, 0xa1, - 0xa8, 0x8b, 0x09, 0x6d, 0x71, 0xa1, 0xae, 0xac, 0x4b, 0x09, 0x42, 0x0a, 0x0a, 0x22, 0x94, 0x49, - 0x32, 0x4c, 0x43, 0x3e, 0x26, 0x64, 0xc6, 0xd2, 0xbc, 0x81, 0xb8, 0xf2, 0x11, 0xfa, 0x16, 0xbe, - 0x82, 0xcb, 0x2e, 0x5d, 0x4a, 0xbb, 0xf1, 0x0d, 0xdc, 0x4a, 0xf3, 0x41, 0x6b, 0x35, 0x52, 0x5c, - 0x25, 0x73, 0xf8, 0x9d, 0xff, 0xff, 0xfc, 0x0f, 0x07, 0x36, 0x4d, 0x6c, 0xc6, 0x1e, 0x0b, 0x34, - 0x6b, 0x44, 0x2c, 0x37, 0x64, 0x4e, 0x20, 0x9c, 0x80, 0x6a, 0xe3, 0x8e, 0x26, 0x26, 0x28, 0x8c, - 0x98, 0x60, 0x72, 0x2d, 0x43, 0xd0, 0x07, 0x04, 0x8d, 0x3b, 0x4a, 0x85, 0x32, 0xca, 0x12, 0x48, - 0x5b, 0xfe, 0xa5, 0xbc, 0xb2, 0x5f, 0x28, 0xb9, 0x2a, 0x64, 0x68, 0xbb, 0x10, 0x35, 0x3d, 0x3e, - 0x74, 0x49, 0x9c, 0x71, 0x75, 0x8b, 0x71, 0x9f, 0x71, 0x8d, 0x0b, 0xec, 0xa6, 0x80, 0x49, 0x04, - 0x5e, 0xcd, 0xd8, 0x1a, 0xc0, 0xff, 0x3a, 0xa7, 0xa7, 0xb6, 0xdd, 0xf7, 0xf8, 0xc0, 0xa1, 0xf2, - 0x11, 0xfc, 0xbd, 0x54, 0xe0, 0x0e, 0xad, 0x81, 0x06, 0xd8, 0xfb, 0xd7, 0x6d, 0xa0, 0xa2, 0x14, - 0x28, 0x6d, 0x31, 0xca, 0x66, 0xf2, 0x3d, 0xfe, 0x73, 0x37, 0xad, 0x4b, 0xaf, 0xd3, 0xba, 0xd4, - 0xaa, 0xc2, 0xca, 0xba, 0xa8, 0x41, 0x78, 0xc8, 0x02, 0x4e, 0x5a, 0x8f, 0x00, 0xee, 0xe8, 0x9c, - 0x5e, 0x45, 0x38, 0x0c, 0x89, 0x7d, 0x16, 0x11, 0x2c, 0xc8, 0x25, 0xf6, 0x1c, 0x1b, 0x0b, 0x16, - 0xc9, 0x5d, 0x58, 0x72, 0x49, 0xbc, 0x95, 0xed, 0x39, 0x89, 0x8d, 0x25, 0x2c, 0xdf, 0xc0, 0x8a, - 0xcf, 0xe9, 0xd0, 0x4a, 0xa4, 0x86, 0xe3, 0x5c, 0xab, 0xf6, 0x2b, 0x11, 0x39, 0x40, 0x69, 0x7c, - 0x94, 0xc5, 0x47, 0x59, 0x7c, 0xa4, 0x73, 0xba, 0xe1, 0x6e, 0xc8, 0xfe, 0xa7, 0xda, 0x5a, 0xa2, - 0x5d, 0xd8, 0x2c, 0x1c, 0x3c, 0x8f, 0xd7, 0x7d, 0x03, 0xb0, 0xa4, 0x73, 0x2a, 0x5b, 0xf0, 0xef, - 0x6a, 0xa1, 0xed, 0xe2, 0x20, 0xeb, 0x3b, 0x52, 0xd0, 0x76, 0x5c, 0x6e, 0x26, 0xdf, 0x03, 0x58, - 0x2d, 0x58, 0x64, 0xef, 0x5b, 0xa9, 0xaf, 0x9b, 0x94, 0x93, 0x1f, 0x34, 0xe5, 0xc3, 0xf4, 0x2f, - 0x9e, 0xe6, 0x2a, 0x98, 0xcd, 0x55, 0xf0, 0x32, 0x57, 0xc1, 0xc3, 0x42, 0x95, 0x66, 0x0b, 0x55, - 0x7a, 0x5e, 0xa8, 0xd2, 0xf5, 0x21, 0x75, 0xc4, 0xe8, 0xd6, 0x44, 0x16, 0xf3, 0xb5, 0xcc, 0xc0, - 0x1a, 0x61, 0x27, 0xc8, 0x1f, 0xda, 0x64, 0xe3, 0x84, 0x45, 0x1c, 0x12, 0x6e, 0x96, 0x93, 0xeb, - 0xec, 0xbd, 0x07, 0x00, 0x00, 0xff, 0xff, 0x57, 0x8a, 0x2d, 0x96, 0x66, 0x03, 0x00, 0x00, + // 447 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0x4f, 0x6b, 0xd4, 0x40, + 0x18, 0xc6, 0x33, 0x16, 0x56, 0x3b, 0x7a, 0x1a, 0x96, 0x92, 0xe6, 0x90, 0xdd, 0xae, 0x50, 0xaa, + 0xe0, 0xc4, 0x6e, 0xf1, 0xa0, 0x9e, 0xba, 0x1e, 0x25, 0x08, 0x29, 0x28, 0x88, 0x10, 0x26, 0xc9, + 0x30, 0x3b, 0xe4, 0xcf, 0x84, 0xbc, 0xe3, 0xd2, 0x7c, 0x00, 0x41, 0x3c, 0xf9, 0x11, 0xfa, 0x21, + 0x04, 0xbf, 0x82, 0xc7, 0xe2, 0xc9, 0xa3, 0xec, 0x5e, 0xfc, 0x06, 0x5e, 0x65, 0x93, 0x09, 0xbb, + 0x56, 0xa3, 0xe2, 0x29, 0x99, 0x37, 0xbf, 0xf7, 0x7d, 0x9e, 0xf7, 0x49, 0x82, 0x0f, 0x22, 0x16, + 0xd5, 0x99, 0x2a, 0xbc, 0x78, 0xce, 0xe3, 0xb4, 0x54, 0xb2, 0xd0, 0xb2, 0x10, 0xde, 0xe2, 0xd8, + 0xd3, 0xe7, 0xb4, 0xac, 0x94, 0x56, 0xc4, 0x36, 0x08, 0xfd, 0x09, 0xa1, 0x8b, 0x63, 0x67, 0x28, + 0x94, 0x50, 0x0d, 0xe4, 0xad, 0xef, 0x5a, 0xde, 0xb9, 0xd3, 0x3b, 0x72, 0x53, 0x30, 0xe8, 0x61, + 0x2f, 0x1a, 0x65, 0x10, 0xa6, 0xbc, 0x36, 0xdc, 0x28, 0x56, 0x90, 0x2b, 0xf0, 0x40, 0xb3, 0xb4, + 0x05, 0x22, 0xae, 0xd9, 0xc6, 0xa3, 0xb3, 0xdf, 0x02, 0x61, 0x6b, 0xa6, 0x3d, 0xb4, 0x8f, 0x26, + 0x6f, 0x10, 0xbe, 0xe5, 0x83, 0x38, 0x4d, 0x92, 0x59, 0x06, 0x67, 0x52, 0x90, 0xfb, 0x78, 0x00, + 0x52, 0x14, 0xbc, 0xb2, 0xd1, 0x18, 0x1d, 0xed, 0xce, 0xec, 0xcf, 0x1f, 0xee, 0x0d, 0x4d, 0xcb, + 0x69, 0x92, 0x54, 0x1c, 0xe0, 0x4c, 0x57, 0xb2, 0x10, 0x81, 0xe1, 0xc8, 0x43, 0x7c, 0x7d, 0xed, + 0x07, 0xa4, 0xb0, 0xaf, 0x8d, 0xd1, 0xd1, 0xcd, 0xe9, 0x98, 0xf6, 0x65, 0x42, 0x5b, 0x91, 0x60, + 0x10, 0x35, 0xd7, 0x47, 0x37, 0xde, 0x5e, 0x8c, 0xac, 0x6f, 0x17, 0x23, 0x6b, 0xb2, 0x87, 0x87, + 0xdb, 0x36, 0x02, 0x0e, 0xa5, 0x2a, 0x80, 0x4f, 0x3e, 0x22, 0xbc, 0xef, 0x83, 0x78, 0x51, 0xb1, + 0xb2, 0xe4, 0xc9, 0x93, 0x8a, 0x33, 0xcd, 0x9f, 0xb3, 0x4c, 0x26, 0x4c, 0xab, 0x8a, 0x4c, 0xf1, + 0x4e, 0xca, 0xeb, 0xc6, 0xe9, 0xdf, 0x64, 0x9f, 0xf2, 0x3a, 0x58, 0xc3, 0xe4, 0x15, 0x1e, 0xe6, + 0x20, 0xc2, 0xb8, 0x19, 0x15, 0x2e, 0xba, 0x59, 0xc6, 0xfb, 0x5d, 0x6a, 0x76, 0x35, 0x61, 0x52, + 0x13, 0x26, 0xf5, 0x41, 0x5c, 0x51, 0x0f, 0x48, 0xfe, 0x4b, 0x6d, 0x6b, 0xa3, 0xdb, 0xf8, 0xa0, + 0xd7, 0x78, 0xb7, 0xde, 0xf4, 0x3b, 0xc2, 0x3b, 0x3e, 0x08, 0x12, 0xe3, 0xdd, 0xcd, 0x2b, 0x38, + 0xec, 0x5f, 0x64, 0x3b, 0x23, 0x87, 0xfe, 0x1b, 0xd7, 0x89, 0x91, 0x77, 0x08, 0xef, 0xf5, 0x04, + 0x79, 0xf2, 0xc7, 0x51, 0xbf, 0x6f, 0x72, 0x1e, 0xff, 0x47, 0x53, 0x67, 0x66, 0xf6, 0xec, 0xd3, + 0xd2, 0x45, 0x97, 0x4b, 0x17, 0x7d, 0x5d, 0xba, 0xe8, 0xfd, 0xca, 0xb5, 0x2e, 0x57, 0xae, 0xf5, + 0x65, 0xe5, 0x5a, 0x2f, 0x1f, 0x08, 0xa9, 0xe7, 0xaf, 0x23, 0x1a, 0xab, 0xdc, 0x33, 0x02, 0xf1, + 0x9c, 0xc9, 0xa2, 0x3b, 0x78, 0xe7, 0x57, 0x7e, 0x08, 0x5d, 0x97, 0x1c, 0xa2, 0x41, 0xf3, 0x41, + 0x9f, 0xfc, 0x08, 0x00, 0x00, 0xff, 0xff, 0x8e, 0xef, 0x32, 0xf7, 0xb4, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -370,6 +375,13 @@ func (m *MsgAddBlsSig) MarshalToSizedBuffer(dAtA []byte) (int, error) { i = encodeVarintTx(dAtA, i, uint64(size)) } i-- + dAtA[i] = 0x12 + } + if len(m.Signer) > 0 { + i -= len(m.Signer) + copy(dAtA[i:], m.Signer) + i = encodeVarintTx(dAtA, i, uint64(len(m.Signer))) + i-- dAtA[i] = 0xa } return len(dAtA) - i, nil @@ -485,6 +497,10 @@ func (m *MsgAddBlsSig) Size() (n int) { } var l int _ = l + l = len(m.Signer) + if l > 0 { + n += 1 + l + sovTx(uint64(l)) + } if m.BlsSig != nil { l = m.BlsSig.Size() n += 1 + l + sovTx(uint64(l)) @@ -563,6 +579,38 @@ func (m *MsgAddBlsSig) Unmarshal(dAtA []byte) error { } switch fieldNum { case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Signer", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Signer = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field BlsSig", wireType) } diff --git a/x/monitor/types/genesis.pb.go b/x/monitor/types/genesis.pb.go index 2a2ba0c75..8e2be0c21 100644 --- a/x/monitor/types/genesis.pb.go +++ b/x/monitor/types/genesis.pb.go @@ -5,7 +5,6 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" math "math" @@ -67,17 +66,16 @@ func init() { func init() { proto.RegisterFile("babylon/monitor/v1/genesis.proto", fileDescriptor_fb844fd916189e7b) } var fileDescriptor_fb844fd916189e7b = []byte{ - // 156 bytes of a gzipped FileDescriptorProto + // 144 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x48, 0x4a, 0x4c, 0xaa, 0xcc, 0xc9, 0xcf, 0xd3, 0xcf, 0xcd, 0xcf, 0xcb, 0x2c, 0xc9, 0x2f, 0xd2, 0x2f, 0x33, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x82, 0xaa, - 0xd0, 0x83, 0xaa, 0xd0, 0x2b, 0x33, 0x94, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x4b, 0xeb, 0x83, - 0x58, 0x10, 0x95, 0x4a, 0x7c, 0x5c, 0x3c, 0xee, 0x10, 0xad, 0xc1, 0x25, 0x89, 0x25, 0xa9, 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, 0x9f, 0x9e, 0x59, 0x92, - 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x0f, 0x35, 0x3e, 0x39, 0x23, 0x31, 0x33, 0x0f, 0xc6, - 0xd1, 0xaf, 0x80, 0xbb, 0xa7, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x6c, 0x83, 0x31, 0x20, - 0x00, 0x00, 0xff, 0xff, 0x11, 0xca, 0xf1, 0x5e, 0xaf, 0x00, 0x00, 0x00, + 0xd0, 0x83, 0xaa, 0xd0, 0x2b, 0x33, 0x54, 0xe2, 0xe3, 0xe2, 0x71, 0x87, 0x28, 0x0a, 0x2e, 0x49, + 0x2c, 0x49, 0x75, 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, 0xfd, + 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xa8, 0x41, 0xc9, 0x19, 0x89, + 0x99, 0x79, 0x30, 0x8e, 0x7e, 0x05, 0xdc, 0xe6, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, + 0xad, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb7, 0x9f, 0x6b, 0xe2, 0x99, 0x00, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/monitor/types/query.pb.go b/x/monitor/types/query.pb.go index a1219b6bc..210128e1c 100644 --- a/x/monitor/types/query.pb.go +++ b/x/monitor/types/query.pb.go @@ -6,7 +6,6 @@ package types import ( context "context" fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" @@ -230,33 +229,33 @@ func init() { func init() { proto.RegisterFile("babylon/monitor/v1/query.proto", fileDescriptor_a8aafb034c55a8f2) } var fileDescriptor_a8aafb034c55a8f2 = []byte{ - // 414 bytes of a gzipped FileDescriptorProto + // 404 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x93, 0x4f, 0x8b, 0xd3, 0x40, - 0x18, 0xc6, 0x1b, 0xff, 0xb1, 0x3b, 0xc7, 0x71, 0x41, 0xc9, 0x4a, 0x5c, 0x72, 0xd0, 0x82, 0x98, - 0x61, 0xad, 0x9e, 0x14, 0x0f, 0xbb, 0xac, 0x54, 0x10, 0xc1, 0xdc, 0xf4, 0x12, 0x26, 0xd3, 0x21, - 0x33, 0x34, 0x99, 0x77, 0x9a, 0x99, 0x14, 0x4b, 0xe9, 0xc5, 0xa3, 0x27, 0xc1, 0x2f, 0xe2, 0xc7, - 0xf0, 0x22, 0x14, 0xbc, 0x78, 0x94, 0xd6, 0x0f, 0x22, 0x99, 0xc4, 0x5c, 0x4c, 0x2d, 0xea, 0x2d, - 0x79, 0x9f, 0x79, 0x7e, 0x79, 0xdf, 0xf7, 0xc9, 0xa0, 0x20, 0xa5, 0xe9, 0x22, 0x07, 0x45, 0x0a, - 0x50, 0xd2, 0x42, 0x49, 0xe6, 0xa7, 0x64, 0x56, 0xf1, 0x72, 0x11, 0xe9, 0x12, 0x2c, 0x60, 0xdc, - 0xea, 0x51, 0xab, 0x47, 0xf3, 0x53, 0xff, 0x28, 0x83, 0x0c, 0x9c, 0x4c, 0xea, 0xa7, 0xe6, 0xa4, - 0x7f, 0x2b, 0x03, 0xc8, 0x72, 0x4e, 0xa8, 0x96, 0x84, 0x2a, 0x05, 0x96, 0x5a, 0x09, 0xca, 0x34, - 0x6a, 0xf8, 0x14, 0xdd, 0x7e, 0x55, 0x63, 0x2f, 0xd4, 0x84, 0x4f, 0x2e, 0x34, 0x30, 0x71, 0x66, - 0xd9, 0x98, 0xcb, 0x4c, 0xd8, 0x98, 0xcf, 0x2a, 0x6e, 0x2c, 0x3e, 0x46, 0x87, 0xbc, 0x16, 0x12, - 0x55, 0x15, 0x37, 0xbd, 0x13, 0x6f, 0x78, 0x25, 0x3e, 0x70, 0x85, 0x97, 0x55, 0x11, 0xbe, 0x46, - 0x27, 0xbb, 0xfd, 0x46, 0x83, 0x32, 0x1c, 0x3f, 0x42, 0x37, 0x52, 0xcb, 0x92, 0xbc, 0x2e, 0x26, - 0x2c, 0x97, 0x5c, 0xd9, 0x44, 0xb8, 0x23, 0x2d, 0xee, 0x28, 0xb5, 0xec, 0x45, 0xfd, 0x7e, 0xee, - 0xc4, 0xc6, 0x1e, 0x3e, 0x43, 0x77, 0x1d, 0x3a, 0xe6, 0x1a, 0x4a, 0xcb, 0x27, 0xe7, 0x82, 0xb3, - 0xa9, 0x06, 0xa9, 0x6c, 0x5f, 0x8b, 0x6c, 0xaa, 0x6d, 0x22, 0xa8, 0x11, 0x8e, 0x79, 0x18, 0x1f, - 0xd4, 0x85, 0x31, 0x35, 0x22, 0xa4, 0x68, 0xb8, 0x9f, 0xf3, 0x5f, 0xad, 0x3e, 0x78, 0x7f, 0x19, - 0x5d, 0x75, 0xdf, 0xc0, 0x9f, 0x3c, 0x74, 0xbd, 0x67, 0x17, 0x78, 0x14, 0xfd, 0x1e, 0x58, 0xb4, - 0x67, 0xf3, 0xfe, 0xc3, 0xbf, 0x33, 0x35, 0x33, 0x84, 0xd1, 0xbb, 0xaf, 0x3f, 0x3e, 0x5e, 0x1a, - 0xe2, 0x3b, 0xa4, 0xe7, 0x1f, 0x72, 0xc1, 0x19, 0xb2, 0xec, 0x12, 0x5d, 0xe1, 0x2f, 0x1e, 0x3a, - 0xfe, 0xc3, 0x6e, 0xf0, 0xe3, 0x9d, 0x5d, 0xec, 0x4f, 0xc6, 0x7f, 0xf2, 0x6f, 0xe6, 0x76, 0x94, - 0x91, 0x1b, 0xe5, 0x3e, 0xbe, 0xd7, 0x37, 0x0a, 0xeb, 0x8c, 0x86, 0x2c, 0xbb, 0xf8, 0x57, 0x67, - 0xcf, 0x3f, 0x6f, 0x02, 0x6f, 0xbd, 0x09, 0xbc, 0xef, 0x9b, 0xc0, 0xfb, 0xb0, 0x0d, 0x06, 0xeb, - 0x6d, 0x30, 0xf8, 0xb6, 0x0d, 0x06, 0x6f, 0x48, 0x26, 0xad, 0xa8, 0xd2, 0x88, 0x41, 0xf1, 0x0b, - 0xc8, 0x04, 0x95, 0xaa, 0xa3, 0xbf, 0xed, 0xf8, 0x76, 0xa1, 0xb9, 0x49, 0xaf, 0xb9, 0x4b, 0x32, - 0xfa, 0x19, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x9f, 0x08, 0x3d, 0x8e, 0x03, 0x00, 0x00, + 0x18, 0xc6, 0x1b, 0xff, 0xd1, 0xce, 0x71, 0x14, 0x94, 0x56, 0x62, 0xc9, 0x41, 0x0b, 0x62, 0x86, + 0x5a, 0x3d, 0x29, 0x1e, 0x5a, 0x2a, 0x15, 0x44, 0x30, 0x37, 0xbd, 0x84, 0xc9, 0x74, 0xc8, 0x0c, + 0x4d, 0x66, 0xa6, 0x99, 0x49, 0xb1, 0x94, 0x5e, 0x3c, 0x7a, 0x12, 0xfc, 0x22, 0x7e, 0x0c, 0x2f, + 0x42, 0xc1, 0x8b, 0xc7, 0xa5, 0xdd, 0x0f, 0xb2, 0x64, 0x9a, 0xcd, 0x65, 0xd3, 0x2d, 0xbb, 0x7b, + 0xcc, 0xfb, 0xe6, 0xf9, 0xcd, 0xfb, 0xbc, 0xcf, 0x0c, 0x70, 0x23, 0x1c, 0x2d, 0x13, 0x29, 0x50, + 0x2a, 0x05, 0x37, 0x32, 0x43, 0x8b, 0x3e, 0x9a, 0xe7, 0x34, 0x5b, 0xfa, 0x2a, 0x93, 0x46, 0x42, + 0x58, 0xf6, 0xfd, 0xb2, 0xef, 0x2f, 0xfa, 0xed, 0xc7, 0xb1, 0x94, 0x71, 0x42, 0x11, 0x56, 0x1c, + 0x61, 0x21, 0xa4, 0xc1, 0x86, 0x4b, 0xa1, 0xf7, 0x0a, 0xef, 0x1d, 0x78, 0xf2, 0xb9, 0x00, 0x8c, + 0xc5, 0x94, 0x4e, 0xc7, 0x4a, 0x12, 0x36, 0x34, 0x64, 0x42, 0x79, 0xcc, 0x4c, 0x40, 0xe7, 0x39, + 0xd5, 0x06, 0x76, 0x40, 0x8b, 0x16, 0x8d, 0x50, 0xe4, 0xe9, 0x23, 0xa7, 0xeb, 0xf4, 0xee, 0x04, + 0x4d, 0x5b, 0xf8, 0x94, 0xa7, 0xde, 0x17, 0xd0, 0x3d, 0xac, 0xd7, 0x4a, 0x0a, 0x4d, 0xe1, 0x6b, + 0xf0, 0x30, 0x32, 0x24, 0x4c, 0x8a, 0x62, 0x48, 0x12, 0x4e, 0x85, 0x09, 0x99, 0xfd, 0xa5, 0xc4, + 0x3d, 0x88, 0x0c, 0xf9, 0x58, 0x7c, 0x8f, 0x6c, 0x73, 0x2f, 0xf7, 0xde, 0x83, 0x67, 0x16, 0x1d, + 0x50, 0x25, 0x33, 0x43, 0xa7, 0x23, 0x46, 0xc9, 0x4c, 0x49, 0x2e, 0x4c, 0xdd, 0x88, 0x64, 0xa6, + 0x4c, 0xc8, 0xb0, 0x66, 0x96, 0xd9, 0x0a, 0x9a, 0x45, 0x61, 0x82, 0x35, 0xf3, 0x30, 0xe8, 0x1d, + 0xe7, 0xdc, 0x68, 0xd4, 0x97, 0x3f, 0x6e, 0x83, 0xbb, 0xf6, 0x0c, 0xf8, 0xdb, 0x01, 0xf7, 0x6b, + 0x76, 0x01, 0x07, 0xfe, 0xc5, 0x68, 0xfc, 0x23, 0x9b, 0x6f, 0xbf, 0xba, 0x9a, 0x68, 0xef, 0xc1, + 0xf3, 0xbf, 0xff, 0x3b, 0xfd, 0x75, 0xab, 0x07, 0x9f, 0xa2, 0x9a, 0xdb, 0x62, 0x83, 0xd3, 0x68, + 0x55, 0x25, 0xba, 0x86, 0x7f, 0x1d, 0xd0, 0xb9, 0x64, 0x37, 0xf0, 0xcd, 0xc1, 0x29, 0x8e, 0x27, + 0xd3, 0x7e, 0x7b, 0x3d, 0x71, 0x69, 0x65, 0x60, 0xad, 0xbc, 0x80, 0xcf, 0xeb, 0xac, 0x90, 0x4a, + 0xa8, 0xd1, 0xaa, 0x8a, 0x7f, 0x3d, 0xfc, 0xf0, 0x67, 0xeb, 0x3a, 0x9b, 0xad, 0xeb, 0x9c, 0x6c, + 0x5d, 0xe7, 0xe7, 0xce, 0x6d, 0x6c, 0x76, 0x6e, 0xe3, 0xff, 0xce, 0x6d, 0x7c, 0x45, 0x31, 0x37, + 0x2c, 0x8f, 0x7c, 0x22, 0xd3, 0x73, 0x20, 0x61, 0x98, 0x8b, 0x8a, 0xfe, 0xad, 0xe2, 0x9b, 0xa5, + 0xa2, 0x3a, 0xba, 0x67, 0x1f, 0xc9, 0xe0, 0x2c, 0x00, 0x00, 0xff, 0xff, 0xf9, 0x12, 0xa1, 0x9a, + 0x78, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/zoneconcierge/types/genesis.pb.go b/x/zoneconcierge/types/genesis.pb.go index 7c4d2fe05..67c72b428 100644 --- a/x/zoneconcierge/types/genesis.pb.go +++ b/x/zoneconcierge/types/genesis.pb.go @@ -5,7 +5,6 @@ package types import ( fmt "fmt" - _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" io "io" math "math" @@ -77,19 +76,18 @@ func init() { } var fileDescriptor_56f290ad7c2c7dc7 = []byte{ - // 186 bytes of a gzipped FileDescriptorProto + // 173 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4b, 0x4a, 0x4c, 0xaa, 0xcc, 0xc9, 0xcf, 0xd3, 0xaf, 0xca, 0xcf, 0x4b, 0x4d, 0xce, 0xcf, 0x4b, 0xce, 0x4c, 0x2d, 0x4a, 0x4f, 0xd5, 0x2f, 0x33, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, - 0x2f, 0xc9, 0x17, 0x92, 0x80, 0xaa, 0xd3, 0x43, 0x51, 0xa7, 0x57, 0x66, 0x28, 0x25, 0x92, 0x9e, - 0x9f, 0x9e, 0x0f, 0x56, 0xa4, 0x0f, 0x62, 0x41, 0xd4, 0x2b, 0xa9, 0x73, 0xf1, 0xb8, 0x43, 0x0c, - 0x08, 0x2e, 0x49, 0x2c, 0x49, 0x15, 0x12, 0xe7, 0x62, 0x2f, 0xc8, 0x2f, 0x2a, 0x89, 0xcf, 0x4c, - 0x91, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0c, 0x62, 0x03, 0x71, 0x3d, 0x53, 0x9c, 0xfc, 0x4f, 0x3c, - 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, - 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0xca, 0x34, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, - 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0x6a, 0x7b, 0x72, 0x46, 0x62, 0x66, 0x1e, 0x8c, 0xa3, 0x5f, 0x81, - 0xe6, 0xe8, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0x03, 0x8c, 0x01, 0x01, 0x00, 0x00, - 0xff, 0xff, 0xbf, 0x3e, 0xc9, 0x02, 0xda, 0x00, 0x00, 0x00, + 0x2f, 0xc9, 0x17, 0x92, 0x80, 0xaa, 0xd3, 0x43, 0x51, 0xa7, 0x57, 0x66, 0xa8, 0xa4, 0xce, 0xc5, + 0xe3, 0x0e, 0x51, 0x1a, 0x5c, 0x92, 0x58, 0x92, 0x2a, 0x24, 0xce, 0xc5, 0x5e, 0x90, 0x5f, 0x54, + 0x12, 0x9f, 0x99, 0x22, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0xc4, 0x06, 0xe2, 0x7a, 0xa6, 0x38, + 0xf9, 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, 0x69, 0x7a, 0x66, 0x49, + 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0xd4, 0x9e, 0xe4, 0x8c, 0xc4, 0xcc, 0x3c, 0x18, + 0x47, 0xbf, 0x02, 0xcd, 0x79, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0xa7, 0x19, 0x03, + 0x02, 0x00, 0x00, 0xff, 0xff, 0x7f, 0x84, 0xa6, 0xb1, 0xc4, 0x00, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/zoneconcierge/types/query.pb.go b/x/zoneconcierge/types/query.pb.go index 25fd96778..9841ea276 100644 --- a/x/zoneconcierge/types/query.pb.go +++ b/x/zoneconcierge/types/query.pb.go @@ -10,7 +10,6 @@ import ( types1 "github.com/babylonchain/babylon/x/checkpointing/types" types "github.com/babylonchain/babylon/x/epoching/types" query "github.com/cosmos/cosmos-sdk/types/query" - _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" @@ -966,75 +965,74 @@ func init() { } var fileDescriptor_cd665af90102da38 = []byte{ - // 1080 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x57, 0x4f, 0x6f, 0xdc, 0x44, - 0x14, 0x8f, 0xf3, 0xaf, 0xd9, 0x97, 0x52, 0x55, 0x43, 0x28, 0x8b, 0xd3, 0x6e, 0x23, 0x83, 0x20, - 0xad, 0x82, 0xcd, 0x2e, 0x2d, 0x25, 0xe2, 0x50, 0x25, 0x29, 0x49, 0x43, 0x51, 0x69, 0x0c, 0xe1, - 0x80, 0x90, 0x56, 0xb6, 0x77, 0xd6, 0x6b, 0x25, 0x3b, 0xb3, 0xf5, 0x78, 0xb7, 0xdd, 0x86, 0x70, - 0xe0, 0x13, 0x20, 0xc1, 0x01, 0x71, 0x45, 0x02, 0x89, 0x43, 0x3f, 0x07, 0x48, 0x3d, 0x54, 0xe2, - 0xc2, 0x11, 0x25, 0x7c, 0x0d, 0x24, 0xe4, 0x99, 0xb1, 0xd7, 0x5e, 0xaf, 0xd9, 0x3f, 0xe4, 0xc0, - 0x81, 0xdb, 0xce, 0xf8, 0xbd, 0xdf, 0xfb, 0xbd, 0x3f, 0xf3, 0xde, 0x5b, 0x78, 0xcd, 0xb6, 0xec, - 0xee, 0x21, 0x25, 0xc6, 0x13, 0x4a, 0xb0, 0x43, 0x89, 0xe3, 0x61, 0xdf, 0xc5, 0x46, 0xa7, 0x6c, - 0x3c, 0x6c, 0x63, 0xbf, 0xab, 0xb7, 0x7c, 0x1a, 0x50, 0x54, 0x94, 0x52, 0x7a, 0x4a, 0x4a, 0xef, - 0x94, 0xd5, 0x25, 0x97, 0xba, 0x94, 0x0b, 0x19, 0xe1, 0x2f, 0x21, 0xaf, 0x5e, 0x76, 0x29, 0x75, - 0x0f, 0xb1, 0x61, 0xb5, 0x3c, 0xc3, 0x22, 0x84, 0x06, 0x56, 0xe0, 0x51, 0xc2, 0xe4, 0xd7, 0xeb, - 0x0e, 0x65, 0x4d, 0xca, 0x0c, 0xdb, 0x62, 0x58, 0x98, 0x31, 0x3a, 0x65, 0x1b, 0x07, 0x56, 0xd9, - 0x68, 0x59, 0xae, 0x47, 0xb8, 0xb0, 0x94, 0x5d, 0x8b, 0xf8, 0xd9, 0x81, 0xe3, 0x34, 0xb0, 0x73, - 0xd0, 0xa2, 0x1e, 0x09, 0x42, 0x7e, 0xa9, 0x0b, 0x29, 0x7d, 0x2d, 0x92, 0xee, 0x7d, 0xf1, 0x88, - 0x1b, 0x4a, 0x67, 0x44, 0xb5, 0x48, 0x14, 0xb7, 0xa8, 0xd3, 0x90, 0x52, 0xd1, 0xef, 0x7e, 0xe3, - 0x99, 0xe0, 0xa4, 0xe3, 0xc0, 0xa5, 0xb5, 0x1d, 0x40, 0x7b, 0xa1, 0x33, 0x77, 0xb1, 0x55, 0xc3, - 0xbe, 0x89, 0x1f, 0xb6, 0x31, 0x0b, 0xd0, 0x2b, 0xb0, 0xe0, 0x34, 0x2c, 0x8f, 0x54, 0xbd, 0x5a, - 0x51, 0x59, 0x51, 0x56, 0x0b, 0xe6, 0x39, 0x7e, 0xde, 0xad, 0xa1, 0x4b, 0x30, 0xdf, 0xc0, 0x9e, - 0xdb, 0x08, 0x8a, 0xd3, 0x2b, 0xca, 0xea, 0xac, 0x29, 0x4f, 0xda, 0xf7, 0x0a, 0xbc, 0x98, 0x42, - 0x62, 0x2d, 0x4a, 0x18, 0x46, 0xb7, 0x43, 0xf9, 0xf0, 0x86, 0x03, 0x2d, 0x56, 0xde, 0xd0, 0xf3, - 0xd2, 0xa2, 0xef, 0x92, 0x1a, 0x7e, 0x8c, 0x6b, 0x12, 0x40, 0xaa, 0xa1, 0x4d, 0x38, 0x5f, 0xa7, - 0xfe, 0x41, 0x55, 0x1c, 0x19, 0x37, 0xbb, 0x58, 0xb9, 0x9a, 0x0f, 0xb3, 0x4d, 0xfd, 0x03, 0x66, - 0x2e, 0x86, 0x4a, 0x02, 0x8a, 0x69, 0x55, 0x78, 0x89, 0x73, 0xdb, 0x0a, 0x9d, 0xf8, 0xd0, 0x63, - 0x41, 0xe4, 0xe8, 0x36, 0x40, 0x2f, 0x7b, 0x92, 0xe1, 0xeb, 0xba, 0x48, 0xb5, 0x1e, 0xa6, 0x5a, - 0x17, 0x15, 0x25, 0x53, 0xad, 0x3f, 0xb0, 0x5c, 0x2c, 0x75, 0xcd, 0x84, 0xa6, 0xf6, 0x25, 0x5c, - 0xea, 0x37, 0x20, 0xfd, 0x5f, 0x86, 0x42, 0x14, 0x4a, 0x56, 0x54, 0x56, 0x66, 0x56, 0x0b, 0xe6, - 0x82, 0x8c, 0x25, 0x43, 0x3b, 0x29, 0xf3, 0xd3, 0x32, 0x40, 0xc3, 0xcc, 0x0b, 0xe4, 0x94, 0xfd, - 0x4a, 0xd2, 0xc1, 0x5d, 0x52, 0xa7, 0xc3, 0x33, 0xa9, 0x7d, 0x9e, 0xe4, 0x2c, 0x74, 0x24, 0xe7, - 0x4d, 0x00, 0xa9, 0x44, 0xea, 0x54, 0x46, 0xe5, 0xd5, 0xfc, 0x80, 0xf7, 0x00, 0x84, 0xab, 0xe1, - 0x4f, 0xed, 0x13, 0x50, 0x39, 0xfa, 0xfb, 0x61, 0x75, 0x66, 0x68, 0x2d, 0x43, 0x81, 0x97, 0x6d, - 0x95, 0xb4, 0x9b, 0xdc, 0xc0, 0xac, 0xb9, 0xc0, 0x2f, 0xee, 0xb7, 0x9b, 0x29, 0xce, 0xd3, 0x69, - 0xce, 0x16, 0x2c, 0x0f, 0x44, 0x3d, 0x43, 0xe2, 0x5f, 0xc0, 0xcb, 0xdc, 0x44, 0x98, 0x45, 0x59, - 0x3f, 0x23, 0x3c, 0x8b, 0xed, 0x01, 0x99, 0x9c, 0xa4, 0x90, 0x7e, 0x54, 0xa0, 0x98, 0x35, 0x2f, - 0xdd, 0xdb, 0x80, 0x73, 0xd1, 0x2b, 0x08, 0x2b, 0x69, 0x8c, 0xc7, 0x14, 0xe9, 0x9d, 0x5d, 0xc5, - 0x7d, 0x0a, 0x97, 0x63, 0x9e, 0x3c, 0x1b, 0x7d, 0xb1, 0x9a, 0x34, 0xc3, 0x36, 0x5c, 0xc9, 0xc1, - 0x3d, 0xb3, 0x20, 0x68, 0x7b, 0x50, 0xe2, 0x36, 0xb6, 0x3d, 0x62, 0x1d, 0x7a, 0x4f, 0x70, 0x6d, - 0x8c, 0x67, 0x83, 0x96, 0x60, 0xae, 0xe5, 0xd3, 0x0e, 0xe6, 0xc4, 0x17, 0x4c, 0x71, 0xd0, 0x7e, - 0x98, 0x81, 0xab, 0xb9, 0x98, 0x92, 0xf9, 0x3e, 0x2c, 0xd5, 0xa3, 0xaf, 0xd5, 0xc9, 0xea, 0x14, - 0xd5, 0x33, 0xf0, 0x68, 0x1d, 0x40, 0x44, 0x9a, 0x83, 0x89, 0x94, 0xaa, 0x31, 0x58, 0x3c, 0x1d, - 0x3a, 0x65, 0x9d, 0xc7, 0xd3, 0x14, 0x79, 0xe1, 0xaa, 0xf7, 0xe1, 0x82, 0x6f, 0x3d, 0xaa, 0xf6, - 0xe6, 0x4c, 0x71, 0xa6, 0xaf, 0x49, 0xa7, 0x66, 0x52, 0x88, 0x61, 0x5a, 0x8f, 0xb6, 0xe2, 0x3b, - 0xf3, 0x05, 0x3f, 0x79, 0x44, 0xfb, 0x80, 0xec, 0xc0, 0xa9, 0xb2, 0xb6, 0xdd, 0xf4, 0x18, 0xf3, - 0x28, 0xa9, 0x1e, 0xe0, 0x6e, 0x71, 0xb6, 0x0f, 0x33, 0x3d, 0x04, 0x3b, 0x65, 0xfd, 0xe3, 0x58, - 0xfe, 0x1e, 0xee, 0x9a, 0x17, 0xed, 0xc0, 0x49, 0xdd, 0xa0, 0x1d, 0x1e, 0x72, 0x5a, 0x2f, 0xce, - 0x71, 0xa4, 0x72, 0x7e, 0xa4, 0x1e, 0x84, 0x62, 0x03, 0x52, 0x20, 0xf4, 0xb5, 0x00, 0xae, 0xe5, - 0x24, 0x69, 0x9f, 0x04, 0xde, 0xe1, 0x5d, 0x3e, 0xca, 0x26, 0x1f, 0x82, 0xbd, 0xda, 0x98, 0x49, - 0xd6, 0xc6, 0xd3, 0x19, 0xb8, 0x3e, 0x8a, 0xd9, 0xff, 0xcb, 0xe4, 0xbf, 0x51, 0x26, 0x95, 0x6f, - 0xcf, 0xc3, 0x1c, 0x4f, 0x18, 0x7a, 0xaa, 0xc0, 0xbc, 0xe8, 0x1e, 0x68, 0x2d, 0x1f, 0x2e, 0xbb, - 0x41, 0xa9, 0x6f, 0x8e, 0x28, 0x2d, 0x72, 0xae, 0xed, 0x7c, 0xf5, 0xdb, 0x9f, 0xdf, 0x4c, 0x6f, - 0xa0, 0xdb, 0x46, 0xee, 0xf6, 0xd6, 0xab, 0x04, 0xe3, 0x28, 0xaa, 0xcb, 0x63, 0x43, 0xb4, 0x34, - 0xe3, 0x48, 0x14, 0xe0, 0x31, 0xfa, 0x4e, 0x81, 0x42, 0xbc, 0x84, 0x20, 0x63, 0x08, 0x8b, 0xfe, - 0x7d, 0x48, 0x7d, 0x6b, 0x74, 0x05, 0xc9, 0x7c, 0x95, 0x33, 0xd7, 0xd0, 0xca, 0x10, 0xe6, 0x0c, - 0xfd, 0x14, 0x51, 0xe3, 0x35, 0x35, 0x12, 0xb5, 0x44, 0x4b, 0x1e, 0x8d, 0x5a, 0xb2, 0xdf, 0x6a, - 0xb7, 0x38, 0xb5, 0x32, 0x32, 0xc6, 0x0c, 0x2a, 0xfa, 0x55, 0x81, 0x0b, 0xe9, 0x0d, 0x03, 0xdd, - 0x18, 0x62, 0x7d, 0xe0, 0x9a, 0xa3, 0xde, 0x1c, 0x53, 0x4b, 0x12, 0xff, 0x80, 0x13, 0xbf, 0x83, - 0x36, 0xc7, 0xad, 0x06, 0xfe, 0x64, 0x99, 0x71, 0x14, 0x4f, 0xde, 0x63, 0xf4, 0xb3, 0x02, 0x8b, - 0x89, 0x5d, 0x02, 0x95, 0x87, 0x50, 0xca, 0xae, 0x3d, 0x6a, 0x65, 0x1c, 0x15, 0xe9, 0xc2, 0x0d, - 0xee, 0x82, 0x8e, 0xd6, 0xf2, 0x5d, 0x90, 0xd3, 0x38, 0x19, 0xf8, 0x67, 0x0a, 0x5c, 0xec, 0x1f, - 0xfc, 0xe8, 0x9d, 0x11, 0xcc, 0x0f, 0xd8, 0x40, 0xd4, 0x5b, 0x63, 0xeb, 0x8d, 0xfe, 0x18, 0xb3, - 0xdc, 0x07, 0xc5, 0xfe, 0x99, 0x02, 0x28, 0xdb, 0x65, 0xd0, 0xbb, 0x43, 0x88, 0xe5, 0xae, 0x25, - 0xea, 0xfa, 0x04, 0x9a, 0xd2, 0xa9, 0x0d, 0xee, 0xd4, 0x7b, 0x68, 0x3d, 0xdf, 0xa9, 0x41, 0x53, - 0x27, 0x99, 0x9d, 0xbf, 0x14, 0xb8, 0xf2, 0x8f, 0x23, 0x0c, 0x6d, 0x8d, 0xcd, 0x2f, 0x3b, 0x77, - 0xd5, 0x3b, 0xff, 0x0e, 0x44, 0xfa, 0xbb, 0xc7, 0xfd, 0xbd, 0x87, 0x76, 0x27, 0xf6, 0xd7, 0x10, - 0x3d, 0x35, 0xee, 0xad, 0x9b, 0x1f, 0xfd, 0x72, 0x52, 0x52, 0x9e, 0x9f, 0x94, 0x94, 0x3f, 0x4e, - 0x4a, 0xca, 0xd7, 0xa7, 0xa5, 0xa9, 0xe7, 0xa7, 0xa5, 0xa9, 0xdf, 0x4f, 0x4b, 0x53, 0x9f, 0xdd, - 0x74, 0xbd, 0xa0, 0xd1, 0xb6, 0x75, 0x87, 0x36, 0x23, 0x73, 0x1c, 0x26, 0xb6, 0xfd, 0xb8, 0xcf, - 0x7a, 0xd0, 0x6d, 0x61, 0x66, 0xcf, 0xf3, 0xff, 0xe0, 0x6f, 0xff, 0x1d, 0x00, 0x00, 0xff, 0xff, - 0xdc, 0x2b, 0x14, 0x99, 0xd0, 0x10, 0x00, 0x00, + // 1071 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x57, 0x4f, 0x6f, 0x1b, 0x45, + 0x14, 0xef, 0xc6, 0x49, 0x1a, 0xbf, 0x94, 0xaa, 0x1a, 0x4a, 0x31, 0x9b, 0xd6, 0x8d, 0x16, 0x04, + 0x69, 0x15, 0x76, 0x59, 0xd3, 0x52, 0x22, 0x0e, 0x55, 0x92, 0x92, 0x34, 0x14, 0x95, 0x66, 0x21, + 0x1c, 0x10, 0x92, 0xb5, 0xbb, 0x1e, 0xdb, 0xab, 0xc4, 0x33, 0xee, 0xce, 0xda, 0xad, 0x1b, 0xc2, + 0x81, 0x4f, 0x80, 0x04, 0x07, 0xc4, 0x15, 0x09, 0x24, 0x0e, 0xfd, 0x1c, 0x20, 0xf5, 0x50, 0x89, + 0x0b, 0x47, 0x94, 0xf0, 0x35, 0x90, 0xd0, 0xce, 0xcc, 0xae, 0x77, 0xbd, 0x5e, 0xfc, 0x87, 0x1c, + 0x38, 0x70, 0xf3, 0xcc, 0xbe, 0xf7, 0x7b, 0xbf, 0xf7, 0x67, 0xde, 0x7b, 0x86, 0xd7, 0x1c, 0xdb, + 0xe9, 0x1d, 0x50, 0x62, 0x3c, 0xa1, 0x04, 0xbb, 0x94, 0xb8, 0x1e, 0xf6, 0x1b, 0xd8, 0xe8, 0x9a, + 0xc6, 0xc3, 0x0e, 0xf6, 0x7b, 0x7a, 0xdb, 0xa7, 0x01, 0x45, 0x25, 0x29, 0xa5, 0xa7, 0xa4, 0xf4, + 0xae, 0xa9, 0x5e, 0x6e, 0x50, 0xda, 0x38, 0xc0, 0x86, 0xdd, 0xf6, 0x0c, 0x9b, 0x10, 0x1a, 0xd8, + 0x81, 0x47, 0x09, 0x13, 0x7a, 0xea, 0x75, 0x97, 0xb2, 0x16, 0x65, 0x86, 0x63, 0x33, 0x2c, 0x00, + 0x8d, 0xae, 0xe9, 0xe0, 0xc0, 0x36, 0x8d, 0xb6, 0xdd, 0xf0, 0x08, 0x17, 0x96, 0xb2, 0xab, 0x11, + 0x13, 0x27, 0x70, 0xdd, 0x26, 0x76, 0xf7, 0xdb, 0xd4, 0x23, 0x41, 0xc8, 0x24, 0x75, 0x21, 0xa5, + 0xaf, 0x45, 0xd2, 0xfd, 0x2f, 0x1e, 0x69, 0x84, 0xd2, 0x19, 0x51, 0x2d, 0x12, 0xc5, 0x6d, 0xea, + 0x36, 0xa5, 0x54, 0xf4, 0x7b, 0xd0, 0x78, 0x26, 0x0c, 0x69, 0x8f, 0xb9, 0xb4, 0xb6, 0x0d, 0x68, + 0x37, 0x74, 0xe6, 0x2e, 0xb6, 0x6b, 0xd8, 0xb7, 0xf0, 0xc3, 0x0e, 0x66, 0x01, 0x7a, 0x05, 0x16, + 0xdc, 0xa6, 0xed, 0x91, 0xaa, 0x57, 0x2b, 0x29, 0xcb, 0xca, 0x4a, 0xd1, 0x3a, 0xcb, 0xcf, 0x3b, + 0x35, 0x74, 0x09, 0xe6, 0x9b, 0xd8, 0x6b, 0x34, 0x83, 0xd2, 0xcc, 0xb2, 0xb2, 0x32, 0x6b, 0xc9, + 0x93, 0xf6, 0xbd, 0x02, 0x2f, 0xa6, 0x90, 0x58, 0x9b, 0x12, 0x86, 0xd1, 0xed, 0x50, 0x3e, 0xbc, + 0xe1, 0x40, 0x8b, 0x95, 0x37, 0xf4, 0xbc, 0x04, 0xe8, 0x3b, 0xa4, 0x86, 0x1f, 0xe3, 0x9a, 0x04, + 0x90, 0x6a, 0x68, 0x03, 0xce, 0xd5, 0xa9, 0xbf, 0x5f, 0x15, 0x47, 0xc6, 0xcd, 0x2e, 0x56, 0xae, + 0xe6, 0xc3, 0x6c, 0x51, 0x7f, 0x9f, 0x59, 0x8b, 0xa1, 0x92, 0x80, 0x62, 0x5a, 0x15, 0x5e, 0xe2, + 0xdc, 0x36, 0x43, 0x27, 0x3e, 0xf4, 0x58, 0x10, 0x39, 0xba, 0x05, 0xd0, 0xcf, 0x9e, 0x64, 0xf8, + 0xba, 0x2e, 0x52, 0xad, 0x87, 0xa9, 0xd6, 0x45, 0xed, 0xc8, 0x54, 0xeb, 0x0f, 0xec, 0x06, 0x96, + 0xba, 0x56, 0x42, 0x53, 0xfb, 0x12, 0x2e, 0x0d, 0x1a, 0x90, 0xfe, 0x2f, 0x41, 0x31, 0x0a, 0x25, + 0x2b, 0x29, 0xcb, 0x85, 0x95, 0xa2, 0xb5, 0x20, 0x63, 0xc9, 0xd0, 0x76, 0xca, 0xfc, 0x8c, 0x0c, + 0xd0, 0x28, 0xf3, 0x02, 0x39, 0x65, 0xbf, 0x92, 0x74, 0x70, 0x87, 0xd4, 0xe9, 0xe8, 0x4c, 0x6a, + 0x9f, 0x27, 0x39, 0x0b, 0x1d, 0xc9, 0x79, 0x03, 0x40, 0x2a, 0x91, 0x3a, 0x95, 0x51, 0x79, 0x35, + 0x3f, 0xe0, 0x7d, 0x00, 0xe1, 0x6a, 0xf8, 0x53, 0xfb, 0x04, 0x54, 0x8e, 0xfe, 0x7e, 0x58, 0x9d, + 0x19, 0x5a, 0x4b, 0x50, 0xe4, 0x65, 0x5b, 0x25, 0x9d, 0x16, 0x37, 0x30, 0x6b, 0x2d, 0xf0, 0x8b, + 0xfb, 0x9d, 0x56, 0x8a, 0xf3, 0x4c, 0x9a, 0xb3, 0x0d, 0x4b, 0x43, 0x51, 0x4f, 0x91, 0xf8, 0x17, + 0xf0, 0x32, 0x37, 0x11, 0x66, 0x51, 0xd6, 0xcf, 0x18, 0xcf, 0x62, 0x6b, 0x48, 0x26, 0xa7, 0x29, + 0xa4, 0x1f, 0x15, 0x28, 0x65, 0xcd, 0x4b, 0xf7, 0xd6, 0xe1, 0x6c, 0xf4, 0x0a, 0xc2, 0x4a, 0x9a, + 0xe0, 0x31, 0x45, 0x7a, 0xa7, 0x57, 0x71, 0x9f, 0xc2, 0xe5, 0x98, 0x27, 0xcf, 0xc6, 0x40, 0xac, + 0xa6, 0xcd, 0xb0, 0x03, 0x57, 0x72, 0x70, 0x4f, 0x2d, 0x08, 0xda, 0x2e, 0x94, 0xb9, 0x8d, 0x2d, + 0x8f, 0xd8, 0x07, 0xde, 0x13, 0x5c, 0x9b, 0xe0, 0xd9, 0xa0, 0x8b, 0x30, 0xd7, 0xf6, 0x69, 0x17, + 0x73, 0xe2, 0x0b, 0x96, 0x38, 0x68, 0x3f, 0x14, 0xe0, 0x6a, 0x2e, 0xa6, 0x64, 0xbe, 0x07, 0x17, + 0xeb, 0xd1, 0xd7, 0xea, 0x74, 0x75, 0x8a, 0xea, 0x19, 0x78, 0xb4, 0x06, 0x20, 0x22, 0xcd, 0xc1, + 0x44, 0x4a, 0xd5, 0x18, 0x2c, 0x9e, 0x0e, 0x5d, 0x53, 0xe7, 0xf1, 0xb4, 0x44, 0x5e, 0xb8, 0xea, + 0x7d, 0x38, 0xef, 0xdb, 0x8f, 0xaa, 0xfd, 0x39, 0x53, 0x2a, 0x0c, 0x34, 0xe9, 0xd4, 0x4c, 0x0a, + 0x31, 0x2c, 0xfb, 0xd1, 0x66, 0x7c, 0x67, 0xbd, 0xe0, 0x27, 0x8f, 0x68, 0x0f, 0x90, 0x13, 0xb8, + 0x55, 0xd6, 0x71, 0x5a, 0x1e, 0x63, 0x1e, 0x25, 0xd5, 0x7d, 0xdc, 0x2b, 0xcd, 0x0e, 0x60, 0xa6, + 0x87, 0x60, 0xd7, 0xd4, 0x3f, 0x8e, 0xe5, 0xef, 0xe1, 0x9e, 0x75, 0xc1, 0x09, 0xdc, 0xd4, 0x0d, + 0xda, 0xe6, 0x21, 0xa7, 0xf5, 0xd2, 0x1c, 0x47, 0x32, 0xf3, 0x23, 0xf5, 0x20, 0x14, 0x1b, 0x92, + 0x02, 0xa1, 0xaf, 0x05, 0x70, 0x2d, 0x27, 0x49, 0x7b, 0x24, 0xf0, 0x0e, 0xee, 0xf2, 0x51, 0x36, + 0xfd, 0x10, 0xec, 0xd7, 0x46, 0x21, 0x59, 0x1b, 0x4f, 0x0b, 0x70, 0x7d, 0x1c, 0xb3, 0xff, 0x97, + 0xc9, 0x7f, 0xa3, 0x4c, 0x2a, 0xdf, 0x9e, 0x83, 0x39, 0x9e, 0x30, 0xf4, 0x54, 0x81, 0x79, 0xd1, + 0x3d, 0xd0, 0x6a, 0x3e, 0x5c, 0x76, 0x83, 0x52, 0xdf, 0x1c, 0x53, 0x5a, 0xe4, 0x5c, 0xdb, 0xfe, + 0xea, 0xb7, 0x3f, 0xbf, 0x99, 0x59, 0x47, 0xb7, 0x8d, 0xdc, 0xed, 0xad, 0x5f, 0x09, 0xc6, 0x61, + 0x54, 0x97, 0x47, 0x86, 0x68, 0x69, 0xc6, 0xa1, 0x28, 0xc0, 0x23, 0xf4, 0x9d, 0x02, 0xc5, 0x78, + 0x09, 0x41, 0xc6, 0x08, 0x16, 0x83, 0xfb, 0x90, 0xfa, 0xd6, 0xf8, 0x0a, 0x92, 0xf9, 0x0a, 0x67, + 0xae, 0xa1, 0xe5, 0x11, 0xcc, 0x19, 0xfa, 0x29, 0xa2, 0xc6, 0x6b, 0x6a, 0x2c, 0x6a, 0x89, 0x96, + 0x3c, 0x1e, 0xb5, 0x64, 0xbf, 0xd5, 0x6e, 0x71, 0x6a, 0x26, 0x32, 0x26, 0x0c, 0x2a, 0xfa, 0x55, + 0x81, 0xf3, 0xe9, 0x0d, 0x03, 0xdd, 0x18, 0x61, 0x7d, 0xe8, 0x9a, 0xa3, 0xde, 0x9c, 0x50, 0x4b, + 0x12, 0xff, 0x80, 0x13, 0xbf, 0x83, 0x36, 0x26, 0xad, 0x06, 0xfe, 0x64, 0x99, 0x71, 0x18, 0x4f, + 0xde, 0x23, 0xf4, 0xb3, 0x02, 0x8b, 0x89, 0x5d, 0x02, 0x99, 0x23, 0x28, 0x65, 0xd7, 0x1e, 0xb5, + 0x32, 0x89, 0x8a, 0x74, 0xe1, 0x06, 0x77, 0x41, 0x47, 0xab, 0xf9, 0x2e, 0xc8, 0x69, 0x9c, 0x0c, + 0xfc, 0x33, 0x05, 0x2e, 0x0c, 0x0e, 0x7e, 0xf4, 0xce, 0x18, 0xe6, 0x87, 0x6c, 0x20, 0xea, 0xad, + 0x89, 0xf5, 0xc6, 0x7f, 0x8c, 0x59, 0xee, 0xc3, 0x62, 0xff, 0x4c, 0x01, 0x94, 0xed, 0x32, 0xe8, + 0xdd, 0x11, 0xc4, 0x72, 0xd7, 0x12, 0x75, 0x6d, 0x0a, 0x4d, 0xe9, 0xd4, 0x3a, 0x77, 0xea, 0x3d, + 0xb4, 0x96, 0xef, 0xd4, 0xb0, 0xa9, 0x93, 0xcc, 0xce, 0x5f, 0x0a, 0x5c, 0xf9, 0xc7, 0x11, 0x86, + 0x36, 0x27, 0xe6, 0x97, 0x9d, 0xbb, 0xea, 0x9d, 0x7f, 0x07, 0x22, 0xfd, 0xdd, 0xe5, 0xfe, 0xde, + 0x43, 0x3b, 0x53, 0xfb, 0x6b, 0x88, 0x9e, 0x1a, 0xf7, 0xd6, 0x8d, 0x8f, 0x7e, 0x39, 0x2e, 0x2b, + 0xcf, 0x8f, 0xcb, 0xca, 0x1f, 0xc7, 0x65, 0xe5, 0xeb, 0x93, 0xf2, 0x99, 0xe7, 0x27, 0xe5, 0x33, + 0xbf, 0x9f, 0x94, 0xcf, 0x7c, 0x76, 0xb3, 0xe1, 0x05, 0xcd, 0x8e, 0xa3, 0xbb, 0xb4, 0x15, 0x99, + 0xe3, 0x30, 0xb1, 0xed, 0xc7, 0x03, 0xd6, 0x83, 0x5e, 0x1b, 0x33, 0x67, 0x9e, 0xff, 0x07, 0x7f, + 0xfb, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9a, 0x83, 0xf5, 0xfe, 0xba, 0x10, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.