diff --git a/CHANGELOG.md b/CHANGELOG.md index e59663687d..9c1b95b211 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -76,6 +76,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ * (rpc) [#545](https://github.com/crypto-org-chain/ethermint/pull/545) Fix state overwrite in debug trace APIs. * (rpc) [#554](https://github.com/crypto-org-chain/ethermint/pull/554) No trace detail on insufficient balance. * (rpc) [#558](https://github.com/crypto-org-chain/ethermint/pull/558) New tracer in predecessors to trace balance correctly when `debug_traceTransaction`. +* (rpc) [#559](https://github.com/crypto-org-chain/ethermint/pull/559) Use basefee of transaction height instead of minus one height when `debug_traceTransaction`. ### Improvements diff --git a/client/docs/swagger-ui/swagger.yaml b/client/docs/swagger-ui/swagger.yaml index eaa4cc6a98..bf0dd950b4 100644 --- a/client/docs/swagger-ui/swagger.yaml +++ b/client/docs/swagger-ui/swagger.yaml @@ -3730,12 +3730,19 @@ paths: format: byte - name: chain_id description: >- - chain_id is the the eip155 chain id parsed from the requested block + chain_id is the eip155 chain id parsed from the requested block header. in: query required: false type: string format: int64 + - name: base_fee + description: >- + base_fee is the base fee based on the block_number of requested + transaction. + in: query + required: false + type: string tags: - Query /ethermint/evm/v1/validator_account/{cons_address}: diff --git a/proto/ethermint/evm/v1/query.proto b/proto/ethermint/evm/v1/query.proto index 8898dd7287..e96a7af804 100644 --- a/proto/ethermint/evm/v1/query.proto +++ b/proto/ethermint/evm/v1/query.proto @@ -267,8 +267,10 @@ message QueryTraceTxRequest { google.protobuf.Timestamp block_time = 7 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true]; // proposer_address is the proposer of the requested block bytes proposer_address = 8 [(gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.ConsAddress"]; - // chain_id is the the eip155 chain id parsed from the requested block header + // chain_id is the eip155 chain id parsed from the requested block header int64 chain_id = 9; + // base_fee is the base fee based on the block_number of requested transaction + string base_fee = 10 [(gogoproto.customtype) = "cosmossdk.io/math.Int"]; } // QueryTraceTxResponse defines TraceTx response diff --git a/rpc/backend/tracing.go b/rpc/backend/tracing.go index fe70f9eca7..12282f42b4 100644 --- a/rpc/backend/tracing.go +++ b/rpc/backend/tracing.go @@ -26,6 +26,7 @@ import ( rpctypes "github.com/evmos/ethermint/rpc/types" ethermint "github.com/evmos/ethermint/types" evmtypes "github.com/evmos/ethermint/x/evm/types" + feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" "github.com/pkg/errors" ) @@ -117,6 +118,12 @@ func (b *Backend) TraceTransaction(hash common.Hash, config *rpctypes.TraceConfi // 0 is a special value in `ContextWithHeight` contextHeight = 1 } + // Get basefee from transaction height + res, err := b.queryClient.FeeMarket.Params(rpctypes.ContextWithHeight(transaction.Height), &feemarkettypes.QueryParamsRequest{}) + if err != nil { + return nil, err + } + traceTxRequest.BaseFee = &res.Params.BaseFee traceResult, err := b.queryClient.TraceTx(rpctypes.ContextWithHeight(contextHeight), &traceTxRequest) if err != nil { return nil, err diff --git a/rpc/backend/tracing_test.go b/rpc/backend/tracing_test.go index 1cf69ffe61..454da33611 100644 --- a/rpc/backend/tracing_test.go +++ b/rpc/backend/tracing_test.go @@ -129,6 +129,8 @@ func (suite *BackendTestSuite) TestTraceTransaction() { queryClient := suite.backend.queryClient.QueryClient.(*mocks.EVMQueryClient) client := suite.backend.clientCtx.Client.(*mocks.Client) RegisterBlockMultipleTxs(client, 1, []types.Tx{txBz, txBz2}) + feeMarketClient := suite.backend.queryClient.FeeMarket.(*mocks.FeeMarketQueryClient) + RegisterFeeMarketParams(feeMarketClient, 1) RegisterTraceTransactionWithPredecessors(queryClient, msgEthereumTx, []*evmtypes.MsgEthereumTx{msgEthereumTx}) }, &types.Block{Header: types.Header{Height: 1, ChainID: ChainID}, Data: types.Data{Txs: []types.Tx{txBz, txBz2}}}, @@ -169,6 +171,8 @@ func (suite *BackendTestSuite) TestTraceTransaction() { queryClient := suite.backend.queryClient.QueryClient.(*mocks.EVMQueryClient) client := suite.backend.clientCtx.Client.(*mocks.Client) RegisterBlock(client, 1, txBz) + feeMarketClient := suite.backend.queryClient.FeeMarket.(*mocks.FeeMarketQueryClient) + RegisterFeeMarketParams(feeMarketClient, 1) RegisterTraceTransaction(queryClient, msgEthereumTx) }, &types.Block{Header: types.Header{Height: 1}, Data: types.Data{Txs: []types.Tx{txBz}}}, diff --git a/x/evm/keeper/grpc_query.go b/x/evm/keeper/grpc_query.go index a173cff820..038f90acfb 100644 --- a/x/evm/keeper/grpc_query.go +++ b/x/evm/keeper/grpc_query.go @@ -422,6 +422,7 @@ func execTrace[T traceRequest]( c context.Context, req T, k Keeper, + baseFee *big.Int, msgCb func( ctx sdk.Context, cfg *EVMConfig, @@ -459,6 +460,10 @@ func execTrace[T traceRequest]( return nil, status.Errorf(codes.Internal, "failed to load evm config: %s", err.Error()) } + if baseFee != nil { + cfg.BaseFee = baseFee + } + msg, err := msgCb(ctx, cfg, req.GetTraceConfig()) if err != nil { return nil, status.Error(codes.Internal, err.Error()) @@ -482,10 +487,15 @@ func execTrace[T traceRequest]( // executes the given message in the provided environment. The return value will // be tracer dependent. func (k Keeper) TraceTx(c context.Context, req *types.QueryTraceTxRequest) (*types.QueryTraceTxResponse, error) { + var baseFee *big.Int + if req != nil && req.BaseFee != nil { + baseFee = big.NewInt(req.BaseFee.Int64()) + } resultData, err := execTrace( c, req, k, + baseFee, func(ctx sdk.Context, cfg *EVMConfig, traceConfig *types.TraceConfig) (*core.Message, error) { signer := ethtypes.MakeSigner(cfg.ChainConfig, big.NewInt(ctx.BlockHeight())) tracer, err := newTacer(&logger.Config{}, cfg.TxConfig, traceConfig) @@ -608,6 +618,7 @@ func (k Keeper) TraceCall(c context.Context, req *types.QueryTraceCallRequest) ( c, req, k, + nil, func(ctx sdk.Context, cfg *EVMConfig, _ *types.TraceConfig) (*core.Message, error) { var args types.TransactionArgs err := json.Unmarshal(req.Args, &args) diff --git a/x/evm/types/interfaces.go b/x/evm/types/interfaces.go index 3d30a27f6c..fea304940e 100644 --- a/x/evm/types/interfaces.go +++ b/x/evm/types/interfaces.go @@ -63,6 +63,7 @@ type StakingKeeper interface { // FeeMarketKeeper type FeeMarketKeeper interface { GetBaseFee(ctx sdk.Context) *big.Int + CalculateBaseFee(ctx sdk.Context) *big.Int GetParams(ctx sdk.Context) feemarkettypes.Params } diff --git a/x/evm/types/query.pb.go b/x/evm/types/query.pb.go index 253948b1c9..dfbdc84575 100644 --- a/x/evm/types/query.pb.go +++ b/x/evm/types/query.pb.go @@ -951,8 +951,10 @@ type QueryTraceTxRequest struct { BlockTime time.Time `protobuf:"bytes,7,opt,name=block_time,json=blockTime,proto3,stdtime" json:"block_time"` // proposer_address is the proposer of the requested block ProposerAddress github_com_cosmos_cosmos_sdk_types.ConsAddress `protobuf:"bytes,8,opt,name=proposer_address,json=proposerAddress,proto3,casttype=github.com/cosmos/cosmos-sdk/types.ConsAddress" json:"proposer_address,omitempty"` - // chain_id is the the eip155 chain id parsed from the requested block header + // chain_id is the eip155 chain id parsed from the requested block header ChainId int64 `protobuf:"varint,9,opt,name=chain_id,json=chainId,proto3" json:"chain_id,omitempty"` + // base_fee is the base fee based on the block_number of requested transaction + BaseFee *cosmossdk_io_math.Int `protobuf:"bytes,10,opt,name=base_fee,json=baseFee,proto3,customtype=cosmossdk.io/math.Int" json:"base_fee,omitempty"` } func (m *QueryTraceTxRequest) Reset() { *m = QueryTraceTxRequest{} } @@ -1500,105 +1502,106 @@ func init() { func init() { proto.RegisterFile("ethermint/evm/v1/query.proto", fileDescriptor_e15a877459347994) } var fileDescriptor_e15a877459347994 = []byte{ - // 1566 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x58, 0x4d, 0x6f, 0x13, 0xc7, - 0x1b, 0xcf, 0xc6, 0x4e, 0xec, 0x8c, 0x13, 0xc8, 0x7f, 0x48, 0xfe, 0x38, 0xdb, 0xc4, 0x0e, 0x1b, - 0xf2, 0x06, 0x61, 0xb7, 0x71, 0x11, 0x52, 0xb9, 0x14, 0x62, 0x05, 0x4a, 0x81, 0x8a, 0x6e, 0xa3, - 0x1e, 0x2a, 0x55, 0xd6, 0x78, 0x3d, 0xac, 0xad, 0x78, 0x77, 0xcc, 0xce, 0xd8, 0x75, 0x78, 0xe9, - 0xa1, 0x6a, 0x29, 0x15, 0x52, 0x85, 0xd4, 0x7b, 0xc5, 0x37, 0xe8, 0xd7, 0xe0, 0x88, 0x54, 0x55, - 0xaa, 0x7a, 0xa0, 0x08, 0x7a, 0xe8, 0x27, 0xe8, 0xa1, 0xa7, 0x6a, 0x66, 0x67, 0xed, 0xb5, 0xd7, - 0x6b, 0x87, 0x8a, 0x4a, 0x48, 0x3d, 0x79, 0x5e, 0x9e, 0x79, 0x9e, 0xdf, 0xcc, 0xf3, 0xf6, 0x5b, - 0x83, 0x45, 0xcc, 0xaa, 0xd8, 0x73, 0x6a, 0x2e, 0x33, 0x70, 0xcb, 0x31, 0x5a, 0xdb, 0xc6, 0xad, - 0x26, 0xf6, 0x0e, 0xf4, 0x86, 0x47, 0x18, 0x81, 0xb3, 0x9d, 0x5d, 0x1d, 0xb7, 0x1c, 0xbd, 0xb5, - 0xad, 0x9e, 0xb2, 0x08, 0x75, 0x08, 0x35, 0xca, 0x88, 0x62, 0x5f, 0xd4, 0x68, 0x6d, 0x97, 0x31, - 0x43, 0xdb, 0x46, 0x03, 0xd9, 0x35, 0x17, 0xb1, 0x1a, 0x71, 0xfd, 0xd3, 0xea, 0x42, 0x44, 0x37, - 0x6b, 0xcb, 0x2d, 0x35, 0xb2, 0x55, 0x27, 0xb6, 0xdc, 0x5b, 0x8a, 0xec, 0x35, 0x90, 0x87, 0x1c, - 0x2a, 0xb7, 0x57, 0xa2, 0x5a, 0x3d, 0x64, 0xe1, 0x92, 0x45, 0xdc, 0x9b, 0xb5, 0x40, 0xc7, 0x9c, - 0x4d, 0x6c, 0x22, 0x86, 0x06, 0x1f, 0xc9, 0xd5, 0x45, 0x9b, 0x10, 0xbb, 0x8e, 0x0d, 0xd4, 0xa8, - 0x19, 0xc8, 0x75, 0x09, 0x13, 0x68, 0x03, 0xc5, 0x79, 0xb9, 0x2b, 0x66, 0xe5, 0xe6, 0x4d, 0x83, - 0xd5, 0x1c, 0x4c, 0x19, 0x72, 0x1a, 0xbe, 0x80, 0xf6, 0x2e, 0x38, 0xf6, 0x11, 0xbf, 0xf1, 0x45, - 0xcb, 0x22, 0x4d, 0x97, 0x99, 0xf8, 0x56, 0x13, 0x53, 0x06, 0xb3, 0x20, 0x85, 0x2a, 0x15, 0x0f, - 0x53, 0x9a, 0x55, 0x96, 0x95, 0x8d, 0x29, 0x33, 0x98, 0x9e, 0x4f, 0x3f, 0x78, 0x9c, 0x1f, 0xfb, - 0xe3, 0x71, 0x7e, 0x4c, 0xb3, 0xc0, 0x5c, 0xef, 0x51, 0xda, 0x20, 0x2e, 0xc5, 0xfc, 0x6c, 0x19, - 0xd5, 0x91, 0x6b, 0xe1, 0xe0, 0xac, 0x9c, 0xc2, 0xb7, 0xc0, 0x94, 0x45, 0x2a, 0xb8, 0x54, 0x45, - 0xb4, 0x9a, 0x1d, 0x17, 0x7b, 0x69, 0xbe, 0xf0, 0x3e, 0xa2, 0x55, 0x38, 0x07, 0x26, 0x5c, 0xc2, - 0x0f, 0x25, 0x96, 0x95, 0x8d, 0xa4, 0xe9, 0x4f, 0xb4, 0xf7, 0xc0, 0x82, 0x30, 0x52, 0x14, 0x2e, - 0xfa, 0x07, 0x28, 0xef, 0x2b, 0x40, 0x1d, 0xa4, 0x41, 0x82, 0x5d, 0x05, 0x47, 0x7c, 0xef, 0x97, - 0x7a, 0x35, 0xcd, 0xf8, 0xab, 0x17, 0xfd, 0x45, 0xa8, 0x82, 0x34, 0xe5, 0x46, 0x39, 0xbe, 0x71, - 0x81, 0xaf, 0x33, 0xe7, 0x2a, 0x90, 0xaf, 0xb5, 0xe4, 0x36, 0x9d, 0x32, 0xf6, 0xe4, 0x0d, 0x66, - 0xe4, 0xea, 0x87, 0x62, 0x51, 0xbb, 0x0a, 0x16, 0x05, 0x8e, 0x4f, 0x50, 0xbd, 0x56, 0x41, 0x8c, - 0x78, 0x7d, 0x97, 0x39, 0x01, 0xa6, 0x2d, 0xe2, 0xf6, 0xe3, 0xc8, 0xf0, 0xb5, 0x8b, 0x91, 0x5b, - 0x3d, 0x54, 0xc0, 0x52, 0x8c, 0x36, 0x79, 0xb1, 0x75, 0x70, 0x34, 0x40, 0xd5, 0xab, 0x31, 0x00, - 0xfb, 0x1a, 0xaf, 0x16, 0x04, 0xd1, 0x8e, 0xef, 0xe7, 0x57, 0x71, 0xcf, 0xdb, 0x32, 0x88, 0x3a, - 0x47, 0x47, 0x05, 0x91, 0x76, 0x55, 0x1a, 0xfb, 0x98, 0x11, 0x0f, 0xd9, 0xa3, 0x8d, 0xc1, 0x59, - 0x90, 0xd8, 0xc7, 0x07, 0x32, 0xde, 0xf8, 0x30, 0x64, 0x7e, 0x4b, 0x9a, 0xef, 0x28, 0x93, 0xe6, - 0xe7, 0xc0, 0x44, 0x0b, 0xd5, 0x9b, 0x81, 0x71, 0x7f, 0xa2, 0x9d, 0x03, 0xb3, 0x32, 0x94, 0x2a, - 0xaf, 0x74, 0xc9, 0x75, 0xf0, 0xbf, 0xd0, 0x39, 0x69, 0x02, 0x82, 0x24, 0x8f, 0x7d, 0x71, 0x6a, - 0xda, 0x14, 0x63, 0xed, 0x36, 0x80, 0x42, 0x70, 0xaf, 0x7d, 0x8d, 0xd8, 0x34, 0x30, 0x01, 0x41, - 0x52, 0x64, 0x8c, 0xaf, 0x5f, 0x8c, 0xe1, 0x25, 0x00, 0xba, 0xb5, 0x49, 0xdc, 0x2d, 0x53, 0x58, - 0xd3, 0xfd, 0xa0, 0xd5, 0x79, 0x21, 0xd3, 0xfd, 0x9a, 0x27, 0x0b, 0x99, 0x7e, 0xa3, 0xfb, 0x54, - 0x66, 0xe8, 0x64, 0x08, 0xe4, 0xb7, 0x8a, 0x7c, 0xd8, 0xc0, 0xb8, 0xc4, 0xb9, 0x09, 0x92, 0x75, - 0x62, 0xf3, 0xdb, 0x25, 0x36, 0x32, 0x85, 0x79, 0xbd, 0xbf, 0x7c, 0xea, 0xd7, 0x88, 0x6d, 0x0a, - 0x11, 0x78, 0x79, 0x00, 0xa8, 0xf5, 0x91, 0xa0, 0x7c, 0x3b, 0x61, 0x54, 0xda, 0x9c, 0x7c, 0x87, - 0x1b, 0xa2, 0x48, 0x4a, 0xdc, 0xda, 0x75, 0x09, 0x30, 0x58, 0x95, 0x00, 0xcf, 0x81, 0x49, 0xbf, - 0x98, 0x8a, 0x07, 0xca, 0x14, 0xb2, 0x51, 0x88, 0xfe, 0x89, 0x9d, 0xe4, 0x93, 0x67, 0xf9, 0x31, - 0x53, 0x4a, 0x6b, 0x3f, 0x2b, 0xe0, 0xc8, 0x2e, 0xab, 0x16, 0x51, 0xbd, 0x1e, 0x7a, 0x69, 0xe4, - 0xd9, 0x34, 0xf0, 0x09, 0x1f, 0xc3, 0xe3, 0x20, 0x65, 0x23, 0x5a, 0xb2, 0x50, 0x43, 0xa6, 0xc7, - 0xa4, 0x8d, 0x68, 0x11, 0x35, 0xe0, 0x67, 0x60, 0xb6, 0xe1, 0x91, 0x06, 0xa1, 0xd8, 0xeb, 0xa4, - 0x18, 0x4f, 0x8f, 0xe9, 0x9d, 0xc2, 0x5f, 0xcf, 0xf2, 0xba, 0x5d, 0x63, 0xd5, 0x66, 0x59, 0xb7, - 0x88, 0x63, 0xc8, 0xfe, 0xe2, 0xff, 0x9c, 0xa1, 0x95, 0x7d, 0x83, 0x1d, 0x34, 0x30, 0xd5, 0x8b, - 0xdd, 0xdc, 0x36, 0x8f, 0x06, 0xba, 0x82, 0xbc, 0x5c, 0x00, 0x69, 0xab, 0x8a, 0x6a, 0x6e, 0xa9, - 0x56, 0xc9, 0x26, 0x97, 0x95, 0x8d, 0x84, 0x99, 0x12, 0xf3, 0x2b, 0x15, 0xb8, 0x08, 0xa6, 0x48, - 0x0b, 0x7b, 0x5e, 0xad, 0x82, 0x69, 0x76, 0x42, 0x60, 0xed, 0x2e, 0x68, 0x7b, 0xe0, 0xd8, 0x2e, - 0x65, 0x35, 0x07, 0x31, 0x7c, 0x19, 0x75, 0x9f, 0x69, 0x16, 0x24, 0x6c, 0xe4, 0x5f, 0x2d, 0x69, - 0xf2, 0x21, 0x5f, 0xf1, 0x30, 0x13, 0xb7, 0x9a, 0x36, 0xf9, 0x90, 0xdb, 0x6c, 0x39, 0x25, 0xec, - 0x79, 0xc4, 0xcf, 0xf4, 0x29, 0x33, 0xd5, 0x72, 0x76, 0xf9, 0x54, 0x7b, 0x9e, 0x08, 0xc2, 0x83, - 0x77, 0xa6, 0xbd, 0x76, 0xf0, 0x64, 0xdb, 0x20, 0xe1, 0x50, 0x5b, 0x3e, 0x7d, 0x3e, 0xfa, 0xf4, - 0xd7, 0xa9, 0xbd, 0xcb, 0xd7, 0x70, 0xd3, 0xd9, 0x6b, 0x9b, 0x5c, 0x16, 0x5e, 0x00, 0xd3, 0xe1, - 0xf6, 0x26, 0x2c, 0x65, 0x0a, 0x4b, 0xd1, 0xb3, 0xc2, 0x54, 0x51, 0x08, 0x99, 0x19, 0xd6, 0x9d, - 0xc0, 0x22, 0x98, 0x6e, 0x78, 0xb8, 0x82, 0x2d, 0x4c, 0x29, 0xf1, 0x68, 0x36, 0x29, 0x62, 0x73, - 0xa4, 0xf5, 0x9e, 0x43, 0xbc, 0xe0, 0x96, 0xeb, 0xc4, 0xda, 0x0f, 0x4a, 0xdb, 0x84, 0x78, 0xe4, - 0x8c, 0x58, 0xf3, 0x0b, 0x1b, 0x5c, 0x02, 0xc0, 0x17, 0x11, 0xf9, 0x37, 0x29, 0x5e, 0x64, 0x4a, - 0xac, 0x88, 0x96, 0x55, 0x0c, 0xb6, 0x79, 0x57, 0xcd, 0xa6, 0xc4, 0x35, 0x54, 0xdd, 0x6f, 0xb9, - 0x7a, 0xd0, 0x72, 0xf5, 0xbd, 0xa0, 0xe5, 0xee, 0xa4, 0x79, 0xfc, 0x3d, 0xfa, 0x2d, 0xaf, 0x48, - 0x25, 0x7c, 0x67, 0x60, 0x18, 0xa5, 0xff, 0x9d, 0x30, 0x9a, 0xea, 0x09, 0xa3, 0x0f, 0x92, 0xe9, - 0xf1, 0xd9, 0x84, 0x99, 0x66, 0xed, 0x52, 0xcd, 0xad, 0xe0, 0xb6, 0x76, 0x4a, 0x16, 0xc3, 0x8e, - 0x87, 0xbb, 0x95, 0xaa, 0x82, 0x18, 0x0a, 0xb2, 0x82, 0x8f, 0xb5, 0x6f, 0x12, 0x60, 0xbe, 0x2b, - 0xfc, 0xa6, 0xe6, 0x50, 0x7f, 0xa4, 0x25, 0x5f, 0x39, 0xd2, 0xde, 0x90, 0x20, 0x09, 0x7b, 0x31, - 0xdd, 0xe3, 0x45, 0x6d, 0x0b, 0xfc, 0xbf, 0xdf, 0x11, 0x43, 0xfc, 0xf6, 0x5d, 0x22, 0x2c, 0xbe, - 0xc3, 0x0d, 0x84, 0x32, 0x99, 0xb5, 0x83, 0x3a, 0x3f, 0x3a, 0x93, 0x59, 0x9b, 0xbe, 0x86, 0x4c, - 0xfe, 0xaf, 0x27, 0xa1, 0x76, 0x06, 0x1c, 0x8f, 0xf8, 0x63, 0x88, 0xff, 0xe6, 0x3b, 0x54, 0x8b, - 0xe2, 0x4b, 0x38, 0x68, 0xe9, 0xda, 0xb5, 0x0e, 0x8d, 0x92, 0xcb, 0x52, 0xc5, 0x59, 0x90, 0xe6, - 0x7d, 0xb7, 0x74, 0x13, 0x4b, 0x2a, 0xb3, 0xb3, 0xf0, 0xeb, 0xb3, 0xfc, 0xbc, 0x8f, 0x9e, 0x56, - 0xf6, 0xf5, 0x1a, 0x31, 0x1c, 0xc4, 0xaa, 0xfa, 0x15, 0x97, 0x71, 0x8a, 0x25, 0x4e, 0x17, 0xfe, - 0x9c, 0x01, 0x13, 0x42, 0x1d, 0xfc, 0x5a, 0x01, 0x29, 0xc9, 0x2c, 0xe1, 0x6a, 0xd4, 0xad, 0x03, - 0x3e, 0x1d, 0xd4, 0xb5, 0x51, 0x62, 0x3e, 0x34, 0xed, 0xf4, 0x97, 0x3f, 0xfd, 0xfe, 0xfd, 0xf8, - 0x2a, 0x5c, 0x31, 0x22, 0x1f, 0x3f, 0x92, 0x5d, 0x1a, 0x77, 0xa4, 0x2b, 0xee, 0xc1, 0x1f, 0x14, - 0x30, 0xd3, 0x43, 0xe0, 0xe1, 0xe9, 0x18, 0x33, 0x83, 0x3e, 0x14, 0xd4, 0xad, 0xc3, 0x09, 0x4b, - 0x64, 0x05, 0x81, 0x6c, 0x0b, 0x9e, 0x8a, 0x22, 0x0b, 0xbe, 0x15, 0x22, 0x00, 0x7f, 0x54, 0xc0, - 0x6c, 0x3f, 0x17, 0x87, 0x7a, 0x8c, 0xd9, 0x98, 0x4f, 0x00, 0xd5, 0x38, 0xb4, 0xbc, 0x44, 0x7a, - 0x5e, 0x20, 0x3d, 0x0b, 0x0b, 0x51, 0xa4, 0xad, 0xe0, 0x4c, 0x17, 0x6c, 0xf8, 0xf3, 0xe2, 0x1e, - 0xbc, 0xaf, 0x80, 0x94, 0x64, 0xdd, 0xb1, 0xae, 0xed, 0x25, 0xf4, 0xb1, 0xae, 0xed, 0x23, 0xef, - 0xda, 0x96, 0x80, 0xb5, 0x06, 0x4f, 0x46, 0x61, 0x49, 0x16, 0x4f, 0x43, 0x4f, 0xf7, 0x50, 0x01, - 0x29, 0xc9, 0xbf, 0x63, 0x81, 0xf4, 0x92, 0xfd, 0x58, 0x20, 0x7d, 0x34, 0x5e, 0xdb, 0x16, 0x40, - 0x4e, 0xc3, 0xcd, 0x28, 0x10, 0xea, 0x8b, 0x76, 0x71, 0x18, 0x77, 0xf6, 0xf1, 0xc1, 0x3d, 0x78, - 0x1b, 0x24, 0x39, 0x4d, 0x87, 0x5a, 0x6c, 0xc8, 0x74, 0xb8, 0xbf, 0xba, 0x32, 0x54, 0x46, 0x62, - 0xd8, 0x14, 0x18, 0x56, 0xe0, 0x89, 0x41, 0xd1, 0x54, 0xe9, 0x79, 0x89, 0xcf, 0xc1, 0xa4, 0xcf, - 0x54, 0xe1, 0xc9, 0x18, 0xcd, 0x3d, 0x84, 0x58, 0x5d, 0x1d, 0x21, 0x25, 0x11, 0x2c, 0x0b, 0x04, - 0x2a, 0xcc, 0x1a, 0x31, 0xff, 0x42, 0xc0, 0x36, 0x48, 0x49, 0x26, 0x0c, 0x97, 0xa3, 0x3a, 0x7b, - 0x49, 0xb2, 0xba, 0x3e, 0xaa, 0x35, 0x04, 0x76, 0x35, 0x61, 0x77, 0x11, 0xaa, 0x51, 0xbb, 0x98, - 0x55, 0x4b, 0x16, 0x37, 0xf7, 0x05, 0xc8, 0x84, 0xc8, 0xea, 0x21, 0xac, 0x0f, 0xb8, 0xf3, 0x00, - 0xb6, 0xab, 0xad, 0x09, 0xdb, 0xcb, 0x30, 0x37, 0xc0, 0xb6, 0x14, 0x2f, 0x71, 0x0e, 0x7c, 0x17, - 0xa4, 0x24, 0xdd, 0x89, 0x8d, 0xbd, 0x5e, 0xc2, 0x1b, 0x1b, 0x7b, 0x7d, 0xac, 0x69, 0xd8, 0xed, - 0xfd, 0x9e, 0xc9, 0xda, 0xf0, 0x81, 0x02, 0x40, 0xb7, 0xf0, 0xc3, 0x8d, 0x61, 0xaa, 0xc3, 0xbd, - 0x5a, 0xdd, 0x3c, 0x84, 0xa4, 0xc4, 0xb1, 0x2a, 0x70, 0xe4, 0xe1, 0x52, 0x1c, 0x0e, 0xd1, 0x05, - 0xe1, 0x57, 0x0a, 0x98, 0xea, 0x50, 0x08, 0xb8, 0x3e, 0x4c, 0x7f, 0xd8, 0x1d, 0x1b, 0xa3, 0x05, - 0x25, 0x8e, 0x93, 0x02, 0x47, 0x0e, 0x2e, 0xc6, 0xe1, 0x10, 0xf1, 0x70, 0x97, 0x17, 0x25, 0xd1, - 0x85, 0x86, 0x14, 0xa5, 0x70, 0xeb, 0x1b, 0x52, 0x94, 0x7a, 0x5a, 0xe1, 0x30, 0x7f, 0x04, 0x2d, - 0x72, 0xe7, 0xc2, 0x93, 0x17, 0x39, 0xe5, 0xe9, 0x8b, 0x9c, 0xf2, 0xfc, 0x45, 0x4e, 0x79, 0xf4, - 0x32, 0x37, 0xf6, 0xf4, 0x65, 0x6e, 0xec, 0x97, 0x97, 0xb9, 0xb1, 0x4f, 0xd7, 0x42, 0x14, 0x00, - 0xb7, 0x38, 0x03, 0xe8, 0x6a, 0x69, 0x0b, 0x3d, 0x82, 0x06, 0x94, 0x27, 0x05, 0xe3, 0x78, 0xe7, - 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x2b, 0x0f, 0xce, 0x6b, 0x84, 0x14, 0x00, 0x00, + // 1576 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x58, 0xcf, 0x6f, 0x1b, 0xc5, + 0x17, 0xcf, 0xc6, 0x4e, 0xec, 0x8c, 0x93, 0x36, 0xdf, 0x69, 0xf2, 0xad, 0xb3, 0x24, 0x76, 0xba, + 0x69, 0x7e, 0xb5, 0xe9, 0x2e, 0x31, 0x55, 0x25, 0x7a, 0xa1, 0x8d, 0x95, 0x96, 0xd2, 0x16, 0x95, + 0x25, 0xe2, 0x80, 0x84, 0xac, 0xf1, 0x7a, 0xba, 0xb6, 0xe2, 0xdd, 0x71, 0x77, 0xc6, 0xc6, 0xe9, + 0x0f, 0x0e, 0x08, 0x4a, 0x51, 0x25, 0x54, 0x09, 0x89, 0x23, 0xea, 0x7f, 0xc0, 0xbf, 0xd1, 0x63, + 0x25, 0x84, 0x84, 0x38, 0x14, 0xd4, 0x72, 0xe0, 0x2f, 0xe0, 0xc0, 0x09, 0xcd, 0xec, 0xac, 0xbd, + 0xf6, 0x7a, 0xed, 0x14, 0x15, 0xa9, 0x12, 0x27, 0xef, 0xbc, 0x79, 0xf3, 0xde, 0xe7, 0xcd, 0xfb, + 0x39, 0x06, 0x8b, 0x98, 0x55, 0xb1, 0xe7, 0xd4, 0x5c, 0x66, 0xe0, 0x96, 0x63, 0xb4, 0xb6, 0x8d, + 0x5b, 0x4d, 0xec, 0x1d, 0xe8, 0x0d, 0x8f, 0x30, 0x02, 0x67, 0x3b, 0xbb, 0x3a, 0x6e, 0x39, 0x7a, + 0x6b, 0x5b, 0x3d, 0x65, 0x11, 0xea, 0x10, 0x6a, 0x94, 0x11, 0xc5, 0x3e, 0xab, 0xd1, 0xda, 0x2e, + 0x63, 0x86, 0xb6, 0x8d, 0x06, 0xb2, 0x6b, 0x2e, 0x62, 0x35, 0xe2, 0xfa, 0xa7, 0xd5, 0x85, 0x88, + 0x6c, 0xd6, 0x96, 0x5b, 0x6a, 0x64, 0xab, 0x4e, 0x6c, 0xb9, 0xb7, 0x14, 0xd9, 0x6b, 0x20, 0x0f, + 0x39, 0x54, 0x6e, 0xaf, 0x44, 0xa5, 0x7a, 0xc8, 0xc2, 0x25, 0x8b, 0xb8, 0x37, 0x6b, 0x81, 0x8c, + 0x39, 0x9b, 0xd8, 0x44, 0x7c, 0x1a, 0xfc, 0x4b, 0x52, 0x17, 0x6d, 0x42, 0xec, 0x3a, 0x36, 0x50, + 0xa3, 0x66, 0x20, 0xd7, 0x25, 0x4c, 0xa0, 0x0d, 0x04, 0xe7, 0xe5, 0xae, 0x58, 0x95, 0x9b, 0x37, + 0x0d, 0x56, 0x73, 0x30, 0x65, 0xc8, 0x69, 0xf8, 0x0c, 0xda, 0xdb, 0xe0, 0xd8, 0x07, 0xdc, 0xe2, + 0x8b, 0x96, 0x45, 0x9a, 0x2e, 0x33, 0xf1, 0xad, 0x26, 0xa6, 0x0c, 0x66, 0x41, 0x0a, 0x55, 0x2a, + 0x1e, 0xa6, 0x34, 0xab, 0x2c, 0x2b, 0x1b, 0x53, 0x66, 0xb0, 0x3c, 0x9f, 0x7e, 0xf0, 0x38, 0x3f, + 0xf6, 0xc7, 0xe3, 0xfc, 0x98, 0x66, 0x81, 0xb9, 0xde, 0xa3, 0xb4, 0x41, 0x5c, 0x8a, 0xf9, 0xd9, + 0x32, 0xaa, 0x23, 0xd7, 0xc2, 0xc1, 0x59, 0xb9, 0x84, 0x6f, 0x80, 0x29, 0x8b, 0x54, 0x70, 0xa9, + 0x8a, 0x68, 0x35, 0x3b, 0x2e, 0xf6, 0xd2, 0x9c, 0xf0, 0x2e, 0xa2, 0x55, 0x38, 0x07, 0x26, 0x5c, + 0xc2, 0x0f, 0x25, 0x96, 0x95, 0x8d, 0xa4, 0xe9, 0x2f, 0xb4, 0x77, 0xc0, 0x82, 0x50, 0x52, 0x14, + 0x2e, 0xfa, 0x07, 0x28, 0xef, 0x2b, 0x40, 0x1d, 0x24, 0x41, 0x82, 0x5d, 0x05, 0x47, 0x7c, 0xef, + 0x97, 0x7a, 0x25, 0xcd, 0xf8, 0xd4, 0x8b, 0x3e, 0x11, 0xaa, 0x20, 0x4d, 0xb9, 0x52, 0x8e, 0x6f, + 0x5c, 0xe0, 0xeb, 0xac, 0xb9, 0x08, 0xe4, 0x4b, 0x2d, 0xb9, 0x4d, 0xa7, 0x8c, 0x3d, 0x69, 0xc1, + 0x8c, 0xa4, 0xbe, 0x2f, 0x88, 0xda, 0x55, 0xb0, 0x28, 0x70, 0x7c, 0x84, 0xea, 0xb5, 0x0a, 0x62, + 0xc4, 0xeb, 0x33, 0xe6, 0x04, 0x98, 0xb6, 0x88, 0xdb, 0x8f, 0x23, 0xc3, 0x69, 0x17, 0x23, 0x56, + 0x3d, 0x54, 0xc0, 0x52, 0x8c, 0x34, 0x69, 0xd8, 0x3a, 0x38, 0x1a, 0xa0, 0xea, 0x95, 0x18, 0x80, + 0x7d, 0x85, 0xa6, 0x05, 0x41, 0xb4, 0xe3, 0xfb, 0xf9, 0x65, 0xdc, 0xf3, 0xa6, 0x0c, 0xa2, 0xce, + 0xd1, 0x51, 0x41, 0xa4, 0x5d, 0x95, 0xca, 0x3e, 0x64, 0xc4, 0x43, 0xf6, 0x68, 0x65, 0x70, 0x16, + 0x24, 0xf6, 0xf1, 0x81, 0x8c, 0x37, 0xfe, 0x19, 0x52, 0xbf, 0x25, 0xd5, 0x77, 0x84, 0x49, 0xf5, + 0x73, 0x60, 0xa2, 0x85, 0xea, 0xcd, 0x40, 0xb9, 0xbf, 0xd0, 0xce, 0x81, 0x59, 0x19, 0x4a, 0x95, + 0x97, 0x32, 0x72, 0x1d, 0xfc, 0x2f, 0x74, 0x4e, 0xaa, 0x80, 0x20, 0xc9, 0x63, 0x5f, 0x9c, 0x9a, + 0x36, 0xc5, 0xb7, 0x76, 0x1b, 0x40, 0xc1, 0xb8, 0xd7, 0xbe, 0x46, 0x6c, 0x1a, 0xa8, 0x80, 0x20, + 0x29, 0x32, 0xc6, 0x97, 0x2f, 0xbe, 0xe1, 0x25, 0x00, 0xba, 0xb5, 0x49, 0xd8, 0x96, 0x29, 0xac, + 0xe9, 0x7e, 0xd0, 0xea, 0xbc, 0x90, 0xe9, 0x7e, 0xcd, 0x93, 0x85, 0x4c, 0xbf, 0xd1, 0xbd, 0x2a, + 0x33, 0x74, 0x32, 0x04, 0xf2, 0x6b, 0x45, 0x5e, 0x6c, 0xa0, 0x5c, 0xe2, 0xdc, 0x04, 0xc9, 0x3a, + 0xb1, 0xb9, 0x75, 0x89, 0x8d, 0x4c, 0x61, 0x5e, 0xef, 0x2f, 0x9f, 0xfa, 0x35, 0x62, 0x9b, 0x82, + 0x05, 0x5e, 0x1e, 0x00, 0x6a, 0x7d, 0x24, 0x28, 0x5f, 0x4f, 0x18, 0x95, 0x36, 0x27, 0xef, 0xe1, + 0x86, 0x28, 0x92, 0x12, 0xb7, 0x76, 0x5d, 0x02, 0x0c, 0xa8, 0x12, 0xe0, 0x39, 0x30, 0xe9, 0x17, + 0x53, 0x71, 0x41, 0x99, 0x42, 0x36, 0x0a, 0xd1, 0x3f, 0xb1, 0x93, 0x7c, 0xf2, 0x2c, 0x3f, 0x66, + 0x4a, 0x6e, 0xed, 0x27, 0x05, 0x1c, 0xd9, 0x65, 0xd5, 0x22, 0xaa, 0xd7, 0x43, 0x37, 0x8d, 0x3c, + 0x9b, 0x06, 0x3e, 0xe1, 0xdf, 0xf0, 0x38, 0x48, 0xd9, 0x88, 0x96, 0x2c, 0xd4, 0x90, 0xe9, 0x31, + 0x69, 0x23, 0x5a, 0x44, 0x0d, 0xf8, 0x09, 0x98, 0x6d, 0x78, 0xa4, 0x41, 0x28, 0xf6, 0x3a, 0x29, + 0xc6, 0xd3, 0x63, 0x7a, 0xa7, 0xf0, 0xd7, 0xb3, 0xbc, 0x6e, 0xd7, 0x58, 0xb5, 0x59, 0xd6, 0x2d, + 0xe2, 0x18, 0xb2, 0xbf, 0xf8, 0x3f, 0x67, 0x68, 0x65, 0xdf, 0x60, 0x07, 0x0d, 0x4c, 0xf5, 0x62, + 0x37, 0xb7, 0xcd, 0xa3, 0x81, 0xac, 0x20, 0x2f, 0x17, 0x40, 0xda, 0xaa, 0xa2, 0x9a, 0x5b, 0xaa, + 0x55, 0xb2, 0xc9, 0x65, 0x65, 0x23, 0x61, 0xa6, 0xc4, 0xfa, 0x4a, 0x05, 0x2e, 0x82, 0x29, 0xd2, + 0xc2, 0x9e, 0x57, 0xab, 0x60, 0x9a, 0x9d, 0x10, 0x58, 0xbb, 0x04, 0x6d, 0x0f, 0x1c, 0xdb, 0xa5, + 0xac, 0xe6, 0x20, 0x86, 0x2f, 0xa3, 0xee, 0x35, 0xcd, 0x82, 0x84, 0x8d, 0x7c, 0xd3, 0x92, 0x26, + 0xff, 0xe4, 0x14, 0x0f, 0x33, 0x61, 0xd5, 0xb4, 0xc9, 0x3f, 0xb9, 0xce, 0x96, 0x53, 0xc2, 0x9e, + 0x47, 0xfc, 0x4c, 0x9f, 0x32, 0x53, 0x2d, 0x67, 0x97, 0x2f, 0xb5, 0xef, 0x92, 0x41, 0x78, 0xf0, + 0xce, 0xb4, 0xd7, 0x0e, 0xae, 0x6c, 0x1b, 0x24, 0x1c, 0x6a, 0xcb, 0xab, 0xcf, 0x47, 0xaf, 0xfe, + 0x3a, 0xb5, 0x77, 0x39, 0x0d, 0x37, 0x9d, 0xbd, 0xb6, 0xc9, 0x79, 0xe1, 0x05, 0x30, 0x1d, 0x6e, + 0x6f, 0x42, 0x53, 0xa6, 0xb0, 0x14, 0x3d, 0x2b, 0x54, 0x15, 0x05, 0x93, 0x99, 0x61, 0xdd, 0x05, + 0x2c, 0x82, 0xe9, 0x86, 0x87, 0x2b, 0xd8, 0xc2, 0x94, 0x12, 0x8f, 0x66, 0x93, 0x22, 0x36, 0x47, + 0x6a, 0xef, 0x39, 0xc4, 0x0b, 0x6e, 0xb9, 0x4e, 0xac, 0xfd, 0xa0, 0xb4, 0x4d, 0x88, 0x4b, 0xce, + 0x08, 0x9a, 0x5f, 0xd8, 0xe0, 0x12, 0x00, 0x3e, 0x8b, 0xc8, 0xbf, 0x49, 0x71, 0x23, 0x53, 0x82, + 0x22, 0x5a, 0x56, 0x31, 0xd8, 0xe6, 0x5d, 0x35, 0x9b, 0x12, 0x66, 0xa8, 0xba, 0xdf, 0x72, 0xf5, + 0xa0, 0xe5, 0xea, 0x7b, 0x41, 0xcb, 0xdd, 0x49, 0xf3, 0xf8, 0x7b, 0xf4, 0x6b, 0x5e, 0x91, 0x42, + 0xf8, 0xce, 0xc0, 0x30, 0x4a, 0xff, 0x3b, 0x61, 0x34, 0xd5, 0x1b, 0x46, 0x67, 0x41, 0x9a, 0x27, + 0x65, 0xe9, 0x26, 0xc6, 0x59, 0xc0, 0x6d, 0xdb, 0x59, 0xf8, 0xe5, 0x59, 0x7e, 0xde, 0x97, 0x4f, + 0x2b, 0xfb, 0x7a, 0x8d, 0x18, 0x0e, 0x62, 0x55, 0xfd, 0x8a, 0xcb, 0x78, 0xfd, 0xa5, 0xf8, 0x12, + 0xc6, 0xef, 0x25, 0xd3, 0xe3, 0xb3, 0x09, 0x33, 0xcd, 0xda, 0xa5, 0x9a, 0x5b, 0xc1, 0x6d, 0xed, + 0x94, 0x2c, 0xa1, 0x9d, 0xb8, 0xe8, 0xd6, 0xb7, 0x0a, 0x62, 0x28, 0xc8, 0x25, 0xfe, 0xad, 0x7d, + 0x95, 0x00, 0xf3, 0x5d, 0xe6, 0xd7, 0x35, 0xf3, 0xfa, 0xe3, 0x33, 0xf9, 0xd2, 0xf1, 0xf9, 0x9a, + 0x84, 0x56, 0xd8, 0xf7, 0xe9, 0x1e, 0xdf, 0x6b, 0x5b, 0xe0, 0xff, 0xfd, 0x8e, 0x18, 0xe2, 0xb7, + 0x6f, 0x12, 0x61, 0xf6, 0x1d, 0xae, 0x20, 0x94, 0xff, 0xac, 0x1d, 0x74, 0x87, 0xd1, 0xf9, 0xcf, + 0xda, 0xf4, 0x15, 0xe4, 0xff, 0x7f, 0x3d, 0x75, 0xb5, 0x33, 0xe0, 0x78, 0xc4, 0x1f, 0x43, 0xfc, + 0x37, 0xdf, 0x19, 0xd0, 0x44, 0x0e, 0x07, 0x0d, 0xf5, 0x5a, 0x67, 0xf8, 0x92, 0x64, 0x29, 0x22, + 0x5c, 0x18, 0x94, 0xc3, 0x16, 0x86, 0xc2, 0x9f, 0x33, 0x60, 0x42, 0x88, 0x83, 0x5f, 0x2a, 0x20, + 0x25, 0xe7, 0x51, 0xb8, 0x1a, 0x75, 0xeb, 0x80, 0x07, 0x87, 0xba, 0x36, 0x8a, 0xcd, 0x87, 0xa6, + 0x9d, 0xfe, 0xfc, 0xc7, 0xdf, 0xbf, 0x1d, 0x5f, 0x85, 0x2b, 0x46, 0xe4, 0xc9, 0x24, 0x67, 0x52, + 0xe3, 0x8e, 0x74, 0xc5, 0x3d, 0xf8, 0xbd, 0x02, 0x66, 0x7a, 0xc6, 0x7e, 0x78, 0x3a, 0x46, 0xcd, + 0xa0, 0xe7, 0x85, 0xba, 0x75, 0x38, 0x66, 0x89, 0xac, 0x20, 0x90, 0x6d, 0xc1, 0x53, 0x51, 0x64, + 0xc1, 0x0b, 0x23, 0x02, 0xf0, 0x07, 0x05, 0xcc, 0xf6, 0x4f, 0xf0, 0x50, 0x8f, 0x51, 0x1b, 0xf3, + 0x70, 0x50, 0x8d, 0x43, 0xf3, 0x4b, 0xa4, 0xe7, 0x05, 0xd2, 0xb3, 0xb0, 0x10, 0x45, 0xda, 0x0a, + 0xce, 0x74, 0xc1, 0x86, 0x1f, 0x25, 0xf7, 0xe0, 0x7d, 0x05, 0xa4, 0xe4, 0xac, 0x1e, 0xeb, 0xda, + 0xde, 0x67, 0x40, 0xac, 0x6b, 0xfb, 0x46, 0x7e, 0x6d, 0x4b, 0xc0, 0x5a, 0x83, 0x27, 0xa3, 0xb0, + 0xe4, 0xec, 0x4f, 0x43, 0x57, 0xf7, 0x50, 0x01, 0x29, 0x39, 0xb5, 0xc7, 0x02, 0xe9, 0x7d, 0x22, + 0xc4, 0x02, 0xe9, 0x1b, 0xfe, 0xb5, 0x6d, 0x01, 0xe4, 0x34, 0xdc, 0x8c, 0x02, 0xa1, 0x3e, 0x6b, + 0x17, 0x87, 0x71, 0x67, 0x1f, 0x1f, 0xdc, 0x83, 0xb7, 0x41, 0x92, 0x0f, 0xf7, 0x50, 0x8b, 0x0d, + 0x99, 0xce, 0x8b, 0x41, 0x5d, 0x19, 0xca, 0x23, 0x31, 0x6c, 0x0a, 0x0c, 0x2b, 0xf0, 0xc4, 0xa0, + 0x68, 0xaa, 0xf4, 0xdc, 0xc4, 0xa7, 0x60, 0xd2, 0x9f, 0x6f, 0xe1, 0xc9, 0x18, 0xc9, 0x3d, 0x63, + 0xb4, 0xba, 0x3a, 0x82, 0x4b, 0x22, 0x58, 0x16, 0x08, 0x54, 0x98, 0x35, 0x62, 0xfe, 0xbb, 0x80, + 0x6d, 0x90, 0x92, 0xf3, 0x33, 0x5c, 0x8e, 0xca, 0xec, 0x1d, 0xad, 0xd5, 0xf5, 0x51, 0xad, 0x21, + 0xd0, 0xab, 0x09, 0xbd, 0x8b, 0x50, 0x8d, 0xea, 0xc5, 0xac, 0x5a, 0xb2, 0xb8, 0xba, 0xcf, 0x40, + 0x26, 0x34, 0xe2, 0x1e, 0x42, 0xfb, 0x00, 0x9b, 0x07, 0xcc, 0xc8, 0xda, 0x9a, 0xd0, 0xbd, 0x0c, + 0x73, 0x03, 0x74, 0x4b, 0xf6, 0x12, 0x9f, 0x9c, 0xef, 0x82, 0x94, 0x1c, 0x77, 0x62, 0x63, 0xaf, + 0x77, 0x4c, 0x8e, 0x8d, 0xbd, 0xbe, 0xa9, 0x69, 0x98, 0xf5, 0x7e, 0xcf, 0x64, 0x6d, 0xf8, 0x40, + 0x01, 0xa0, 0x5b, 0xf8, 0xe1, 0xc6, 0x30, 0xd1, 0xe1, 0x5e, 0xad, 0x6e, 0x1e, 0x82, 0x53, 0xe2, + 0x58, 0x15, 0x38, 0xf2, 0x70, 0x29, 0x0e, 0x87, 0xe8, 0x82, 0xf0, 0x0b, 0x05, 0x4c, 0x75, 0x46, + 0x08, 0xb8, 0x3e, 0x4c, 0x7e, 0xd8, 0x1d, 0x1b, 0xa3, 0x19, 0x25, 0x8e, 0x93, 0x02, 0x47, 0x0e, + 0x2e, 0xc6, 0xe1, 0x10, 0xf1, 0x70, 0x97, 0x17, 0x25, 0xd1, 0x85, 0x86, 0x14, 0xa5, 0x70, 0xeb, + 0x1b, 0x52, 0x94, 0x7a, 0x5a, 0xe1, 0x30, 0x7f, 0x04, 0x2d, 0x72, 0xe7, 0xc2, 0x93, 0xe7, 0x39, + 0xe5, 0xe9, 0xf3, 0x9c, 0xf2, 0xdb, 0xf3, 0x9c, 0xf2, 0xe8, 0x45, 0x6e, 0xec, 0xe9, 0x8b, 0xdc, + 0xd8, 0xcf, 0x2f, 0x72, 0x63, 0x1f, 0xaf, 0x85, 0x46, 0x00, 0xdc, 0xe2, 0x13, 0x40, 0x57, 0x4a, + 0x5b, 0xc8, 0x11, 0x63, 0x40, 0x79, 0x52, 0x4c, 0x1c, 0x6f, 0xfd, 0x1d, 0x00, 0x00, 0xff, 0xff, + 0xf0, 0x03, 0x0d, 0x87, 0xba, 0x14, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2807,6 +2810,18 @@ func (m *QueryTraceTxRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if m.BaseFee != nil { + { + size := m.BaseFee.Size() + i -= size + if _, err := m.BaseFee.MarshalTo(dAtA[i:]); err != nil { + return 0, err + } + i = encodeVarintQuery(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x52 + } if m.ChainId != 0 { i = encodeVarintQuery(dAtA, i, uint64(m.ChainId)) i-- @@ -3517,6 +3532,10 @@ func (m *QueryTraceTxRequest) Size() (n int) { if m.ChainId != 0 { n += 1 + sovQuery(uint64(m.ChainId)) } + if m.BaseFee != nil { + l = m.BaseFee.Size() + n += 1 + l + sovQuery(uint64(l)) + } return n } @@ -5771,6 +5790,42 @@ func (m *QueryTraceTxRequest) Unmarshal(dAtA []byte) error { break } } + case 10: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field BaseFee", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowQuery + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthQuery + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthQuery + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + var v cosmossdk_io_math.Int + m.BaseFee = &v + if err := m.BaseFee.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipQuery(dAtA[iNdEx:])