From b989fe4709595d555af13813f4752d95af277a93 Mon Sep 17 00:00:00 2001 From: Tanmay Date: Fri, 8 Sep 2023 16:53:25 -0400 Subject: [PATCH] add unit tests --- proto/crosschain/genesis.proto | 2 + proto/crosschain/query.proto | 9 + testutil/network/genesis_state.go | 10 + x/crosschain/client/cli/cli_in_tx_tracker.go | 54 ++ x/crosschain/client/cli/query.go | 2 + x/crosschain/client/cli/tx.go | 1 + .../client/querytests/in_tx_tracker.go | 101 +++ x/crosschain/genesis.go | 6 + .../keeper/grpc_query_in_tx_tracker.go | 18 +- x/crosschain/keeper/keeper_in_tx_tracker.go | 32 +- .../keeper/keeper_in_tx_tracker_test.go | 65 ++ x/crosschain/types/genesis.pb.go | 127 ++- .../types/message_add_to_in_tx_tracker.go | 3 - .../message_add_to_in_tx_tracker_test.go | 64 ++ x/crosschain/types/query.pb.go | 808 +++++++++++++----- x/crosschain/types/query.pb.gw.go | 65 ++ 16 files changed, 1092 insertions(+), 275 deletions(-) create mode 100644 x/crosschain/client/querytests/in_tx_tracker.go create mode 100644 x/crosschain/keeper/keeper_in_tx_tracker_test.go create mode 100644 x/crosschain/types/message_add_to_in_tx_tracker_test.go diff --git a/proto/crosschain/genesis.proto b/proto/crosschain/genesis.proto index e86cf6d073..c62d228d0b 100644 --- a/proto/crosschain/genesis.proto +++ b/proto/crosschain/genesis.proto @@ -5,6 +5,7 @@ import "crosschain/chain_nonces.proto"; import "crosschain/cross_chain_tx.proto"; import "crosschain/gas_price.proto"; import "crosschain/in_tx_hash_to_cctx.proto"; +import "crosschain/in_tx_tracker.proto"; import "crosschain/last_block_height.proto"; import "crosschain/out_tx_tracker.proto"; import "crosschain/params.proto"; @@ -25,4 +26,5 @@ message GenesisState { repeated LastBlockHeight lastBlockHeightList = 8; repeated InTxHashToCctx inTxHashToCctxList = 9 [(gogoproto.nullable) = false]; repeated TSS tss_history = 10 [(gogoproto.nullable) = false]; + repeated InTxTracker in_tx_tracker_list = 11 [(gogoproto.nullable) = false]; } diff --git a/proto/crosschain/query.proto b/proto/crosschain/query.proto index b28d04d44a..59edc0fb7e 100644 --- a/proto/crosschain/query.proto +++ b/proto/crosschain/query.proto @@ -41,6 +41,9 @@ service Query { rpc InTxTrackerAllByChain(QueryAllInTxTrackerByChainRequest) returns (QueryAllInTxTrackerByChainResponse) { option (google.api.http).get = "/zeta-chain/crosschain/inTxTrackerByChain/{chain_id}"; } + rpc InTxTrackerAll(QueryAllInTxTrackersRequest) returns (QueryAllInTxTrackersResponse) { + option (google.api.http).get = "/zeta-chain/crosschain/inTxTrackers"; + } // Queries a InTxHashToCctx by index. rpc InTxHashToCctx(QueryGetInTxHashToCctxRequest) returns (QueryGetInTxHashToCctxResponse) { @@ -191,6 +194,12 @@ message QueryAllInTxTrackerByChainResponse { cosmos.base.query.v1beta1.PageResponse pagination = 2; } +message QueryAllInTxTrackersRequest {} + +message QueryAllInTxTrackersResponse { + repeated InTxTracker inTxTracker = 1 [(gogoproto.nullable) = false]; +} + message QueryGetInTxHashToCctxRequest { string inTxHash = 1; } diff --git a/testutil/network/genesis_state.go b/testutil/network/genesis_state.go index 6d4de014ff..71d7b9740d 100644 --- a/testutil/network/genesis_state.go +++ b/testutil/network/genesis_state.go @@ -165,6 +165,16 @@ func AddCrosschainData(t *testing.T, n int, genesisState map[string]json.RawMess state.OutTxTrackerList = append(state.OutTxTrackerList, outTxTracker) } + for i := 0; i < n; i++ { + inTxTracker := types.InTxTracker{ + ChainId: 5, + TxHash: fmt.Sprintf("txHash-%d", i), + CoinType: common.CoinType_Gas, + } + nullify.Fill(&inTxTracker) + state.InTxTrackerList = append(state.InTxTrackerList, inTxTracker) + } + for i := 0; i < n; i++ { inTxHashToCctx := types.InTxHashToCctx{ InTxHash: strconv.Itoa(i), diff --git a/x/crosschain/client/cli/cli_in_tx_tracker.go b/x/crosschain/client/cli/cli_in_tx_tracker.go index 575c2572b5..28147c772b 100644 --- a/x/crosschain/client/cli/cli_in_tx_tracker.go +++ b/x/crosschain/client/cli/cli_in_tx_tracker.go @@ -1,6 +1,7 @@ package cli import ( + "context" "strconv" "github.com/cosmos/cosmos-sdk/client" @@ -44,3 +45,56 @@ func CmdAddToInTxTracker() *cobra.Command { return cmd } + +func CmdListInTxTrackerByChain() *cobra.Command { + cmd := &cobra.Command{ + Use: "list-in-tx-tracker [chainId]", + Short: "shows a list of in tx tracker by chainId", + Args: cobra.ExactArgs(1), + RunE: func(cmd *cobra.Command, args []string) (err error) { + clientCtx := client.GetClientContextFromCmd(cmd) + queryClient := types.NewQueryClient(clientCtx) + argChain, err := strconv.ParseInt(args[0], 10, 64) + if err != nil { + return err + } + pageReq, err := client.ReadPageRequest(cmd.Flags()) + if err != nil { + return err + } + params := &types.QueryAllInTxTrackerByChainRequest{ + ChainId: argChain, + Pagination: pageReq, + } + res, err := queryClient.InTxTrackerAllByChain(context.Background(), params) + if err != nil { + return err + } + + return clientCtx.PrintProto(res) + }, + } + flags.AddQueryFlagsToCmd(cmd) + flags.AddPaginationFlagsToCmd(cmd, cmd.Use) + return cmd +} + +func CmdListInTxTrackers() *cobra.Command { + cmd := &cobra.Command{ + Use: "list-all-tx-trackers", + Short: "shows all inTxTrackers", + Args: cobra.NoArgs, + RunE: func(cmd *cobra.Command, args []string) (err error) { + clientCtx := client.GetClientContextFromCmd(cmd) + queryClient := types.NewQueryClient(clientCtx) + params := &types.QueryAllInTxTrackersRequest{} + res, err := queryClient.InTxTrackerAll(context.Background(), params) + if err != nil { + return err + } + return clientCtx.PrintProto(res) + }, + } + flags.AddQueryFlagsToCmd(cmd) + return cmd +} diff --git a/x/crosschain/client/cli/query.go b/x/crosschain/client/cli/query.go index 88069a864f..c247ee5bdb 100644 --- a/x/crosschain/client/cli/query.go +++ b/x/crosschain/client/cli/query.go @@ -42,6 +42,8 @@ func GetQueryCmd(queryRoute string) *cobra.Command { CmdQueryParams(), CmdGetTssAddress(), CmdListTssHistory(), + CmdListInTxTrackerByChain(), + CmdListInTxTrackers(), ) return cmd diff --git a/x/crosschain/client/cli/tx.go b/x/crosschain/client/cli/tx.go index 67e68c59f7..d7891a5fe9 100644 --- a/x/crosschain/client/cli/tx.go +++ b/x/crosschain/client/cli/tx.go @@ -29,6 +29,7 @@ func GetTxCmd() *cobra.Command { CmdCCTXInboundVoter(), CmdRemoveFromWatchList(), CmdUpdateTss(), + CmdAddToInTxTracker(), ) return cmd diff --git a/x/crosschain/client/querytests/in_tx_tracker.go b/x/crosschain/client/querytests/in_tx_tracker.go new file mode 100644 index 0000000000..97a581d91f --- /dev/null +++ b/x/crosschain/client/querytests/in_tx_tracker.go @@ -0,0 +1,101 @@ +package querytests + +import ( + "fmt" + + "github.com/cosmos/cosmos-sdk/client/flags" + clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" + tmcli "github.com/tendermint/tendermint/libs/cli" + "github.com/zeta-chain/zetacore/testutil/nullify" + "github.com/zeta-chain/zetacore/x/crosschain/client/cli" + "github.com/zeta-chain/zetacore/x/crosschain/types" +) + +func (s *CliTestSuite) TestListInTxTrackers() { + ctx := s.network.Validators[0].ClientCtx + objs := s.crosschainState.InTxTrackerList + s.Run("List all trackers", func() { + args := []string{ + fmt.Sprintf("--%s=json", tmcli.OutputFlag), + } + out, err := clitestutil.ExecTestCLICmd(ctx, cli.CmdListInTxTrackers(), args) + s.Require().NoError(err) + var resp types.QueryAllInTxTrackersResponse + s.Require().NoError(s.network.Config.Codec.UnmarshalJSON(out.Bytes(), &resp)) + s.Require().Equal(len(objs), len(resp.InTxTracker)) + s.Require().ElementsMatch(nullify.Fill(objs), nullify.Fill(resp.InTxTracker)) + }) +} + +func (s *CliTestSuite) TestListInTxTrackersByChain() { + ctx := s.network.Validators[0].ClientCtx + objs := s.crosschainState.InTxTrackerList + request := func(next []byte, offset, limit uint64, total bool, chainID int) []string { + args := []string{ + fmt.Sprintf("--%s=json", tmcli.OutputFlag), + } + if next == nil { + args = append(args, fmt.Sprintf("--%s=%d", flags.FlagOffset, offset)) + } else { + args = append(args, fmt.Sprintf("--%s=%s", flags.FlagPageKey, next)) + } + args = append(args, fmt.Sprintf("--%s=%d", flags.FlagLimit, limit)) + if total { + args = append(args, fmt.Sprintf("--%s", flags.FlagCountTotal)) + } + args = append(args, fmt.Sprintf("%d", chainID)) + return args + } + s.Run("ByOffset", func() { + step := 2 + for i := 0; i < len(objs); i += step { + args := request(nil, uint64(i), uint64(step), false, 5) + out, err := clitestutil.ExecTestCLICmd(ctx, cli.CmdListInTxTrackerByChain(), args) + s.Require().NoError(err) + var resp types.QueryAllInTxTrackerByChainResponse + s.Require().NoError(s.network.Config.Codec.UnmarshalJSON(out.Bytes(), &resp)) + s.Require().LessOrEqual(len(resp.InTxTracker), step) + s.Require().Subset(nullify.Fill(objs), + nullify.Fill(resp.InTxTracker), + ) + } + }) + s.Run("ByKey", func() { + step := 2 + var next []byte + for i := 0; i < len(objs); i += step { + args := request(next, 0, uint64(step), false, 5) + out, err := clitestutil.ExecTestCLICmd(ctx, cli.CmdListInTxTrackerByChain(), args) + s.Require().NoError(err) + var resp types.QueryAllInTxTrackerByChainResponse + s.Require().NoError(s.network.Config.Codec.UnmarshalJSON(out.Bytes(), &resp)) + s.Require().LessOrEqual(len(resp.InTxTracker), step) + s.Require().Subset( + nullify.Fill(objs), + nullify.Fill(resp.InTxTracker), + ) + next = resp.Pagination.NextKey + } + }) + s.Run("Total", func() { + args := request(nil, 0, uint64(len(objs)), true, 5) + out, err := clitestutil.ExecTestCLICmd(ctx, cli.CmdListInTxTrackerByChain(), args) + s.Require().NoError(err) + var resp types.QueryAllInTxTrackerByChainResponse + s.Require().NoError(s.network.Config.Codec.UnmarshalJSON(out.Bytes(), &resp)) + s.Require().NoError(err) + s.Require().Equal(len(objs), int(resp.Pagination.Total)) + s.Require().ElementsMatch(nullify.Fill(objs), + nullify.Fill(resp.InTxTracker), + ) + }) + s.Run("Incorrect Chain ID ", func() { + args := request(nil, 0, uint64(len(objs)), true, 15) + out, err := clitestutil.ExecTestCLICmd(ctx, cli.CmdListInTxTrackerByChain(), args) + s.Require().NoError(err) + var resp types.QueryAllInTxTrackerByChainResponse + s.Require().NoError(s.network.Config.Codec.UnmarshalJSON(out.Bytes(), &resp)) + s.Require().NoError(err) + s.Require().Equal(0, int(resp.Pagination.Total)) + }) +} diff --git a/x/crosschain/genesis.go b/x/crosschain/genesis.go index f6b6a910dd..e1d77b1c02 100644 --- a/x/crosschain/genesis.go +++ b/x/crosschain/genesis.go @@ -18,6 +18,11 @@ func InitGenesis(ctx sdk.Context, k keeper.Keeper, genState types.GenesisState) k.SetOutTxTracker(ctx, elem) } + // Set all the inTxTracker + for _, elem := range genState.InTxTrackerList { + k.SetInTxTracker(ctx, elem) + } + // Set all the inTxHashToCctx for _, elem := range genState.InTxHashToCctxList { k.SetInTxHashToCctx(ctx, elem) @@ -76,6 +81,7 @@ func ExportGenesis(ctx sdk.Context, k keeper.Keeper) *types.GenesisState { genesis.Params = k.GetParams(ctx) genesis.OutTxTrackerList = k.GetAllOutTxTracker(ctx) genesis.InTxHashToCctxList = k.GetAllInTxHashToCctx(ctx) + genesis.InTxTrackerList = k.GetAllInTxTracker(ctx) // Get tss tss, found := k.GetTSS(ctx) diff --git a/x/crosschain/keeper/grpc_query_in_tx_tracker.go b/x/crosschain/keeper/grpc_query_in_tx_tracker.go index bb6418b12b..ccdaa92e3d 100644 --- a/x/crosschain/keeper/grpc_query_in_tx_tracker.go +++ b/x/crosschain/keeper/grpc_query_in_tx_tracker.go @@ -4,11 +4,25 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/zeta-chain/zetacore/x/crosschain/types" + "google.golang.org/grpc/codes" + "google.golang.org/grpc/status" ) func (k Keeper) InTxTrackerAllByChain(goCtx context.Context, request *types.QueryAllInTxTrackerByChainRequest) (*types.QueryAllInTxTrackerByChainResponse, error) { ctx := sdk.UnwrapSDKContext(goCtx) - inTxTrackers := k.GetAllInTxTrackerForChain(ctx, request.ChainId) - return &types.QueryAllInTxTrackerByChainResponse{InTxTracker: inTxTrackers}, nil + var inTxTrackers []types.InTxTracker + inTxTrackers, pageRes, err := k.GetAllInTxTrackerForChainPaginated(ctx, request.ChainId, request.Pagination) + if err != nil { + return nil, status.Error(codes.Internal, err.Error()) + } + return &types.QueryAllInTxTrackerByChainResponse{InTxTracker: inTxTrackers, Pagination: pageRes}, nil +} + +func (k Keeper) InTxTrackerAll(goCtx context.Context, _ *types.QueryAllInTxTrackersRequest) (*types.QueryAllInTxTrackersResponse, error) { + ctx := sdk.UnwrapSDKContext(goCtx) + var inTxTrackers []types.InTxTracker + inTxTrackers = k.GetAllInTxTracker(ctx) + return &types.QueryAllInTxTrackersResponse{InTxTracker: inTxTrackers}, nil } diff --git a/x/crosschain/keeper/keeper_in_tx_tracker.go b/x/crosschain/keeper/keeper_in_tx_tracker.go index 215f3af578..3eb6231ecd 100644 --- a/x/crosschain/keeper/keeper_in_tx_tracker.go +++ b/x/crosschain/keeper/keeper_in_tx_tracker.go @@ -7,11 +7,12 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" + "github.com/cosmos/cosmos-sdk/types/query" "github.com/zeta-chain/zetacore/x/crosschain/types" zetaObserverTypes "github.com/zeta-chain/zetacore/x/observer/types" ) -func getOutTrackerKey(chainID int64, txHash string) string { +func getInTrackerKey(chainID int64, txHash string) string { return fmt.Sprintf("%d-%s", chainID, txHash) } @@ -19,13 +20,13 @@ func getOutTrackerKey(chainID int64, txHash string) string { func (k Keeper) SetInTxTracker(ctx sdk.Context, InTxTracker types.InTxTracker) { store := prefix.NewStore(ctx.KVStore(k.storeKey), types.KeyPrefix(types.InTxTrackerKeyPrefix)) b := k.cdc.MustMarshal(&InTxTracker) - key := types.KeyPrefix(getOutTrackerKey(InTxTracker.ChainId, InTxTracker.TxHash)) + key := types.KeyPrefix(getInTrackerKey(InTxTracker.ChainId, InTxTracker.TxHash)) store.Set(key, b) } // GetInTxTracker returns a InTxTracker from its index func (k Keeper) GetInTxTracker(ctx sdk.Context, chainID int64, txHash string) (val types.InTxTracker, found bool) { - key := getOutTrackerKey(chainID, txHash) + key := getInTrackerKey(chainID, txHash) store := prefix.NewStore(ctx.KVStore(k.storeKey), types.KeyPrefix(types.InTxTrackerKeyPrefix)) b := store.Get(types.KeyPrefix(key)) if b == nil { @@ -34,6 +35,17 @@ func (k Keeper) GetInTxTracker(ctx sdk.Context, chainID int64, txHash string) (v k.cdc.MustUnmarshal(b, &val) return val, true } +func (k Keeper) GetAllInTxTracker(ctx sdk.Context) (list []types.InTxTracker) { + store := prefix.NewStore(ctx.KVStore(k.storeKey), types.KeyPrefix(types.InTxTrackerKeyPrefix)) + iterator := sdk.KVStorePrefixIterator(store, []byte{}) + defer iterator.Close() + for ; iterator.Valid(); iterator.Next() { + var val types.InTxTracker + k.cdc.MustUnmarshal(iterator.Value(), &val) + list = append(list, val) + } + return list +} func (k Keeper) GetAllInTxTrackerForChain(ctx sdk.Context, chainId int64) (list []types.InTxTracker) { store := prefix.NewStore(ctx.KVStore(k.storeKey), types.KeyPrefix(types.InTxTrackerKeyPrefix)) @@ -47,6 +59,20 @@ func (k Keeper) GetAllInTxTrackerForChain(ctx sdk.Context, chainId int64) (list return list } +func (k Keeper) GetAllInTxTrackerForChainPaginated(ctx sdk.Context, chainId int64, pagination *query.PageRequest) (inTxTrackers []types.InTxTracker, pageRes *query.PageResponse, err error) { + store := prefix.NewStore(ctx.KVStore(k.storeKey), types.KeyPrefix(fmt.Sprintf("%s", types.InTxTrackerKeyPrefix))) + chainStore := prefix.NewStore(store, types.KeyPrefix(fmt.Sprintf("%d-", chainId))) + pageRes, err = query.Paginate(chainStore, pagination, func(key []byte, value []byte) error { + var inTxTracker types.InTxTracker + if err := k.cdc.Unmarshal(value, &inTxTracker); err != nil { + return err + } + inTxTrackers = append(inTxTrackers, inTxTracker) + return nil + }) + return +} + func (k msgServer) AddToInTxTracker(goCtx context.Context, msg *types.MsgAddToInTxTracker) (*types.MsgAddToInTxTrackerResponse, error) { ctx := sdk.UnwrapSDKContext(goCtx) chain := k.zetaObserverKeeper.GetParams(ctx).GetChainFromChainID(msg.ChainId) diff --git a/x/crosschain/keeper/keeper_in_tx_tracker_test.go b/x/crosschain/keeper/keeper_in_tx_tracker_test.go new file mode 100644 index 0000000000..6375d00bf8 --- /dev/null +++ b/x/crosschain/keeper/keeper_in_tx_tracker_test.go @@ -0,0 +1,65 @@ +package keeper + +import ( + "fmt" + "sort" + "testing" + + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/query" + "github.com/stretchr/testify/require" + "github.com/zeta-chain/zetacore/common" + "github.com/zeta-chain/zetacore/testutil/nullify" + "github.com/zeta-chain/zetacore/x/crosschain/types" +) + +func createNInTxTracker(keeper *Keeper, ctx sdk.Context, n int, chainID int64) []types.InTxTracker { + items := make([]types.InTxTracker, n) + for i := range items { + items[i].TxHash = fmt.Sprintf("TxHash-%d", i) + items[i].ChainId = chainID + items[i].CoinType = common.CoinType_Gas + keeper.SetInTxTracker(ctx, items[i]) + } + return items +} +func TestKeeper_GetAllInTxTrackerForChain(t *testing.T) { + keeper, ctx := setupKeeper(t) + intxTrackers := createNInTxTracker(keeper, ctx, 10, 5) + t.Run("Get InTx trackers one by one", func(t *testing.T) { + for _, item := range intxTrackers { + rst, found := keeper.GetInTxTracker(ctx, item.ChainId, item.TxHash) + require.True(t, found) + require.Equal(t, item, rst) + } + }) + t.Run("Get all InTx trackers", func(t *testing.T) { + rst := keeper.GetAllInTxTracker(ctx) + require.Equal(t, intxTrackers, rst) + }) + t.Run("Get all InTx trackers for chain", func(t *testing.T) { + intxTrackersNew := createNInTxTracker(keeper, ctx, 100, 6) + rst := keeper.GetAllInTxTrackerForChain(ctx, 6) + sort.SliceStable(rst, func(i, j int) bool { + return rst[i].TxHash < rst[j].TxHash + }) + sort.SliceStable(intxTrackersNew, func(i, j int) bool { + return intxTrackersNew[i].TxHash < intxTrackersNew[j].TxHash + }) + require.Equal(t, intxTrackersNew, rst) + }) + t.Run("Get all InTx trackers for chain paginated by limit", func(t *testing.T) { + intxTrackers = createNInTxTracker(keeper, ctx, 100, 6) + rst, pageRes, err := keeper.GetAllInTxTrackerForChainPaginated(ctx, 6, &query.PageRequest{Limit: 10, CountTotal: true}) + require.NoError(t, err) + require.Subset(t, nullify.Fill(intxTrackers), nullify.Fill(rst)) + require.Equal(t, len(intxTrackers), int(pageRes.Total)) + }) + t.Run("Get all InTx trackers for chain paginated by offset", func(t *testing.T) { + intxTrackers = createNInTxTracker(keeper, ctx, 100, 6) + rst, pageRes, err := keeper.GetAllInTxTrackerForChainPaginated(ctx, 6, &query.PageRequest{Offset: 10, CountTotal: true}) + require.NoError(t, err) + require.Subset(t, nullify.Fill(intxTrackers), nullify.Fill(rst)) + require.Equal(t, len(intxTrackers), int(pageRes.Total)) + }) +} diff --git a/x/crosschain/types/genesis.pb.go b/x/crosschain/types/genesis.pb.go index b5e24bfca0..c1b357ebad 100644 --- a/x/crosschain/types/genesis.pb.go +++ b/x/crosschain/types/genesis.pb.go @@ -35,6 +35,7 @@ type GenesisState struct { LastBlockHeightList []*LastBlockHeight `protobuf:"bytes,8,rep,name=lastBlockHeightList,proto3" json:"lastBlockHeightList,omitempty"` InTxHashToCctxList []InTxHashToCctx `protobuf:"bytes,9,rep,name=inTxHashToCctxList,proto3" json:"inTxHashToCctxList"` TssHistory []TSS `protobuf:"bytes,10,rep,name=tss_history,json=tssHistory,proto3" json:"tss_history"` + InTxTrackerList []InTxTracker `protobuf:"bytes,11,rep,name=in_tx_tracker_list,json=inTxTrackerList,proto3" json:"in_tx_tracker_list"` } func (m *GenesisState) Reset() { *m = GenesisState{} } @@ -133,6 +134,13 @@ func (m *GenesisState) GetTssHistory() []TSS { return nil } +func (m *GenesisState) GetInTxTrackerList() []InTxTracker { + if m != nil { + return m.InTxTrackerList + } + return nil +} + func init() { proto.RegisterType((*GenesisState)(nil), "zetachain.zetacore.crosschain.GenesisState") } @@ -140,38 +148,39 @@ func init() { func init() { proto.RegisterFile("crosschain/genesis.proto", fileDescriptor_dd51403692d571f4) } var fileDescriptor_dd51403692d571f4 = []byte{ - // 488 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0xd1, 0x6a, 0x13, 0x41, - 0x14, 0x86, 0xb3, 0xb6, 0x8d, 0x3a, 0xa9, 0x28, 0xa3, 0xe0, 0x12, 0xe8, 0xb6, 0x44, 0xc4, 0xa2, - 0x74, 0x17, 0xab, 0x4f, 0x90, 0x5c, 0x34, 0xa5, 0x45, 0xeb, 0x66, 0xaf, 0x04, 0x59, 0x27, 0xc3, - 0xb0, 0xbb, 0xb4, 0xcd, 0x84, 0x3d, 0x27, 0xb0, 0xf5, 0x29, 0x7c, 0xac, 0x5e, 0xf6, 0xd2, 0x2b, - 0x91, 0xe4, 0x05, 0x7c, 0x04, 0x99, 0xb3, 0xd3, 0x76, 0xa2, 0xc1, 0xed, 0xcd, 0x72, 0xd8, 0xf3, - 0xff, 0xdf, 0xf9, 0x99, 0x39, 0xc3, 0x7c, 0x59, 0x6a, 0x00, 0x99, 0x8b, 0x62, 0x12, 0x65, 0x6a, - 0xa2, 0xa0, 0x80, 0x70, 0x5a, 0x6a, 0xd4, 0x7c, 0xeb, 0x9b, 0x42, 0x41, 0x8d, 0x90, 0x2a, 0x5d, - 0xaa, 0xf0, 0x56, 0xdc, 0xdd, 0x72, 0x8c, 0xf4, 0x4d, 0x27, 0x7a, 0x22, 0x95, 0x75, 0x77, 0xb7, - 0xdd, 0xb6, 0x29, 0xd3, 0x5a, 0x84, 0x95, 0x15, 0x74, 0xdd, 0xc1, 0x02, 0xd2, 0x69, 0x59, 0x48, - 0x65, 0x7b, 0x2f, 0x9c, 0x1e, 0x79, 0xd2, 0x5c, 0x40, 0x9e, 0xa2, 0x4e, 0xa5, 0xbc, 0x01, 0xf4, - 0x1c, 0xd1, 0x99, 0x00, 0x4c, 0xc7, 0x67, 0x5a, 0x9e, 0xa6, 0xb9, 0x2a, 0xb2, 0x1c, 0x57, 0xa4, - 0xd0, 0x33, 0x34, 0x24, 0x2c, 0x85, 0x3c, 0x55, 0xa5, 0x15, 0x3c, 0x77, 0x04, 0x53, 0x51, 0x8a, - 0xf3, 0xeb, 0xfc, 0xcf, 0x9c, 0x06, 0xc2, 0xcd, 0xdf, 0x4c, 0x67, 0x9a, 0xca, 0xc8, 0x54, 0xf5, - 0xdf, 0xde, 0xef, 0x0d, 0xb6, 0x79, 0x50, 0x9f, 0xdd, 0x08, 0x05, 0x2a, 0x3e, 0x60, 0xed, 0x1a, - 0xe6, 0x7b, 0x3b, 0xde, 0x6e, 0x67, 0xff, 0x65, 0xf8, 0xdf, 0xb3, 0x0c, 0x4f, 0x48, 0xdc, 0x5f, - 0xbf, 0xfc, 0xb9, 0xdd, 0x8a, 0xad, 0x95, 0x7f, 0x61, 0x4f, 0xf4, 0x0c, 0x93, 0x2a, 0xa9, 0x03, - 0x1f, 0x17, 0x80, 0xfe, 0xbd, 0x9d, 0xb5, 0xdd, 0xce, 0xfe, 0x9b, 0x06, 0xdc, 0x47, 0xc7, 0x66, - 0xa1, 0xff, 0xa0, 0xf8, 0x7b, 0xb6, 0x86, 0x00, 0xfe, 0x3a, 0x05, 0xec, 0x35, 0x10, 0x93, 0xd1, - 0x28, 0x36, 0x72, 0x7e, 0xc4, 0x36, 0x33, 0x01, 0x27, 0xe6, 0xae, 0x28, 0xd0, 0x06, 0x05, 0x7a, - 0xd5, 0x60, 0x3f, 0xb0, 0x96, 0x78, 0xc9, 0xcc, 0x13, 0xf6, 0x98, 0xfa, 0x1f, 0x68, 0x71, 0x88, - 0xd7, 0x26, 0xde, 0xeb, 0x06, 0xde, 0xe0, 0xd6, 0x15, 0xff, 0x8d, 0xe0, 0x9f, 0xd8, 0xa3, 0x81, - 0x91, 0x92, 0x28, 0xa9, 0xc0, 0xbf, 0x7f, 0xa7, 0x43, 0x73, 0x3d, 0xf1, 0x32, 0x81, 0x7f, 0x65, - 0x4f, 0xcd, 0x86, 0xf5, 0xcd, 0x82, 0x0d, 0x69, 0xbf, 0x28, 0xec, 0x03, 0x02, 0x87, 0x0d, 0xe0, - 0xe3, 0x65, 0x67, 0xbc, 0x0a, 0xc5, 0x25, 0xe3, 0x66, 0xd4, 0x50, 0x40, 0x9e, 0xe8, 0x81, 0xc4, - 0x8a, 0x06, 0x3c, 0xa4, 0x01, 0x7b, 0x0d, 0x03, 0x0e, 0x97, 0x8c, 0xf6, 0xc2, 0x57, 0xe0, 0xf8, - 0x21, 0xeb, 0x20, 0x40, 0x9a, 0x17, 0x80, 0xba, 0xbc, 0xf0, 0x19, 0xd1, 0xef, 0x70, 0xf5, 0x16, - 0xc9, 0x10, 0x60, 0x58, 0x7b, 0xfb, 0x47, 0x97, 0xf3, 0xc0, 0xbb, 0x9a, 0x07, 0xde, 0xaf, 0x79, - 0xe0, 0x7d, 0x5f, 0x04, 0xad, 0xab, 0x45, 0xd0, 0xfa, 0xb1, 0x08, 0x5a, 0x9f, 0xdf, 0x66, 0x05, - 0xe6, 0xb3, 0x71, 0x28, 0xf5, 0x79, 0x64, 0x78, 0x7b, 0xf5, 0x1b, 0xba, 0x46, 0x47, 0x55, 0xe4, - 0xbe, 0xac, 0x8b, 0xa9, 0x82, 0x71, 0x9b, 0x9e, 0xd1, 0xbb, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, - 0xe0, 0xed, 0xc4, 0xaf, 0x8c, 0x04, 0x00, 0x00, + // 512 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0xd1, 0x6e, 0xd3, 0x30, + 0x14, 0x86, 0x1b, 0x36, 0x0a, 0xb8, 0x43, 0x43, 0x06, 0x89, 0xa8, 0xd2, 0xb2, 0xa9, 0x08, 0x31, + 0x81, 0x96, 0x88, 0xc1, 0x13, 0xb4, 0x17, 0xeb, 0xb4, 0x09, 0x46, 0x9a, 0x2b, 0xa4, 0xc9, 0xb8, + 0x96, 0x95, 0x44, 0xeb, 0xe2, 0x2a, 0xc7, 0x95, 0x32, 0x9e, 0x82, 0xc7, 0xda, 0x1d, 0xbb, 0xe4, + 0x0a, 0xa1, 0xf6, 0x45, 0x90, 0x4f, 0xb2, 0xcd, 0xa1, 0x15, 0xe9, 0x4d, 0x65, 0xe5, 0xfc, 0xff, + 0x77, 0xfe, 0xda, 0xe7, 0x10, 0x57, 0xe4, 0x0a, 0x40, 0x24, 0x3c, 0xcd, 0x82, 0x58, 0x66, 0x12, + 0x52, 0xf0, 0xa7, 0xb9, 0xd2, 0x8a, 0xee, 0x7c, 0x97, 0x9a, 0x63, 0xc1, 0xc7, 0x93, 0xca, 0xa5, + 0x7f, 0x2f, 0xee, 0xee, 0x58, 0x46, 0xfc, 0x65, 0x99, 0xca, 0x84, 0xac, 0xdc, 0xdd, 0x5d, 0xbb, + 0x6c, 0x8e, 0xac, 0x14, 0xe9, 0xa2, 0x12, 0x74, 0xed, 0xc6, 0x1c, 0xd8, 0x34, 0x4f, 0x85, 0xac, + 0x6a, 0xaf, 0xac, 0x1a, 0x7a, 0x58, 0xc2, 0x21, 0x61, 0x5a, 0x31, 0x21, 0xee, 0x00, 0xde, 0x92, + 0x48, 0xe7, 0x5c, 0x5c, 0xc8, 0xbc, 0xaa, 0xf7, 0xac, 0xfa, 0x84, 0x83, 0x66, 0xe3, 0x89, 0x12, + 0x17, 0x2c, 0x91, 0x69, 0x9c, 0xe8, 0x15, 0x29, 0xd5, 0x4c, 0x2f, 0x43, 0x5e, 0x5a, 0x82, 0x29, + 0xcf, 0xf9, 0xe5, 0xed, 0xff, 0x7b, 0x61, 0x15, 0x34, 0xdc, 0x7d, 0x8d, 0x55, 0xac, 0xf0, 0x18, + 0x98, 0x53, 0xf9, 0xb5, 0xf7, 0xb3, 0x4d, 0xb6, 0x8e, 0xca, 0xbb, 0x1d, 0x69, 0xae, 0x25, 0x1d, + 0x90, 0x76, 0x09, 0x73, 0x9d, 0x3d, 0x67, 0xbf, 0x73, 0xf8, 0xda, 0xff, 0xef, 0x5d, 0xfb, 0x67, + 0x28, 0xee, 0x6f, 0x5e, 0xff, 0xde, 0x6d, 0x85, 0x95, 0x95, 0x9e, 0x93, 0x67, 0x6a, 0xa6, 0xa3, + 0x22, 0x2a, 0x03, 0x9f, 0xa6, 0xa0, 0xdd, 0x07, 0x7b, 0x1b, 0xfb, 0x9d, 0xc3, 0x77, 0x0d, 0xb8, + 0xcf, 0x96, 0xad, 0x82, 0x2e, 0xa1, 0xe8, 0x47, 0xb2, 0xa1, 0x01, 0xdc, 0x4d, 0x0c, 0xd8, 0x6b, + 0x20, 0x46, 0xa3, 0x51, 0x68, 0xe4, 0xf4, 0x84, 0x6c, 0xc5, 0x1c, 0xce, 0xcc, 0x5b, 0x62, 0xa0, + 0x87, 0x18, 0xe8, 0x4d, 0x83, 0xfd, 0xa8, 0xb2, 0x84, 0x35, 0x33, 0x8d, 0xc8, 0x36, 0xd6, 0x3f, + 0xe1, 0x60, 0x21, 0xaf, 0x8d, 0xbc, 0xb7, 0x0d, 0xbc, 0xc1, 0xbd, 0x2b, 0xfc, 0x17, 0x41, 0xbf, + 0x90, 0xa7, 0x03, 0x23, 0x45, 0x51, 0x54, 0x80, 0xfb, 0x68, 0xad, 0x4b, 0xb3, 0x3d, 0x61, 0x9d, + 0x40, 0xbf, 0x91, 0xe7, 0x66, 0xc2, 0xfa, 0x66, 0xc0, 0x86, 0x38, 0x5f, 0x18, 0xf6, 0x31, 0x82, + 0xfd, 0x06, 0xf0, 0x69, 0xdd, 0x19, 0xae, 0x42, 0x51, 0x41, 0xa8, 0x69, 0x35, 0xe4, 0x90, 0x44, + 0x6a, 0x20, 0x74, 0x81, 0x0d, 0x9e, 0x60, 0x83, 0x83, 0x86, 0x06, 0xc7, 0x35, 0x63, 0xf5, 0xe0, + 0x2b, 0x70, 0xf4, 0x98, 0x74, 0x34, 0x00, 0x4b, 0x52, 0xd0, 0x2a, 0xbf, 0x72, 0x09, 0xd2, 0xd7, + 0x78, 0xfa, 0x0a, 0x49, 0x34, 0xc0, 0xb0, 0xf4, 0xd2, 0x73, 0x93, 0xd7, 0x5a, 0x27, 0x36, 0x31, + 0x79, 0x3b, 0x6b, 0xbd, 0x9e, 0xc9, 0x5b, 0x9f, 0xce, 0xed, 0x34, 0xab, 0x0d, 0x67, 0xff, 0xe4, + 0x7a, 0xee, 0x39, 0x37, 0x73, 0xcf, 0xf9, 0x33, 0xf7, 0x9c, 0x1f, 0x0b, 0xaf, 0x75, 0xb3, 0xf0, + 0x5a, 0xbf, 0x16, 0x5e, 0xeb, 0xeb, 0xfb, 0x38, 0xd5, 0xc9, 0x6c, 0xec, 0x0b, 0x75, 0x19, 0x18, + 0xf8, 0x41, 0xb9, 0xa2, 0xb7, 0x7d, 0x82, 0x22, 0xb0, 0x17, 0xf7, 0x6a, 0x2a, 0x61, 0xdc, 0xc6, + 0x2d, 0xfd, 0xf0, 0x37, 0x00, 0x00, 0xff, 0xff, 0xeb, 0x12, 0x5d, 0x65, 0x0b, 0x05, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { @@ -194,6 +203,20 @@ func (m *GenesisState) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.InTxTrackerList) > 0 { + for iNdEx := len(m.InTxTrackerList) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.InTxTrackerList[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintGenesis(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x5a + } + } if len(m.TssHistory) > 0 { for iNdEx := len(m.TssHistory) - 1; iNdEx >= 0; iNdEx-- { { @@ -382,6 +405,12 @@ func (m *GenesisState) Size() (n int) { n += 1 + l + sovGenesis(uint64(l)) } } + if len(m.InTxTrackerList) > 0 { + for _, e := range m.InTxTrackerList { + l = e.Size() + n += 1 + l + sovGenesis(uint64(l)) + } + } return n } @@ -727,6 +756,40 @@ func (m *GenesisState) Unmarshal(dAtA []byte) error { return err } iNdEx = postIndex + case 11: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field InTxTrackerList", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowGenesis + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthGenesis + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthGenesis + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.InTxTrackerList = append(m.InTxTrackerList, InTxTracker{}) + if err := m.InTxTrackerList[len(m.InTxTrackerList)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipGenesis(dAtA[iNdEx:]) diff --git a/x/crosschain/types/message_add_to_in_tx_tracker.go b/x/crosschain/types/message_add_to_in_tx_tracker.go index 53bd8e68eb..c3a04bc87d 100644 --- a/x/crosschain/types/message_add_to_in_tx_tracker.go +++ b/x/crosschain/types/message_add_to_in_tx_tracker.go @@ -46,9 +46,6 @@ func (msg *MsgAddToInTxTracker) ValidateBasic() error { if err != nil { return errorsmod.Wrapf(sdkerrors.ErrInvalidAddress, "invalid creator address (%s)", err) } - if msg.ChainId < 0 { - return errorsmod.Wrapf(ErrInvalidChainID, "chain id (%d)", msg.ChainId) - } if common.GetChainFromChainID(msg.ChainId) == nil { return errorsmod.Wrapf(ErrInvalidChainID, "chain id (%d)", msg.ChainId) } diff --git a/x/crosschain/types/message_add_to_in_tx_tracker_test.go b/x/crosschain/types/message_add_to_in_tx_tracker_test.go new file mode 100644 index 0000000000..0bd45fbb7a --- /dev/null +++ b/x/crosschain/types/message_add_to_in_tx_tracker_test.go @@ -0,0 +1,64 @@ +//go:build TESTNET +// +build TESTNET + +package types_test + +import ( + "testing" + + errorsmod "cosmossdk.io/errors" + sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" + "github.com/stretchr/testify/require" + "github.com/zeta-chain/zetacore/common" + "github.com/zeta-chain/zetacore/testutil/sample" + "github.com/zeta-chain/zetacore/x/crosschain/types" +) + +func TestMsgAddToInTxTracker_ValidateBasic(t *testing.T) { + tests := []struct { + name string + msg types.MsgAddToInTxTracker + err error + }{ + { + name: "invalid address", + msg: types.MsgAddToInTxTracker{ + Creator: "invalid_address", + ChainId: common.GoerliChain().ChainId, + TxHash: "hash", + CoinType: common.CoinType_Gas, + }, + err: sdkerrors.ErrInvalidAddress, + }, + { + name: "invalid chain id", + msg: types.MsgAddToInTxTracker{ + Creator: sample.AccAddress(), + ChainId: 42, + TxHash: "hash", + CoinType: common.CoinType_Gas, + }, + err: errorsmod.Wrapf(types.ErrInvalidChainID, "chain id (%d)", 42), + }, + { + name: "valid", + msg: types.MsgAddToInTxTracker{ + Creator: sample.AccAddress(), + ChainId: common.GoerliChain().ChainId, + TxHash: "hash", + CoinType: common.CoinType_Gas, + }, + err: nil, + }, + } + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + err := tt.msg.ValidateBasic() + if tt.err != nil { + require.ErrorIs(t, err, tt.err) + return + } + require.NoError(t, err) + }) + } +} diff --git a/x/crosschain/types/query.pb.go b/x/crosschain/types/query.pb.go index 71fd36b625..09b7e2755d 100644 --- a/x/crosschain/types/query.pb.go +++ b/x/crosschain/types/query.pb.go @@ -594,6 +594,86 @@ func (m *QueryAllInTxTrackerByChainResponse) GetPagination() *query.PageResponse return nil } +type QueryAllInTxTrackersRequest struct { +} + +func (m *QueryAllInTxTrackersRequest) Reset() { *m = QueryAllInTxTrackersRequest{} } +func (m *QueryAllInTxTrackersRequest) String() string { return proto.CompactTextString(m) } +func (*QueryAllInTxTrackersRequest) ProtoMessage() {} +func (*QueryAllInTxTrackersRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_65a992045e92a606, []int{12} +} +func (m *QueryAllInTxTrackersRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryAllInTxTrackersRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryAllInTxTrackersRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *QueryAllInTxTrackersRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryAllInTxTrackersRequest.Merge(m, src) +} +func (m *QueryAllInTxTrackersRequest) XXX_Size() int { + return m.Size() +} +func (m *QueryAllInTxTrackersRequest) XXX_DiscardUnknown() { + xxx_messageInfo_QueryAllInTxTrackersRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryAllInTxTrackersRequest proto.InternalMessageInfo + +type QueryAllInTxTrackersResponse struct { + InTxTracker []InTxTracker `protobuf:"bytes,1,rep,name=inTxTracker,proto3" json:"inTxTracker"` +} + +func (m *QueryAllInTxTrackersResponse) Reset() { *m = QueryAllInTxTrackersResponse{} } +func (m *QueryAllInTxTrackersResponse) String() string { return proto.CompactTextString(m) } +func (*QueryAllInTxTrackersResponse) ProtoMessage() {} +func (*QueryAllInTxTrackersResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_65a992045e92a606, []int{13} +} +func (m *QueryAllInTxTrackersResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryAllInTxTrackersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryAllInTxTrackersResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *QueryAllInTxTrackersResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryAllInTxTrackersResponse.Merge(m, src) +} +func (m *QueryAllInTxTrackersResponse) XXX_Size() int { + return m.Size() +} +func (m *QueryAllInTxTrackersResponse) XXX_DiscardUnknown() { + xxx_messageInfo_QueryAllInTxTrackersResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryAllInTxTrackersResponse proto.InternalMessageInfo + +func (m *QueryAllInTxTrackersResponse) GetInTxTracker() []InTxTracker { + if m != nil { + return m.InTxTracker + } + return nil +} + type QueryGetInTxHashToCctxRequest struct { InTxHash string `protobuf:"bytes,1,opt,name=inTxHash,proto3" json:"inTxHash,omitempty"` } @@ -602,7 +682,7 @@ func (m *QueryGetInTxHashToCctxRequest) Reset() { *m = QueryGetInTxHashT func (m *QueryGetInTxHashToCctxRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetInTxHashToCctxRequest) ProtoMessage() {} func (*QueryGetInTxHashToCctxRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{12} + return fileDescriptor_65a992045e92a606, []int{14} } func (m *QueryGetInTxHashToCctxRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -646,7 +726,7 @@ func (m *QueryGetInTxHashToCctxResponse) Reset() { *m = QueryGetInTxHash func (m *QueryGetInTxHashToCctxResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetInTxHashToCctxResponse) ProtoMessage() {} func (*QueryGetInTxHashToCctxResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{13} + return fileDescriptor_65a992045e92a606, []int{15} } func (m *QueryGetInTxHashToCctxResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -690,7 +770,7 @@ func (m *QueryInTxHashToCctxDataRequest) Reset() { *m = QueryInTxHashToC func (m *QueryInTxHashToCctxDataRequest) String() string { return proto.CompactTextString(m) } func (*QueryInTxHashToCctxDataRequest) ProtoMessage() {} func (*QueryInTxHashToCctxDataRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{14} + return fileDescriptor_65a992045e92a606, []int{16} } func (m *QueryInTxHashToCctxDataRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -734,7 +814,7 @@ func (m *QueryInTxHashToCctxDataResponse) Reset() { *m = QueryInTxHashTo func (m *QueryInTxHashToCctxDataResponse) String() string { return proto.CompactTextString(m) } func (*QueryInTxHashToCctxDataResponse) ProtoMessage() {} func (*QueryInTxHashToCctxDataResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{15} + return fileDescriptor_65a992045e92a606, []int{17} } func (m *QueryInTxHashToCctxDataResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -778,7 +858,7 @@ func (m *QueryAllInTxHashToCctxRequest) Reset() { *m = QueryAllInTxHashT func (m *QueryAllInTxHashToCctxRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllInTxHashToCctxRequest) ProtoMessage() {} func (*QueryAllInTxHashToCctxRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{16} + return fileDescriptor_65a992045e92a606, []int{18} } func (m *QueryAllInTxHashToCctxRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -823,7 +903,7 @@ func (m *QueryAllInTxHashToCctxResponse) Reset() { *m = QueryAllInTxHash func (m *QueryAllInTxHashToCctxResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllInTxHashToCctxResponse) ProtoMessage() {} func (*QueryAllInTxHashToCctxResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{17} + return fileDescriptor_65a992045e92a606, []int{19} } func (m *QueryAllInTxHashToCctxResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -873,7 +953,7 @@ func (m *QueryGetTssAddressRequest) Reset() { *m = QueryGetTssAddressReq func (m *QueryGetTssAddressRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetTssAddressRequest) ProtoMessage() {} func (*QueryGetTssAddressRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{18} + return fileDescriptor_65a992045e92a606, []int{20} } func (m *QueryGetTssAddressRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -911,7 +991,7 @@ func (m *QueryGetTssAddressResponse) Reset() { *m = QueryGetTssAddressRe func (m *QueryGetTssAddressResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetTssAddressResponse) ProtoMessage() {} func (*QueryGetTssAddressResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{19} + return fileDescriptor_65a992045e92a606, []int{21} } func (m *QueryGetTssAddressResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -961,7 +1041,7 @@ func (m *QueryGetTSSRequest) Reset() { *m = QueryGetTSSRequest{} } func (m *QueryGetTSSRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetTSSRequest) ProtoMessage() {} func (*QueryGetTSSRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{20} + return fileDescriptor_65a992045e92a606, []int{22} } func (m *QueryGetTSSRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -998,7 +1078,7 @@ func (m *QueryGetTSSResponse) Reset() { *m = QueryGetTSSResponse{} } func (m *QueryGetTSSResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetTSSResponse) ProtoMessage() {} func (*QueryGetTSSResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{21} + return fileDescriptor_65a992045e92a606, []int{23} } func (m *QueryGetTSSResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1042,7 +1122,7 @@ func (m *QueryGetGasPriceRequest) Reset() { *m = QueryGetGasPriceRequest func (m *QueryGetGasPriceRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetGasPriceRequest) ProtoMessage() {} func (*QueryGetGasPriceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{22} + return fileDescriptor_65a992045e92a606, []int{24} } func (m *QueryGetGasPriceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1086,7 +1166,7 @@ func (m *QueryGetGasPriceResponse) Reset() { *m = QueryGetGasPriceRespon func (m *QueryGetGasPriceResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetGasPriceResponse) ProtoMessage() {} func (*QueryGetGasPriceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{23} + return fileDescriptor_65a992045e92a606, []int{25} } func (m *QueryGetGasPriceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1130,7 +1210,7 @@ func (m *QueryAllGasPriceRequest) Reset() { *m = QueryAllGasPriceRequest func (m *QueryAllGasPriceRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllGasPriceRequest) ProtoMessage() {} func (*QueryAllGasPriceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{24} + return fileDescriptor_65a992045e92a606, []int{26} } func (m *QueryAllGasPriceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1175,7 +1255,7 @@ func (m *QueryAllGasPriceResponse) Reset() { *m = QueryAllGasPriceRespon func (m *QueryAllGasPriceResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllGasPriceResponse) ProtoMessage() {} func (*QueryAllGasPriceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{25} + return fileDescriptor_65a992045e92a606, []int{27} } func (m *QueryAllGasPriceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1226,7 +1306,7 @@ func (m *QueryGetChainNoncesRequest) Reset() { *m = QueryGetChainNoncesR func (m *QueryGetChainNoncesRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetChainNoncesRequest) ProtoMessage() {} func (*QueryGetChainNoncesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{26} + return fileDescriptor_65a992045e92a606, []int{28} } func (m *QueryGetChainNoncesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1270,7 +1350,7 @@ func (m *QueryGetChainNoncesResponse) Reset() { *m = QueryGetChainNonces func (m *QueryGetChainNoncesResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetChainNoncesResponse) ProtoMessage() {} func (*QueryGetChainNoncesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{27} + return fileDescriptor_65a992045e92a606, []int{29} } func (m *QueryGetChainNoncesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1314,7 +1394,7 @@ func (m *QueryAllChainNoncesRequest) Reset() { *m = QueryAllChainNoncesR func (m *QueryAllChainNoncesRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllChainNoncesRequest) ProtoMessage() {} func (*QueryAllChainNoncesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{28} + return fileDescriptor_65a992045e92a606, []int{30} } func (m *QueryAllChainNoncesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1359,7 +1439,7 @@ func (m *QueryAllChainNoncesResponse) Reset() { *m = QueryAllChainNonces func (m *QueryAllChainNoncesResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllChainNoncesResponse) ProtoMessage() {} func (*QueryAllChainNoncesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{29} + return fileDescriptor_65a992045e92a606, []int{31} } func (m *QueryAllChainNoncesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1409,7 +1489,7 @@ func (m *QueryAllPendingNoncesRequest) Reset() { *m = QueryAllPendingNon func (m *QueryAllPendingNoncesRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllPendingNoncesRequest) ProtoMessage() {} func (*QueryAllPendingNoncesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{30} + return fileDescriptor_65a992045e92a606, []int{32} } func (m *QueryAllPendingNoncesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1446,7 +1526,7 @@ func (m *QueryAllPendingNoncesResponse) Reset() { *m = QueryAllPendingNo func (m *QueryAllPendingNoncesResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllPendingNoncesResponse) ProtoMessage() {} func (*QueryAllPendingNoncesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{31} + return fileDescriptor_65a992045e92a606, []int{33} } func (m *QueryAllPendingNoncesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1490,7 +1570,7 @@ func (m *QueryGetLastBlockHeightRequest) Reset() { *m = QueryGetLastBloc func (m *QueryGetLastBlockHeightRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetLastBlockHeightRequest) ProtoMessage() {} func (*QueryGetLastBlockHeightRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{32} + return fileDescriptor_65a992045e92a606, []int{34} } func (m *QueryGetLastBlockHeightRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1534,7 +1614,7 @@ func (m *QueryGetLastBlockHeightResponse) Reset() { *m = QueryGetLastBlo func (m *QueryGetLastBlockHeightResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetLastBlockHeightResponse) ProtoMessage() {} func (*QueryGetLastBlockHeightResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{33} + return fileDescriptor_65a992045e92a606, []int{35} } func (m *QueryGetLastBlockHeightResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1578,7 +1658,7 @@ func (m *QueryAllLastBlockHeightRequest) Reset() { *m = QueryAllLastBloc func (m *QueryAllLastBlockHeightRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllLastBlockHeightRequest) ProtoMessage() {} func (*QueryAllLastBlockHeightRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{34} + return fileDescriptor_65a992045e92a606, []int{36} } func (m *QueryAllLastBlockHeightRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1623,7 +1703,7 @@ func (m *QueryAllLastBlockHeightResponse) Reset() { *m = QueryAllLastBlo func (m *QueryAllLastBlockHeightResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllLastBlockHeightResponse) ProtoMessage() {} func (*QueryAllLastBlockHeightResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{35} + return fileDescriptor_65a992045e92a606, []int{37} } func (m *QueryAllLastBlockHeightResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1674,7 +1754,7 @@ func (m *QueryGetCctxRequest) Reset() { *m = QueryGetCctxRequest{} } func (m *QueryGetCctxRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetCctxRequest) ProtoMessage() {} func (*QueryGetCctxRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{36} + return fileDescriptor_65a992045e92a606, []int{38} } func (m *QueryGetCctxRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1719,7 +1799,7 @@ func (m *QueryGetCctxByNonceRequest) Reset() { *m = QueryGetCctxByNonceR func (m *QueryGetCctxByNonceRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetCctxByNonceRequest) ProtoMessage() {} func (*QueryGetCctxByNonceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{37} + return fileDescriptor_65a992045e92a606, []int{39} } func (m *QueryGetCctxByNonceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1770,7 +1850,7 @@ func (m *QueryGetCctxResponse) Reset() { *m = QueryGetCctxResponse{} } func (m *QueryGetCctxResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetCctxResponse) ProtoMessage() {} func (*QueryGetCctxResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{38} + return fileDescriptor_65a992045e92a606, []int{40} } func (m *QueryGetCctxResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1814,7 +1894,7 @@ func (m *QueryAllCctxRequest) Reset() { *m = QueryAllCctxRequest{} } func (m *QueryAllCctxRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllCctxRequest) ProtoMessage() {} func (*QueryAllCctxRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{39} + return fileDescriptor_65a992045e92a606, []int{41} } func (m *QueryAllCctxRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1859,7 +1939,7 @@ func (m *QueryAllCctxResponse) Reset() { *m = QueryAllCctxResponse{} } func (m *QueryAllCctxResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllCctxResponse) ProtoMessage() {} func (*QueryAllCctxResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{40} + return fileDescriptor_65a992045e92a606, []int{42} } func (m *QueryAllCctxResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1911,7 +1991,7 @@ func (m *QueryAllCctxPendingRequest) Reset() { *m = QueryAllCctxPendingR func (m *QueryAllCctxPendingRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllCctxPendingRequest) ProtoMessage() {} func (*QueryAllCctxPendingRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{41} + return fileDescriptor_65a992045e92a606, []int{43} } func (m *QueryAllCctxPendingRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1963,7 +2043,7 @@ func (m *QueryAllCctxPendingResponse) Reset() { *m = QueryAllCctxPending func (m *QueryAllCctxPendingResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllCctxPendingResponse) ProtoMessage() {} func (*QueryAllCctxPendingResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{42} + return fileDescriptor_65a992045e92a606, []int{44} } func (m *QueryAllCctxPendingResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2013,7 +2093,7 @@ func (m *QueryLastZetaHeightRequest) Reset() { *m = QueryLastZetaHeightR func (m *QueryLastZetaHeightRequest) String() string { return proto.CompactTextString(m) } func (*QueryLastZetaHeightRequest) ProtoMessage() {} func (*QueryLastZetaHeightRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{43} + return fileDescriptor_65a992045e92a606, []int{45} } func (m *QueryLastZetaHeightRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2050,7 +2130,7 @@ func (m *QueryLastZetaHeightResponse) Reset() { *m = QueryLastZetaHeight func (m *QueryLastZetaHeightResponse) String() string { return proto.CompactTextString(m) } func (*QueryLastZetaHeightResponse) ProtoMessage() {} func (*QueryLastZetaHeightResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{44} + return fileDescriptor_65a992045e92a606, []int{46} } func (m *QueryLastZetaHeightResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2095,7 +2175,7 @@ func (m *QueryConvertGasToZetaRequest) Reset() { *m = QueryConvertGasToZ func (m *QueryConvertGasToZetaRequest) String() string { return proto.CompactTextString(m) } func (*QueryConvertGasToZetaRequest) ProtoMessage() {} func (*QueryConvertGasToZetaRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{45} + return fileDescriptor_65a992045e92a606, []int{47} } func (m *QueryConvertGasToZetaRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2148,7 +2228,7 @@ func (m *QueryConvertGasToZetaResponse) Reset() { *m = QueryConvertGasTo func (m *QueryConvertGasToZetaResponse) String() string { return proto.CompactTextString(m) } func (*QueryConvertGasToZetaResponse) ProtoMessage() {} func (*QueryConvertGasToZetaResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{46} + return fileDescriptor_65a992045e92a606, []int{48} } func (m *QueryConvertGasToZetaResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2205,7 +2285,7 @@ func (m *QueryMessagePassingProtocolFeeRequest) Reset() { *m = QueryMess func (m *QueryMessagePassingProtocolFeeRequest) String() string { return proto.CompactTextString(m) } func (*QueryMessagePassingProtocolFeeRequest) ProtoMessage() {} func (*QueryMessagePassingProtocolFeeRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{47} + return fileDescriptor_65a992045e92a606, []int{49} } func (m *QueryMessagePassingProtocolFeeRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2244,7 +2324,7 @@ func (m *QueryMessagePassingProtocolFeeResponse) Reset() { func (m *QueryMessagePassingProtocolFeeResponse) String() string { return proto.CompactTextString(m) } func (*QueryMessagePassingProtocolFeeResponse) ProtoMessage() {} func (*QueryMessagePassingProtocolFeeResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{48} + return fileDescriptor_65a992045e92a606, []int{50} } func (m *QueryMessagePassingProtocolFeeResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2288,7 +2368,7 @@ func (m *QueryZEVMGetTransactionReceiptRequest) Reset() { *m = QueryZEVM func (m *QueryZEVMGetTransactionReceiptRequest) String() string { return proto.CompactTextString(m) } func (*QueryZEVMGetTransactionReceiptRequest) ProtoMessage() {} func (*QueryZEVMGetTransactionReceiptRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{49} + return fileDescriptor_65a992045e92a606, []int{51} } func (m *QueryZEVMGetTransactionReceiptRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2345,7 +2425,7 @@ func (m *QueryZEVMGetTransactionReceiptResponse) Reset() { func (m *QueryZEVMGetTransactionReceiptResponse) String() string { return proto.CompactTextString(m) } func (*QueryZEVMGetTransactionReceiptResponse) ProtoMessage() {} func (*QueryZEVMGetTransactionReceiptResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{50} + return fileDescriptor_65a992045e92a606, []int{52} } func (m *QueryZEVMGetTransactionReceiptResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2475,7 +2555,7 @@ func (m *Log) Reset() { *m = Log{} } func (m *Log) String() string { return proto.CompactTextString(m) } func (*Log) ProtoMessage() {} func (*Log) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{51} + return fileDescriptor_65a992045e92a606, []int{53} } func (m *Log) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2575,7 +2655,7 @@ func (m *QueryZEVMGetTransactionRequest) Reset() { *m = QueryZEVMGetTran func (m *QueryZEVMGetTransactionRequest) String() string { return proto.CompactTextString(m) } func (*QueryZEVMGetTransactionRequest) ProtoMessage() {} func (*QueryZEVMGetTransactionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{52} + return fileDescriptor_65a992045e92a606, []int{54} } func (m *QueryZEVMGetTransactionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2635,7 +2715,7 @@ func (m *QueryZEVMGetTransactionResponse) Reset() { *m = QueryZEVMGetTra func (m *QueryZEVMGetTransactionResponse) String() string { return proto.CompactTextString(m) } func (*QueryZEVMGetTransactionResponse) ProtoMessage() {} func (*QueryZEVMGetTransactionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{53} + return fileDescriptor_65a992045e92a606, []int{55} } func (m *QueryZEVMGetTransactionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2791,7 +2871,7 @@ func (m *QueryZEVMGetBlockByNumberRequest) Reset() { *m = QueryZEVMGetBl func (m *QueryZEVMGetBlockByNumberRequest) String() string { return proto.CompactTextString(m) } func (*QueryZEVMGetBlockByNumberRequest) ProtoMessage() {} func (*QueryZEVMGetBlockByNumberRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{54} + return fileDescriptor_65a992045e92a606, []int{56} } func (m *QueryZEVMGetBlockByNumberRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2855,7 +2935,7 @@ func (m *QueryZEVMGetBlockByNumberResponse) Reset() { *m = QueryZEVMGetB func (m *QueryZEVMGetBlockByNumberResponse) String() string { return proto.CompactTextString(m) } func (*QueryZEVMGetBlockByNumberResponse) ProtoMessage() {} func (*QueryZEVMGetBlockByNumberResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_65a992045e92a606, []int{55} + return fileDescriptor_65a992045e92a606, []int{57} } func (m *QueryZEVMGetBlockByNumberResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -3044,6 +3124,8 @@ func init() { proto.RegisterType((*QueryAllOutTxTrackerByChainResponse)(nil), "zetachain.zetacore.crosschain.QueryAllOutTxTrackerByChainResponse") proto.RegisterType((*QueryAllInTxTrackerByChainRequest)(nil), "zetachain.zetacore.crosschain.QueryAllInTxTrackerByChainRequest") proto.RegisterType((*QueryAllInTxTrackerByChainResponse)(nil), "zetachain.zetacore.crosschain.QueryAllInTxTrackerByChainResponse") + proto.RegisterType((*QueryAllInTxTrackersRequest)(nil), "zetachain.zetacore.crosschain.QueryAllInTxTrackersRequest") + proto.RegisterType((*QueryAllInTxTrackersResponse)(nil), "zetachain.zetacore.crosschain.QueryAllInTxTrackersResponse") proto.RegisterType((*QueryGetInTxHashToCctxRequest)(nil), "zetachain.zetacore.crosschain.QueryGetInTxHashToCctxRequest") proto.RegisterType((*QueryGetInTxHashToCctxResponse)(nil), "zetachain.zetacore.crosschain.QueryGetInTxHashToCctxResponse") proto.RegisterType((*QueryInTxHashToCctxDataRequest)(nil), "zetachain.zetacore.crosschain.QueryInTxHashToCctxDataRequest") @@ -3093,197 +3175,199 @@ func init() { func init() { proto.RegisterFile("crosschain/query.proto", fileDescriptor_65a992045e92a606) } var fileDescriptor_65a992045e92a606 = []byte{ - // 3031 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x5b, 0xdb, 0x6f, 0x1b, 0xc7, - 0xd5, 0xf7, 0x8a, 0xba, 0x8e, 0xae, 0x1e, 0x2b, 0x0e, 0xc3, 0xd8, 0xa2, 0xb3, 0x8e, 0x2f, 0xf1, - 0x85, 0x8c, 0x15, 0x5b, 0x49, 0x6c, 0x27, 0x88, 0x64, 0xc7, 0x8a, 0x11, 0x25, 0xd1, 0xb7, 0x52, - 0xbe, 0x16, 0x2e, 0x5a, 0x62, 0xb5, 0x1c, 0x53, 0x8b, 0x90, 0x5c, 0x66, 0x67, 0x28, 0x48, 0x31, - 0xd4, 0x87, 0x3c, 0xf4, 0x39, 0x40, 0x81, 0xf6, 0xa5, 0xaf, 0xbd, 0x3c, 0xf4, 0xa1, 0x40, 0x83, - 0x26, 0x40, 0x81, 0x14, 0x45, 0xdb, 0x34, 0x8f, 0x01, 0x0a, 0x14, 0xbd, 0x00, 0x44, 0x11, 0xf7, - 0x89, 0xff, 0x41, 0x81, 0x3e, 0x14, 0x73, 0xf6, 0x2c, 0x77, 0x96, 0xbb, 0x2b, 0xae, 0x28, 0xb6, - 0x68, 0x5f, 0xc4, 0x99, 0x33, 0x73, 0xce, 0xfc, 0xce, 0x99, 0x33, 0x67, 0xce, 0xec, 0xb1, 0xc9, - 0x49, 0xcb, 0x75, 0x38, 0xb7, 0xb6, 0x4d, 0xbb, 0x5e, 0x7c, 0xbf, 0xc9, 0xdc, 0xbd, 0x42, 0xc3, - 0x75, 0x84, 0x43, 0x4f, 0x7f, 0xc0, 0x84, 0x09, 0xe4, 0x02, 0xb4, 0x1c, 0x97, 0x15, 0x82, 0xa9, - 0xb9, 0x4b, 0x96, 0xc3, 0x6b, 0x0e, 0x2f, 0x6e, 0x99, 0x9c, 0x79, 0x7c, 0xc5, 0x9d, 0x6b, 0x5b, - 0x4c, 0x98, 0xd7, 0x8a, 0x0d, 0xb3, 0x62, 0xd7, 0x4d, 0x61, 0x3b, 0x75, 0x4f, 0x54, 0xee, 0xb4, - 0xb2, 0x04, 0xfc, 0x2d, 0xd5, 0x9d, 0xba, 0xc5, 0x38, 0x0e, 0xe7, 0xd5, 0x61, 0xd9, 0x2c, 0x79, - 0x93, 0xc4, 0x2e, 0x4e, 0xc8, 0x29, 0x13, 0x2a, 0x26, 0x2f, 0x35, 0x5c, 0xdb, 0x62, 0x38, 0x76, - 0x56, 0x19, 0x03, 0x9e, 0xd2, 0xb6, 0xc9, 0xb7, 0x4b, 0xc2, 0x29, 0x59, 0x56, 0x47, 0xc0, 0x42, - 0x64, 0x92, 0x70, 0x4d, 0xeb, 0x3d, 0xe6, 0xe2, 0xb8, 0xae, 0x8c, 0x57, 0x4d, 0x2e, 0x4a, 0x5b, - 0x55, 0xc7, 0x7a, 0xaf, 0xb4, 0xcd, 0xec, 0xca, 0xb6, 0x88, 0x91, 0x01, 0xf0, 0xbb, 0xd6, 0x50, - 0xb5, 0x70, 0x9a, 0x22, 0xba, 0xc8, 0x93, 0xca, 0x84, 0x86, 0xe9, 0x9a, 0x35, 0x5f, 0xff, 0x79, - 0x65, 0x40, 0xf0, 0x0e, 0xb5, 0xe2, 0x54, 0x1c, 0x68, 0x16, 0x65, 0x0b, 0xa9, 0xa7, 0x2a, 0x8e, - 0x53, 0xa9, 0xb2, 0xa2, 0xd9, 0xb0, 0x8b, 0x66, 0xbd, 0xee, 0x08, 0xb0, 0x33, 0xf2, 0xe8, 0x59, - 0x72, 0xf2, 0xff, 0xe4, 0x56, 0x6c, 0x72, 0xfe, 0x86, 0xcd, 0x85, 0xe3, 0xee, 0x19, 0xec, 0xfd, - 0x26, 0xe3, 0x42, 0xff, 0x16, 0x79, 0x32, 0x32, 0xc2, 0x1b, 0x4e, 0x9d, 0x33, 0x7a, 0x87, 0x8c, - 0x0b, 0xce, 0x4b, 0x55, 0x9b, 0x8b, 0xac, 0x76, 0x26, 0x73, 0x71, 0x72, 0x51, 0x2f, 0x1c, 0xb8, - 0xf7, 0x85, 0xcd, 0x8d, 0x8d, 0x95, 0xe1, 0x2f, 0x5a, 0xf9, 0x63, 0xc6, 0x98, 0xe0, 0x7c, 0xcd, - 0xe6, 0x42, 0x9f, 0x27, 0x14, 0xe4, 0xaf, 0x83, 0x62, 0xfe, 0xaa, 0x0f, 0xc8, 0x89, 0x10, 0xb5, - 0xb3, 0xe2, 0xa8, 0x67, 0x80, 0xac, 0x76, 0x46, 0xbb, 0x38, 0xb9, 0x78, 0xae, 0xc7, 0x7a, 0x1e, - 0x3b, 0x2e, 0x89, 0xac, 0xfa, 0x5b, 0xe4, 0x69, 0x90, 0xbd, 0xca, 0xc4, 0x3b, 0x4d, 0xb1, 0xb9, - 0xbb, 0xe9, 0x19, 0x1b, 0x97, 0xa6, 0x59, 0x32, 0x06, 0xcc, 0xf7, 0xef, 0xc2, 0x22, 0x19, 0xc3, - 0xef, 0xd2, 0x79, 0x32, 0x02, 0xfb, 0x97, 0x1d, 0x3a, 0xa3, 0x5d, 0x1c, 0x36, 0xbc, 0x8e, 0xde, - 0x24, 0xa7, 0xe2, 0xc5, 0x21, 0xe6, 0x77, 0xc9, 0x94, 0xa3, 0xd0, 0x11, 0xf9, 0xe5, 0x1e, 0xc8, - 0x55, 0x51, 0x88, 0x3f, 0x24, 0x46, 0x67, 0xa8, 0xc5, 0x72, 0xb5, 0x1a, 0xa7, 0xc5, 0x3d, 0x42, - 0x82, 0xd3, 0x84, 0x6b, 0x9e, 0x2f, 0x78, 0x47, 0xaf, 0x20, 0x8f, 0x5e, 0xc1, 0x3b, 0xb2, 0x78, - 0xf4, 0x0a, 0xeb, 0x66, 0x85, 0x21, 0xaf, 0xa1, 0x70, 0xea, 0x9f, 0x69, 0xa8, 0x5e, 0x64, 0x9d, - 0x44, 0xf5, 0x32, 0x03, 0x50, 0x8f, 0xae, 0x86, 0xf0, 0x0f, 0x01, 0xfe, 0x0b, 0x3d, 0xf1, 0x7b, - 0x98, 0x42, 0x0a, 0x7c, 0xa8, 0x11, 0x3d, 0x4e, 0x81, 0x95, 0xbd, 0x3b, 0x12, 0x89, 0x6f, 0xaf, - 0x79, 0x32, 0x02, 0xc8, 0x70, 0xcf, 0xbd, 0x4e, 0x97, 0x15, 0x87, 0xfa, 0xb6, 0xe2, 0xef, 0x34, - 0x72, 0xf6, 0x40, 0x10, 0xff, 0x23, 0xc6, 0xfc, 0x8e, 0x46, 0x9e, 0xf1, 0xf5, 0xb8, 0x5f, 0x4f, - 0xb2, 0xe5, 0x53, 0x64, 0xdc, 0x8b, 0xc3, 0x76, 0x39, 0x7c, 0x84, 0xca, 0x03, 0x33, 0xe8, 0xaf, - 0x95, 0x5d, 0x8d, 0x03, 0x82, 0xf6, 0x34, 0xc8, 0xa4, 0x5d, 0xef, 0x36, 0xe7, 0xa5, 0x1e, 0xe6, - 0x54, 0xe5, 0x79, 0xd6, 0x54, 0x85, 0x0c, 0xce, 0x98, 0xb7, 0xc8, 0x69, 0x3f, 0x70, 0xc8, 0x25, - 0xdf, 0x30, 0xf9, 0xf6, 0xa6, 0x73, 0xc7, 0x12, 0xbb, 0xbe, 0x1d, 0x73, 0x64, 0xdc, 0xc6, 0x01, - 0xb0, 0xe3, 0x84, 0xd1, 0xe9, 0xeb, 0xfb, 0x64, 0x21, 0x89, 0x19, 0x75, 0xff, 0x06, 0x99, 0xb1, - 0x43, 0x23, 0x18, 0x05, 0xae, 0xa6, 0x50, 0x3f, 0x60, 0x42, 0x0b, 0x74, 0x89, 0xd2, 0x6f, 0xe3, - 0xf2, 0xe1, 0xc9, 0x77, 0x4d, 0x61, 0xa6, 0x01, 0xff, 0x01, 0xc9, 0x27, 0x72, 0x23, 0xfa, 0xaf, - 0x91, 0xe9, 0x3b, 0x12, 0x13, 0xec, 0xe7, 0xe6, 0x2e, 0x4f, 0x79, 0x14, 0x54, 0x1e, 0x84, 0x1e, - 0x96, 0xa3, 0x57, 0xd0, 0xea, 0xe8, 0x38, 0x51, 0xab, 0x0f, 0x2a, 0x72, 0x7e, 0xae, 0xa1, 0x8d, - 0x62, 0x56, 0x3a, 0x60, 0x8b, 0x32, 0x03, 0xda, 0xa2, 0xc1, 0xf9, 0xe9, 0xd3, 0xe4, 0x29, 0xdf, - 0xd5, 0x36, 0x39, 0x5f, 0x2e, 0x97, 0x5d, 0xc6, 0x3b, 0x17, 0xf5, 0x6b, 0x24, 0x17, 0x37, 0x88, - 0x0a, 0xce, 0x91, 0x0c, 0x13, 0xfe, 0xfe, 0xcb, 0xa6, 0xa4, 0x6c, 0x09, 0x0b, 0xe0, 0x4c, 0x18, - 0xb2, 0xd9, 0x49, 0x00, 0xa4, 0x84, 0x8d, 0x0d, 0x5f, 0xee, 0x9b, 0x98, 0x00, 0xf8, 0x54, 0x14, - 0x78, 0x9d, 0x64, 0x36, 0x37, 0x36, 0x70, 0x57, 0x52, 0x64, 0x1b, 0x86, 0x9c, 0xae, 0x17, 0x31, - 0x87, 0x59, 0x65, 0x62, 0xd5, 0xe4, 0xeb, 0x32, 0x09, 0x54, 0xe2, 0xbe, 0x5d, 0x2f, 0xb3, 0x5d, - 0xc4, 0xe8, 0x75, 0xf4, 0x12, 0xc9, 0x46, 0x19, 0x82, 0xac, 0xc7, 0xa7, 0x21, 0x8e, 0x0b, 0x3d, - 0x70, 0x74, 0x44, 0x74, 0x18, 0x75, 0x13, 0x11, 0x2d, 0x57, 0xab, 0xdd, 0x88, 0x06, 0xe5, 0x7f, - 0x3f, 0xd1, 0x50, 0x89, 0xd0, 0x1a, 0xb1, 0x4a, 0x64, 0xfa, 0x52, 0x62, 0x70, 0x1e, 0xb6, 0x18, - 0x38, 0x11, 0x9c, 0xd3, 0xb7, 0x21, 0xc9, 0x3f, 0x78, 0x8b, 0xde, 0x0b, 0xb2, 0xb8, 0x10, 0x0f, - 0x2a, 0xb8, 0x46, 0x26, 0x15, 0x32, 0x9a, 0xb1, 0x57, 0xe4, 0x57, 0x05, 0xa9, 0xec, 0x7a, 0x19, - 0x01, 0x2e, 0x57, 0xab, 0x31, 0x00, 0x07, 0xb5, 0x63, 0x1f, 0x6b, 0x41, 0x4e, 0x97, 0x4a, 0xa7, - 0xcc, 0x11, 0x74, 0x1a, 0xdc, 0xee, 0x2d, 0x04, 0x19, 0xe2, 0x3a, 0xab, 0x97, 0xed, 0x7a, 0x25, - 0x64, 0x1e, 0x5d, 0x04, 0x11, 0xb7, 0x6b, 0x1c, 0xf5, 0xda, 0x20, 0x33, 0x0d, 0x6f, 0x00, 0x9f, - 0x77, 0xa8, 0xda, 0x95, 0x5e, 0xd9, 0x7d, 0x48, 0xda, 0x74, 0x43, 0xed, 0xea, 0x4b, 0xc1, 0x05, - 0xb9, 0x66, 0x72, 0xb1, 0x22, 0xdf, 0x65, 0x6f, 0xc0, 0xb3, 0xec, 0x60, 0xbf, 0x7a, 0x84, 0x77, - 0x53, 0x1c, 0x1f, 0xe2, 0xfd, 0x3a, 0x99, 0xed, 0x1a, 0xc2, 0x4d, 0x2f, 0xf4, 0x00, 0xdc, 0x2d, - 0xb0, 0x5b, 0x8c, 0xbe, 0x1d, 0x5c, 0x19, 0x09, 0xa0, 0x07, 0xe5, 0x6b, 0xbf, 0xd5, 0x50, 0xcf, - 0xb8, 0xa5, 0x0e, 0xd2, 0x33, 0x33, 0x00, 0x3d, 0x07, 0xe7, 0x7b, 0x97, 0x83, 0x6b, 0x42, 0xbd, - 0xc3, 0xe3, 0xb7, 0x76, 0x4d, 0x09, 0x33, 0xf2, 0xde, 0xdc, 0x03, 0x57, 0xe9, 0xf7, 0xdd, 0x57, - 0x21, 0xf3, 0xe1, 0xa5, 0xd1, 0x6a, 0xef, 0x90, 0x29, 0x35, 0xe3, 0x48, 0xf9, 0xde, 0x53, 0x59, - 0x8c, 0x90, 0x00, 0xfd, 0x9b, 0xa8, 0xa3, 0x8c, 0x0a, 0xff, 0x86, 0x3c, 0xe5, 0x67, 0x1a, 0x2a, - 0xd2, 0x91, 0x9f, 0xa8, 0x48, 0xe6, 0x48, 0x8a, 0x0c, 0x6e, 0xd7, 0xbf, 0xad, 0x84, 0x63, 0x4b, - 0xec, 0x62, 0x1c, 0x88, 0x6c, 0xa4, 0xf7, 0xfa, 0x18, 0x1e, 0xfc, 0xeb, 0xe3, 0x13, 0x35, 0x50, - 0xab, 0x00, 0xfe, 0xeb, 0x2d, 0x77, 0x0a, 0x2d, 0x27, 0x0f, 0xe4, 0x03, 0x26, 0xcc, 0x50, 0x70, - 0xd1, 0x6f, 0xa0, 0x5a, 0xdd, 0xa3, 0xa8, 0xd6, 0x49, 0x32, 0xaa, 0x84, 0xbb, 0x8c, 0x81, 0x3d, - 0x7d, 0x13, 0x2f, 0x80, 0x3b, 0x4e, 0x7d, 0x87, 0xb9, 0x32, 0x63, 0xda, 0x74, 0x24, 0x7b, 0xc2, - 0x86, 0x28, 0xcf, 0xc1, 0x1c, 0x19, 0xaf, 0x98, 0x7c, 0xcd, 0xae, 0xd9, 0x02, 0x53, 0xc2, 0x4e, - 0x5f, 0xff, 0xa1, 0x86, 0xf7, 0x46, 0x54, 0x2c, 0xe2, 0xb9, 0x42, 0x8e, 0x3b, 0x4d, 0xb1, 0xe5, - 0x34, 0xeb, 0xe5, 0x55, 0x93, 0xdf, 0xaf, 0xcb, 0x41, 0x3c, 0xf1, 0xd1, 0x01, 0x39, 0x1b, 0xbe, - 0x75, 0x59, 0x4e, 0xf5, 0x1e, 0x63, 0x38, 0xdb, 0x5b, 0x34, 0x3a, 0x40, 0x2f, 0x92, 0x59, 0xf9, - 0xab, 0xc6, 0xbe, 0x0c, 0x38, 0x53, 0x37, 0x59, 0xbf, 0x40, 0xce, 0x01, 0xcc, 0xb7, 0x18, 0xe7, - 0x66, 0x85, 0xad, 0x9b, 0x9c, 0xdb, 0xf5, 0xca, 0x7a, 0x20, 0xd1, 0xb7, 0xee, 0x3d, 0x72, 0xbe, - 0xd7, 0x44, 0x54, 0xec, 0x14, 0x99, 0x78, 0xd8, 0x81, 0xe8, 0x29, 0x14, 0x10, 0xf4, 0x5b, 0xb8, - 0xe0, 0x83, 0xd7, 0xff, 0xff, 0x2d, 0x99, 0x1e, 0xbb, 0x66, 0x9d, 0x9b, 0x96, 0xdc, 0x5e, 0x83, - 0x59, 0xcc, 0x6e, 0x74, 0xee, 0x0a, 0x4a, 0x86, 0xb7, 0x83, 0xe7, 0x17, 0xb4, 0xf5, 0x7f, 0x0e, - 0x23, 0x8a, 0x03, 0xb8, 0x3b, 0xe6, 0x25, 0xf8, 0x35, 0xb3, 0x23, 0x64, 0x65, 0xba, 0xdd, 0xca, - 0x4f, 0x00, 0x55, 0xbe, 0x34, 0x8c, 0xa0, 0x49, 0x17, 0xc9, 0x94, 0x37, 0xbb, 0xde, 0xac, 0x6d, - 0x31, 0xd7, 0xb3, 0xec, 0xca, 0x6c, 0xbb, 0x95, 0x9f, 0x04, 0xfa, 0xdb, 0x40, 0x36, 0xd4, 0x0e, - 0x7d, 0x95, 0xcc, 0x59, 0x4e, 0x5d, 0xb8, 0xa6, 0x25, 0x4a, 0xa6, 0xf7, 0x74, 0x00, 0x2b, 0x4f, - 0xac, 0x9c, 0x68, 0xb7, 0xf2, 0xb3, 0xfe, 0x98, 0xff, 0xaa, 0xe8, 0x26, 0xd0, 0xd7, 0xc9, 0x09, - 0xab, 0x59, 0x6b, 0x56, 0x4d, 0x61, 0xef, 0xb0, 0x52, 0xc5, 0xe4, 0xa5, 0x26, 0x67, 0xe5, 0xec, - 0x30, 0x88, 0x78, 0xa2, 0xdd, 0xca, 0x1f, 0x0f, 0x86, 0x57, 0x4d, 0xfe, 0x2e, 0x67, 0x65, 0x23, - 0x4a, 0xa2, 0xa7, 0xc8, 0xf0, 0x43, 0xd7, 0xa9, 0x65, 0x47, 0x80, 0x6f, 0xbc, 0xdd, 0xca, 0x43, - 0xdf, 0x80, 0xbf, 0xf4, 0x3c, 0xf8, 0xa8, 0x27, 0x79, 0x14, 0x66, 0x4c, 0xb6, 0x5b, 0xf9, 0xb1, - 0x0a, 0xca, 0xf3, 0x1b, 0xd2, 0x5c, 0x55, 0xa7, 0xc2, 0x4b, 0x5b, 0x55, 0xc7, 0xa9, 0x65, 0xc7, - 0x02, 0x73, 0x49, 0xea, 0x8a, 0x24, 0x1a, 0x41, 0x93, 0xea, 0x64, 0x94, 0x0b, 0x53, 0x34, 0x79, - 0x76, 0x1c, 0x66, 0x92, 0x76, 0x2b, 0x8f, 0x14, 0x03, 0x7f, 0xe9, 0x49, 0x32, 0x24, 0x9c, 0xec, - 0x04, 0x8c, 0x8f, 0xb6, 0x5b, 0xf9, 0x21, 0xe1, 0x18, 0x43, 0xc2, 0x91, 0x66, 0x13, 0xc1, 0xb6, - 0x79, 0xdb, 0x43, 0x02, 0xb3, 0x29, 0x63, 0xb0, 0x49, 0xdd, 0x04, 0xba, 0x4c, 0x8e, 0xab, 0xfc, - 0xde, 0x4d, 0x39, 0x09, 0x02, 0xe6, 0xdb, 0xad, 0xbc, 0x2a, 0xfc, 0xbe, 0x1c, 0x33, 0x22, 0x14, - 0xba, 0x44, 0x86, 0xa5, 0x2e, 0xd9, 0xa9, 0x54, 0x9f, 0x7d, 0xd7, 0x9c, 0x8a, 0x01, 0xf3, 0xf5, - 0x0f, 0x33, 0x24, 0xb3, 0xe6, 0x54, 0x64, 0x48, 0xf0, 0x37, 0xdc, 0xf3, 0x4e, 0xbf, 0x2b, 0x83, - 0x8c, 0x70, 0x1a, 0xb6, 0xc5, 0xb3, 0x43, 0x67, 0x32, 0x17, 0x27, 0x0c, 0xec, 0x49, 0x67, 0x2e, - 0x9b, 0xc2, 0xf4, 0xfc, 0xc3, 0x80, 0x76, 0xc4, 0xe7, 0xe4, 0xc6, 0x0f, 0xf7, 0xf6, 0xb9, 0x88, - 0xf1, 0x46, 0x8e, 0x6a, 0xbc, 0x51, 0x58, 0x38, 0xad, 0xf1, 0xc2, 0x07, 0x6b, 0xac, 0xc7, 0xc1, - 0x7a, 0x8e, 0x48, 0xb7, 0xc1, 0x85, 0xc6, 0x61, 0xa1, 0xa9, 0x76, 0x2b, 0x3f, 0x5e, 0x75, 0x2a, - 0xde, 0x02, 0x9d, 0x16, 0x3d, 0x47, 0xc6, 0x5c, 0x56, 0x73, 0x76, 0x58, 0x19, 0xbc, 0x66, 0xdc, - 0xf3, 0x54, 0x24, 0x19, 0x7e, 0x43, 0xbf, 0x8e, 0x59, 0x66, 0x5c, 0x08, 0x48, 0x8e, 0x1c, 0xff, - 0x18, 0xc6, 0x8c, 0x31, 0x8e, 0xed, 0x3f, 0x16, 0x32, 0xfc, 0xb3, 0x9a, 0x89, 0x3d, 0xab, 0x4f, - 0x91, 0x4c, 0xc5, 0xe4, 0x18, 0x00, 0xc6, 0xda, 0xad, 0xbc, 0xec, 0x1a, 0xf2, 0x8f, 0x34, 0x63, - 0xa7, 0x02, 0x84, 0x1b, 0x0e, 0x66, 0xac, 0x74, 0xde, 0xb5, 0x7e, 0x4b, 0xae, 0x01, 0xf8, 0x47, - 0x83, 0x35, 0x64, 0xdf, 0xb3, 0x03, 0xcd, 0xcb, 0xdc, 0xb2, 0xd1, 0x14, 0xb8, 0x71, 0x13, 0xed, - 0x56, 0xde, 0x23, 0x18, 0xde, 0x8f, 0x9c, 0xe0, 0xa5, 0x8b, 0xe3, 0xc1, 0x04, 0x20, 0x60, 0xe6, - 0x98, 0x78, 0xae, 0x63, 0x5d, 0x8b, 0x1c, 0xea, 0x5c, 0xe6, 0xc9, 0xc8, 0x8e, 0x59, 0x6d, 0x32, - 0x3c, 0xce, 0xb0, 0x36, 0x10, 0x0c, 0xef, 0x47, 0xea, 0x26, 0xf6, 0x1a, 0x2c, 0x3b, 0x15, 0xe8, - 0x26, 0xfb, 0x06, 0xfc, 0xa5, 0x45, 0x32, 0x69, 0x5a, 0x16, 0xf3, 0x8b, 0x3a, 0xd3, 0xf2, 0x04, - 0xae, 0xcc, 0xb4, 0x5b, 0x79, 0xe2, 0x91, 0xd7, 0x6c, 0x99, 0x09, 0x05, 0x6d, 0x19, 0x1c, 0x3b, - 0x9f, 0x7a, 0x67, 0x82, 0xe0, 0x88, 0xf7, 0x7b, 0x70, 0xd1, 0x9f, 0x20, 0xda, 0x4e, 0x76, 0x16, - 0x26, 0x8c, 0xb4, 0x5b, 0x79, 0x6d, 0xc7, 0xd0, 0x76, 0x24, 0xd1, 0xcd, 0xce, 0x05, 0x44, 0xd7, - 0xd0, 0x5c, 0x49, 0xe4, 0xd9, 0xe3, 0x01, 0x91, 0x1b, 0x1a, 0xd7, 0x6f, 0x92, 0x33, 0xaa, 0xeb, - 0xc1, 0xf5, 0xbb, 0xb2, 0x87, 0xfe, 0x81, 0x3e, 0x7b, 0x92, 0x8c, 0x6e, 0x07, 0xd9, 0xc9, 0xb0, - 0x81, 0x3d, 0xfd, 0xcf, 0x63, 0xf8, 0xcd, 0x3a, 0x9e, 0x19, 0x3d, 0x57, 0x27, 0xa3, 0xe8, 0x85, - 0x5a, 0x10, 0x8f, 0x3d, 0x8a, 0x81, 0xbf, 0x1d, 0xbf, 0x18, 0x8a, 0xf5, 0x8b, 0x22, 0x99, 0x6c, - 0x98, 0x2e, 0xab, 0x0b, 0xcf, 0xf9, 0x3d, 0x07, 0x05, 0xdb, 0x79, 0x64, 0xf0, 0x7e, 0xa5, 0x1d, - 0xf8, 0xc9, 0x70, 0x82, 0x9f, 0x14, 0xc9, 0x24, 0xdf, 0x36, 0x5f, 0x28, 0x35, 0xeb, 0x56, 0x95, - 0x71, 0x74, 0x5a, 0x90, 0x28, 0xc9, 0xef, 0x02, 0xd5, 0x50, 0xda, 0x5d, 0x57, 0xd0, 0x68, 0x8f, - 0x2b, 0x28, 0xec, 0x6e, 0xbc, 0xe4, 0x3a, 0x8e, 0xef, 0xd4, 0xdd, 0xee, 0xc6, 0x0d, 0xc7, 0x11, - 0x46, 0x84, 0x22, 0x17, 0x94, 0x77, 0x15, 0xf3, 0x78, 0xc7, 0x83, 0x05, 0x81, 0x0a, 0x4c, 0x41, - 0x93, 0xde, 0x20, 0xd3, 0xae, 0x97, 0x63, 0xe0, 0x62, 0xde, 0x11, 0x98, 0x6b, 0xb7, 0xf2, 0x53, - 0xfe, 0x00, 0xf0, 0x84, 0x7a, 0xd2, 0x4e, 0x35, 0xbb, 0xce, 0x5c, 0x3c, 0x0a, 0x60, 0x27, 0x20, - 0x18, 0xde, 0x0f, 0x2d, 0x10, 0x52, 0xb6, 0x1f, 0x3e, 0xb4, 0xad, 0x66, 0x55, 0xec, 0xa1, 0xe7, - 0x83, 0x99, 0x02, 0xaa, 0xa1, 0xb4, 0xe1, 0x0a, 0x70, 0x84, 0x59, 0x2d, 0x29, 0x5c, 0x53, 0xca, - 0x15, 0x20, 0xc7, 0xee, 0x06, 0xac, 0xdd, 0x04, 0xa9, 0x35, 0xdb, 0x15, 0xae, 0x59, 0x82, 0x0b, - 0x69, 0x3a, 0xd0, 0x1a, 0xa8, 0xf0, 0x19, 0x3b, 0x68, 0x4a, 0xaf, 0xe1, 0xf6, 0x07, 0x0c, 0x8f, - 0x07, 0x78, 0x8d, 0xec, 0x1b, 0xf0, 0xd7, 0x0f, 0x4b, 0x55, 0x48, 0x81, 0x67, 0x43, 0x61, 0x09, - 0xd2, 0xe0, 0x20, 0x21, 0x0e, 0x25, 0x22, 0x73, 0x07, 0x24, 0x22, 0x97, 0xc9, 0x84, 0xb0, 0x6b, - 0x8c, 0x0b, 0xb3, 0xd6, 0xc0, 0x93, 0x04, 0xe8, 0x3a, 0x44, 0x23, 0x68, 0xd2, 0xeb, 0x64, 0x4a, - 0xdd, 0xd5, 0x2c, 0x85, 0x23, 0x0f, 0x5b, 0x12, 0xda, 0xed, 0x50, 0x4f, 0x9e, 0x16, 0x74, 0xca, - 0x13, 0x30, 0x1f, 0x4e, 0x8b, 0x47, 0x31, 0xf0, 0x97, 0xde, 0x24, 0x73, 0xf2, 0x65, 0x52, 0x7a, - 0xc8, 0x58, 0xa9, 0xc1, 0x5c, 0x99, 0x9e, 0x65, 0xe7, 0x01, 0xcd, 0xf1, 0x76, 0x2b, 0x3f, 0x2d, - 0xc7, 0xee, 0x31, 0xb6, 0xce, 0xdc, 0x55, 0x93, 0x1b, 0xe1, 0xae, 0x54, 0xb5, 0x66, 0x7b, 0x05, - 0xf9, 0xec, 0x13, 0x81, 0xaa, 0x35, 0x1b, 0x3e, 0x70, 0x1b, 0x7e, 0x63, 0xf1, 0xd3, 0x67, 0xc9, - 0x08, 0x9c, 0x6d, 0xfa, 0x3d, 0x8d, 0x8c, 0x7a, 0xd5, 0x5e, 0x7a, 0xad, 0x47, 0x36, 0x12, 0x2d, - 0x37, 0xe7, 0x16, 0x0f, 0xc3, 0xe2, 0x45, 0x0c, 0xfd, 0xdc, 0x87, 0x7f, 0xf8, 0xfb, 0x77, 0x87, - 0xf2, 0xf4, 0x74, 0x51, 0x72, 0x5c, 0x55, 0xfe, 0x15, 0x82, 0x5a, 0xa9, 0xa7, 0x9f, 0x6b, 0x64, - 0x4a, 0x2d, 0xd0, 0xd1, 0x9b, 0x69, 0xd6, 0x8a, 0xaf, 0x4d, 0xe7, 0x6e, 0xf5, 0xc5, 0x8b, 0x80, - 0x5f, 0x01, 0xc0, 0x2f, 0xd2, 0x1b, 0x09, 0x80, 0xd5, 0x92, 0x61, 0xf1, 0x11, 0x7e, 0xfc, 0xd8, - 0x2f, 0x3e, 0x82, 0x60, 0xb4, 0x4f, 0x3f, 0xd1, 0xc8, 0xac, 0x2a, 0x77, 0xb9, 0x5a, 0x4d, 0xa7, - 0x4b, 0x7c, 0x85, 0x3a, 0x9d, 0x2e, 0x09, 0x55, 0x67, 0xfd, 0x32, 0xe8, 0x72, 0x8e, 0x9e, 0x4d, - 0xa1, 0x0b, 0xfd, 0xab, 0x46, 0x4e, 0x76, 0x21, 0xc7, 0x42, 0x21, 0x5d, 0xee, 0x03, 0x44, 0xb8, - 0xda, 0x99, 0x5b, 0x39, 0x8a, 0x08, 0x54, 0xe7, 0x26, 0xa8, 0x73, 0x9d, 0x2e, 0xa6, 0x50, 0x07, - 0x79, 0x71, 0x87, 0xf6, 0xe9, 0x5f, 0x34, 0xf2, 0x84, 0x52, 0xb2, 0x54, 0x94, 0x7b, 0x2d, 0x25, - 0xb2, 0xc4, 0x4a, 0x6e, 0x6e, 0xf9, 0x08, 0x12, 0x50, 0xb5, 0xdb, 0xa0, 0xda, 0x12, 0xbd, 0x9e, - 0xa0, 0x9a, 0x5d, 0x4f, 0xd0, 0xac, 0x64, 0x97, 0xf7, 0xe9, 0xef, 0x35, 0x32, 0x13, 0xae, 0x76, - 0xd1, 0xdb, 0x29, 0xcf, 0x40, 0x6c, 0x75, 0x2f, 0xf7, 0x4a, 0x9f, 0xdc, 0xa8, 0xcd, 0x4b, 0xa0, - 0xcd, 0x22, 0x7d, 0xfe, 0x00, 0x6d, 0x02, 0xb6, 0xe2, 0x23, 0xbf, 0xbf, 0x4f, 0xff, 0xa8, 0x11, - 0x1a, 0xad, 0x77, 0xd2, 0x54, 0x78, 0x12, 0xab, 0xac, 0xb9, 0x57, 0xfb, 0x65, 0x47, 0x7d, 0x96, - 0x41, 0x9f, 0x5b, 0xf4, 0xe5, 0x44, 0x7d, 0xba, 0xff, 0x61, 0x14, 0x5c, 0x7a, 0xaa, 0x62, 0xbf, - 0xd2, 0xc8, 0xf1, 0xf0, 0x0a, 0x32, 0x32, 0xdc, 0x3e, 0x84, 0xe7, 0xf4, 0xb9, 0x4b, 0x89, 0x75, - 0x55, 0xfd, 0x2a, 0x68, 0x75, 0x81, 0x9e, 0x4b, 0xb5, 0x4b, 0xf4, 0x63, 0x8d, 0x4c, 0x87, 0xea, - 0x97, 0xf4, 0xa5, 0x94, 0x5e, 0x12, 0xa9, 0x87, 0xe6, 0x5e, 0xee, 0x83, 0x13, 0x51, 0x17, 0x00, - 0xf5, 0x45, 0x7a, 0x3e, 0x01, 0x75, 0x85, 0x89, 0x92, 0xe0, 0xdc, 0xff, 0x52, 0x42, 0x3f, 0xd2, - 0xa0, 0x18, 0x9a, 0xee, 0xbe, 0x0b, 0x55, 0x57, 0xd3, 0xdd, 0x77, 0xe1, 0xd2, 0xab, 0xae, 0x03, - 0xbc, 0x53, 0x34, 0x97, 0x00, 0x4f, 0x42, 0xf9, 0xa9, 0x16, 0xd4, 0x15, 0xe9, 0x52, 0xca, 0x45, - 0xba, 0x0a, 0xa0, 0xb9, 0x17, 0x0f, 0xcd, 0x87, 0x08, 0x8b, 0x80, 0xf0, 0x39, 0x7a, 0x21, 0xc9, - 0x80, 0xc8, 0x20, 0xbd, 0xb7, 0xcc, 0x76, 0xf7, 0xe9, 0x8f, 0x35, 0x32, 0xe9, 0x4b, 0x91, 0x4e, - 0xbb, 0x94, 0xd2, 0xed, 0xfa, 0x42, 0x1c, 0x53, 0x86, 0xd5, 0x2f, 0x00, 0xe2, 0x67, 0x68, 0xbe, - 0x07, 0x62, 0xfa, 0x99, 0x46, 0xe6, 0xba, 0xbf, 0x83, 0xd2, 0x54, 0x37, 0x68, 0xc2, 0x47, 0xd9, - 0xdc, 0xed, 0xfe, 0x98, 0x53, 0x9a, 0xda, 0xea, 0xc6, 0xfa, 0xb9, 0x46, 0x26, 0x95, 0x4f, 0x9d, - 0xf4, 0x6e, 0x9a, 0xe5, 0x7b, 0x7d, 0x52, 0xcd, 0xbd, 0x7e, 0x44, 0x29, 0xa8, 0xcd, 0x25, 0xd0, - 0xe6, 0x59, 0xaa, 0x27, 0xa5, 0x72, 0x0a, 0xf0, 0x4f, 0xb5, 0x50, 0x15, 0x96, 0xa6, 0x3d, 0xf0, - 0xd1, 0xba, 0x71, 0xee, 0x66, 0x3f, 0xac, 0x08, 0x79, 0x11, 0x20, 0x5f, 0xa1, 0x97, 0x92, 0x36, - 0x20, 0xe0, 0xe9, 0xb8, 0xfb, 0xcf, 0x35, 0x32, 0xa3, 0xc8, 0x92, 0x1e, 0xff, 0x72, 0x4a, 0xcf, - 0xed, 0x17, 0x7d, 0x7c, 0x25, 0xbb, 0xa7, 0xc1, 0x15, 0xf4, 0xf4, 0x97, 0x1a, 0x99, 0x0b, 0x55, - 0x7a, 0x25, 0xee, 0xb4, 0xc9, 0x63, 0x5c, 0x41, 0x3a, 0x77, 0xbb, 0x3f, 0x66, 0xc4, 0x7e, 0x05, - 0xb0, 0x9f, 0xa7, 0xcf, 0x26, 0x39, 0x8b, 0xca, 0x45, 0xbf, 0xd0, 0x22, 0x45, 0x54, 0x9a, 0x36, - 0x07, 0x89, 0x2f, 0x01, 0xa7, 0xbb, 0xf3, 0x93, 0xcb, 0xd7, 0xfa, 0x12, 0x28, 0xf0, 0x3c, 0x2d, - 0x24, 0x28, 0x50, 0x0d, 0xf3, 0x75, 0xdc, 0xe7, 0x37, 0x1a, 0xa1, 0x5d, 0x32, 0xe5, 0x56, 0xa4, - 0xbd, 0xab, 0x8f, 0xa2, 0x4d, 0x72, 0x91, 0xba, 0xe7, 0xad, 0xd9, 0xa5, 0x0d, 0xfd, 0x81, 0x46, - 0x86, 0xe1, 0xd6, 0x4f, 0x7b, 0x07, 0xaa, 0x79, 0xc9, 0x0b, 0x87, 0xe2, 0x49, 0xf9, 0x56, 0xb1, - 0x30, 0x53, 0x04, 0x23, 0x7f, 0x2c, 0xc3, 0x4b, 0x50, 0x9c, 0x4e, 0x1f, 0x5e, 0x22, 0x05, 0xed, - 0xfe, 0xc0, 0xde, 0x00, 0xb0, 0x45, 0x7a, 0xf5, 0x40, 0xb0, 0x91, 0xc7, 0xe1, 0xf7, 0x35, 0x32, - 0xe6, 0xa7, 0x7e, 0x8b, 0x69, 0x03, 0xc3, 0x61, 0x0d, 0xdb, 0x55, 0xa0, 0xd6, 0xcf, 0x02, 0xd6, - 0xd3, 0xf4, 0xe9, 0x03, 0xb0, 0x7a, 0x41, 0xcf, 0x43, 0x86, 0xe7, 0x39, 0x7d, 0xd0, 0x8b, 0xd4, - 0x96, 0xd3, 0x07, 0xbd, 0x68, 0x55, 0xb8, 0x77, 0xd0, 0x0b, 0x78, 0xe8, 0x2f, 0x34, 0x32, 0x13, - 0xae, 0xc2, 0xa6, 0x43, 0x1d, 0x5b, 0xd7, 0x4d, 0x87, 0x3a, 0xbe, 0xe8, 0xdb, 0x33, 0x97, 0xae, - 0x86, 0x51, 0xfe, 0x48, 0x23, 0x24, 0xf8, 0xaf, 0x02, 0xf4, 0x46, 0x9a, 0x95, 0x23, 0xff, 0xe9, - 0x20, 0xb7, 0x74, 0x58, 0x36, 0x04, 0xfb, 0x1c, 0x80, 0x3d, 0x4b, 0x9f, 0x49, 0x00, 0x2b, 0x3a, - 0x2c, 0x2b, 0x6f, 0x7e, 0xf1, 0xd5, 0x82, 0xf6, 0xe5, 0x57, 0x0b, 0xda, 0xdf, 0xbe, 0x5a, 0xd0, - 0x3e, 0x7a, 0xbc, 0x70, 0xec, 0xcb, 0xc7, 0x0b, 0xc7, 0xfe, 0xf4, 0x78, 0xe1, 0xd8, 0x83, 0x6b, - 0x15, 0x5b, 0x6c, 0x37, 0xb7, 0x0a, 0x96, 0x53, 0x53, 0xc5, 0xf8, 0x38, 0x8a, 0xbb, 0x21, 0x89, - 0x7b, 0x0d, 0xc6, 0xb7, 0x46, 0x21, 0x43, 0x78, 0xe1, 0x5f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xc9, - 0xb0, 0xe2, 0x22, 0x13, 0x33, 0x00, 0x00, + // 3067 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x5b, 0x4d, 0x6c, 0x1b, 0xc7, + 0x15, 0xf6, 0x8a, 0xfa, 0x1d, 0x49, 0x96, 0x3c, 0x56, 0x1c, 0x86, 0xb1, 0x45, 0x67, 0x1d, 0xd9, + 0x8e, 0x7f, 0xc8, 0x58, 0xb1, 0x95, 0xc4, 0x76, 0x82, 0x48, 0x76, 0xac, 0x18, 0x51, 0x12, 0x75, + 0xa5, 0xb4, 0x85, 0x8b, 0x96, 0x58, 0x2d, 0xc7, 0xd4, 0x22, 0x24, 0x97, 0xd9, 0x19, 0x0a, 0x52, + 0x0c, 0xf5, 0x90, 0x43, 0xcf, 0x01, 0x0a, 0xb4, 0x97, 0x5e, 0xfb, 0x73, 0xe8, 0xa1, 0x40, 0x83, + 0xa6, 0x40, 0x81, 0x14, 0x45, 0xdb, 0x34, 0xc7, 0x00, 0x05, 0x8a, 0xfe, 0x00, 0x44, 0x91, 0xf4, + 0xc4, 0x5b, 0x8f, 0x05, 0x7a, 0x28, 0xe6, 0xed, 0x5b, 0xee, 0x2c, 0x77, 0x57, 0x5c, 0x51, 0x4c, + 0xd1, 0x5e, 0xc4, 0x99, 0x37, 0xf3, 0xde, 0x7c, 0xef, 0xcd, 0x9b, 0x37, 0x6f, 0xf6, 0xd9, 0xe4, + 0x94, 0xe5, 0x3a, 0x9c, 0x5b, 0xdb, 0xa6, 0x5d, 0x2f, 0xbe, 0xdb, 0x64, 0xee, 0x5e, 0xa1, 0xe1, + 0x3a, 0xc2, 0xa1, 0x67, 0xde, 0x63, 0xc2, 0x04, 0x72, 0x01, 0x5a, 0x8e, 0xcb, 0x0a, 0xc1, 0xd4, + 0xdc, 0x25, 0xcb, 0xe1, 0x35, 0x87, 0x17, 0xb7, 0x4c, 0xce, 0x3c, 0xbe, 0xe2, 0xce, 0xb5, 0x2d, + 0x26, 0xcc, 0x6b, 0xc5, 0x86, 0x59, 0xb1, 0xeb, 0xa6, 0xb0, 0x9d, 0xba, 0x27, 0x2a, 0x77, 0x46, + 0x59, 0x02, 0xfe, 0x96, 0xea, 0x4e, 0xdd, 0x62, 0x1c, 0x87, 0xf3, 0xea, 0xb0, 0x6c, 0x96, 0xbc, + 0x49, 0x62, 0x17, 0x27, 0xe4, 0x94, 0x09, 0x15, 0x93, 0x97, 0x1a, 0xae, 0x6d, 0x31, 0x1c, 0x3b, + 0xa7, 0x8c, 0x01, 0x4f, 0x69, 0xdb, 0xe4, 0xdb, 0x25, 0xe1, 0x94, 0x2c, 0xab, 0x23, 0x60, 0x3e, + 0x32, 0x49, 0xb8, 0xa6, 0xf5, 0x0e, 0x73, 0x71, 0x5c, 0x57, 0xc6, 0xab, 0x26, 0x17, 0xa5, 0xad, + 0xaa, 0x63, 0xbd, 0x53, 0xda, 0x66, 0x76, 0x65, 0x5b, 0xc4, 0xc8, 0x00, 0xf8, 0x5d, 0x6b, 0xa8, + 0x5a, 0x38, 0x4d, 0x11, 0x5d, 0xe4, 0x71, 0x65, 0x42, 0xc3, 0x74, 0xcd, 0x9a, 0xaf, 0xff, 0x9c, + 0x32, 0x20, 0x78, 0x87, 0x5a, 0x71, 0x2a, 0x0e, 0x34, 0x8b, 0xb2, 0x85, 0xd4, 0xd3, 0x15, 0xc7, + 0xa9, 0x54, 0x59, 0xd1, 0x6c, 0xd8, 0x45, 0xb3, 0x5e, 0x77, 0x04, 0xd8, 0x19, 0x79, 0xf4, 0x2c, + 0x39, 0xf5, 0x15, 0xb9, 0x15, 0x9b, 0x9c, 0xbf, 0x66, 0x73, 0xe1, 0xb8, 0x7b, 0x06, 0x7b, 0xb7, + 0xc9, 0xb8, 0xd0, 0xbf, 0x45, 0x1e, 0x8f, 0x8c, 0xf0, 0x86, 0x53, 0xe7, 0x8c, 0xde, 0x21, 0xe3, + 0x82, 0xf3, 0x52, 0xd5, 0xe6, 0x22, 0xab, 0x9d, 0xcd, 0x5c, 0x9c, 0x5c, 0xd4, 0x0b, 0x07, 0xee, + 0x7d, 0x61, 0x73, 0x63, 0x63, 0x65, 0xf8, 0xd3, 0x56, 0xfe, 0x98, 0x31, 0x26, 0x38, 0x5f, 0xb3, + 0xb9, 0xd0, 0xe7, 0x08, 0x05, 0xf9, 0xeb, 0xa0, 0x98, 0xbf, 0xea, 0x03, 0x72, 0x32, 0x44, 0xed, + 0xac, 0x38, 0xea, 0x19, 0x20, 0xab, 0x9d, 0xd5, 0x2e, 0x4e, 0x2e, 0x2e, 0xf4, 0x58, 0xcf, 0x63, + 0xc7, 0x25, 0x91, 0x55, 0x7f, 0x83, 0x3c, 0x09, 0xb2, 0x57, 0x99, 0x78, 0xab, 0x29, 0x36, 0x77, + 0x37, 0x3d, 0x63, 0xe3, 0xd2, 0x34, 0x4b, 0xc6, 0x80, 0xf9, 0xfe, 0x5d, 0x58, 0x24, 0x63, 0xf8, + 0x5d, 0x3a, 0x47, 0x46, 0x60, 0xff, 0xb2, 0x43, 0x67, 0xb5, 0x8b, 0xc3, 0x86, 0xd7, 0xd1, 0x9b, + 0xe4, 0x74, 0xbc, 0x38, 0xc4, 0xfc, 0x36, 0x99, 0x72, 0x14, 0x3a, 0x22, 0xbf, 0xdc, 0x03, 0xb9, + 0x2a, 0x0a, 0xf1, 0x87, 0xc4, 0xe8, 0x0c, 0xb5, 0x58, 0xae, 0x56, 0xe3, 0xb4, 0xb8, 0x47, 0x48, + 0x70, 0x9a, 0x70, 0xcd, 0xf3, 0x05, 0xef, 0xe8, 0x15, 0xe4, 0xd1, 0x2b, 0x78, 0x47, 0x16, 0x8f, + 0x5e, 0x61, 0xdd, 0xac, 0x30, 0xe4, 0x35, 0x14, 0x4e, 0xfd, 0x63, 0x0d, 0xd5, 0x8b, 0xac, 0x93, + 0xa8, 0x5e, 0x66, 0x00, 0xea, 0xd1, 0xd5, 0x10, 0xfe, 0x21, 0xc0, 0x7f, 0xa1, 0x27, 0x7e, 0x0f, + 0x53, 0x48, 0x81, 0xf7, 0x35, 0xa2, 0xc7, 0x29, 0xb0, 0xb2, 0x77, 0x47, 0x22, 0xf1, 0xed, 0x35, + 0x47, 0x46, 0x00, 0x19, 0xee, 0xb9, 0xd7, 0xe9, 0xb2, 0xe2, 0x50, 0xdf, 0x56, 0xfc, 0xbd, 0x46, + 0xce, 0x1d, 0x08, 0xe2, 0xff, 0xc4, 0x98, 0xdf, 0xd1, 0xc8, 0x53, 0xbe, 0x1e, 0xf7, 0xeb, 0x49, + 0xb6, 0x7c, 0x82, 0x8c, 0x7b, 0x71, 0xd8, 0x2e, 0x87, 0x8f, 0x50, 0x79, 0x60, 0x06, 0xfd, 0x8d, + 0xb2, 0xab, 0x71, 0x40, 0xd0, 0x9e, 0x06, 0x99, 0xb4, 0xeb, 0xdd, 0xe6, 0xbc, 0xd4, 0xc3, 0x9c, + 0xaa, 0x3c, 0xcf, 0x9a, 0xaa, 0x90, 0xc1, 0x19, 0xf3, 0x4c, 0x70, 0x82, 0x95, 0x25, 0x3b, 0x21, + 0xd0, 0x0d, 0x0e, 0x5e, 0x78, 0xf8, 0xcb, 0xd3, 0x4d, 0xbf, 0x45, 0xce, 0xf8, 0xb1, 0x4c, 0xce, + 0x7c, 0xcd, 0xe4, 0xdb, 0x9b, 0xce, 0x1d, 0x4b, 0xec, 0xfa, 0x5b, 0x9b, 0x23, 0xe3, 0x36, 0x0e, + 0xc0, 0xd6, 0x4e, 0x18, 0x9d, 0xbe, 0xbe, 0x4f, 0xe6, 0x93, 0x98, 0x11, 0xf2, 0x37, 0xc8, 0x71, + 0x3b, 0x34, 0x82, 0x81, 0xe9, 0x6a, 0x0a, 0xd4, 0x01, 0x13, 0x02, 0xef, 0x12, 0xa5, 0xdf, 0xc6, + 0xe5, 0xc3, 0x93, 0xef, 0x9a, 0xc2, 0x4c, 0x03, 0xfe, 0x3d, 0x92, 0x4f, 0xe4, 0x46, 0xf4, 0x5f, + 0x23, 0xd3, 0x77, 0x24, 0x26, 0x70, 0xb1, 0xcd, 0x5d, 0x9e, 0xf2, 0x74, 0xaa, 0x3c, 0x08, 0x3d, + 0x2c, 0x47, 0xaf, 0xa0, 0xd5, 0x71, 0xa7, 0xa3, 0x56, 0x1f, 0x54, 0x30, 0xff, 0x44, 0x43, 0x1b, + 0xc5, 0xac, 0x74, 0xc0, 0x16, 0x65, 0x06, 0xb4, 0x45, 0x83, 0x3b, 0x3a, 0x4f, 0x92, 0x27, 0x7c, + 0x57, 0xdb, 0xe4, 0x7c, 0xb9, 0x5c, 0x76, 0x19, 0xef, 0x1c, 0x9c, 0x57, 0x48, 0x2e, 0x6e, 0x10, + 0x15, 0x9c, 0x25, 0x19, 0x26, 0xfc, 0xfd, 0x97, 0x4d, 0x49, 0xd9, 0x12, 0x16, 0xc0, 0x99, 0x30, + 0x64, 0xb3, 0x93, 0x93, 0x48, 0x09, 0x1b, 0x1b, 0xbe, 0xdc, 0xd7, 0x31, 0x27, 0xf1, 0xa9, 0x28, + 0xf0, 0x3a, 0xc9, 0x6c, 0x6e, 0x6c, 0xe0, 0xae, 0xa4, 0x48, 0x80, 0x0c, 0x39, 0x5d, 0x2f, 0x62, + 0x5a, 0xb5, 0xca, 0xc4, 0xaa, 0xc9, 0xd7, 0x65, 0x5e, 0xaa, 0x5c, 0x45, 0x76, 0xbd, 0xcc, 0x76, + 0x11, 0xa3, 0xd7, 0xd1, 0x4b, 0x24, 0x1b, 0x65, 0x08, 0x12, 0x31, 0x9f, 0x86, 0x38, 0x2e, 0xf4, + 0xc0, 0xd1, 0x11, 0xd1, 0x61, 0xd4, 0x4d, 0x44, 0xb4, 0x5c, 0xad, 0x76, 0x23, 0x1a, 0x94, 0xff, + 0xfd, 0x44, 0x43, 0x25, 0x42, 0x6b, 0xc4, 0x2a, 0x91, 0xe9, 0x4b, 0x89, 0xc1, 0x79, 0xd8, 0x62, + 0xe0, 0x44, 0x70, 0x4e, 0xdf, 0x84, 0x77, 0xc7, 0xc1, 0x5b, 0xf4, 0x4e, 0x90, 0x58, 0x86, 0x78, + 0x50, 0xc1, 0x35, 0x32, 0xa9, 0x90, 0xd1, 0x8c, 0xbd, 0x02, 0xb6, 0x2a, 0x48, 0x65, 0xd7, 0xcb, + 0x08, 0x70, 0xb9, 0x5a, 0x8d, 0x01, 0x38, 0xa8, 0x1d, 0xfb, 0x50, 0x0b, 0x2e, 0xa9, 0x54, 0x3a, + 0x65, 0x8e, 0xa0, 0xd3, 0xe0, 0x76, 0x6f, 0x3e, 0xb8, 0x3b, 0xd7, 0x59, 0xbd, 0x6c, 0xd7, 0x2b, + 0x21, 0xf3, 0xe8, 0x22, 0x88, 0xb8, 0x5d, 0xe3, 0xa8, 0xd7, 0x06, 0x39, 0xde, 0xf0, 0x06, 0xf0, + 0xc5, 0x89, 0xaa, 0x5d, 0xe9, 0xf5, 0xe0, 0x08, 0x49, 0x9b, 0x6e, 0xa8, 0x5d, 0x7d, 0x29, 0xb8, + 0x20, 0xd7, 0x4c, 0x2e, 0x56, 0xe4, 0x53, 0xf1, 0x35, 0x78, 0x29, 0x1e, 0xec, 0x57, 0x8f, 0xf0, + 0x6e, 0x8a, 0xe3, 0x43, 0xbc, 0x5f, 0x27, 0x33, 0x5d, 0x43, 0xb8, 0xe9, 0x85, 0x1e, 0x80, 0xbb, + 0x05, 0x76, 0x8b, 0xd1, 0xb7, 0x83, 0x2b, 0x23, 0x01, 0xf4, 0xa0, 0x7c, 0xed, 0x77, 0x1a, 0xea, + 0x19, 0xb7, 0xd4, 0x41, 0x7a, 0x66, 0x06, 0xa0, 0xe7, 0xe0, 0x7c, 0xef, 0x72, 0x70, 0x4d, 0xa8, + 0x77, 0x78, 0xfc, 0xd6, 0xae, 0x29, 0x61, 0x46, 0xde, 0x9b, 0x7b, 0xe0, 0x2a, 0xfd, 0x3e, 0x45, + 0x2b, 0x64, 0x2e, 0xbc, 0x34, 0x5a, 0xed, 0x2d, 0x32, 0xa5, 0x66, 0x1c, 0x29, 0x9f, 0xa0, 0x2a, + 0x8b, 0x11, 0x12, 0xa0, 0x7f, 0x13, 0x75, 0x94, 0x51, 0xe1, 0x4b, 0xc8, 0x53, 0x7e, 0xa6, 0xa1, + 0x22, 0x1d, 0xf9, 0x89, 0x8a, 0x64, 0x8e, 0xa4, 0xc8, 0xe0, 0x76, 0xfd, 0xdb, 0x4a, 0x38, 0xb6, + 0xc4, 0x2e, 0xc6, 0x81, 0xc8, 0x46, 0x7a, 0x0f, 0xa2, 0xe1, 0xc1, 0x3f, 0x88, 0x3e, 0x52, 0x03, + 0xb5, 0x0a, 0xe0, 0x7f, 0xde, 0x72, 0xa7, 0xd1, 0x72, 0xf2, 0x40, 0x3e, 0x60, 0xc2, 0x0c, 0x05, + 0x17, 0xfd, 0x06, 0xaa, 0xd5, 0x3d, 0x8a, 0x6a, 0x9d, 0x22, 0xa3, 0x4a, 0xb8, 0xcb, 0x18, 0xd8, + 0xd3, 0x37, 0xf1, 0x02, 0xb8, 0xe3, 0xd4, 0x77, 0x98, 0x2b, 0x33, 0xa6, 0x4d, 0x47, 0xb2, 0x27, + 0x6c, 0x88, 0xf2, 0x42, 0xcd, 0x91, 0xf1, 0x8a, 0xc9, 0xd7, 0xec, 0x9a, 0x2d, 0x30, 0x25, 0xec, + 0xf4, 0xf5, 0x1f, 0x6a, 0x78, 0x6f, 0x44, 0xc5, 0x22, 0x9e, 0x2b, 0xe4, 0x84, 0xd3, 0x14, 0x5b, + 0x4e, 0xb3, 0x5e, 0x5e, 0x35, 0xf9, 0xfd, 0xba, 0x1c, 0xc4, 0x13, 0x1f, 0x1d, 0x90, 0xb3, 0xe1, + 0xf3, 0x9b, 0xe5, 0x54, 0xef, 0x31, 0x86, 0xb3, 0xbd, 0x45, 0xa3, 0x03, 0xf4, 0x22, 0x99, 0x91, + 0xbf, 0x6a, 0xec, 0xcb, 0x80, 0x33, 0x75, 0x93, 0xf5, 0x0b, 0x64, 0x01, 0x60, 0xbe, 0xc1, 0x38, + 0x37, 0x2b, 0x6c, 0xdd, 0xe4, 0xdc, 0xae, 0x57, 0xd6, 0x03, 0x89, 0xbe, 0x75, 0xef, 0x91, 0xf3, + 0xbd, 0x26, 0xa2, 0x62, 0xa7, 0xc9, 0xc4, 0xc3, 0x0e, 0x44, 0x4f, 0xa1, 0x80, 0xa0, 0xdf, 0xc2, + 0x05, 0x1f, 0xbc, 0xfa, 0xd5, 0x37, 0x64, 0x7a, 0xec, 0x9a, 0x75, 0x6e, 0x5a, 0x72, 0x7b, 0x0d, + 0x66, 0x31, 0xbb, 0xd1, 0xb9, 0x2b, 0x28, 0x19, 0xde, 0x0e, 0x9e, 0x5f, 0xd0, 0xd6, 0xff, 0x3d, + 0x8c, 0x28, 0x0e, 0xe0, 0xee, 0x98, 0x97, 0xe0, 0x07, 0xd6, 0x8e, 0x90, 0x95, 0xe9, 0x76, 0x2b, + 0x3f, 0x01, 0x54, 0xf9, 0xd2, 0x30, 0x82, 0x26, 0x5d, 0x24, 0x53, 0xde, 0xec, 0x7a, 0xb3, 0xb6, + 0xc5, 0x5c, 0xcf, 0xb2, 0x2b, 0x33, 0xed, 0x56, 0x7e, 0x12, 0xe8, 0x6f, 0x02, 0xd9, 0x50, 0x3b, + 0xf4, 0x65, 0x32, 0x6b, 0x39, 0x75, 0xe1, 0x9a, 0x96, 0x28, 0x99, 0xde, 0xd3, 0x01, 0xac, 0x3c, + 0xb1, 0x72, 0xb2, 0xdd, 0xca, 0xcf, 0xf8, 0x63, 0xfe, 0xab, 0xa2, 0x9b, 0x40, 0x5f, 0x25, 0x27, + 0xad, 0x66, 0xad, 0x59, 0x35, 0x85, 0xbd, 0xc3, 0x4a, 0x15, 0x93, 0x97, 0x9a, 0x9c, 0x95, 0xb3, + 0xc3, 0x20, 0xe2, 0xb1, 0x76, 0x2b, 0x7f, 0x22, 0x18, 0x5e, 0x35, 0xf9, 0xdb, 0x9c, 0x95, 0x8d, + 0x28, 0x89, 0x9e, 0x26, 0xc3, 0x0f, 0x5d, 0xa7, 0x96, 0x1d, 0x01, 0xbe, 0xf1, 0x76, 0x2b, 0x0f, + 0x7d, 0x03, 0xfe, 0xd2, 0xf3, 0xe0, 0xa3, 0x9e, 0xe4, 0x51, 0x98, 0x31, 0xd9, 0x6e, 0xe5, 0xc7, + 0x2a, 0x28, 0xcf, 0x6f, 0x48, 0x73, 0x55, 0x9d, 0x0a, 0x2f, 0x6d, 0x55, 0x1d, 0xa7, 0x96, 0x1d, + 0x0b, 0xcc, 0x25, 0xa9, 0x2b, 0x92, 0x68, 0x04, 0x4d, 0xaa, 0x93, 0x51, 0x2e, 0x4c, 0xd1, 0xe4, + 0xd9, 0x71, 0x98, 0x49, 0xda, 0xad, 0x3c, 0x52, 0x0c, 0xfc, 0xa5, 0xa7, 0xc8, 0x90, 0x70, 0xb2, + 0x13, 0x30, 0x3e, 0xda, 0x6e, 0xe5, 0x87, 0x84, 0x63, 0x0c, 0x09, 0x47, 0x9a, 0x4d, 0x04, 0xdb, + 0xe6, 0x6d, 0x0f, 0x09, 0xcc, 0xa6, 0x8c, 0xc1, 0x26, 0x75, 0x13, 0xe8, 0x32, 0x39, 0xa1, 0xf2, + 0x7b, 0x37, 0xe5, 0x24, 0x08, 0x98, 0x6b, 0xb7, 0xf2, 0xaa, 0xf0, 0xfb, 0x72, 0xcc, 0x88, 0x50, + 0xe8, 0x12, 0x19, 0x96, 0xba, 0x64, 0xa7, 0x52, 0x7d, 0x89, 0x5e, 0x73, 0x2a, 0x06, 0xcc, 0xd7, + 0xdf, 0xcf, 0x90, 0xcc, 0x9a, 0x53, 0x91, 0x21, 0xc1, 0xdf, 0x70, 0xcf, 0x3b, 0xfd, 0xae, 0x0c, + 0x32, 0xc2, 0x69, 0xd8, 0x16, 0xcf, 0x0e, 0x9d, 0xcd, 0x5c, 0x9c, 0x30, 0xb0, 0x27, 0x9d, 0xb9, + 0x6c, 0x0a, 0xd3, 0xf3, 0x0f, 0x03, 0xda, 0x11, 0x9f, 0x93, 0x1b, 0x3f, 0xdc, 0xdb, 0xe7, 0x22, + 0xc6, 0x1b, 0x39, 0xaa, 0xf1, 0x46, 0x61, 0xe1, 0xb4, 0xc6, 0x0b, 0x1f, 0xac, 0xb1, 0x1e, 0x07, + 0xeb, 0x19, 0x22, 0xdd, 0x06, 0x17, 0x1a, 0x87, 0x85, 0xa6, 0xda, 0xad, 0xfc, 0x78, 0xd5, 0xa9, + 0x78, 0x0b, 0x74, 0x5a, 0x74, 0x81, 0x8c, 0xb9, 0xac, 0xe6, 0xec, 0xb0, 0x32, 0x78, 0xcd, 0xb8, + 0xe7, 0xa9, 0x48, 0x32, 0xfc, 0x86, 0x7e, 0x1d, 0xb3, 0xcc, 0xb8, 0x10, 0x90, 0x1c, 0x39, 0xfe, + 0x35, 0x8c, 0x19, 0x63, 0x1c, 0xdb, 0x7f, 0x2d, 0x64, 0xf8, 0x67, 0x35, 0x13, 0x7b, 0x56, 0x9f, + 0x20, 0x99, 0x8a, 0xc9, 0x31, 0x00, 0x8c, 0xb5, 0x5b, 0x79, 0xd9, 0x35, 0xe4, 0x1f, 0x69, 0xc6, + 0x4e, 0x51, 0x0a, 0x37, 0x1c, 0xcc, 0x58, 0xe9, 0xbc, 0x6b, 0xfd, 0x96, 0x5c, 0x03, 0xf0, 0x8f, + 0x06, 0x6b, 0xc8, 0xbe, 0x67, 0x07, 0x9a, 0x97, 0xb9, 0x65, 0xa3, 0x29, 0x70, 0xe3, 0x26, 0xda, + 0xad, 0xbc, 0x47, 0x30, 0xbc, 0x1f, 0x39, 0xc1, 0x4b, 0x17, 0xc7, 0x83, 0x09, 0x40, 0xc0, 0xcc, + 0x31, 0xf1, 0x5c, 0xc7, 0xba, 0x16, 0x39, 0xd4, 0xb9, 0xcc, 0x93, 0x91, 0x1d, 0xb3, 0xda, 0x64, + 0x78, 0x9c, 0x61, 0x6d, 0x20, 0x18, 0xde, 0x8f, 0xd4, 0x4d, 0xec, 0x35, 0x58, 0x76, 0x2a, 0xd0, + 0x4d, 0xf6, 0x0d, 0xf8, 0x4b, 0x8b, 0x64, 0xd2, 0xb4, 0x2c, 0xe6, 0xd7, 0x99, 0xa6, 0xe5, 0x09, + 0x5c, 0x39, 0xde, 0x6e, 0xe5, 0x89, 0x47, 0x5e, 0xb3, 0x65, 0x26, 0x14, 0xb4, 0x65, 0x70, 0xec, + 0x7c, 0x7d, 0x3e, 0x1e, 0x04, 0x47, 0xbc, 0xdf, 0x83, 0x8b, 0xfe, 0x24, 0xd1, 0x76, 0xb2, 0x33, + 0x30, 0x61, 0xa4, 0xdd, 0xca, 0x6b, 0x3b, 0x86, 0xb6, 0x23, 0x89, 0x6e, 0x76, 0x36, 0x20, 0xba, + 0x86, 0xe6, 0x4a, 0x22, 0xcf, 0x9e, 0x08, 0x88, 0xdc, 0xd0, 0xb8, 0x7e, 0x93, 0x9c, 0x55, 0x5d, + 0x0f, 0xae, 0xdf, 0x95, 0x3d, 0xf4, 0x0f, 0xf4, 0xd9, 0x53, 0x64, 0x74, 0x3b, 0xc8, 0x4e, 0x86, + 0x0d, 0xec, 0xe9, 0x7f, 0x19, 0xc3, 0xcf, 0xe8, 0xf1, 0xcc, 0xe8, 0xb9, 0x3a, 0x19, 0x45, 0x2f, + 0xd4, 0x82, 0x78, 0xec, 0x51, 0x0c, 0xfc, 0xed, 0xf8, 0xc5, 0x50, 0xac, 0x5f, 0x14, 0xc9, 0x64, + 0xc3, 0x74, 0x59, 0x5d, 0x78, 0xce, 0xef, 0x39, 0x28, 0xd8, 0xce, 0x23, 0x83, 0xf7, 0x2b, 0xed, + 0xc0, 0x4f, 0x86, 0x13, 0xfc, 0xa4, 0x48, 0x26, 0xf9, 0xb6, 0xf9, 0x5c, 0xa9, 0x59, 0xb7, 0xaa, + 0x8c, 0xa3, 0xd3, 0x82, 0x44, 0x49, 0x7e, 0x1b, 0xa8, 0x86, 0xd2, 0xee, 0xba, 0x82, 0x46, 0x7b, + 0x5c, 0x41, 0x61, 0x77, 0xe3, 0x25, 0xd7, 0x71, 0x7c, 0xa7, 0xee, 0x76, 0x37, 0x6e, 0x38, 0x8e, + 0x30, 0x22, 0x14, 0xb9, 0xa0, 0xbc, 0xab, 0x98, 0xc7, 0x3b, 0x1e, 0x2c, 0x08, 0x54, 0x60, 0x0a, + 0x9a, 0xf4, 0x06, 0x99, 0x76, 0xbd, 0x1c, 0x03, 0x17, 0xf3, 0x8e, 0xc0, 0x6c, 0xbb, 0x95, 0x9f, + 0xf2, 0x07, 0x80, 0x27, 0xd4, 0x93, 0x76, 0xaa, 0xd9, 0x75, 0xe6, 0xe2, 0x51, 0x00, 0x3b, 0x01, + 0xc1, 0xf0, 0x7e, 0x68, 0x81, 0x90, 0xb2, 0xfd, 0xf0, 0xa1, 0x6d, 0x35, 0xab, 0x62, 0x0f, 0x3d, + 0x1f, 0xcc, 0x14, 0x50, 0x0d, 0xa5, 0x0d, 0x57, 0x80, 0x23, 0xcc, 0x6a, 0x49, 0xe1, 0x9a, 0x52, + 0xae, 0x00, 0x39, 0x76, 0x37, 0x60, 0xed, 0x26, 0x48, 0xad, 0xd9, 0xae, 0x70, 0xcd, 0x12, 0x5c, + 0x48, 0xd3, 0x81, 0xd6, 0x40, 0x85, 0xcf, 0xd8, 0x41, 0x53, 0x7a, 0x0d, 0xb7, 0xdf, 0x63, 0x78, + 0x3c, 0xc0, 0x6b, 0x64, 0xdf, 0x80, 0xbf, 0x7e, 0x58, 0xaa, 0x42, 0x0a, 0x3c, 0x13, 0x0a, 0x4b, + 0x90, 0x06, 0x07, 0x09, 0x71, 0x28, 0x11, 0x99, 0x3d, 0x20, 0x11, 0xb9, 0x4c, 0x26, 0x84, 0x5d, + 0x63, 0x5c, 0x98, 0xb5, 0x06, 0x9e, 0x24, 0x40, 0xd7, 0x21, 0x1a, 0x41, 0x93, 0x5e, 0x27, 0x53, + 0xea, 0xae, 0x66, 0x29, 0x1c, 0x79, 0xd8, 0x92, 0xd0, 0x6e, 0x87, 0x7a, 0xf2, 0xb4, 0xa0, 0x53, + 0x9e, 0x84, 0xf9, 0x70, 0x5a, 0x3c, 0x8a, 0x81, 0xbf, 0xf4, 0x26, 0x99, 0x95, 0x2f, 0x93, 0xd2, + 0x43, 0xc6, 0x4a, 0x0d, 0xe6, 0xca, 0xf4, 0x2c, 0x3b, 0x07, 0x68, 0x4e, 0xb4, 0x5b, 0xf9, 0x69, + 0x39, 0x76, 0x8f, 0xb1, 0x75, 0xe6, 0xae, 0x9a, 0xdc, 0x08, 0x77, 0xa5, 0xaa, 0x35, 0xdb, 0xfb, + 0x37, 0x02, 0xd9, 0xc7, 0x02, 0x55, 0x6b, 0x36, 0x7c, 0xe0, 0x36, 0xfc, 0xc6, 0xe2, 0x3f, 0x17, + 0xc8, 0x08, 0x9c, 0x6d, 0xfa, 0x3d, 0x8d, 0x8c, 0x7a, 0x05, 0x68, 0x7a, 0xad, 0x47, 0x36, 0x12, + 0xad, 0x80, 0xe7, 0x16, 0x0f, 0xc3, 0xe2, 0x45, 0x0c, 0x7d, 0xe1, 0xfd, 0x3f, 0xfe, 0xe3, 0xbb, + 0x43, 0x79, 0x7a, 0xa6, 0x28, 0x39, 0xae, 0x2a, 0xff, 0x30, 0x42, 0xfd, 0xc7, 0x03, 0xf4, 0x13, + 0x8d, 0x4c, 0xa9, 0x35, 0x43, 0x7a, 0x33, 0xcd, 0x5a, 0xf1, 0xe5, 0xf2, 0xdc, 0xad, 0xbe, 0x78, + 0x11, 0xf0, 0x4b, 0x00, 0xf8, 0x79, 0x7a, 0x23, 0x01, 0xb0, 0x5a, 0xc5, 0x2c, 0x3e, 0xc2, 0x8f, + 0x1f, 0xfb, 0xc5, 0x47, 0x10, 0x8c, 0xf6, 0xe9, 0x47, 0x1a, 0x99, 0x51, 0xe5, 0x2e, 0x57, 0xab, + 0xe9, 0x74, 0x89, 0x2f, 0x9a, 0xa7, 0xd3, 0x25, 0xa1, 0x10, 0xae, 0x5f, 0x06, 0x5d, 0x16, 0xe8, + 0xb9, 0x14, 0xba, 0xd0, 0xbf, 0x69, 0xe4, 0x54, 0x17, 0x72, 0xac, 0x5d, 0xd2, 0xe5, 0x3e, 0x40, + 0x84, 0x0b, 0xb0, 0xb9, 0x95, 0xa3, 0x88, 0x40, 0x75, 0x6e, 0x82, 0x3a, 0xd7, 0xe9, 0x62, 0x0a, + 0x75, 0x90, 0x17, 0x77, 0x68, 0x9f, 0xfe, 0x55, 0x23, 0x8f, 0x29, 0x95, 0x46, 0x45, 0xb9, 0x57, + 0x52, 0x22, 0x4b, 0x2c, 0x2e, 0xe7, 0x96, 0x8f, 0x20, 0x01, 0x55, 0xbb, 0x0d, 0xaa, 0x2d, 0xd1, + 0xeb, 0x09, 0xaa, 0xd9, 0xf5, 0x04, 0xcd, 0x4a, 0x76, 0x79, 0x9f, 0xfe, 0x42, 0x23, 0xc7, 0xc3, + 0xca, 0xa5, 0xf6, 0xb9, 0x98, 0x32, 0x6f, 0x6a, 0x9f, 0x8b, 0xab, 0x01, 0xf7, 0xf4, 0x39, 0x45, + 0x13, 0x4e, 0xff, 0x80, 0xc0, 0x95, 0x82, 0xdc, 0xed, 0x94, 0x87, 0x37, 0xb6, 0x2c, 0x99, 0x7b, + 0xa9, 0x4f, 0x6e, 0x04, 0xff, 0x02, 0x80, 0x5f, 0xa4, 0xcf, 0x1e, 0x00, 0x3e, 0x60, 0x2b, 0x3e, + 0xf2, 0xfb, 0xfb, 0xf4, 0x4f, 0x1a, 0xa1, 0xd1, 0x42, 0x2d, 0x4d, 0x85, 0x27, 0xb1, 0x3c, 0x9c, + 0x7b, 0xb9, 0x5f, 0x76, 0xd4, 0x67, 0x19, 0xf4, 0xb9, 0x45, 0x5f, 0x4c, 0xd4, 0xa7, 0xfb, 0x1f, + 0x99, 0xc1, 0x6d, 0xad, 0x2a, 0xf6, 0x6b, 0x8d, 0x9c, 0x08, 0xaf, 0x20, 0xdd, 0xeb, 0xf6, 0x21, + 0x5c, 0xa4, 0xcf, 0x5d, 0x4a, 0x2c, 0x08, 0xeb, 0x57, 0x41, 0xab, 0x0b, 0x74, 0x21, 0xd5, 0x2e, + 0xd1, 0x0f, 0x35, 0x32, 0x1d, 0x2a, 0xbc, 0xd2, 0x17, 0x52, 0x7a, 0x49, 0xa4, 0x90, 0x9b, 0x7b, + 0xb1, 0x0f, 0x4e, 0x44, 0x5d, 0x00, 0xd4, 0x17, 0xe9, 0xf9, 0x04, 0xd4, 0x15, 0x26, 0x4a, 0x82, + 0x73, 0xff, 0x13, 0x0f, 0xfd, 0x40, 0x83, 0x2a, 0x6e, 0xba, 0x8b, 0x3a, 0x54, 0x16, 0x4e, 0x77, + 0x51, 0x87, 0x6b, 0xc6, 0xba, 0x0e, 0xf0, 0x4e, 0xd3, 0x5c, 0x02, 0x3c, 0x09, 0xe5, 0xa7, 0x5a, + 0x50, 0x10, 0xa5, 0x4b, 0x29, 0x17, 0xe9, 0xaa, 0xdc, 0xe6, 0x9e, 0x3f, 0x34, 0x1f, 0x22, 0x2c, + 0x02, 0xc2, 0x67, 0xe8, 0x85, 0x24, 0x03, 0x22, 0x83, 0xf4, 0xde, 0x32, 0xdb, 0xdd, 0xa7, 0x3f, + 0xd6, 0xc8, 0xa4, 0x2f, 0x45, 0x3a, 0xed, 0x52, 0x4a, 0xb7, 0xeb, 0x0b, 0x71, 0x4c, 0xfd, 0x58, + 0xbf, 0x00, 0x88, 0x9f, 0xa2, 0xf9, 0x1e, 0x88, 0xe9, 0xc7, 0x1a, 0x99, 0xed, 0xfe, 0x80, 0x4b, + 0x53, 0x85, 0xe1, 0x84, 0xaf, 0xc9, 0xb9, 0xdb, 0xfd, 0x31, 0xa7, 0x34, 0xb5, 0xd5, 0x8d, 0xf5, + 0x13, 0x8d, 0x4c, 0x2a, 0xdf, 0x68, 0xe9, 0xdd, 0x34, 0xcb, 0xf7, 0xfa, 0x16, 0x9c, 0x7b, 0xf5, + 0x88, 0x52, 0x50, 0x9b, 0x4b, 0xa0, 0xcd, 0xd3, 0x54, 0x4f, 0xca, 0x41, 0x15, 0xe0, 0xbf, 0xd4, + 0x42, 0xe5, 0x63, 0x9a, 0xf6, 0xc0, 0x47, 0x0b, 0xde, 0xb9, 0x9b, 0xfd, 0xb0, 0x22, 0xe4, 0x45, + 0x80, 0x7c, 0x85, 0x5e, 0x4a, 0xda, 0x80, 0x80, 0xa7, 0xe3, 0xee, 0x3f, 0xd7, 0xc8, 0x71, 0x45, + 0x96, 0xf4, 0xf8, 0x17, 0x53, 0x7a, 0x6e, 0xbf, 0xe8, 0xe3, 0x4b, 0xf0, 0x3d, 0x0d, 0xae, 0xa0, + 0xa7, 0xbf, 0xd2, 0xc8, 0x6c, 0xa8, 0x44, 0x2d, 0x71, 0xa7, 0xcd, 0x40, 0xe2, 0x2a, 0xe9, 0xb9, + 0xdb, 0xfd, 0x31, 0x23, 0xf6, 0x2b, 0x80, 0xfd, 0x3c, 0x7d, 0x3a, 0xc9, 0x59, 0x54, 0x2e, 0xfa, + 0xa9, 0x16, 0xa9, 0xfe, 0xd2, 0xb4, 0x39, 0x48, 0x7c, 0xed, 0x3a, 0xdd, 0x9d, 0x9f, 0x5c, 0x77, + 0xd7, 0x97, 0x40, 0x81, 0x67, 0x69, 0x21, 0x41, 0x81, 0x6a, 0x98, 0xaf, 0xe3, 0x3e, 0xbf, 0xd5, + 0x08, 0xed, 0x92, 0x29, 0xb7, 0x22, 0xed, 0x5d, 0x7d, 0x14, 0x6d, 0x92, 0xab, 0xeb, 0x3d, 0x6f, + 0xcd, 0x2e, 0x6d, 0xe8, 0x0f, 0x34, 0x32, 0x0c, 0xb7, 0x7e, 0xda, 0x3b, 0x50, 0xcd, 0x4b, 0x9e, + 0x3b, 0x14, 0x4f, 0xca, 0x84, 0xd7, 0xc2, 0x4c, 0x11, 0x8c, 0xfc, 0xa1, 0x0c, 0x2f, 0x41, 0x55, + 0x3d, 0x7d, 0x78, 0x89, 0x54, 0xe2, 0xfb, 0x03, 0x7b, 0x03, 0xc0, 0x16, 0xe9, 0xd5, 0x03, 0xc1, + 0x46, 0x5e, 0xb5, 0xdf, 0xd7, 0xc8, 0x98, 0x9f, 0xfa, 0x2d, 0xa6, 0x0d, 0x0c, 0x87, 0x35, 0x6c, + 0x57, 0x65, 0x5d, 0x3f, 0x07, 0x58, 0xcf, 0xd0, 0x27, 0x0f, 0xc0, 0xea, 0x05, 0x3d, 0x0f, 0x19, + 0x9e, 0xe7, 0xf4, 0x41, 0x2f, 0x52, 0x14, 0x4f, 0x1f, 0xf4, 0xa2, 0xe5, 0xec, 0xde, 0x41, 0x2f, + 0xe0, 0x81, 0x07, 0x5b, 0xb8, 0x7c, 0x9c, 0x0e, 0x75, 0x6c, 0x41, 0x3a, 0x1d, 0xea, 0xf8, 0x6a, + 0x75, 0xcf, 0x5c, 0xba, 0x1a, 0x46, 0xf9, 0x23, 0x8d, 0x90, 0xe0, 0xbf, 0x5d, 0xd0, 0x1b, 0x69, + 0x56, 0x8e, 0xfc, 0x07, 0x8e, 0xdc, 0xd2, 0x61, 0xd9, 0x10, 0xec, 0x33, 0x00, 0xf6, 0x1c, 0x7d, + 0x2a, 0x01, 0xac, 0xe8, 0xb0, 0xac, 0xbc, 0xfe, 0xe9, 0xe7, 0xf3, 0xda, 0x67, 0x9f, 0xcf, 0x6b, + 0x7f, 0xff, 0x7c, 0x5e, 0xfb, 0xe0, 0x8b, 0xf9, 0x63, 0x9f, 0x7d, 0x31, 0x7f, 0xec, 0xcf, 0x5f, + 0xcc, 0x1f, 0x7b, 0x70, 0xad, 0x62, 0x8b, 0xed, 0xe6, 0x56, 0xc1, 0x72, 0x6a, 0xaa, 0x18, 0x1f, + 0x47, 0x71, 0x37, 0x24, 0x71, 0xaf, 0xc1, 0xf8, 0xd6, 0x28, 0x64, 0x08, 0xcf, 0xfd, 0x27, 0x00, + 0x00, 0xff, 0xff, 0x6a, 0xc5, 0xf0, 0xd6, 0x5f, 0x34, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -3306,6 +3390,7 @@ type QueryClient interface { OutTxTrackerAll(ctx context.Context, in *QueryAllOutTxTrackerRequest, opts ...grpc.CallOption) (*QueryAllOutTxTrackerResponse, error) OutTxTrackerAllByChain(ctx context.Context, in *QueryAllOutTxTrackerByChainRequest, opts ...grpc.CallOption) (*QueryAllOutTxTrackerByChainResponse, error) InTxTrackerAllByChain(ctx context.Context, in *QueryAllInTxTrackerByChainRequest, opts ...grpc.CallOption) (*QueryAllInTxTrackerByChainResponse, error) + InTxTrackerAll(ctx context.Context, in *QueryAllInTxTrackersRequest, opts ...grpc.CallOption) (*QueryAllInTxTrackersResponse, error) // Queries a InTxHashToCctx by index. InTxHashToCctx(ctx context.Context, in *QueryGetInTxHashToCctxRequest, opts ...grpc.CallOption) (*QueryGetInTxHashToCctxResponse, error) // Queries a InTxHashToCctx data by index. @@ -3397,6 +3482,15 @@ func (c *queryClient) InTxTrackerAllByChain(ctx context.Context, in *QueryAllInT return out, nil } +func (c *queryClient) InTxTrackerAll(ctx context.Context, in *QueryAllInTxTrackersRequest, opts ...grpc.CallOption) (*QueryAllInTxTrackersResponse, error) { + out := new(QueryAllInTxTrackersResponse) + err := c.cc.Invoke(ctx, "/zetachain.zetacore.crosschain.Query/InTxTrackerAll", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *queryClient) InTxHashToCctx(ctx context.Context, in *QueryGetInTxHashToCctxRequest, opts ...grpc.CallOption) (*QueryGetInTxHashToCctxResponse, error) { out := new(QueryGetInTxHashToCctxResponse) err := c.cc.Invoke(ctx, "/zetachain.zetacore.crosschain.Query/InTxHashToCctx", in, out, opts...) @@ -3587,6 +3681,7 @@ type QueryServer interface { OutTxTrackerAll(context.Context, *QueryAllOutTxTrackerRequest) (*QueryAllOutTxTrackerResponse, error) OutTxTrackerAllByChain(context.Context, *QueryAllOutTxTrackerByChainRequest) (*QueryAllOutTxTrackerByChainResponse, error) InTxTrackerAllByChain(context.Context, *QueryAllInTxTrackerByChainRequest) (*QueryAllInTxTrackerByChainResponse, error) + InTxTrackerAll(context.Context, *QueryAllInTxTrackersRequest) (*QueryAllInTxTrackersResponse, error) // Queries a InTxHashToCctx by index. InTxHashToCctx(context.Context, *QueryGetInTxHashToCctxRequest) (*QueryGetInTxHashToCctxResponse, error) // Queries a InTxHashToCctx data by index. @@ -3644,6 +3739,9 @@ func (*UnimplementedQueryServer) OutTxTrackerAllByChain(ctx context.Context, req func (*UnimplementedQueryServer) InTxTrackerAllByChain(ctx context.Context, req *QueryAllInTxTrackerByChainRequest) (*QueryAllInTxTrackerByChainResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method InTxTrackerAllByChain not implemented") } +func (*UnimplementedQueryServer) InTxTrackerAll(ctx context.Context, req *QueryAllInTxTrackersRequest) (*QueryAllInTxTrackersResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method InTxTrackerAll not implemented") +} func (*UnimplementedQueryServer) InTxHashToCctx(ctx context.Context, req *QueryGetInTxHashToCctxRequest) (*QueryGetInTxHashToCctxResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method InTxHashToCctx not implemented") } @@ -3799,6 +3897,24 @@ func _Query_InTxTrackerAllByChain_Handler(srv interface{}, ctx context.Context, return interceptor(ctx, in, info, handler) } +func _Query_InTxTrackerAll_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(QueryAllInTxTrackersRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(QueryServer).InTxTrackerAll(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/zetachain.zetacore.crosschain.Query/InTxTrackerAll", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(QueryServer).InTxTrackerAll(ctx, req.(*QueryAllInTxTrackersRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _Query_InTxHashToCctx_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(QueryGetInTxHashToCctxRequest) if err := dec(in); err != nil { @@ -4183,6 +4299,10 @@ var _Query_serviceDesc = grpc.ServiceDesc{ MethodName: "InTxTrackerAllByChain", Handler: _Query_InTxTrackerAllByChain_Handler, }, + { + MethodName: "InTxTrackerAll", + Handler: _Query_InTxTrackerAll_Handler, + }, { MethodName: "InTxHashToCctx", Handler: _Query_InTxHashToCctx_Handler, @@ -4712,6 +4832,66 @@ func (m *QueryAllInTxTrackerByChainResponse) MarshalToSizedBuffer(dAtA []byte) ( return len(dAtA) - i, nil } +func (m *QueryAllInTxTrackersRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *QueryAllInTxTrackersRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryAllInTxTrackersRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + return len(dAtA) - i, nil +} + +func (m *QueryAllInTxTrackersResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *QueryAllInTxTrackersResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryAllInTxTrackersResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.InTxTracker) > 0 { + for iNdEx := len(m.InTxTracker) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.InTxTracker[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + func (m *QueryGetInTxHashToCctxRequest) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) @@ -6807,6 +6987,30 @@ func (m *QueryAllInTxTrackerByChainResponse) Size() (n int) { return n } +func (m *QueryAllInTxTrackersRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + return n +} + +func (m *QueryAllInTxTrackersResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.InTxTracker) > 0 { + for _, e := range m.InTxTracker { + l = e.Size() + n += 1 + l + sovQuery(uint64(l)) + } + } + return n +} + func (m *QueryGetInTxHashToCctxRequest) Size() (n int) { if m == nil { return 0 @@ -8740,6 +8944,140 @@ func (m *QueryAllInTxTrackerByChainResponse) Unmarshal(dAtA []byte) error { } return nil } +func (m *QueryAllInTxTrackersRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryAllInTxTrackersRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryAllInTxTrackersRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *QueryAllInTxTrackersResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryAllInTxTrackersResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryAllInTxTrackersResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field InTxTracker", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.InTxTracker = append(m.InTxTracker, InTxTracker{}) + if err := m.InTxTracker[len(m.InTxTracker)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipQuery(dAtA[iNdEx:]) + if err != nil { + return err + } + if (skippy < 0) || (iNdEx+skippy) < 0 { + return ErrInvalidLengthQuery + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} func (m *QueryGetInTxHashToCctxRequest) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 diff --git a/x/crosschain/types/query.pb.gw.go b/x/crosschain/types/query.pb.gw.go index 7f26ee8f6d..dceab7699e 100644 --- a/x/crosschain/types/query.pb.gw.go +++ b/x/crosschain/types/query.pb.gw.go @@ -307,6 +307,24 @@ func local_request_Query_InTxTrackerAllByChain_0(ctx context.Context, marshaler } +func request_Query_InTxTrackerAll_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryAllInTxTrackersRequest + var metadata runtime.ServerMetadata + + msg, err := client.InTxTrackerAll(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD)) + return msg, metadata, err + +} + +func local_request_Query_InTxTrackerAll_0(ctx context.Context, marshaler runtime.Marshaler, server QueryServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { + var protoReq QueryAllInTxTrackersRequest + var metadata runtime.ServerMetadata + + msg, err := server.InTxTrackerAll(ctx, &protoReq) + return msg, metadata, err + +} + func request_Query_InTxHashToCctx_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) { var protoReq QueryGetInTxHashToCctxRequest var metadata runtime.ServerMetadata @@ -1188,6 +1206,29 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv }) + mux.Handle("GET", pattern_Query_InTxTrackerAll_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + var stream runtime.ServerTransportStream + ctx = grpc.NewContextWithServerTransportStream(ctx, &stream) + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := local_request_Query_InTxTrackerAll_0(rctx, inboundMarshaler, server, req, pathParams) + md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer()) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_InTxTrackerAll_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + mux.Handle("GET", pattern_Query_InTxHashToCctx_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() @@ -1789,6 +1830,26 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie }) + mux.Handle("GET", pattern_Query_InTxTrackerAll_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { + ctx, cancel := context.WithCancel(req.Context()) + defer cancel() + inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req) + rctx, err := runtime.AnnotateContext(ctx, mux, req) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + resp, md, err := request_Query_InTxTrackerAll_0(rctx, inboundMarshaler, client, req, pathParams) + ctx = runtime.NewServerMetadataContext(ctx, md) + if err != nil { + runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err) + return + } + + forward_Query_InTxTrackerAll_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...) + + }) + mux.Handle("GET", pattern_Query_InTxHashToCctx_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) { ctx, cancel := context.WithCancel(req.Context()) defer cancel() @@ -2203,6 +2264,8 @@ var ( pattern_Query_InTxTrackerAllByChain_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"zeta-chain", "crosschain", "inTxTrackerByChain", "chain_id"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_InTxTrackerAll_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"zeta-chain", "crosschain", "inTxTrackers"}, "", runtime.AssumeColonVerbOpt(false))) + pattern_Query_InTxHashToCctx_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"zeta-chain", "crosschain", "inTxHashToCctx", "inTxHash"}, "", runtime.AssumeColonVerbOpt(false))) pattern_Query_InTxHashToCctxData_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 1, 0, 4, 1, 5, 3}, []string{"zeta-chain", "crosschain", "in_tx_hash_to_cctx_data", "inTxHash"}, "", runtime.AssumeColonVerbOpt(false))) @@ -2255,6 +2318,8 @@ var ( forward_Query_InTxTrackerAllByChain_0 = runtime.ForwardResponseMessage + forward_Query_InTxTrackerAll_0 = runtime.ForwardResponseMessage + forward_Query_InTxHashToCctx_0 = runtime.ForwardResponseMessage forward_Query_InTxHashToCctxData_0 = runtime.ForwardResponseMessage