From a27b5a0a80519c45325bb3c2071d5e90e12538bc Mon Sep 17 00:00:00 2001 From: rachid Date: Wed, 11 Oct 2023 19:53:31 +0200 Subject: [PATCH] chore: revert consensus breaking changes --- app/version.go | 4 +- .../{blobstream => qgb}/v1/genesis.proto | 4 +- .../{blobstream => qgb}/v1/query.proto | 22 ++-- .../celestia/{blobstream => qgb}/v1/tx.proto | 4 +- .../{blobstream => qgb}/v1/types.proto | 2 +- test/util/genesis/modifier.go | 6 +- x/blobstream/types/genesis.pb.go | 50 ++++---- x/blobstream/types/query.pb.go | 113 +++++++++--------- x/blobstream/types/query.pb.gw.go | 18 +-- x/blobstream/types/tx.pb.go | 73 ++++++----- x/blobstream/types/tx.pb.gw.go | 4 +- x/blobstream/types/types.pb.go | 74 ++++++------ 12 files changed, 185 insertions(+), 189 deletions(-) rename proto/celestia/{blobstream => qgb}/v1/genesis.proto (84%) rename proto/celestia/{blobstream => qgb}/v1/query.proto (85%) rename proto/celestia/{blobstream => qgb}/v1/tx.proto (91%) rename proto/celestia/{blobstream => qgb}/v1/types.proto (98%) diff --git a/app/version.go b/app/version.go index 7b711abdaf..3d05ee87cf 100644 --- a/app/version.go +++ b/app/version.go @@ -6,8 +6,8 @@ import ( v1 "github.com/celestiaorg/celestia-app/pkg/appconsts/v1" v2 "github.com/celestiaorg/celestia-app/pkg/appconsts/v2" "github.com/celestiaorg/celestia-app/x/blob" + "github.com/celestiaorg/celestia-app/x/blobstream" "github.com/celestiaorg/celestia-app/x/mint" - "github.com/celestiaorg/celestia-app/x/qgb" "github.com/cosmos/cosmos-sdk/types/module" "github.com/cosmos/cosmos-sdk/x/auth" "github.com/cosmos/cosmos-sdk/x/auth/vesting" @@ -48,7 +48,7 @@ var ( "genutil": genutil.AppModule{}.ConsensusVersion(), "capability": capability.AppModule{}.ConsensusVersion(), "blob": blob.AppModule{}.ConsensusVersion(), - "qgb": qgb.AppModule{}.ConsensusVersion(), + "qgb": blobstream.AppModule{}.ConsensusVersion(), "ibc": ibc.AppModule{}.ConsensusVersion(), "transfer": transfer.AppModule{}.ConsensusVersion(), } diff --git a/proto/celestia/blobstream/v1/genesis.proto b/proto/celestia/qgb/v1/genesis.proto similarity index 84% rename from proto/celestia/blobstream/v1/genesis.proto rename to proto/celestia/qgb/v1/genesis.proto index eccae21bb8..08beebce0f 100644 --- a/proto/celestia/blobstream/v1/genesis.proto +++ b/proto/celestia/qgb/v1/genesis.proto @@ -1,8 +1,8 @@ syntax = "proto3"; -package celestia.blobstream.v1; +package celestia.qgb.v1; import "gogoproto/gogo.proto"; -import "celestia/blobstream/v1/types.proto"; +import "celestia/qgb/v1/types.proto"; option go_package = "github.com/celestiaorg/celestia-app/x/blobstream/types"; diff --git a/proto/celestia/blobstream/v1/query.proto b/proto/celestia/qgb/v1/query.proto similarity index 85% rename from proto/celestia/blobstream/v1/query.proto rename to proto/celestia/qgb/v1/query.proto index 3455dbfa5a..bfb19047c5 100644 --- a/proto/celestia/blobstream/v1/query.proto +++ b/proto/celestia/qgb/v1/query.proto @@ -1,8 +1,8 @@ syntax = "proto3"; -package celestia.blobstream.v1; +package celestia.qgb.v1; -import "celestia/blobstream/v1/genesis.proto"; -import "celestia/blobstream/v1/types.proto"; +import "celestia/qgb/v1/genesis.proto"; +import "celestia/qgb/v1/types.proto"; import "google/api/annotations.proto"; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; @@ -14,7 +14,7 @@ option go_package = "github.com/celestiaorg/celestia-app/x/blobstream/types"; service Query { // Params queries the current parameters for the blobstream module rpc Params(QueryParamsRequest) returns (QueryParamsResponse) { - option (google.api.http).get = "/blobstream/v1/params"; + option (google.api.http).get = "/qgb/v1/params"; } // queries for attestations requests waiting to be signed by an orchestrator @@ -23,12 +23,12 @@ service Query { // Returns nil if not found. rpc AttestationRequestByNonce(QueryAttestationRequestByNonceRequest) returns (QueryAttestationRequestByNonceResponse) { - option (google.api.http).get = "/blobstream/v1/attestations/requests/{nonce}"; + option (google.api.http).get = "/qgb/v1/attestations/requests/{nonce}"; } // LatestAttestationNonce queries latest attestation nonce. rpc LatestAttestationNonce(QueryLatestAttestationNonceRequest) returns (QueryLatestAttestationNonceResponse) { - option (google.api.http).get = "/blobstream/v1/attestations/nonce/latest"; + option (google.api.http).get = "/qgb/v1/attestations/nonce/latest"; } // LatestValsetRequestBeforeNonce Queries latest Valset request before nonce. // And, even if the current nonce is a valset, it will return the previous @@ -37,7 +37,7 @@ service Query { // no valset before nonce 1. rpc LatestValsetRequestBeforeNonce(QueryLatestValsetRequestBeforeNonceRequest) returns (QueryLatestValsetRequestBeforeNonceResponse) { - option (google.api.http).get = "/blobstream/v1/valset/request/before/{nonce}"; + option (google.api.http).get = "/qgb/v1/valset/request/before/{nonce}"; } // misc @@ -45,26 +45,26 @@ service Query { // LatestUnbondingHeight returns the latest unbonding height rpc LatestUnbondingHeight(QueryLatestUnbondingHeightRequest) returns (QueryLatestUnbondingHeightResponse) { - option (google.api.http).get = "/blobstream/v1/unbonding"; + option (google.api.http).get = "/qgb/v1/unbonding"; } // DataCommitmentRangeForHeight returns the data commitment window // that includes the provided height rpc DataCommitmentRangeForHeight(QueryDataCommitmentRangeForHeightRequest) returns (QueryDataCommitmentRangeForHeightResponse) { - option (google.api.http).get = "/blobstream/v1/data_commitment/range/height"; + option (google.api.http).get = "/qgb/v1/data_commitment/range/height"; } // LatestDataCommitment returns the latest data commitment in store rpc LatestDataCommitment(QueryLatestDataCommitmentRequest) returns (QueryLatestDataCommitmentResponse) { - option (google.api.http).get = "/blobstream/v1/data_commitment/latest"; + option (google.api.http).get = "/qgb/v1/data_commitment/latest"; } // EVMAddress returns the evm address associated with a supplied // validator address rpc EVMAddress(QueryEVMAddressRequest) returns (QueryEVMAddressResponse) { - option (google.api.http).get = "/blobstream/v1/evm_address"; + option (google.api.http).get = "/qgb/v1/evm_address"; } } diff --git a/proto/celestia/blobstream/v1/tx.proto b/proto/celestia/qgb/v1/tx.proto similarity index 91% rename from proto/celestia/blobstream/v1/tx.proto rename to proto/celestia/qgb/v1/tx.proto index 60dc687c48..c9dc5c2373 100644 --- a/proto/celestia/blobstream/v1/tx.proto +++ b/proto/celestia/qgb/v1/tx.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package celestia.blobstream.v1; +package celestia.qgb.v1; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; @@ -16,7 +16,7 @@ service Msg { // state machine. rpc RegisterEVMAddress(MsgRegisterEVMAddress) returns (MsgRegisterEVMAddressResponse) { - option (google.api.http).get = "/blobstream/v1/register_evm_address"; + option (google.api.http).get = "/qgb/v1/register_evm_address"; } } diff --git a/proto/celestia/blobstream/v1/types.proto b/proto/celestia/qgb/v1/types.proto similarity index 98% rename from proto/celestia/blobstream/v1/types.proto rename to proto/celestia/qgb/v1/types.proto index ef6a6917dd..1cd3338b63 100644 --- a/proto/celestia/blobstream/v1/types.proto +++ b/proto/celestia/qgb/v1/types.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package celestia.blobstream.v1; +package celestia.qgb.v1; import "gogoproto/gogo.proto"; import "cosmos_proto/cosmos.proto"; diff --git a/test/util/genesis/modifier.go b/test/util/genesis/modifier.go index 9ffe274d11..234b17bf49 100644 --- a/test/util/genesis/modifier.go +++ b/test/util/genesis/modifier.go @@ -6,7 +6,7 @@ import ( "github.com/celestiaorg/celestia-app/app" blobtypes "github.com/celestiaorg/celestia-app/x/blob/types" - qgbtypes "github.com/celestiaorg/celestia-app/x/qgb/types" + bstypes "github.com/celestiaorg/celestia-app/x/blobstream/types" "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" @@ -49,9 +49,9 @@ func ImmediateProposals(codec codec.Codec) Modifier { // qgb module's genesis state. func SetDataCommitmentWindow(codec codec.Codec, window uint64) Modifier { return func(state map[string]json.RawMessage) map[string]json.RawMessage { - qgbGenState := qgbtypes.DefaultGenesis() + qgbGenState := bstypes.DefaultGenesis() qgbGenState.Params.DataCommitmentWindow = window - state[qgbtypes.ModuleName] = codec.MustMarshalJSON(qgbGenState) + state[bstypes.ModuleName] = codec.MustMarshalJSON(qgbGenState) return state } } diff --git a/x/blobstream/types/genesis.pb.go b/x/blobstream/types/genesis.pb.go index db99e3912f..12137c7360 100644 --- a/x/blobstream/types/genesis.pb.go +++ b/x/blobstream/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: celestia/blobstream/v1/genesis.proto +// source: celestia/qgb/v1/genesis.proto package types @@ -32,7 +32,7 @@ func (m *Params) Reset() { *m = Params{} } func (m *Params) String() string { return proto.CompactTextString(m) } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_0af10765b619b991, []int{0} + return fileDescriptor_10da5f8e88ce2856, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +78,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_0af10765b619b991, []int{1} + return fileDescriptor_10da5f8e88ce2856, []int{1} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -115,32 +115,30 @@ func (m *GenesisState) GetParams() *Params { } func init() { - proto.RegisterType((*Params)(nil), "celestia.blobstream.v1.Params") - proto.RegisterType((*GenesisState)(nil), "celestia.blobstream.v1.GenesisState") + proto.RegisterType((*Params)(nil), "celestia.qgb.v1.Params") + proto.RegisterType((*GenesisState)(nil), "celestia.qgb.v1.GenesisState") } -func init() { - proto.RegisterFile("celestia/blobstream/v1/genesis.proto", fileDescriptor_0af10765b619b991) -} +func init() { proto.RegisterFile("celestia/qgb/v1/genesis.proto", fileDescriptor_10da5f8e88ce2856) } -var fileDescriptor_0af10765b619b991 = []byte{ - // 250 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x49, 0x4e, 0xcd, 0x49, - 0x2d, 0x2e, 0xc9, 0x4c, 0xd4, 0x4f, 0xca, 0xc9, 0x4f, 0x2a, 0x2e, 0x29, 0x4a, 0x4d, 0xcc, 0xd5, - 0x2f, 0x33, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x12, 0x83, 0xa9, 0xd2, 0x43, 0xa8, 0xd2, 0x2b, 0x33, 0x94, 0x12, 0x49, 0xcf, 0x4f, 0xcf, - 0x07, 0x2b, 0xd1, 0x07, 0xb1, 0x20, 0xaa, 0xa5, 0x94, 0x70, 0x98, 0x59, 0x52, 0x59, 0x90, 0x0a, - 0x35, 0x51, 0xc9, 0x85, 0x8b, 0x2d, 0x20, 0xb1, 0x28, 0x31, 0xb7, 0x58, 0xc8, 0x84, 0x4b, 0x2c, - 0x25, 0xb1, 0x24, 0x31, 0x3e, 0x39, 0x3f, 0x37, 0x37, 0xb3, 0x24, 0x37, 0x35, 0xaf, 0x24, 0xbe, - 0x3c, 0x33, 0x2f, 0x25, 0xbf, 0x5c, 0x82, 0x51, 0x81, 0x51, 0x83, 0x25, 0x48, 0x04, 0x24, 0xeb, - 0x0c, 0x97, 0x0c, 0x07, 0xcb, 0x59, 0xb1, 0x34, 0xdc, 0x51, 0x60, 0x50, 0x72, 0xe3, 0xe2, 0x71, - 0x87, 0x38, 0x34, 0xb8, 0x24, 0xb1, 0x24, 0x55, 0xc8, 0x8c, 0x8b, 0xad, 0x00, 0x6c, 0x2a, 0x58, - 0x2f, 0xb7, 0x91, 0x9c, 0x1e, 0x76, 0x87, 0xeb, 0x41, 0xec, 0x0e, 0x82, 0xaa, 0x76, 0x0a, 0x38, - 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, 0xb3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, - 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x98, 0x59, 0xf9, 0x45, 0xe9, 0x70, 0xb6, 0x6e, 0x62, 0x41, - 0x81, 0x7e, 0x05, 0xb2, 0x47, 0xc1, 0xbe, 0x4c, 0x62, 0x03, 0x7b, 0xd3, 0x18, 0x10, 0x00, 0x00, - 0xff, 0xff, 0xa6, 0x14, 0x6a, 0xc0, 0x60, 0x01, 0x00, 0x00, +var fileDescriptor_10da5f8e88ce2856 = []byte{ + // 252 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4d, 0x4e, 0xcd, 0x49, + 0x2d, 0x2e, 0xc9, 0x4c, 0xd4, 0x2f, 0x4c, 0x4f, 0xd2, 0x2f, 0x33, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, + 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x87, 0x49, 0xeb, 0x15, 0xa6, + 0x27, 0xe9, 0x95, 0x19, 0x4a, 0x89, 0xa4, 0xe7, 0xa7, 0xe7, 0x83, 0xe5, 0xf4, 0x41, 0x2c, 0x88, + 0x32, 0x29, 0x69, 0x74, 0x53, 0x4a, 0x2a, 0x0b, 0x52, 0xa1, 0x66, 0x28, 0xb9, 0x70, 0xb1, 0x05, + 0x24, 0x16, 0x25, 0xe6, 0x16, 0x0b, 0x99, 0x70, 0x89, 0xa5, 0x24, 0x96, 0x24, 0xc6, 0x27, 0xe7, + 0xe7, 0xe6, 0x66, 0x96, 0xe4, 0xa6, 0xe6, 0x95, 0xc4, 0x97, 0x67, 0xe6, 0xa5, 0xe4, 0x97, 0x4b, + 0x30, 0x2a, 0x30, 0x6a, 0xb0, 0x04, 0x89, 0x80, 0x64, 0x9d, 0xe1, 0x92, 0xe1, 0x60, 0x39, 0x2b, + 0x96, 0x86, 0x3b, 0x0a, 0x0c, 0x4a, 0xf6, 0x5c, 0x3c, 0xee, 0x10, 0xa7, 0x05, 0x97, 0x24, 0x96, + 0xa4, 0x0a, 0xe9, 0x73, 0xb1, 0x15, 0x80, 0x4d, 0x05, 0xeb, 0xe5, 0x36, 0x12, 0xd7, 0x43, 0x73, + 0xaa, 0x1e, 0xc4, 0xd2, 0x20, 0xa8, 0x32, 0xa7, 0x80, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, + 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, + 0x96, 0x63, 0x88, 0x32, 0x4b, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x87, + 0x19, 0x92, 0x5f, 0x94, 0x0e, 0x67, 0xeb, 0x26, 0x16, 0x14, 0xe8, 0x57, 0xe8, 0x27, 0xe5, 0xe4, + 0x27, 0x15, 0x97, 0x14, 0xa5, 0x26, 0xe6, 0x42, 0xbc, 0x97, 0xc4, 0x06, 0xf6, 0x9f, 0x31, 0x20, + 0x00, 0x00, 0xff, 0xff, 0x11, 0x19, 0x03, 0x69, 0x44, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/blobstream/types/query.pb.go b/x/blobstream/types/query.pb.go index ed7df634a6..3917870f41 100644 --- a/x/blobstream/types/query.pb.go +++ b/x/blobstream/types/query.pb.go @@ -762,60 +762,61 @@ func init() { func init() { proto.RegisterFile("celestia/qgb/v1/query.proto", fileDescriptor_c8535c57355a2b91) } var fileDescriptor_c8535c57355a2b91 = []byte{ - // 848 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0xcb, 0x4f, 0xeb, 0x46, - 0x14, 0xc6, 0xe3, 0x0a, 0x22, 0xf5, 0x20, 0xf1, 0x98, 0x84, 0x50, 0x0c, 0x35, 0xe0, 0xf0, 0x2c, - 0xc5, 0x23, 0x42, 0x1f, 0x2a, 0xd0, 0x05, 0x69, 0xa9, 0x40, 0xa2, 0xaf, 0x48, 0x65, 0xd1, 0x45, - 0xd1, 0x24, 0x19, 0x8c, 0xd5, 0xd8, 0x93, 0xd8, 0x4e, 0xd4, 0xa8, 0xed, 0xa6, 0x7f, 0x41, 0xa5, - 0x2e, 0xbb, 0xee, 0xb6, 0xab, 0xae, 0xda, 0x65, 0x37, 0x88, 0x15, 0x52, 0x37, 0x5d, 0x55, 0x15, - 0xdc, 0x3f, 0xe4, 0x2a, 0xe3, 0x99, 0xe0, 0xc4, 0x8e, 0x93, 0xa0, 0xbb, 0xf3, 0xcc, 0x9c, 0xef, - 0x3b, 0xbf, 0x33, 0xe0, 0x2f, 0x86, 0xa5, 0x0a, 0xad, 0x51, 0xcf, 0xb7, 0x08, 0x6e, 0x98, 0x65, - 0xdc, 0xda, 0xc7, 0x8d, 0x26, 0x75, 0xdb, 0x46, 0xdd, 0x65, 0x3e, 0x43, 0x33, 0xf2, 0xd0, 0x68, - 0x98, 0x65, 0xa3, 0xb5, 0xaf, 0xbe, 0xd9, 0x5f, 0x6d, 0x52, 0x87, 0x7a, 0x96, 0x17, 0xd4, 0xab, - 0x11, 0x33, 0xbf, 0x5d, 0xa7, 0xf2, 0x70, 0xd9, 0x64, 0xcc, 0xac, 0x51, 0x4c, 0xea, 0x16, 0x26, - 0x8e, 0xc3, 0x7c, 0xe2, 0x5b, 0xcc, 0x91, 0xa7, 0x59, 0x93, 0x99, 0x8c, 0x3f, 0xe2, 0xce, 0x93, - 0xd8, 0x5d, 0xac, 0x30, 0xcf, 0x66, 0xde, 0x55, 0x70, 0x10, 0x2c, 0xe4, 0x91, 0xb0, 0xe3, 0xab, - 0x72, 0xf3, 0x1a, 0x13, 0x47, 0x60, 0xeb, 0x59, 0x40, 0x5f, 0x76, 0xa6, 0xf8, 0x82, 0xb8, 0xc4, - 0xf6, 0x4a, 0xb4, 0xd1, 0xa4, 0x9e, 0xaf, 0x5f, 0x40, 0xa6, 0x67, 0xd7, 0xab, 0x33, 0xc7, 0xa3, - 0xe8, 0x5d, 0x48, 0xd7, 0xf9, 0xce, 0x1b, 0xca, 0xaa, 0xb2, 0x3d, 0x55, 0x58, 0x30, 0xfa, 0x86, - 0x36, 0x02, 0x41, 0x71, 0xe2, 0xf6, 0xbf, 0x95, 0x54, 0x49, 0x14, 0xeb, 0x1f, 0xc2, 0x06, 0x77, - 0x3b, 0xf1, 0x7d, 0xea, 0x05, 0xa3, 0x88, 0x46, 0xc5, 0xf6, 0x67, 0xcc, 0xa9, 0x50, 0xb1, 0x42, - 0x59, 0x98, 0x74, 0x3a, 0x6b, 0x6e, 0x3f, 0x51, 0x0a, 0x16, 0x7a, 0x1b, 0x36, 0x87, 0xc9, 0x05, - 0xdf, 0xe7, 0x30, 0x45, 0x9e, 0x8a, 0x04, 0x64, 0xd6, 0x08, 0xa6, 0x37, 0xe4, 0xf4, 0xc6, 0x89, - 0xd3, 0x2e, 0x2e, 0xdc, 0xfd, 0xb1, 0x97, 0x89, 0x3a, 0x9e, 0x97, 0xc2, 0x0e, 0xfa, 0x3a, 0xe8, - 0xbc, 0xf5, 0x05, 0xe9, 0xec, 0x85, 0xca, 0xc3, 0xd8, 0xfa, 0x11, 0xe4, 0x13, 0xab, 0x04, 0x5d, - 0xfc, 0x74, 0x45, 0x78, 0x2b, 0x24, 0xbe, 0x24, 0x35, 0x8f, 0xfa, 0x72, 0x3c, 0x7a, 0xcd, 0x5c, - 0x3a, 0xc2, 0x0d, 0x7d, 0x03, 0xbb, 0x23, 0x79, 0x08, 0x10, 0x0c, 0xe9, 0x16, 0xaf, 0x19, 0xf8, - 0x67, 0x14, 0x16, 0xa2, 0x4c, 0xcf, 0xc3, 0x5a, 0xc8, 0xff, 0x2b, 0xa7, 0xcc, 0x9c, 0xaa, 0xe5, - 0x98, 0x67, 0xd4, 0x32, 0x6f, 0x64, 0x23, 0xfd, 0xb8, 0xe7, 0xae, 0x22, 0x45, 0xa2, 0x77, 0x0e, - 0xd2, 0x37, 0x7c, 0x47, 0x4c, 0x20, 0x56, 0xba, 0x0e, 0xab, 0x21, 0xf5, 0xc7, 0xc4, 0x27, 0x1f, - 0x31, 0xdb, 0xb6, 0x7c, 0x9b, 0x3a, 0xdd, 0x0e, 0x76, 0x0f, 0x46, 0x7f, 0x8d, 0x68, 0x70, 0x06, - 0x33, 0x55, 0xe2, 0x93, 0xab, 0x4a, 0xf7, 0x48, 0x4c, 0xb9, 0x12, 0x99, 0xb2, 0xcf, 0x61, 0xba, - 0xda, 0xb3, 0xd6, 0x8b, 0xb0, 0xcd, 0xdb, 0xf5, 0x95, 0x11, 0xc7, 0xa4, 0x9f, 0x30, 0xb7, 0x67, - 0xf8, 0x81, 0x63, 0x35, 0x61, 0x67, 0x04, 0x8f, 0x57, 0x8e, 0x7e, 0x0a, 0x39, 0xde, 0xf6, 0xf4, - 0xf2, 0xd3, 0x93, 0x6a, 0xd5, 0xa5, 0x9e, 0x7c, 0xb3, 0xd1, 0x2e, 0xcc, 0xb5, 0x48, 0xcd, 0xaa, - 0x12, 0x9f, 0xb9, 0x57, 0x24, 0x38, 0xe3, 0x5d, 0x5e, 0x2f, 0xcd, 0x76, 0x0f, 0x84, 0x46, 0x3f, - 0x84, 0x85, 0x88, 0x8d, 0x60, 0x5d, 0x81, 0x29, 0xda, 0xb2, 0xfb, 0x1c, 0x80, 0xb6, 0x6c, 0x51, - 0x58, 0xf8, 0x13, 0x60, 0x92, 0x8b, 0xd1, 0xb7, 0x90, 0x0e, 0x62, 0x01, 0xe5, 0x23, 0x73, 0x44, - 0xb3, 0x47, 0x5d, 0x4f, 0x2e, 0x0a, 0xfa, 0xeb, 0xb9, 0x9f, 0xfe, 0x79, 0xf1, 0xcb, 0x6b, 0xb3, - 0x68, 0x5a, 0xc6, 0x67, 0x90, 0x35, 0xe8, 0x2f, 0x05, 0x16, 0x07, 0x06, 0x05, 0x7a, 0x2f, 0xde, - 0x7b, 0x58, 0x30, 0xa9, 0xef, 0x8f, 0xad, 0x13, 0x98, 0x7b, 0x1c, 0x73, 0x0b, 0x6d, 0x48, 0xcc, - 0x50, 0xba, 0x78, 0xd8, 0x0d, 0x44, 0x1e, 0xfe, 0x9e, 0xbf, 0xc7, 0x3f, 0xa2, 0xdf, 0x15, 0xc8, - 0xc5, 0xa7, 0x08, 0x3a, 0x88, 0x47, 0x48, 0x4c, 0x26, 0xf5, 0x9d, 0xf1, 0x44, 0x02, 0x7a, 0x87, - 0x43, 0xe7, 0xd1, 0x5a, 0x2c, 0x34, 0x47, 0xc5, 0x35, 0x6e, 0x81, 0xee, 0x14, 0xd0, 0x92, 0x53, - 0x07, 0x1d, 0x25, 0x31, 0x0c, 0xc9, 0x3b, 0xf5, 0xf8, 0x79, 0xe2, 0x41, 0xb7, 0x1f, 0xe4, 0x99, - 0xbc, 0x77, 0x5c, 0xe6, 0x9a, 0xee, 0xed, 0xff, 0xaa, 0xc0, 0x7c, 0x6c, 0x7a, 0xa1, 0x42, 0x12, - 0x46, 0x7c, 0x1e, 0xaa, 0x07, 0x63, 0x69, 0x04, 0xf1, 0x22, 0x27, 0xce, 0xa0, 0x39, 0x49, 0xdc, - 0x94, 0x85, 0xe8, 0x6f, 0x05, 0x96, 0x93, 0x62, 0x04, 0x7d, 0x10, 0xdf, 0x70, 0x84, 0xf8, 0x52, - 0x0f, 0x9f, 0x23, 0x15, 0xc8, 0x6f, 0x73, 0xe4, 0x4d, 0xb4, 0x2e, 0x91, 0xfb, 0x32, 0x0c, 0xbb, - 0x1d, 0x1d, 0x0e, 0x02, 0x11, 0xfd, 0xa6, 0x40, 0x36, 0x2e, 0xbf, 0xd1, 0x7e, 0xd2, 0x75, 0xc5, - 0xfe, 0x1e, 0xa8, 0x85, 0x71, 0x24, 0x82, 0x76, 0x93, 0xd3, 0xae, 0x22, 0x6d, 0x10, 0xad, 0xf8, - 0xc7, 0xfe, 0x01, 0xe0, 0x29, 0xf5, 0xd0, 0x56, 0x7c, 0xa7, 0x48, 0xbc, 0xaa, 0xdb, 0xc3, 0x0b, - 0x05, 0xc8, 0x12, 0x07, 0x99, 0x47, 0x19, 0x09, 0x12, 0x8a, 0xd3, 0xe2, 0xf9, 0xed, 0x83, 0xa6, - 0xdc, 0x3f, 0x68, 0xca, 0xff, 0x0f, 0x9a, 0xf2, 0xf3, 0xa3, 0x96, 0xba, 0x7f, 0xd4, 0x52, 0xff, - 0x3e, 0x6a, 0xa9, 0xaf, 0xb1, 0x69, 0xf9, 0x37, 0xcd, 0xb2, 0x51, 0x61, 0x36, 0x96, 0xad, 0x98, - 0x6b, 0x76, 0x9f, 0xf7, 0x48, 0xbd, 0x8e, 0xbf, 0xe3, 0x9e, 0xfc, 0x83, 0xb2, 0x9c, 0xe6, 0x9f, - 0x3d, 0x07, 0x2f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x58, 0x42, 0xec, 0x98, 0xbd, 0x0a, 0x00, 0x00, + // 855 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0xcf, 0x4f, 0x33, 0x45, + 0x18, 0xc7, 0xbb, 0xe6, 0x7d, 0x9b, 0xf8, 0x90, 0xbc, 0x2f, 0x4c, 0x4b, 0x91, 0x05, 0x17, 0xd8, + 0xf2, 0x53, 0x64, 0x27, 0x14, 0xc5, 0x08, 0x78, 0xa0, 0x8a, 0xc1, 0x04, 0x15, 0x9b, 0xc8, 0xc1, + 0x83, 0x64, 0xb6, 0x1d, 0x96, 0x8d, 0xdd, 0x9d, 0x76, 0x77, 0xdb, 0xd8, 0xa8, 0x17, 0xff, 0x02, + 0x13, 0x8f, 0x9e, 0xbd, 0x7a, 0xf2, 0xa4, 0x47, 0x2f, 0x84, 0x13, 0x89, 0x17, 0x4f, 0xc6, 0x80, + 0x7f, 0x88, 0xe9, 0xec, 0x4c, 0xd9, 0x76, 0xb7, 0xdb, 0x96, 0x78, 0xdb, 0x99, 0x79, 0xbe, 0xdf, + 0xe7, 0xf3, 0x0c, 0xec, 0xb7, 0x0b, 0x0b, 0x55, 0x5a, 0xa7, 0x7e, 0x60, 0x13, 0xdc, 0xb4, 0x4c, + 0xdc, 0xde, 0xc5, 0xcd, 0x16, 0xf5, 0x3a, 0x46, 0xc3, 0x63, 0x01, 0x43, 0x2f, 0xe5, 0xa1, 0xd1, + 0xb4, 0x4c, 0xa3, 0xbd, 0xab, 0xbe, 0x3e, 0x58, 0x6d, 0x51, 0x97, 0xfa, 0xb6, 0x1f, 0xd6, 0xab, + 0x31, 0xb3, 0xa0, 0xd3, 0xa0, 0xf2, 0x70, 0xd1, 0x62, 0xcc, 0xaa, 0x53, 0x4c, 0x1a, 0x36, 0x26, + 0xae, 0xcb, 0x02, 0x12, 0xd8, 0xcc, 0x95, 0xa7, 0x79, 0x8b, 0x59, 0x8c, 0x3f, 0xe2, 0xee, 0x93, + 0xd8, 0x9d, 0xaf, 0x32, 0xdf, 0x61, 0xfe, 0x65, 0x78, 0x10, 0x2e, 0xe4, 0x91, 0xb0, 0xe3, 0x2b, + 0xb3, 0x75, 0x85, 0x89, 0x2b, 0xb0, 0xf5, 0x3c, 0xa0, 0xcf, 0xba, 0x53, 0x9c, 0x13, 0x8f, 0x38, + 0x7e, 0x85, 0x36, 0x5b, 0xd4, 0x0f, 0xf4, 0x33, 0xc8, 0xf5, 0xed, 0xfa, 0x0d, 0xe6, 0xfa, 0x14, + 0xbd, 0x0d, 0xd9, 0x06, 0xdf, 0x79, 0x4d, 0x59, 0x56, 0x36, 0xa7, 0x4a, 0x73, 0xc6, 0xc0, 0xd0, + 0x46, 0x28, 0x28, 0x3f, 0xbb, 0xf9, 0x7b, 0x29, 0x53, 0x11, 0xc5, 0xfa, 0x7b, 0xb0, 0xc6, 0xdd, + 0x8e, 0x83, 0x80, 0xfa, 0xe1, 0x28, 0xa2, 0x51, 0xb9, 0xf3, 0x09, 0x73, 0xab, 0x54, 0xac, 0x50, + 0x1e, 0x9e, 0xbb, 0xdd, 0x35, 0xb7, 0x7f, 0x56, 0x09, 0x17, 0x7a, 0x07, 0xd6, 0x47, 0xc9, 0x05, + 0xdf, 0xa7, 0x30, 0x45, 0x1e, 0x8b, 0x04, 0x64, 0xde, 0x08, 0xa7, 0x37, 0xe4, 0xf4, 0xc6, 0xb1, + 0xdb, 0x29, 0xcf, 0xdd, 0xfe, 0xba, 0x93, 0x8b, 0x3b, 0x7e, 0x54, 0x89, 0x3a, 0xe8, 0xab, 0xa0, + 0xf3, 0xd6, 0x67, 0xa4, 0xbb, 0x17, 0x29, 0x8f, 0x62, 0xeb, 0x87, 0x50, 0x4c, 0xad, 0x12, 0x74, + 0xc9, 0xd3, 0x95, 0xe1, 0x8d, 0x88, 0xf8, 0x82, 0xd4, 0x7d, 0x1a, 0xc8, 0xf1, 0xe8, 0x15, 0xf3, + 0xe8, 0x18, 0x37, 0xf4, 0x25, 0x6c, 0x8f, 0xe5, 0x21, 0x40, 0x30, 0x64, 0xdb, 0xbc, 0x66, 0xe8, + 0x9f, 0x51, 0x58, 0x88, 0x32, 0xbd, 0x08, 0x2b, 0x11, 0xff, 0xcf, 0x5d, 0x93, 0xb9, 0x35, 0xdb, + 0xb5, 0x4e, 0xa9, 0x6d, 0x5d, 0xcb, 0x46, 0xfa, 0x51, 0xdf, 0x5d, 0xc5, 0x8a, 0x44, 0xef, 0x02, + 0x64, 0xaf, 0xf9, 0x8e, 0x98, 0x40, 0xac, 0x74, 0x1d, 0x96, 0x23, 0xea, 0x0f, 0x48, 0x40, 0xde, + 0x67, 0x8e, 0x63, 0x07, 0x0e, 0x75, 0x7b, 0x1d, 0x9c, 0x3e, 0x8c, 0xc1, 0x1a, 0xd1, 0xe0, 0x14, + 0x5e, 0xd6, 0x48, 0x40, 0x2e, 0xab, 0xbd, 0x23, 0x31, 0xe5, 0x52, 0x6c, 0xca, 0x01, 0x87, 0x17, + 0xb5, 0xbe, 0xb5, 0x5e, 0x86, 0x4d, 0xde, 0x6e, 0xa0, 0x8c, 0xb8, 0x16, 0xfd, 0x90, 0x79, 0x7d, + 0xc3, 0x0f, 0x1d, 0xab, 0x05, 0x5b, 0x63, 0x78, 0xfc, 0xef, 0xe8, 0x27, 0x50, 0xe0, 0x6d, 0x4f, + 0x2e, 0x3e, 0x3e, 0xae, 0xd5, 0x3c, 0xea, 0xcb, 0x37, 0x1b, 0x6d, 0xc3, 0x4c, 0x9b, 0xd4, 0xed, + 0x1a, 0x09, 0x98, 0x77, 0x49, 0xc2, 0x33, 0xde, 0xe5, 0xd5, 0xca, 0x74, 0xef, 0x40, 0x68, 0xf4, + 0x03, 0x98, 0x8b, 0xd9, 0x08, 0xd6, 0x25, 0x98, 0xa2, 0x6d, 0x67, 0xc0, 0x01, 0x68, 0xdb, 0x11, + 0x85, 0xa5, 0xdf, 0x00, 0x9e, 0x73, 0x31, 0xfa, 0x0a, 0xb2, 0x61, 0x2c, 0xa0, 0x62, 0x6c, 0x8e, + 0x78, 0xf6, 0xa8, 0xab, 0xe9, 0x45, 0x61, 0x7f, 0xbd, 0xf0, 0xfd, 0x9f, 0xff, 0xfe, 0xf8, 0xca, + 0x34, 0x7a, 0x21, 0xe3, 0x33, 0xcc, 0x1a, 0xf4, 0xbb, 0x02, 0xf3, 0x43, 0x83, 0x02, 0xed, 0x27, + 0x7b, 0x8f, 0x0a, 0x26, 0xf5, 0x9d, 0x89, 0x75, 0x02, 0x73, 0x87, 0x63, 0x6e, 0xa0, 0x35, 0x89, + 0x19, 0x49, 0x17, 0x1f, 0x7b, 0xa1, 0xc8, 0xc7, 0xdf, 0xf0, 0xf7, 0xf8, 0x3b, 0xf4, 0x8b, 0x02, + 0x85, 0xe4, 0x14, 0x41, 0x7b, 0xc9, 0x08, 0xa9, 0xc9, 0xa4, 0xbe, 0x35, 0x99, 0x48, 0x40, 0x6f, + 0x71, 0xe8, 0x22, 0x5a, 0x49, 0x84, 0xe6, 0xa8, 0xb8, 0xce, 0x2d, 0xd0, 0xad, 0x02, 0x5a, 0x7a, + 0xea, 0xa0, 0xc3, 0x34, 0x86, 0x11, 0x79, 0xa7, 0x1e, 0x3d, 0x4d, 0x3c, 0xec, 0xf6, 0xc3, 0x3c, + 0x93, 0xf7, 0x8e, 0x4d, 0xae, 0xe9, 0xdd, 0xfe, 0x4f, 0x0a, 0xcc, 0x26, 0xa6, 0x17, 0x2a, 0xa5, + 0x61, 0x24, 0xe7, 0xa1, 0xba, 0x37, 0x91, 0x46, 0x10, 0xcf, 0x73, 0xe2, 0x1c, 0x9a, 0x91, 0xc4, + 0x2d, 0x59, 0x88, 0xfe, 0x50, 0x60, 0x31, 0x2d, 0x46, 0xd0, 0xbb, 0xc9, 0x0d, 0xc7, 0x88, 0x2f, + 0xf5, 0xe0, 0x29, 0x52, 0x81, 0xfc, 0x26, 0x47, 0x5e, 0x47, 0xab, 0x12, 0x79, 0x20, 0xc3, 0xb0, + 0xd7, 0xd5, 0xe1, 0x30, 0x10, 0xd1, 0xcf, 0x0a, 0xe4, 0x93, 0xf2, 0x1b, 0xed, 0xa6, 0x5d, 0x57, + 0xe2, 0xef, 0x81, 0x5a, 0x9a, 0x44, 0x22, 0x68, 0xd7, 0x39, 0xed, 0x32, 0xd2, 0x86, 0xd1, 0x8a, + 0x7f, 0xec, 0x6f, 0x01, 0x1e, 0x53, 0x0f, 0x6d, 0x24, 0x77, 0x8a, 0xc5, 0xab, 0xba, 0x39, 0xba, + 0x50, 0x80, 0x2c, 0x70, 0x90, 0x59, 0x94, 0x93, 0x20, 0x91, 0x38, 0x2d, 0x9f, 0xdf, 0xdc, 0x6b, + 0xca, 0xdd, 0xbd, 0xa6, 0xfc, 0x73, 0xaf, 0x29, 0x3f, 0x3c, 0x68, 0x99, 0xbb, 0x07, 0x2d, 0xf3, + 0xd7, 0x83, 0x96, 0xf9, 0x62, 0xdf, 0xb2, 0x83, 0xeb, 0x96, 0x69, 0x54, 0x99, 0x83, 0x65, 0x2b, + 0xe6, 0x59, 0xbd, 0xe7, 0x1d, 0xd2, 0x68, 0xe0, 0xaf, 0xb1, 0x59, 0x67, 0xa6, 0x1f, 0x78, 0x94, + 0x38, 0xe1, 0x77, 0xa5, 0x99, 0xe5, 0x5f, 0x3f, 0x7b, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x1d, + 0x22, 0x0e, 0x84, 0xc4, 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -830,7 +831,7 @@ const _ = grpc.SupportPackageIsVersion4 // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. type QueryClient interface { - // Params queries the current parameters for the qgb module + // Params queries the current parameters for the blobstream module Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) // AttestationRequestByNonce queries attestation request by nonce. // Returns nil if not found. @@ -937,7 +938,7 @@ func (c *queryClient) EVMAddress(ctx context.Context, in *QueryEVMAddressRequest // QueryServer is the server API for Query service. type QueryServer interface { - // Params queries the current parameters for the qgb module + // Params queries the current parameters for the blobstream module Params(context.Context, *QueryParamsRequest) (*QueryParamsResponse, error) // AttestationRequestByNonce queries attestation request by nonce. // Returns nil if not found. diff --git a/x/blobstream/types/query.pb.gw.go b/x/blobstream/types/query.pb.gw.go index 5e4d005d84..c7da4ad3a6 100644 --- a/x/blobstream/types/query.pb.gw.go +++ b/x/blobstream/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: celestia/blobstream/v1/query.proto +// source: celestia/qgb/v1/query.proto /* Package types is a reverse proxy. @@ -680,21 +680,21 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie } var ( - pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"blobstream", "v1", "params"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_Params_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"qgb", "v1", "params"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_AttestationRequestByNonce_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"blobstream", "v1", "attestations", "requests", "nonce"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_AttestationRequestByNonce_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 1, 0, 4, 1, 5, 4}, []string{"qgb", "v1", "attestations", "requests", "nonce"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_LatestAttestationNonce_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"blobstream", "v1", "attestations", "nonce", "latest"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_LatestAttestationNonce_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"qgb", "v1", "attestations", "nonce", "latest"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_LatestValsetRequestBeforeNonce_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"blobstream", "v1", "valset", "request", "before", "nonce"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_LatestValsetRequestBeforeNonce_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 1, 0, 4, 1, 5, 5}, []string{"qgb", "v1", "valset", "request", "before", "nonce"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_LatestUnbondingHeight_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"blobstream", "v1", "unbonding"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_LatestUnbondingHeight_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"qgb", "v1", "unbonding"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_DataCommitmentRangeForHeight_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"blobstream", "v1", "data_commitment", "range", "height"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_DataCommitmentRangeForHeight_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4}, []string{"qgb", "v1", "data_commitment", "range", "height"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_LatestDataCommitment_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"blobstream", "v1", "data_commitment", "latest"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_LatestDataCommitment_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3}, []string{"qgb", "v1", "data_commitment", "latest"}, "", runtime.AssumeColonVerbOpt(false))) - pattern_Query_EVMAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"blobstream", "v1", "evm_address"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_EVMAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"qgb", "v1", "evm_address"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/blobstream/types/tx.pb.go b/x/blobstream/types/tx.pb.go index 2c591ea56b..0c6482f9e1 100644 --- a/x/blobstream/types/tx.pb.go +++ b/x/blobstream/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: celestia/blobstream/v1/tx.proto +// source: celestia/qgb/v1/tx.proto package types @@ -42,7 +42,7 @@ func (m *MsgRegisterEVMAddress) Reset() { *m = MsgRegisterEVMAddress{} } func (m *MsgRegisterEVMAddress) String() string { return proto.CompactTextString(m) } func (*MsgRegisterEVMAddress) ProtoMessage() {} func (*MsgRegisterEVMAddress) Descriptor() ([]byte, []int) { - return fileDescriptor_044858489439fd7e, []int{0} + return fileDescriptor_85ed1095628e2204, []int{0} } func (m *MsgRegisterEVMAddress) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -93,7 +93,7 @@ func (m *MsgRegisterEVMAddressResponse) Reset() { *m = MsgRegisterEVMAdd func (m *MsgRegisterEVMAddressResponse) String() string { return proto.CompactTextString(m) } func (*MsgRegisterEVMAddressResponse) ProtoMessage() {} func (*MsgRegisterEVMAddressResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_044858489439fd7e, []int{1} + return fileDescriptor_85ed1095628e2204, []int{1} } func (m *MsgRegisterEVMAddressResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -123,36 +123,35 @@ func (m *MsgRegisterEVMAddressResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgRegisterEVMAddressResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgRegisterEVMAddress)(nil), "celestia.blobstream.v1.MsgRegisterEVMAddress") - proto.RegisterType((*MsgRegisterEVMAddressResponse)(nil), "celestia.blobstream.v1.MsgRegisterEVMAddressResponse") -} - -func init() { proto.RegisterFile("celestia/blobstream/v1/tx.proto", fileDescriptor_044858489439fd7e) } - -var fileDescriptor_044858489439fd7e = []byte{ - // 337 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4f, 0x4e, 0xcd, 0x49, - 0x2d, 0x2e, 0xc9, 0x4c, 0xd4, 0x4f, 0xca, 0xc9, 0x4f, 0x2a, 0x2e, 0x29, 0x4a, 0x4d, 0xcc, 0xd5, - 0x2f, 0x33, 0xd4, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x83, 0x29, 0xd0, - 0x43, 0x28, 0xd0, 0x2b, 0x33, 0x94, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, 0xd1, 0x07, 0xb1, - 0x20, 0xaa, 0xa5, 0x24, 0x93, 0xf3, 0x8b, 0x73, 0xf3, 0x8b, 0xe3, 0x21, 0x12, 0x10, 0x0e, 0x54, - 0x4a, 0x26, 0x3d, 0x3f, 0x3f, 0x3d, 0x27, 0x55, 0x3f, 0xb1, 0x20, 0x53, 0x3f, 0x31, 0x2f, 0x2f, - 0xbf, 0x24, 0xb1, 0x24, 0x33, 0x3f, 0x0f, 0x2a, 0xab, 0x54, 0xcf, 0x25, 0xea, 0x5b, 0x9c, 0x1e, - 0x94, 0x9a, 0x9e, 0x59, 0x5c, 0x92, 0x5a, 0xe4, 0x1a, 0xe6, 0xeb, 0x98, 0x92, 0x52, 0x94, 0x5a, - 0x5c, 0x2c, 0xe4, 0xca, 0x25, 0x58, 0x96, 0x98, 0x93, 0x99, 0x92, 0x58, 0x92, 0x5f, 0x14, 0x9f, - 0x08, 0x11, 0x94, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x74, 0x92, 0xb8, 0xb4, 0x45, 0x57, 0x04, 0x6a, - 0x07, 0x54, 0x79, 0x70, 0x49, 0x51, 0x66, 0x5e, 0x7a, 0x90, 0x00, 0x5c, 0x0b, 0xcc, 0x18, 0x79, - 0x2e, 0xee, 0xd4, 0xb2, 0x5c, 0xb8, 0x01, 0x4c, 0x20, 0x03, 0x82, 0xb8, 0x52, 0xcb, 0x72, 0xa1, - 0x0a, 0x94, 0xe4, 0xb9, 0x64, 0xb1, 0x3a, 0x20, 0x28, 0xb5, 0xb8, 0x20, 0x3f, 0xaf, 0x38, 0xd5, - 0x68, 0x3d, 0x23, 0x17, 0xb3, 0x6f, 0x71, 0xba, 0xd0, 0x72, 0x46, 0x2e, 0x21, 0x2c, 0xee, 0xd4, - 0xd5, 0xc3, 0x1e, 0x50, 0x7a, 0x58, 0x4d, 0x95, 0x32, 0x25, 0x49, 0x39, 0xcc, 0x11, 0x4a, 0xda, - 0x4d, 0x97, 0x9f, 0x4c, 0x66, 0x52, 0x15, 0x52, 0x46, 0x8b, 0xae, 0x22, 0xa8, 0x96, 0x78, 0x24, - 0x4f, 0x3a, 0x05, 0x9c, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, - 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x59, 0x7a, - 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0xcc, 0x1d, 0xf9, 0x45, 0xe9, 0x70, - 0xb6, 0x6e, 0x62, 0x41, 0x81, 0x7e, 0x05, 0xb2, 0x1d, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, - 0xe0, 0xc8, 0x32, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xb7, 0x87, 0xf6, 0x58, 0x36, 0x02, 0x00, - 0x00, + proto.RegisterType((*MsgRegisterEVMAddress)(nil), "celestia.qgb.v1.MsgRegisterEVMAddress") + proto.RegisterType((*MsgRegisterEVMAddressResponse)(nil), "celestia.qgb.v1.MsgRegisterEVMAddressResponse") +} + +func init() { proto.RegisterFile("celestia/qgb/v1/tx.proto", fileDescriptor_85ed1095628e2204) } + +var fileDescriptor_85ed1095628e2204 = []byte{ + // 335 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x91, 0xc1, 0x4a, 0x03, 0x31, + 0x10, 0x86, 0x9b, 0x0a, 0x82, 0xf1, 0xa0, 0x2e, 0x15, 0x6a, 0xa9, 0xa9, 0x14, 0x11, 0x2f, 0x4d, + 0xa8, 0x82, 0x77, 0x0b, 0x3d, 0x16, 0x64, 0x05, 0x0f, 0x5e, 0x4a, 0xb6, 0x0d, 0x31, 0xb0, 0xbb, + 0xb3, 0xcd, 0xc4, 0xa5, 0x9e, 0x04, 0x9f, 0x40, 0xf4, 0xe6, 0x73, 0xf8, 0x10, 0x1e, 0x8b, 0x5e, + 0x3c, 0x4a, 0xeb, 0x83, 0x48, 0xbb, 0xbb, 0x45, 0xa4, 0x07, 0x6f, 0x93, 0xfc, 0x5f, 0xfe, 0x7f, + 0x32, 0x43, 0xab, 0x03, 0x15, 0x2a, 0x74, 0x46, 0x8a, 0x91, 0x0e, 0x44, 0xda, 0x16, 0x6e, 0xcc, + 0x13, 0x0b, 0x0e, 0xbc, 0xad, 0x42, 0xe1, 0x23, 0x1d, 0xf0, 0xb4, 0x5d, 0xab, 0x68, 0xd0, 0xb0, + 0xd0, 0xc4, 0xbc, 0xca, 0xb0, 0xda, 0xde, 0x00, 0x30, 0x02, 0xec, 0x67, 0x42, 0x76, 0xc8, 0xa5, + 0xba, 0x06, 0xd0, 0xa1, 0x12, 0x32, 0x31, 0x42, 0xc6, 0x31, 0x38, 0xe9, 0x0c, 0xc4, 0xb9, 0xda, + 0xbc, 0xa7, 0xbb, 0x3d, 0xd4, 0xbe, 0xd2, 0x06, 0x9d, 0xb2, 0xdd, 0xab, 0xde, 0xf9, 0x70, 0x68, + 0x15, 0xa2, 0xd7, 0xa5, 0x3b, 0xa9, 0x0c, 0xcd, 0x50, 0x3a, 0xb0, 0x7d, 0x99, 0x5d, 0x56, 0xc9, + 0x01, 0x39, 0xde, 0xe8, 0x54, 0xdf, 0x5f, 0x5b, 0x95, 0x3c, 0x23, 0xc7, 0x2f, 0x9d, 0x35, 0xb1, + 0xf6, 0xb7, 0x97, 0x4f, 0x0a, 0x9b, 0x06, 0xdd, 0x54, 0x69, 0xb4, 0x34, 0x28, 0xcf, 0x0d, 0x7c, + 0xaa, 0xd2, 0x28, 0x07, 0x9a, 0x0d, 0xba, 0xbf, 0xb2, 0x01, 0x5f, 0x61, 0x02, 0x31, 0xaa, 0x93, + 0x17, 0x42, 0xd7, 0x7a, 0xa8, 0xbd, 0x27, 0x42, 0xbd, 0x15, 0x7d, 0x1e, 0xf1, 0x3f, 0x13, 0xe2, + 0x2b, 0xed, 0x6a, 0xfc, 0x7f, 0x5c, 0x11, 0xdb, 0x3c, 0x7c, 0xf8, 0xf8, 0x7e, 0x2e, 0x33, 0xaf, + 0x5e, 0xac, 0xc4, 0xe6, 0x6c, 0xff, 0xd7, 0x7f, 0x3a, 0x17, 0x6f, 0x53, 0x46, 0x26, 0x53, 0x46, + 0xbe, 0xa6, 0x8c, 0x3c, 0xce, 0x58, 0x69, 0x32, 0x63, 0xa5, 0xcf, 0x19, 0x2b, 0x5d, 0x9f, 0x69, + 0xe3, 0x6e, 0x6e, 0x03, 0x3e, 0x80, 0x48, 0x14, 0xc9, 0x60, 0xf5, 0xb2, 0x6e, 0xc9, 0x24, 0x11, + 0x63, 0x11, 0x84, 0x10, 0xa0, 0xb3, 0x4a, 0x46, 0xc2, 0xdd, 0x25, 0x0a, 0x83, 0xf5, 0xc5, 0x5e, + 0x4e, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x9d, 0x18, 0x1a, 0xed, 0x13, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -185,7 +184,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) RegisterEVMAddress(ctx context.Context, in *MsgRegisterEVMAddress, opts ...grpc.CallOption) (*MsgRegisterEVMAddressResponse, error) { out := new(MsgRegisterEVMAddressResponse) - err := c.cc.Invoke(ctx, "/celestia.blobstream.v1.Msg/RegisterEVMAddress", in, out, opts...) + err := c.cc.Invoke(ctx, "/celestia.qgb.v1.Msg/RegisterEVMAddress", in, out, opts...) if err != nil { return nil, err } @@ -224,7 +223,7 @@ func _Msg_RegisterEVMAddress_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/celestia.blobstream.v1.Msg/RegisterEVMAddress", + FullMethod: "/celestia.qgb.v1.Msg/RegisterEVMAddress", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).RegisterEVMAddress(ctx, req.(*MsgRegisterEVMAddress)) @@ -233,7 +232,7 @@ func _Msg_RegisterEVMAddress_Handler(srv interface{}, ctx context.Context, dec f } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "celestia.blobstream.v1.Msg", + ServiceName: "celestia.qgb.v1.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { @@ -242,7 +241,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "celestia/blobstream/v1/tx.proto", + Metadata: "celestia/qgb/v1/tx.proto", } func (m *MsgRegisterEVMAddress) Marshal() (dAtA []byte, err error) { diff --git a/x/blobstream/types/tx.pb.gw.go b/x/blobstream/types/tx.pb.gw.go index c54c2fa7e6..18769d55c4 100644 --- a/x/blobstream/types/tx.pb.gw.go +++ b/x/blobstream/types/tx.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: celestia/blobstream/v1/tx.proto +// source: celestia/qgb/v1/tx.proto /* Package types is a reverse proxy. @@ -163,7 +163,7 @@ func RegisterMsgHandlerClient(ctx context.Context, mux *runtime.ServeMux, client } var ( - pattern_Msg_RegisterEVMAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"blobstream", "v1", "register_evm_address"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Msg_RegisterEVMAddress_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"qgb", "v1", "register_evm_address"}, "", runtime.AssumeColonVerbOpt(false))) ) var ( diff --git a/x/blobstream/types/types.pb.go b/x/blobstream/types/types.pb.go index 8269872e0a..1f94eb431d 100644 --- a/x/blobstream/types/types.pb.go +++ b/x/blobstream/types/types.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: celestia/blobstream/v1/types.proto +// source: celestia/qgb/v1/types.proto package types @@ -40,7 +40,7 @@ func (m *BridgeValidator) Reset() { *m = BridgeValidator{} } func (m *BridgeValidator) String() string { return proto.CompactTextString(m) } func (*BridgeValidator) ProtoMessage() {} func (*BridgeValidator) Descriptor() ([]byte, []int) { - return fileDescriptor_72483563ecab3424, []int{0} + return fileDescriptor_5db0e6d49b998544, []int{0} } func (m *BridgeValidator) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -102,7 +102,7 @@ func (m *Valset) Reset() { *m = Valset{} } func (m *Valset) String() string { return proto.CompactTextString(m) } func (*Valset) ProtoMessage() {} func (*Valset) Descriptor() ([]byte, []int) { - return fileDescriptor_72483563ecab3424, []int{1} + return fileDescriptor_5db0e6d49b998544, []int{1} } func (m *Valset) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -183,7 +183,7 @@ func (m *DataCommitment) Reset() { *m = DataCommitment{} } func (m *DataCommitment) String() string { return proto.CompactTextString(m) } func (*DataCommitment) ProtoMessage() {} func (*DataCommitment) Descriptor() ([]byte, []int) { - return fileDescriptor_72483563ecab3424, []int{2} + return fileDescriptor_5db0e6d49b998544, []int{2} } func (m *DataCommitment) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -241,44 +241,42 @@ func (m *DataCommitment) GetTime() time.Time { } func init() { - proto.RegisterType((*BridgeValidator)(nil), "celestia.blobstream.v1.BridgeValidator") - proto.RegisterType((*Valset)(nil), "celestia.blobstream.v1.Valset") - proto.RegisterType((*DataCommitment)(nil), "celestia.blobstream.v1.DataCommitment") + proto.RegisterType((*BridgeValidator)(nil), "celestia.qgb.v1.BridgeValidator") + proto.RegisterType((*Valset)(nil), "celestia.qgb.v1.Valset") + proto.RegisterType((*DataCommitment)(nil), "celestia.qgb.v1.DataCommitment") } -func init() { - proto.RegisterFile("celestia/blobstream/v1/types.proto", fileDescriptor_72483563ecab3424) -} +func init() { proto.RegisterFile("celestia/qgb/v1/types.proto", fileDescriptor_5db0e6d49b998544) } -var fileDescriptor_72483563ecab3424 = []byte{ +var fileDescriptor_5db0e6d49b998544 = []byte{ // 424 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x52, 0x41, 0x8b, 0xd3, 0x40, - 0x18, 0xed, 0xb8, 0xb1, 0xee, 0x4e, 0x41, 0x21, 0x2e, 0x6b, 0xad, 0x90, 0x94, 0x5e, 0xec, 0x65, - 0x27, 0xec, 0x0a, 0x22, 0xde, 0x36, 0x0a, 0xea, 0x4d, 0x82, 0xec, 0xc1, 0x4b, 0x99, 0x24, 0x9f, - 0xd3, 0xc1, 0x4c, 0xbe, 0x38, 0x33, 0x8d, 0xfa, 0x2f, 0xf6, 0xc7, 0x08, 0xfe, 0x85, 0xc5, 0x53, - 0xf1, 0xe4, 0x49, 0xa5, 0xfd, 0x23, 0x92, 0x99, 0x46, 0x45, 0xf4, 0xe6, 0x6d, 0xde, 0xf7, 0xde, - 0xf7, 0x78, 0x2f, 0xf9, 0xe8, 0xac, 0x80, 0x0a, 0x8c, 0x95, 0x3c, 0xc9, 0x2b, 0xcc, 0x8d, 0xd5, - 0xc0, 0x55, 0xd2, 0x9e, 0x24, 0xf6, 0x7d, 0x03, 0x86, 0x35, 0x1a, 0x2d, 0x86, 0x47, 0xbd, 0x86, - 0xfd, 0xd2, 0xb0, 0xf6, 0x64, 0x72, 0x28, 0x50, 0xa0, 0x93, 0x24, 0xdd, 0xcb, 0xab, 0x27, 0xb7, - 0x0b, 0x34, 0x0a, 0xcd, 0xc2, 0x13, 0x1e, 0xec, 0xa8, 0x58, 0x20, 0x8a, 0x0a, 0x12, 0x87, 0xf2, - 0xd5, 0xab, 0xc4, 0x4a, 0x05, 0xc6, 0x72, 0xd5, 0x78, 0xc1, 0xec, 0x29, 0xbd, 0x91, 0x6a, 0x59, - 0x0a, 0x38, 0xe7, 0x95, 0x2c, 0xb9, 0x45, 0x1d, 0x1e, 0xd2, 0xab, 0x0d, 0xbe, 0x05, 0x3d, 0x26, - 0x53, 0x32, 0x0f, 0x32, 0x0f, 0xc2, 0x98, 0x8e, 0xa0, 0x55, 0x0b, 0x5e, 0x96, 0x1a, 0x8c, 0x19, - 0x5f, 0x99, 0x92, 0xf9, 0x41, 0x46, 0xa1, 0x55, 0x67, 0x7e, 0x32, 0xfb, 0x4c, 0xe8, 0xf0, 0x9c, - 0x57, 0x06, 0x6c, 0xe7, 0x50, 0x63, 0x5d, 0x40, 0xef, 0xe0, 0x40, 0xf8, 0x84, 0x5e, 0x53, 0xa0, - 0x72, 0xd0, 0xdd, 0xf6, 0xde, 0x7c, 0x74, 0x7a, 0x97, 0xfd, 0xbd, 0x26, 0xfb, 0x23, 0x51, 0x1a, - 0x5c, 0x7e, 0x8d, 0x07, 0x59, 0xbf, 0x1d, 0x1e, 0xd1, 0xe1, 0x12, 0xa4, 0x58, 0xda, 0xf1, 0x9e, - 0xf3, 0xdf, 0xa1, 0xf0, 0x01, 0x0d, 0xba, 0x7a, 0xe3, 0x60, 0x4a, 0xe6, 0xa3, 0xd3, 0x09, 0xf3, - 0xdd, 0x59, 0xdf, 0x9d, 0xbd, 0xe8, 0xbb, 0xa7, 0xfb, 0x9d, 0xe1, 0xc5, 0xb7, 0x98, 0x64, 0x6e, - 0xe3, 0xe1, 0xad, 0x4f, 0x1f, 0x8e, 0x6f, 0x9e, 0x59, 0xdb, 0xd1, 0x56, 0x62, 0x9d, 0xc1, 0x9b, - 0x15, 0x18, 0xfb, 0x6c, 0xf6, 0x91, 0xd0, 0xeb, 0x8f, 0xb9, 0xe5, 0x8f, 0x50, 0x29, 0x69, 0x15, - 0xd4, 0xff, 0x2a, 0x17, 0xd3, 0x51, 0x0e, 0x42, 0xd6, 0x8b, 0xbc, 0xc2, 0xe2, 0xb5, 0xfb, 0x3c, - 0x41, 0x46, 0xdd, 0x28, 0xed, 0x26, 0xe1, 0x1d, 0x7a, 0x00, 0x75, 0xb9, 0xa3, 0x7d, 0xee, 0x7d, - 0xa8, 0x4b, 0x4f, 0xfe, 0xff, 0xe4, 0xe9, 0xf3, 0xcb, 0x4d, 0x44, 0xd6, 0x9b, 0x88, 0x7c, 0xdf, - 0x44, 0xe4, 0x62, 0x1b, 0x0d, 0xd6, 0xdb, 0x68, 0xf0, 0x65, 0x1b, 0x0d, 0x5e, 0xde, 0x17, 0xd2, - 0x2e, 0x57, 0x39, 0x2b, 0x50, 0x25, 0xfd, 0x0f, 0x40, 0x2d, 0x7e, 0xbe, 0x8f, 0x79, 0xd3, 0x24, - 0xef, 0x7e, 0xbf, 0x4e, 0x77, 0x9a, 0xf9, 0xd0, 0xc5, 0xb9, 0xf7, 0x23, 0x00, 0x00, 0xff, 0xff, - 0x1a, 0x81, 0x3a, 0x86, 0xc1, 0x02, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x92, 0x41, 0x6f, 0xd3, 0x30, + 0x18, 0x86, 0x6b, 0x16, 0xca, 0xe6, 0x4a, 0x4c, 0x0a, 0x13, 0x94, 0x4e, 0x4a, 0xaa, 0x9e, 0x7a, + 0x99, 0xad, 0x0d, 0x09, 0x21, 0x4e, 0x2c, 0x70, 0x80, 0x1b, 0x8a, 0xd0, 0x0e, 0x5c, 0x2a, 0x3b, + 0xf9, 0x70, 0x2d, 0xe2, 0x7c, 0x69, 0xec, 0x06, 0xf8, 0x17, 0xfb, 0x31, 0x48, 0xfc, 0x85, 0x09, + 0x2e, 0x3b, 0x72, 0x02, 0xd4, 0xfe, 0x11, 0x94, 0xb8, 0xe1, 0x30, 0x89, 0xdb, 0x6e, 0x7e, 0xbf, + 0xc7, 0xdf, 0xab, 0xf7, 0xb5, 0x4c, 0x8f, 0x33, 0x28, 0xc0, 0x3a, 0x2d, 0xf8, 0x4a, 0x49, 0xde, + 0x9c, 0x72, 0xf7, 0xa5, 0x02, 0xcb, 0xaa, 0x1a, 0x1d, 0x86, 0x87, 0x3d, 0x64, 0x2b, 0x25, 0x59, + 0x73, 0x3a, 0x39, 0x52, 0xa8, 0xb0, 0x63, 0xbc, 0x3d, 0xf9, 0x6b, 0x93, 0xc7, 0x19, 0x5a, 0x83, + 0x76, 0xe1, 0x81, 0x17, 0x3b, 0x14, 0x2b, 0x44, 0x55, 0x00, 0xef, 0x94, 0x5c, 0x7f, 0xe0, 0x4e, + 0x1b, 0xb0, 0x4e, 0x98, 0xca, 0x5f, 0x98, 0xbd, 0xa6, 0x87, 0x49, 0xad, 0x73, 0x05, 0x17, 0xa2, + 0xd0, 0xb9, 0x70, 0x58, 0x87, 0x47, 0xf4, 0x6e, 0x85, 0x9f, 0xa0, 0x1e, 0x93, 0x29, 0x99, 0x07, + 0xa9, 0x17, 0x61, 0x4c, 0x47, 0xd0, 0x98, 0x85, 0xc8, 0xf3, 0x1a, 0xac, 0x1d, 0xdf, 0x99, 0x92, + 0xf9, 0x41, 0x4a, 0xa1, 0x31, 0xe7, 0x7e, 0x32, 0xfb, 0x41, 0xe8, 0xf0, 0x42, 0x14, 0x16, 0x5c, + 0xeb, 0x50, 0x62, 0x99, 0x41, 0xef, 0xd0, 0x89, 0xf0, 0x05, 0xbd, 0x67, 0xc0, 0x48, 0xa8, 0xdb, + 0xed, 0xbd, 0xf9, 0xe8, 0x6c, 0xca, 0x6e, 0xf4, 0x63, 0x37, 0xa2, 0x24, 0xc1, 0xd5, 0xaf, 0x78, + 0x90, 0xf6, 0x6b, 0xe1, 0x43, 0x3a, 0x5c, 0x82, 0x56, 0x4b, 0x37, 0xde, 0xeb, 0x8c, 0x77, 0x2a, + 0x7c, 0x46, 0x83, 0xb6, 0xd7, 0x38, 0x98, 0x92, 0xf9, 0xe8, 0x6c, 0xc2, 0x7c, 0x69, 0xd6, 0x97, + 0x66, 0xef, 0xfa, 0xd2, 0xc9, 0x7e, 0x6b, 0x78, 0xf9, 0x3b, 0x26, 0x69, 0xb7, 0xf1, 0xfc, 0xd1, + 0xf7, 0xaf, 0x27, 0x0f, 0xce, 0x9d, 0x6b, 0xb1, 0xd3, 0x58, 0xa6, 0xb0, 0x5a, 0x83, 0x75, 0x6f, + 0x66, 0xdf, 0x08, 0xbd, 0xff, 0x4a, 0x38, 0xf1, 0x12, 0x8d, 0xd1, 0xce, 0x40, 0xf9, 0xbf, 0x56, + 0x31, 0x1d, 0x49, 0x50, 0xba, 0x5c, 0xc8, 0x02, 0xb3, 0x8f, 0xdd, 0xbb, 0x04, 0x29, 0xed, 0x46, + 0x49, 0x3b, 0x09, 0x8f, 0xe9, 0x01, 0x94, 0xf9, 0x0e, 0xfb, 0xdc, 0xfb, 0x50, 0xe6, 0x1e, 0xde, + 0x7e, 0xf2, 0xe4, 0xed, 0xd5, 0x26, 0x22, 0xd7, 0x9b, 0x88, 0xfc, 0xd9, 0x44, 0xe4, 0x72, 0x1b, + 0x0d, 0xae, 0xb7, 0xd1, 0xe0, 0xe7, 0x36, 0x1a, 0xbc, 0x7f, 0xaa, 0xb4, 0x5b, 0xae, 0x25, 0xcb, + 0xd0, 0xf0, 0xfe, 0xe5, 0xb1, 0x56, 0xff, 0xce, 0x27, 0xa2, 0xaa, 0xf8, 0x67, 0x2e, 0x0b, 0x94, + 0xd6, 0xd5, 0x20, 0x8c, 0xff, 0x8c, 0x72, 0xd8, 0xc5, 0x79, 0xf2, 0x37, 0x00, 0x00, 0xff, 0xff, + 0x43, 0xb6, 0x7e, 0xfe, 0xac, 0x02, 0x00, 0x00, } func (m *BridgeValidator) Marshal() (dAtA []byte, err error) {