diff --git a/docs/ibc/proto-docs.md b/docs/ibc/proto-docs.md
index eda1ca9bf69..d2093dd5c5d 100644
--- a/docs/ibc/proto-docs.md
+++ b/docs/ibc/proto-docs.md
@@ -49,6 +49,8 @@
- [QueryIncentivizedPacketResponse](#ibc.applications.fee.v1.QueryIncentivizedPacketResponse)
- [QueryIncentivizedPacketsRequest](#ibc.applications.fee.v1.QueryIncentivizedPacketsRequest)
- [QueryIncentivizedPacketsResponse](#ibc.applications.fee.v1.QueryIncentivizedPacketsResponse)
+ - [QueryTotalAckFeesRequest](#ibc.applications.fee.v1.QueryTotalAckFeesRequest)
+ - [QueryTotalAckFeesResponse](#ibc.applications.fee.v1.QueryTotalAckFeesResponse)
- [QueryTotalRecvFeesRequest](#ibc.applications.fee.v1.QueryTotalRecvFeesRequest)
- [QueryTotalRecvFeesResponse](#ibc.applications.fee.v1.QueryTotalRecvFeesResponse)
@@ -986,6 +988,36 @@ QueryIncentivizedPacketsResponse is the response type for the incentivized packe
+
+
+### QueryTotalAckFeesRequest
+QueryTotalAckFeesRequest defines the request type for the TotalAckFees rpc
+
+
+| Field | Type | Label | Description |
+| ----- | ---- | ----- | ----------- |
+| `packet_id` | [ibc.core.channel.v1.PacketId](#ibc.core.channel.v1.PacketId) | | the packet identifier for the associated fees |
+
+
+
+
+
+
+
+
+### QueryTotalAckFeesResponse
+QueryTotalAckFeesResponse defines the response type for the TotalAckFees rpc
+
+
+| Field | Type | Label | Description |
+| ----- | ---- | ----- | ----------- |
+| `ack_fees` | [cosmos.base.v1beta1.Coin](#cosmos.base.v1beta1.Coin) | repeated | the total packet acknowledgement fees |
+
+
+
+
+
+
### QueryTotalRecvFeesRequest
@@ -1032,6 +1064,7 @@ Query provides defines the gRPC querier service.
| `IncentivizedPackets` | [QueryIncentivizedPacketsRequest](#ibc.applications.fee.v1.QueryIncentivizedPacketsRequest) | [QueryIncentivizedPacketsResponse](#ibc.applications.fee.v1.QueryIncentivizedPacketsResponse) | Gets all incentivized packets | GET|/ibc/apps/fee/v1/incentivized_packets|
| `IncentivizedPacket` | [QueryIncentivizedPacketRequest](#ibc.applications.fee.v1.QueryIncentivizedPacketRequest) | [QueryIncentivizedPacketResponse](#ibc.applications.fee.v1.QueryIncentivizedPacketResponse) | Gets the fees expected for submitting the ReceivePacket, AcknowledgementPacket, and TimeoutPacket messages for the given packet | GET|/ibc/apps/fee/v1/incentivized_packet/port/{packet_id.port_id}/channel/{packet_id.channel_id}/sequence/{packet_id.sequence}|
| `TotalRecvFees` | [QueryTotalRecvFeesRequest](#ibc.applications.fee.v1.QueryTotalRecvFeesRequest) | [QueryTotalRecvFeesResponse](#ibc.applications.fee.v1.QueryTotalRecvFeesResponse) | TotalRecvFees returns the total receive fees for a packet given its identifier | GET|/ibc/apps/fee/v1/total_recv_fees/port/{packet_id.port_id}/channel/{packet_id.channel_id}/sequence/{packet_id.sequence}|
+| `TotalAckFees` | [QueryTotalAckFeesRequest](#ibc.applications.fee.v1.QueryTotalAckFeesRequest) | [QueryTotalAckFeesResponse](#ibc.applications.fee.v1.QueryTotalAckFeesResponse) | TotalAckFees returns the total acknowledgement fees for a packet given its identifier | GET|/ibc/apps/fee/v1/total_ack_fees/port/{packet_id.port_id}/channel/{packet_id.channel_id}/sequence/{packet_id.sequence}|
diff --git a/modules/apps/29-fee/keeper/grpc_query.go b/modules/apps/29-fee/keeper/grpc_query.go
index dfaa5d86a35..dd527f0fe59 100644
--- a/modules/apps/29-fee/keeper/grpc_query.go
+++ b/modules/apps/29-fee/keeper/grpc_query.go
@@ -91,3 +91,29 @@ func (k Keeper) TotalRecvFees(goCtx context.Context, req *types.QueryTotalRecvFe
RecvFees: recvFees,
}, nil
}
+
+// TotalAckFees implements the Query/TotalAckFees gRPC method
+func (k Keeper) TotalAckFees(goCtx context.Context, req *types.QueryTotalAckFeesRequest) (*types.QueryTotalAckFeesResponse, error) {
+ if req == nil {
+ return nil, status.Error(codes.InvalidArgument, "empty request")
+ }
+
+ ctx := sdk.UnwrapSDKContext(goCtx)
+
+ feesInEscrow, found := k.GetFeesInEscrow(ctx, req.PacketId)
+ if !found {
+ return nil, status.Errorf(
+ codes.NotFound,
+ sdkerrors.Wrapf(types.ErrFeeNotFound, "channel: %s, port: %s, sequence: %d", req.PacketId.ChannelId, req.PacketId.PortId, req.PacketId.Sequence).Error(),
+ )
+ }
+
+ var ackFees sdk.Coins
+ for _, packetFee := range feesInEscrow.PacketFees {
+ ackFees = ackFees.Add(packetFee.Fee.AckFee...)
+ }
+
+ return &types.QueryTotalAckFeesResponse{
+ AckFees: ackFees,
+ }, nil
+}
diff --git a/modules/apps/29-fee/keeper/grpc_query_test.go b/modules/apps/29-fee/keeper/grpc_query_test.go
index c9df54665f0..5bcb7d31416 100644
--- a/modules/apps/29-fee/keeper/grpc_query_test.go
+++ b/modules/apps/29-fee/keeper/grpc_query_test.go
@@ -203,3 +203,67 @@ func (suite *KeeperTestSuite) TestQueryTotalRecvFees() {
})
}
}
+
+func (suite *KeeperTestSuite) TestQueryTotalAckFees() {
+ var (
+ req *types.QueryTotalAckFeesRequest
+ )
+
+ testCases := []struct {
+ name string
+ malleate func()
+ expPass bool
+ }{
+ {
+ "success",
+ func() {},
+ true,
+ },
+ {
+ "packet not found",
+ func() {
+ req.PacketId = channeltypes.NewPacketId(ibctesting.FirstChannelID, ibctesting.MockFeePort, 100)
+ },
+ false,
+ },
+ }
+
+ for _, tc := range testCases {
+ suite.Run(tc.name, func() {
+ suite.SetupTest() // reset
+
+ suite.chainA.GetSimApp().IBCFeeKeeper.SetFeeEnabled(suite.chainA.GetContext(), ibctesting.MockFeePort, ibctesting.FirstChannelID)
+
+ packetID := channeltypes.NewPacketId(ibctesting.FirstChannelID, ibctesting.MockFeePort, 1)
+
+ fee := types.NewFee(defaultReceiveFee, defaultAckFee, defaultTimeoutFee)
+ packetFee := types.NewPacketFee(fee, suite.chainA.SenderAccount.GetAddress().String(), []string(nil))
+
+ for i := 0; i < 3; i++ {
+ // escrow three packet fees for the same packet
+ err := suite.chainA.GetSimApp().IBCFeeKeeper.EscrowPacketFee(suite.chainA.GetContext(), packetID, packetFee)
+ suite.Require().NoError(err)
+ }
+
+ req = &types.QueryTotalAckFeesRequest{
+ PacketId: packetID,
+ }
+
+ tc.malleate()
+
+ ctx := sdk.WrapSDKContext(suite.chainA.GetContext())
+ res, err := suite.queryClient.TotalAckFees(ctx, req)
+
+ if tc.expPass {
+ suite.Require().NoError(err)
+ suite.Require().NotNil(res)
+
+ // expected total is three times the default acknowledgement fee
+ expectedFees := defaultAckFee.Add(defaultAckFee...).Add(defaultAckFee...)
+ suite.Require().Equal(expectedFees, res.AckFees)
+ } else {
+ suite.Require().Error(err)
+ }
+ })
+ }
+}
diff --git a/modules/apps/29-fee/types/query.pb.go b/modules/apps/29-fee/types/query.pb.go
index fdbaa9766c8..a4c5b0ee658 100644
--- a/modules/apps/29-fee/types/query.pb.go
+++ b/modules/apps/29-fee/types/query.pb.go
@@ -327,6 +327,98 @@ func (m *QueryTotalRecvFeesResponse) GetRecvFees() github_com_cosmos_cosmos_sdk_
return nil
}
+// QueryTotalAckFeesRequest defines the request type for the TotalAckFees rpc
+type QueryTotalAckFeesRequest struct {
+ // the packet identifier for the associated fees
+ PacketId types.PacketId `protobuf:"bytes,1,opt,name=packet_id,json=packetId,proto3" json:"packet_id"`
+}
+
+func (m *QueryTotalAckFeesRequest) Reset() { *m = QueryTotalAckFeesRequest{} }
+func (m *QueryTotalAckFeesRequest) String() string { return proto.CompactTextString(m) }
+func (*QueryTotalAckFeesRequest) ProtoMessage() {}
+func (*QueryTotalAckFeesRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_0638a8a78ca2503c, []int{6}
+}
+func (m *QueryTotalAckFeesRequest) XXX_Unmarshal(b []byte) error {
+ return m.Unmarshal(b)
+}
+func (m *QueryTotalAckFeesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ if deterministic {
+ return xxx_messageInfo_QueryTotalAckFeesRequest.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 *QueryTotalAckFeesRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_QueryTotalAckFeesRequest.Merge(m, src)
+}
+func (m *QueryTotalAckFeesRequest) XXX_Size() int {
+ return m.Size()
+}
+func (m *QueryTotalAckFeesRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_QueryTotalAckFeesRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_QueryTotalAckFeesRequest proto.InternalMessageInfo
+
+func (m *QueryTotalAckFeesRequest) GetPacketId() types.PacketId {
+ if m != nil {
+ return m.PacketId
+ }
+ return types.PacketId{}
+}
+
+// QueryTotalAckFeesResponse defines the response type for the TotalAckFees rpc
+type QueryTotalAckFeesResponse struct {
+ // the total packet acknowledgement fees
+ AckFees github_com_cosmos_cosmos_sdk_types.Coins `protobuf:"bytes,1,rep,name=ack_fees,json=ackFees,proto3,castrepeated=github.com/cosmos/cosmos-sdk/types.Coins" json:"ack_fees" yaml:"ack_fees"`
+}
+
+func (m *QueryTotalAckFeesResponse) Reset() { *m = QueryTotalAckFeesResponse{} }
+func (m *QueryTotalAckFeesResponse) String() string { return proto.CompactTextString(m) }
+func (*QueryTotalAckFeesResponse) ProtoMessage() {}
+func (*QueryTotalAckFeesResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_0638a8a78ca2503c, []int{7}
+}
+func (m *QueryTotalAckFeesResponse) XXX_Unmarshal(b []byte) error {
+ return m.Unmarshal(b)
+}
+func (m *QueryTotalAckFeesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ if deterministic {
+ return xxx_messageInfo_QueryTotalAckFeesResponse.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 *QueryTotalAckFeesResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_QueryTotalAckFeesResponse.Merge(m, src)
+}
+func (m *QueryTotalAckFeesResponse) XXX_Size() int {
+ return m.Size()
+}
+func (m *QueryTotalAckFeesResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_QueryTotalAckFeesResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_QueryTotalAckFeesResponse proto.InternalMessageInfo
+
+func (m *QueryTotalAckFeesResponse) GetAckFees() github_com_cosmos_cosmos_sdk_types.Coins {
+ if m != nil {
+ return m.AckFees
+ }
+ return nil
+}
+
func init() {
proto.RegisterType((*QueryIncentivizedPacketsRequest)(nil), "ibc.applications.fee.v1.QueryIncentivizedPacketsRequest")
proto.RegisterType((*QueryIncentivizedPacketsResponse)(nil), "ibc.applications.fee.v1.QueryIncentivizedPacketsResponse")
@@ -334,6 +426,8 @@ func init() {
proto.RegisterType((*QueryIncentivizedPacketResponse)(nil), "ibc.applications.fee.v1.QueryIncentivizedPacketResponse")
proto.RegisterType((*QueryTotalRecvFeesRequest)(nil), "ibc.applications.fee.v1.QueryTotalRecvFeesRequest")
proto.RegisterType((*QueryTotalRecvFeesResponse)(nil), "ibc.applications.fee.v1.QueryTotalRecvFeesResponse")
+ proto.RegisterType((*QueryTotalAckFeesRequest)(nil), "ibc.applications.fee.v1.QueryTotalAckFeesRequest")
+ proto.RegisterType((*QueryTotalAckFeesResponse)(nil), "ibc.applications.fee.v1.QueryTotalAckFeesResponse")
}
func init() {
@@ -341,51 +435,56 @@ func init() {
}
var fileDescriptor_0638a8a78ca2503c = []byte{
- // 698 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x95, 0x41, 0x6b, 0x13, 0x4d,
- 0x18, 0xc7, 0x33, 0x7d, 0xdb, 0x97, 0x76, 0xfa, 0xbe, 0x20, 0xd3, 0x82, 0x6d, 0xd0, 0x4d, 0xba,
- 0xa2, 0x06, 0x21, 0x3b, 0x34, 0x45, 0x6c, 0x3d, 0x49, 0x95, 0x62, 0x4f, 0xd6, 0xe0, 0x49, 0x90,
- 0xb0, 0x3b, 0x3b, 0xd9, 0x0c, 0x4d, 0x76, 0xb6, 0x99, 0xc9, 0x62, 0x6b, 0xeb, 0xa1, 0x20, 0x82,
- 0xf4, 0x20, 0x78, 0xf3, 0x23, 0xf8, 0x0d, 0xfc, 0x06, 0xbd, 0x08, 0x05, 0x2f, 0x9e, 0xaa, 0xb4,
- 0x7e, 0x02, 0x4f, 0x1e, 0x65, 0x66, 0x67, 0xd7, 0x2d, 0x49, 0xb4, 0x2d, 0x7a, 0xca, 0xee, 0x3c,
- 0xff, 0x67, 0x9e, 0xdf, 0xf3, 0xdf, 0x67, 0x26, 0xf0, 0x0a, 0xf3, 0x08, 0x76, 0xa3, 0xa8, 0xcd,
- 0x88, 0x2b, 0x19, 0x0f, 0x05, 0x6e, 0x52, 0x8a, 0xe3, 0x79, 0xbc, 0xd1, 0xa3, 0xdd, 0x4d, 0x27,
- 0xea, 0x72, 0xc9, 0xd1, 0x45, 0xe6, 0x11, 0x27, 0x2f, 0x72, 0x9a, 0x94, 0x3a, 0xf1, 0x7c, 0x71,
- 0x3a, 0xe0, 0x01, 0xd7, 0x1a, 0xac, 0x9e, 0x12, 0x79, 0xf1, 0x52, 0xc0, 0x79, 0xd0, 0xa6, 0xd8,
- 0x8d, 0x18, 0x76, 0xc3, 0x90, 0x4b, 0x93, 0x94, 0x44, 0x2d, 0xc2, 0x45, 0x87, 0x0b, 0xec, 0xb9,
- 0x42, 0x15, 0xf2, 0xa8, 0x74, 0xe7, 0x31, 0xe1, 0x2c, 0x34, 0xf1, 0x1b, 0xf9, 0xb8, 0xa6, 0xc8,
- 0x54, 0x91, 0x1b, 0xb0, 0x50, 0x6f, 0x66, 0xb4, 0x73, 0xc3, 0xe8, 0x15, 0x5f, 0x4e, 0x42, 0x78,
- 0x97, 0x62, 0xd2, 0x72, 0xc3, 0x90, 0xb6, 0x55, 0xd8, 0x3c, 0x26, 0x12, 0x7b, 0x0f, 0xc0, 0xd2,
- 0x43, 0x55, 0x68, 0x35, 0x24, 0x34, 0x94, 0x2c, 0x66, 0x5b, 0xd4, 0x5f, 0x73, 0xc9, 0x3a, 0x95,
- 0xa2, 0x4e, 0x37, 0x7a, 0x54, 0x48, 0xb4, 0x02, 0xe1, 0xcf, 0xea, 0x33, 0xa0, 0x0c, 0x2a, 0x93,
- 0xb5, 0x6b, 0x4e, 0x82, 0xea, 0x28, 0x54, 0x27, 0x31, 0xcc, 0xa0, 0x3a, 0x6b, 0x6e, 0x40, 0x4d,
- 0x6e, 0x3d, 0x97, 0x89, 0xe6, 0xe0, 0x7f, 0x5a, 0xd8, 0x68, 0x51, 0x16, 0xb4, 0xe4, 0xcc, 0x48,
- 0x19, 0x54, 0x46, 0xeb, 0x93, 0x7a, 0xed, 0xbe, 0x5e, 0xb2, 0x5f, 0x01, 0x58, 0x1e, 0x8e, 0x23,
- 0x22, 0x1e, 0x0a, 0x8a, 0x9a, 0x70, 0x9a, 0xe5, 0xc2, 0x8d, 0x28, 0x89, 0xcf, 0x80, 0xf2, 0x3f,
- 0x95, 0xc9, 0x5a, 0xd5, 0x19, 0xf2, 0xc5, 0x9c, 0x55, 0x5f, 0xe5, 0x34, 0x59, 0xba, 0xe3, 0x0a,
- 0xa5, 0x62, 0x79, 0x74, 0xff, 0xb0, 0x54, 0xa8, 0x4f, 0xb1, 0xfe, 0x7a, 0xf6, 0x0b, 0x00, 0xad,
- 0x21, 0x30, 0xa9, 0x35, 0x77, 0xe0, 0x44, 0x52, 0xbd, 0xc1, 0x7c, 0xe3, 0xcc, 0x65, 0x5d, 0x5f,
- 0xb9, 0xee, 0xa4, 0x56, 0xc7, 0xca, 0x13, 0xa5, 0x5a, 0xf5, 0x4d, 0xbd, 0xf1, 0xc8, 0xbc, 0x9f,
- 0xc6, 0x94, 0x97, 0xc3, 0xbf, 0x51, 0xe6, 0x89, 0x0f, 0xa7, 0x06, 0x78, 0x62, 0x90, 0xce, 0x65,
- 0x09, 0xea, 0xb7, 0xc4, 0x7e, 0x02, 0x67, 0x35, 0xc8, 0x23, 0x2e, 0xdd, 0x76, 0x9d, 0x92, 0x58,
- 0xe9, 0xff, 0x98, 0x17, 0xf6, 0x5b, 0x00, 0x8b, 0x83, 0xf6, 0x37, 0x3d, 0x6e, 0xc3, 0x89, 0x2e,
- 0x25, 0x71, 0xa3, 0x49, 0x69, 0xfa, 0xb1, 0x67, 0x4f, 0x8c, 0x61, 0x3a, 0x80, 0x77, 0x39, 0x0b,
- 0x97, 0xef, 0xa9, 0xcd, 0xbf, 0x1d, 0x96, 0x2e, 0x6c, 0xba, 0x9d, 0xf6, 0x6d, 0x3b, 0xcb, 0xb4,
- 0xdf, 0x7d, 0x2e, 0x55, 0x02, 0x26, 0x5b, 0x3d, 0xcf, 0x21, 0xbc, 0x83, 0xcd, 0x91, 0x4b, 0x7e,
- 0xaa, 0xc2, 0x5f, 0xc7, 0x72, 0x33, 0xa2, 0x42, 0x6f, 0x22, 0xea, 0xe3, 0x5d, 0x43, 0x51, 0xfb,
- 0x30, 0x06, 0xc7, 0x34, 0x1c, 0x7a, 0x0f, 0xe0, 0xd4, 0x80, 0xf9, 0x44, 0x8b, 0x43, 0x6d, 0xfe,
- 0xcd, 0x09, 0x2b, 0x2e, 0x9d, 0x23, 0x33, 0x31, 0xc5, 0xae, 0xee, 0x7e, 0xfc, 0xfa, 0x66, 0xe4,
- 0x3a, 0xba, 0x8a, 0xcd, 0x7d, 0x90, 0xdd, 0x03, 0x83, 0xce, 0x08, 0xda, 0x1b, 0x81, 0xa8, 0x7f,
- 0x3b, 0x74, 0xeb, 0xac, 0x00, 0x29, 0xf9, 0xe2, 0xd9, 0x13, 0x0d, 0xf8, 0x2e, 0xd0, 0xe4, 0xdb,
- 0x68, 0xeb, 0x34, 0xe4, 0x38, 0xe2, 0x5d, 0x89, 0x9f, 0x65, 0x03, 0xe6, 0xa8, 0xf7, 0x06, 0xf3,
- 0x77, 0xb2, 0xab, 0x2d, 0x17, 0x33, 0x4b, 0x3a, 0x2c, 0x14, 0x68, 0x48, 0x68, 0x3e, 0x9e, 0xae,
- 0xed, 0xa0, 0xef, 0x00, 0xfe, 0x7f, 0x62, 0xd8, 0x50, 0xed, 0xd7, 0x0d, 0x0d, 0x9a, 0xfc, 0xe2,
- 0xc2, 0x99, 0x72, 0x4c, 0xff, 0xcf, 0x75, 0xfb, 0x4f, 0x51, 0xdc, 0xd7, 0xbe, 0x54, 0xfa, 0x46,
- 0x36, 0xb0, 0x7f, 0xa7, 0xf5, 0xe5, 0x07, 0xfb, 0x47, 0x16, 0x38, 0x38, 0xb2, 0xc0, 0x97, 0x23,
- 0x0b, 0xbc, 0x3e, 0xb6, 0x0a, 0x07, 0xc7, 0x56, 0xe1, 0xd3, 0xb1, 0x55, 0x78, 0x7c, 0xb3, 0xff,
- 0x74, 0x30, 0x8f, 0x54, 0x03, 0x8e, 0xe3, 0x05, 0xdc, 0xe1, 0x7e, 0xaf, 0x4d, 0x45, 0x02, 0x5c,
- 0x5b, 0xaa, 0x2a, 0x66, 0x7d, 0x60, 0xbc, 0x7f, 0xf5, 0x3f, 0xca, 0xc2, 0x8f, 0x00, 0x00, 0x00,
- 0xff, 0xff, 0xdd, 0x79, 0x2b, 0x91, 0x57, 0x07, 0x00, 0x00,
+ // 775 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x41, 0x6f, 0xd3, 0x48,
+ 0x14, 0xce, 0x74, 0xbb, 0xdb, 0x76, 0xda, 0xd5, 0xae, 0xa6, 0x95, 0x36, 0x8d, 0x76, 0x9d, 0xd4,
+ 0xab, 0x5d, 0x22, 0xa4, 0x78, 0x94, 0x54, 0x88, 0x96, 0x13, 0xb4, 0xa8, 0xa2, 0x27, 0x4a, 0xc4,
+ 0x09, 0x81, 0x22, 0x67, 0x3c, 0x71, 0x46, 0x49, 0x3c, 0x6e, 0xec, 0x18, 0x52, 0x5a, 0x0e, 0x95,
+ 0x10, 0x12, 0xea, 0x01, 0x09, 0x89, 0x03, 0x3f, 0x81, 0x7f, 0xc0, 0x9d, 0x43, 0x8f, 0x95, 0xb8,
+ 0x70, 0x2a, 0xa8, 0xe5, 0x17, 0x20, 0x0e, 0x1c, 0xd1, 0x8c, 0xc7, 0xae, 0xab, 0x24, 0x90, 0x54,
+ 0xed, 0x29, 0xf6, 0xbc, 0xef, 0xbd, 0xf7, 0x7d, 0x9f, 0xe7, 0x3d, 0x05, 0xfe, 0xcb, 0xaa, 0x04,
+ 0x9b, 0xae, 0xdb, 0x64, 0xc4, 0xf4, 0x19, 0x77, 0x3c, 0x5c, 0xa3, 0x14, 0x07, 0x45, 0xbc, 0xd9,
+ 0xa1, 0xed, 0xae, 0xe1, 0xb6, 0xb9, 0xcf, 0xd1, 0x5f, 0xac, 0x4a, 0x8c, 0x24, 0xc8, 0xa8, 0x51,
+ 0x6a, 0x04, 0xc5, 0xcc, 0x9c, 0xcd, 0x6d, 0x2e, 0x31, 0x58, 0x3c, 0x85, 0xf0, 0xcc, 0xdf, 0x36,
+ 0xe7, 0x76, 0x93, 0x62, 0xd3, 0x65, 0xd8, 0x74, 0x1c, 0xee, 0xab, 0xa4, 0x30, 0xaa, 0x11, 0xee,
+ 0xb5, 0xb8, 0x87, 0xab, 0xa6, 0x27, 0x1a, 0x55, 0xa9, 0x6f, 0x16, 0x31, 0xe1, 0xcc, 0x51, 0xf1,
+ 0xcb, 0xc9, 0xb8, 0x64, 0x11, 0xa3, 0x5c, 0xd3, 0x66, 0x8e, 0x2c, 0xa6, 0xb0, 0x0b, 0x83, 0xd8,
+ 0x0b, 0x7e, 0x09, 0x08, 0xe1, 0x6d, 0x8a, 0x49, 0xdd, 0x74, 0x1c, 0xda, 0x14, 0x61, 0xf5, 0x18,
+ 0x42, 0xf4, 0x3d, 0x00, 0xb3, 0x77, 0x44, 0xa3, 0x75, 0x87, 0x50, 0xc7, 0x67, 0x01, 0xdb, 0xa2,
+ 0xd6, 0x86, 0x49, 0x1a, 0xd4, 0xf7, 0xca, 0x74, 0xb3, 0x43, 0x3d, 0x1f, 0xad, 0x41, 0x78, 0xd2,
+ 0x3d, 0x0d, 0x72, 0x20, 0x3f, 0x5d, 0xfa, 0xdf, 0x08, 0xa9, 0x1a, 0x82, 0xaa, 0x11, 0x1a, 0xa6,
+ 0xa8, 0x1a, 0x1b, 0xa6, 0x4d, 0x55, 0x6e, 0x39, 0x91, 0x89, 0x16, 0xe0, 0x8c, 0x04, 0x56, 0xea,
+ 0x94, 0xd9, 0x75, 0x3f, 0x3d, 0x96, 0x03, 0xf9, 0xf1, 0xf2, 0xb4, 0x3c, 0xbb, 0x25, 0x8f, 0xf4,
+ 0xe7, 0x00, 0xe6, 0x06, 0xd3, 0xf1, 0x5c, 0xee, 0x78, 0x14, 0xd5, 0xe0, 0x1c, 0x4b, 0x84, 0x2b,
+ 0x6e, 0x18, 0x4f, 0x83, 0xdc, 0x2f, 0xf9, 0xe9, 0x52, 0xc1, 0x18, 0xf0, 0xc5, 0x8c, 0x75, 0x4b,
+ 0xe4, 0xd4, 0x58, 0x54, 0x71, 0x8d, 0x52, 0x6f, 0x65, 0x7c, 0xff, 0x30, 0x9b, 0x2a, 0xcf, 0xb2,
+ 0xde, 0x7e, 0xfa, 0x53, 0x00, 0xb5, 0x01, 0x64, 0x22, 0x6b, 0xae, 0xc3, 0xa9, 0xb0, 0x7b, 0x85,
+ 0x59, 0xca, 0x99, 0x7f, 0x64, 0x7f, 0xe1, 0xba, 0x11, 0x59, 0x1d, 0x08, 0x4f, 0x04, 0x6a, 0xdd,
+ 0x52, 0xfd, 0x26, 0x5d, 0xf5, 0x3e, 0x8c, 0x29, 0xcf, 0x06, 0x7f, 0xa3, 0xd8, 0x13, 0x0b, 0xce,
+ 0xf6, 0xf1, 0x44, 0x51, 0x3a, 0x93, 0x25, 0xa8, 0xd7, 0x12, 0xfd, 0x01, 0x9c, 0x97, 0x44, 0xee,
+ 0x72, 0xdf, 0x6c, 0x96, 0x29, 0x09, 0x04, 0xfe, 0xdc, 0xbc, 0xd0, 0x5f, 0x03, 0x98, 0xe9, 0x57,
+ 0x5f, 0x69, 0xdc, 0x86, 0x53, 0x6d, 0x4a, 0x82, 0x4a, 0x8d, 0xd2, 0xe8, 0x63, 0xcf, 0x9f, 0xba,
+ 0x86, 0xd1, 0x05, 0x5c, 0xe5, 0xcc, 0x59, 0xb9, 0x29, 0x8a, 0x7f, 0x39, 0xcc, 0xfe, 0xd9, 0x35,
+ 0x5b, 0xcd, 0x6b, 0x7a, 0x9c, 0xa9, 0xbf, 0xf9, 0x98, 0xcd, 0xdb, 0xcc, 0xaf, 0x77, 0xaa, 0x06,
+ 0xe1, 0x2d, 0xac, 0x46, 0x2e, 0xfc, 0x29, 0x78, 0x56, 0x03, 0xfb, 0x5d, 0x97, 0x7a, 0xb2, 0x88,
+ 0x57, 0x9e, 0x6c, 0x2b, 0x16, 0xfa, 0x7d, 0x98, 0x3e, 0xe1, 0x76, 0x83, 0x34, 0xce, 0x57, 0xfa,
+ 0x2b, 0x90, 0xb4, 0x36, 0x2e, 0xaf, 0x94, 0x77, 0xe1, 0xa4, 0x49, 0x1a, 0x43, 0x0a, 0x5f, 0x55,
+ 0xc2, 0xff, 0x08, 0x85, 0x47, 0x89, 0xa3, 0xe9, 0x9e, 0x30, 0x43, 0x0a, 0xa5, 0x77, 0x13, 0xf0,
+ 0x57, 0x49, 0x0c, 0xbd, 0x05, 0x70, 0xb6, 0xcf, 0x58, 0xa2, 0xa5, 0x81, 0xb7, 0xeb, 0x27, 0x8b,
+ 0x25, 0xb3, 0x7c, 0x86, 0xcc, 0xd0, 0x11, 0xbd, 0xb0, 0xfb, 0xfe, 0xf3, 0xcb, 0xb1, 0x4b, 0xe8,
+ 0x3f, 0xac, 0xd6, 0x60, 0xbc, 0xfe, 0xfa, 0xad, 0x06, 0xb4, 0x37, 0x06, 0x51, 0x6f, 0x39, 0x74,
+ 0x75, 0x54, 0x02, 0x11, 0xf3, 0xa5, 0xd1, 0x13, 0x15, 0xf1, 0x5d, 0x20, 0x99, 0x6f, 0xa3, 0xad,
+ 0x61, 0x98, 0x63, 0x97, 0xb7, 0x7d, 0xfc, 0x38, 0xbe, 0x5c, 0x86, 0x78, 0xaf, 0x30, 0x6b, 0x27,
+ 0xde, 0xe8, 0x89, 0x98, 0x3a, 0x92, 0x61, 0x4f, 0x10, 0x75, 0x08, 0x4d, 0xc6, 0xa3, 0xb3, 0x1d,
+ 0xf4, 0x0d, 0xc0, 0xdf, 0x4f, 0xcd, 0x18, 0x2a, 0xfd, 0x58, 0x50, 0xbf, 0x81, 0xcf, 0x2c, 0x8e,
+ 0x94, 0xa3, 0xf4, 0x3f, 0x91, 0xf2, 0x1f, 0xa1, 0xa0, 0x47, 0xbe, 0x2f, 0xf0, 0x95, 0x78, 0x4e,
+ 0x2f, 0x48, 0xfa, 0x57, 0x00, 0x67, 0x92, 0x33, 0x86, 0x8a, 0x43, 0xa8, 0x38, 0x3d, 0xee, 0x99,
+ 0xd2, 0x28, 0x29, 0x4a, 0xf7, 0x8e, 0xd4, 0xfd, 0x10, 0x75, 0x06, 0xe8, 0x8e, 0xc6, 0xf4, 0x62,
+ 0x64, 0xaf, 0xdc, 0xde, 0x3f, 0xd2, 0xc0, 0xc1, 0x91, 0x06, 0x3e, 0x1d, 0x69, 0xe0, 0xc5, 0xb1,
+ 0x96, 0x3a, 0x38, 0xd6, 0x52, 0x1f, 0x8e, 0xb5, 0xd4, 0xbd, 0x2b, 0xbd, 0x3b, 0x81, 0x55, 0x49,
+ 0xc1, 0xe6, 0x38, 0x58, 0xc4, 0x2d, 0x6e, 0x75, 0x9a, 0xd4, 0x0b, 0xf9, 0x96, 0x96, 0x0b, 0x82,
+ 0xb2, 0x5c, 0x13, 0xd5, 0xdf, 0xe4, 0xff, 0x87, 0xc5, 0xef, 0x01, 0x00, 0x00, 0xff, 0xff, 0x2b,
+ 0xa4, 0xf4, 0xa9, 0x45, 0x09, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -407,6 +506,8 @@ type QueryClient interface {
IncentivizedPacket(ctx context.Context, in *QueryIncentivizedPacketRequest, opts ...grpc.CallOption) (*QueryIncentivizedPacketResponse, error)
// TotalRecvFees returns the total receive fees for a packet given its identifier
TotalRecvFees(ctx context.Context, in *QueryTotalRecvFeesRequest, opts ...grpc.CallOption) (*QueryTotalRecvFeesResponse, error)
+ // TotalAckFees returns the total acknowledgement fees for a packet given its identifier
+ TotalAckFees(ctx context.Context, in *QueryTotalAckFeesRequest, opts ...grpc.CallOption) (*QueryTotalAckFeesResponse, error)
}
type queryClient struct {
@@ -444,6 +545,15 @@ func (c *queryClient) TotalRecvFees(ctx context.Context, in *QueryTotalRecvFeesR
return out, nil
}
+func (c *queryClient) TotalAckFees(ctx context.Context, in *QueryTotalAckFeesRequest, opts ...grpc.CallOption) (*QueryTotalAckFeesResponse, error) {
+ out := new(QueryTotalAckFeesResponse)
+ err := c.cc.Invoke(ctx, "/ibc.applications.fee.v1.Query/TotalAckFees", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
// QueryServer is the server API for Query service.
type QueryServer interface {
// Gets all incentivized packets
@@ -453,6 +563,8 @@ type QueryServer interface {
IncentivizedPacket(context.Context, *QueryIncentivizedPacketRequest) (*QueryIncentivizedPacketResponse, error)
// TotalRecvFees returns the total receive fees for a packet given its identifier
TotalRecvFees(context.Context, *QueryTotalRecvFeesRequest) (*QueryTotalRecvFeesResponse, error)
+ // TotalAckFees returns the total acknowledgement fees for a packet given its identifier
+ TotalAckFees(context.Context, *QueryTotalAckFeesRequest) (*QueryTotalAckFeesResponse, error)
}
// UnimplementedQueryServer can be embedded to have forward compatible implementations.
@@ -468,6 +580,9 @@ func (*UnimplementedQueryServer) IncentivizedPacket(ctx context.Context, req *Qu
func (*UnimplementedQueryServer) TotalRecvFees(ctx context.Context, req *QueryTotalRecvFeesRequest) (*QueryTotalRecvFeesResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method TotalRecvFees not implemented")
}
+func (*UnimplementedQueryServer) TotalAckFees(ctx context.Context, req *QueryTotalAckFeesRequest) (*QueryTotalAckFeesResponse, error) {
+ return nil, status.Errorf(codes.Unimplemented, "method TotalAckFees not implemented")
+}
func RegisterQueryServer(s grpc1.Server, srv QueryServer) {
s.RegisterService(&_Query_serviceDesc, srv)
@@ -527,6 +642,24 @@ func _Query_TotalRecvFees_Handler(srv interface{}, ctx context.Context, dec func
return interceptor(ctx, in, info, handler)
}
+func _Query_TotalAckFees_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(QueryTotalAckFeesRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(QueryServer).TotalAckFees(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/ibc.applications.fee.v1.Query/TotalAckFees",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(QueryServer).TotalAckFees(ctx, req.(*QueryTotalAckFeesRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
var _Query_serviceDesc = grpc.ServiceDesc{
ServiceName: "ibc.applications.fee.v1.Query",
HandlerType: (*QueryServer)(nil),
@@ -543,6 +676,10 @@ var _Query_serviceDesc = grpc.ServiceDesc{
MethodName: "TotalRecvFees",
Handler: _Query_TotalRecvFees_Handler,
},
+ {
+ MethodName: "TotalAckFees",
+ Handler: _Query_TotalAckFees_Handler,
+ },
},
Streams: []grpc.StreamDesc{},
Metadata: "ibc/applications/fee/v1/query.proto",
@@ -766,6 +903,76 @@ func (m *QueryTotalRecvFeesResponse) MarshalToSizedBuffer(dAtA []byte) (int, err
return len(dAtA) - i, nil
}
+func (m *QueryTotalAckFeesRequest) 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 *QueryTotalAckFeesRequest) MarshalTo(dAtA []byte) (int, error) {
+ size := m.Size()
+ return m.MarshalToSizedBuffer(dAtA[:size])
+}
+
+func (m *QueryTotalAckFeesRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
+ i := len(dAtA)
+ _ = i
+ var l int
+ _ = l
+ {
+ size, err := m.PacketId.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 *QueryTotalAckFeesResponse) 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 *QueryTotalAckFeesResponse) MarshalTo(dAtA []byte) (int, error) {
+ size := m.Size()
+ return m.MarshalToSizedBuffer(dAtA[:size])
+}
+
+func (m *QueryTotalAckFeesResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) {
+ i := len(dAtA)
+ _ = i
+ var l int
+ _ = l
+ if len(m.AckFees) > 0 {
+ for iNdEx := len(m.AckFees) - 1; iNdEx >= 0; iNdEx-- {
+ {
+ size, err := m.AckFees[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 encodeVarintQuery(dAtA []byte, offset int, v uint64) int {
offset -= sovQuery(v)
base := offset
@@ -859,6 +1066,32 @@ func (m *QueryTotalRecvFeesResponse) Size() (n int) {
return n
}
+func (m *QueryTotalAckFeesRequest) Size() (n int) {
+ if m == nil {
+ return 0
+ }
+ var l int
+ _ = l
+ l = m.PacketId.Size()
+ n += 1 + l + sovQuery(uint64(l))
+ return n
+}
+
+func (m *QueryTotalAckFeesResponse) Size() (n int) {
+ if m == nil {
+ return 0
+ }
+ var l int
+ _ = l
+ if len(m.AckFees) > 0 {
+ for _, e := range m.AckFees {
+ l = e.Size()
+ n += 1 + l + sovQuery(uint64(l))
+ }
+ }
+ return n
+}
+
func sovQuery(x uint64) (n int) {
return (math_bits.Len64(x|1) + 6) / 7
}
@@ -1406,6 +1639,173 @@ func (m *QueryTotalRecvFeesResponse) Unmarshal(dAtA []byte) error {
}
return nil
}
+func (m *QueryTotalAckFeesRequest) 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: QueryTotalAckFeesRequest: wiretype end group for non-group")
+ }
+ if fieldNum <= 0 {
+ return fmt.Errorf("proto: QueryTotalAckFeesRequest: illegal tag %d (wire type %d)", fieldNum, wire)
+ }
+ switch fieldNum {
+ case 1:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field PacketId", 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
+ }
+ if err := m.PacketId.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 *QueryTotalAckFeesResponse) 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: QueryTotalAckFeesResponse: wiretype end group for non-group")
+ }
+ if fieldNum <= 0 {
+ return fmt.Errorf("proto: QueryTotalAckFeesResponse: illegal tag %d (wire type %d)", fieldNum, wire)
+ }
+ switch fieldNum {
+ case 1:
+ if wireType != 2 {
+ return fmt.Errorf("proto: wrong wireType = %d for field AckFees", 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.AckFees = append(m.AckFees, types1.Coin{})
+ if err := m.AckFees[len(m.AckFees)-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 skipQuery(dAtA []byte) (n int, err error) {
l := len(dAtA)
iNdEx := 0
diff --git a/modules/apps/29-fee/types/query.pb.gw.go b/modules/apps/29-fee/types/query.pb.gw.go
index e9626d2a08e..b2e40834aa8 100644
--- a/modules/apps/29-fee/types/query.pb.gw.go
+++ b/modules/apps/29-fee/types/query.pb.gw.go
@@ -299,6 +299,122 @@ func local_request_Query_TotalRecvFees_0(ctx context.Context, marshaler runtime.
}
+var (
+ filter_Query_TotalAckFees_0 = &utilities.DoubleArray{Encoding: map[string]int{"packet_id": 0, "port_id": 1, "channel_id": 2, "sequence": 3}, Base: []int{1, 1, 1, 2, 3, 0, 0, 0}, Check: []int{0, 1, 2, 2, 2, 3, 4, 5}}
+)
+
+func request_Query_TotalAckFees_0(ctx context.Context, marshaler runtime.Marshaler, client QueryClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq QueryTotalAckFeesRequest
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["packet_id.port_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "packet_id.port_id")
+ }
+
+ err = runtime.PopulateFieldFromPath(&protoReq, "packet_id.port_id", val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "packet_id.port_id", err)
+ }
+
+ val, ok = pathParams["packet_id.channel_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "packet_id.channel_id")
+ }
+
+ err = runtime.PopulateFieldFromPath(&protoReq, "packet_id.channel_id", val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "packet_id.channel_id", err)
+ }
+
+ val, ok = pathParams["packet_id.sequence"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "packet_id.sequence")
+ }
+
+ err = runtime.PopulateFieldFromPath(&protoReq, "packet_id.sequence", val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "packet_id.sequence", err)
+ }
+
+ if err := req.ParseForm(); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+ if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_Query_TotalAckFees_0); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := client.TotalAckFees(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
+ return msg, metadata, err
+
+}
+
+func local_request_Query_TotalAckFees_0(ctx context.Context, marshaler runtime.Marshaler, server QueryServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq QueryTotalAckFeesRequest
+ var metadata runtime.ServerMetadata
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["packet_id.port_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "packet_id.port_id")
+ }
+
+ err = runtime.PopulateFieldFromPath(&protoReq, "packet_id.port_id", val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "packet_id.port_id", err)
+ }
+
+ val, ok = pathParams["packet_id.channel_id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "packet_id.channel_id")
+ }
+
+ err = runtime.PopulateFieldFromPath(&protoReq, "packet_id.channel_id", val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "packet_id.channel_id", err)
+ }
+
+ val, ok = pathParams["packet_id.sequence"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "packet_id.sequence")
+ }
+
+ err = runtime.PopulateFieldFromPath(&protoReq, "packet_id.sequence", val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "packet_id.sequence", err)
+ }
+
+ if err := req.ParseForm(); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+ if err := runtime.PopulateQueryParameters(&protoReq, req.Form, filter_Query_TotalAckFees_0); err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ msg, err := server.TotalAckFees(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
// RegisterQueryHandlerServer registers the http handlers for service Query to "mux".
// UnaryRPC :call QueryServer directly.
// StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.
@@ -365,6 +481,26 @@ func RegisterQueryHandlerServer(ctx context.Context, mux *runtime.ServeMux, serv
})
+ mux.Handle("GET", pattern_Query_TotalAckFees_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.AnnotateIncomingContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_Query_TotalAckFees_0(rctx, inboundMarshaler, server, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_Query_TotalAckFees_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
return nil
}
@@ -466,6 +602,26 @@ func RegisterQueryHandlerClient(ctx context.Context, mux *runtime.ServeMux, clie
})
+ mux.Handle("GET", pattern_Query_TotalAckFees_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_TotalAckFees_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_TotalAckFees_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
return nil
}
@@ -475,6 +631,8 @@ var (
pattern_Query_IncentivizedPacket_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 2, 5, 1, 0, 4, 1, 5, 6, 2, 7, 1, 0, 4, 1, 5, 8, 2, 9, 1, 0, 4, 1, 5, 10}, []string{"ibc", "apps", "fee", "v1", "incentivized_packet", "port", "packet_id.port_id", "channel", "packet_id.channel_id", "sequence", "packet_id.sequence"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_Query_TotalRecvFees_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 2, 5, 1, 0, 4, 1, 5, 6, 2, 7, 1, 0, 4, 1, 5, 8, 2, 9, 1, 0, 4, 1, 5, 10}, []string{"ibc", "apps", "fee", "v1", "total_recv_fees", "port", "packet_id.port_id", "channel", "packet_id.channel_id", "sequence", "packet_id.sequence"}, "", runtime.AssumeColonVerbOpt(true)))
+
+ pattern_Query_TotalAckFees_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2, 2, 3, 2, 4, 2, 5, 1, 0, 4, 1, 5, 6, 2, 7, 1, 0, 4, 1, 5, 8, 2, 9, 1, 0, 4, 1, 5, 10}, []string{"ibc", "apps", "fee", "v1", "total_ack_fees", "port", "packet_id.port_id", "channel", "packet_id.channel_id", "sequence", "packet_id.sequence"}, "", runtime.AssumeColonVerbOpt(true)))
)
var (
@@ -483,4 +641,6 @@ var (
forward_Query_IncentivizedPacket_0 = runtime.ForwardResponseMessage
forward_Query_TotalRecvFees_0 = runtime.ForwardResponseMessage
+
+ forward_Query_TotalAckFees_0 = runtime.ForwardResponseMessage
)
diff --git a/proto/ibc/applications/fee/v1/query.proto b/proto/ibc/applications/fee/v1/query.proto
index 65b677c2fdb..e6ccb64fc77 100644
--- a/proto/ibc/applications/fee/v1/query.proto
+++ b/proto/ibc/applications/fee/v1/query.proto
@@ -31,6 +31,12 @@ service Query {
option (google.api.http).get = "/ibc/apps/fee/v1/total_recv_fees/port/{packet_id.port_id}/channel/"
"{packet_id.channel_id}/sequence/{packet_id.sequence}";
}
+
+ // TotalAckFees returns the total acknowledgement fees for a packet given its identifier
+ rpc TotalAckFees(QueryTotalAckFeesRequest) returns (QueryTotalAckFeesResponse) {
+ option (google.api.http).get = "/ibc/apps/fee/v1/total_ack_fees/port/{packet_id.port_id}/channel/"
+ "{packet_id.channel_id}/sequence/{packet_id.sequence}";
+ }
}
// QueryIncentivizedPacketsRequest is the request type for querying for all incentivized packets
@@ -76,3 +82,19 @@ message QueryTotalRecvFeesResponse {
(gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"
];
}
+
+// QueryTotalAckFeesRequest defines the request type for the TotalAckFees rpc
+message QueryTotalAckFeesRequest {
+ // the packet identifier for the associated fees
+ ibc.core.channel.v1.PacketId packet_id = 1 [(gogoproto.nullable) = false];
+}
+
+// QueryTotalAckFeesResponse defines the response type for the TotalAckFees rpc
+message QueryTotalAckFeesResponse {
+ // the total packet acknowledgement fees
+ repeated cosmos.base.v1beta1.Coin ack_fees = 1 [
+ (gogoproto.moretags) = "yaml:\"ack_fees\"",
+ (gogoproto.nullable) = false,
+ (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"
+ ];
+}