From 8271fef24ab17d4642a2402d0a5966882893c59f Mon Sep 17 00:00:00 2001 From: rustdev Date: Sun, 28 Apr 2024 21:56:44 +0100 Subject: [PATCH] extend AddAllowedIbcToken tx to add the priority of gas for ibc bridge --- .../ibctransfermiddleware/v1beta1/tx.proto | 2 + x/ibctransfermiddleware/client/cli/tx.go | 18 +- x/ibctransfermiddleware/keeper/msg_server.go | 7 +- x/ibctransfermiddleware/types/msg.go | 10 +- x/ibctransfermiddleware/types/tx.pb.go | 169 ++++++++++++------ 5 files changed, 144 insertions(+), 62 deletions(-) diff --git a/proto/composable/ibctransfermiddleware/v1beta1/tx.proto b/proto/composable/ibctransfermiddleware/v1beta1/tx.proto index 91cd2c351..62747d981 100644 --- a/proto/composable/ibctransfermiddleware/v1beta1/tx.proto +++ b/proto/composable/ibctransfermiddleware/v1beta1/tx.proto @@ -107,6 +107,8 @@ message MsgAddAllowedIbcToken { cosmos.base.v1beta1.Coin min_fee = 3 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; int64 percentage = 4; + + repeated TxPriorityFee tx_priority_fee = 5; } message MsgAddAllowedIbcTokenResponse {} diff --git a/x/ibctransfermiddleware/client/cli/tx.go b/x/ibctransfermiddleware/client/cli/tx.go index c8b86a01e..2db622d66 100644 --- a/x/ibctransfermiddleware/client/cli/tx.go +++ b/x/ibctransfermiddleware/client/cli/tx.go @@ -77,10 +77,10 @@ func AddIBCFeeConfig() *cobra.Command { func AddAllowedIbcToken() *cobra.Command { cmd := &cobra.Command{ - Use: "add-allowed-ibc-token [channel] [percentage] [coin]", + Use: "add-allowed-ibc-token [channel] [percentage] [coin] [Amountlow] [Amountmedium] [Amounthigh] ... [Amountxxx]", Short: "add allowed ibc token", - Args: cobra.MatchAll(cobra.ExactArgs(3), cobra.OnlyValidArgs), - Example: fmt.Sprintf("%s tx ibctransfermiddleware add-allowed-ibc-token [channel] [percentage] [coin] (percentage '5' means 1/5 of amount will be taken as fee) ", version.AppName), + Args: cobra.MatchAll(cobra.RangeArgs(3, 10), cobra.OnlyValidArgs), + Example: fmt.Sprintf("%s tx ibctransfermiddleware add-allowed-ibc-token [channel] [percentage] [coin] .. [1000low] [10000medium] [100000high] ... [1000000xxx] (percentage '5' means 1/5 of amount will be taken as fee) ", version.AppName), RunE: func(cmd *cobra.Command, args []string) error { channel := args[0] percentage := args[1] @@ -88,6 +88,17 @@ func AddAllowedIbcToken() *cobra.Command { if err != nil { return err } + length := len(args) + cc := []*types.TxPriorityFee{} + for i := 3; i < length; i++ { + priority, err := sdk.ParseCoinNormalized(args[i]) + if err != nil { + return err + } + priority_str := priority.Denom + priority.Denom = coin.Denom + cc = append(cc, &types.TxPriorityFee{Priority: priority_str, PriorityFee: priority}) + } clientCtx, err := client.GetClientTxContext(cmd) if err != nil { @@ -106,6 +117,7 @@ func AddAllowedIbcToken() *cobra.Command { channel, coin, percentageInt, + cc, ) if err := msg.ValidateBasic(); err != nil { diff --git a/x/ibctransfermiddleware/keeper/msg_server.go b/x/ibctransfermiddleware/keeper/msg_server.go index dbe7b0f76..e9f38ddc5 100644 --- a/x/ibctransfermiddleware/keeper/msg_server.go +++ b/x/ibctransfermiddleware/keeper/msg_server.go @@ -105,11 +105,12 @@ func (ms msgServer) AddAllowedIbcToken(goCtx context.Context, req *types.MsgAddA if coin != nil { coin.MinFee = req.MinFee coin.Percentage = req.Percentage + coin.TxPriorityFee = req.TxPriorityFee } else { - coin := &types.CoinItem{ - MinFee: req.MinFee, - Percentage: req.Percentage, + MinFee: req.MinFee, + Percentage: req.Percentage, + TxPriorityFee: req.TxPriorityFee, } channelFee.AllowedTokens = append(channelFee.AllowedTokens, coin) } diff --git a/x/ibctransfermiddleware/types/msg.go b/x/ibctransfermiddleware/types/msg.go index 7634ad065..ccd9431df 100644 --- a/x/ibctransfermiddleware/types/msg.go +++ b/x/ibctransfermiddleware/types/msg.go @@ -101,12 +101,14 @@ func NewMsgAddAllowedIbcToken( channelID string, minFee sdk.Coin, percentage int64, + txPriorityFee []*TxPriorityFee, ) *MsgAddAllowedIbcToken { return &MsgAddAllowedIbcToken{ - Authority: authority, - ChannelID: channelID, - MinFee: minFee, - Percentage: percentage, + Authority: authority, + ChannelID: channelID, + MinFee: minFee, + Percentage: percentage, + TxPriorityFee: txPriorityFee, } } diff --git a/x/ibctransfermiddleware/types/tx.pb.go b/x/ibctransfermiddleware/types/tx.pb.go index d12a72ed3..df5e22149 100644 --- a/x/ibctransfermiddleware/types/tx.pb.go +++ b/x/ibctransfermiddleware/types/tx.pb.go @@ -335,10 +335,11 @@ var xxx_messageInfo_MsgRemoveIBCFeeConfigResponse proto.InternalMessageInfo type MsgAddAllowedIbcToken struct { // authority is the address that controls the module (defaults to x/gov unless // overwritten). - Authority string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty" yaml:"authority"` - ChannelID string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty" yaml:"channel_id"` - MinFee types.Coin `protobuf:"bytes,3,opt,name=min_fee,json=minFee,proto3" json:"min_fee"` - Percentage int64 `protobuf:"varint,4,opt,name=percentage,proto3" json:"percentage,omitempty"` + Authority string `protobuf:"bytes,1,opt,name=authority,proto3" json:"authority,omitempty" yaml:"authority"` + ChannelID string `protobuf:"bytes,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty" yaml:"channel_id"` + MinFee types.Coin `protobuf:"bytes,3,opt,name=min_fee,json=minFee,proto3" json:"min_fee"` + Percentage int64 `protobuf:"varint,4,opt,name=percentage,proto3" json:"percentage,omitempty"` + TxPriorityFee []*TxPriorityFee `protobuf:"bytes,5,rep,name=tx_priority_fee,json=txPriorityFee,proto3" json:"tx_priority_fee,omitempty"` } func (m *MsgAddAllowedIbcToken) Reset() { *m = MsgAddAllowedIbcToken{} } @@ -402,6 +403,13 @@ func (m *MsgAddAllowedIbcToken) GetPercentage() int64 { return 0 } +func (m *MsgAddAllowedIbcToken) GetTxPriorityFee() []*TxPriorityFee { + if m != nil { + return m.TxPriorityFee + } + return nil +} + type MsgAddAllowedIbcTokenResponse struct { } @@ -554,54 +562,57 @@ func init() { } var fileDescriptor_bf5c053de6965bca = []byte{ - // 752 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0xbf, 0x6f, 0xd3, 0x40, - 0x14, 0x8e, 0x5b, 0x5a, 0x94, 0xab, 0x04, 0xd4, 0xb4, 0x90, 0x46, 0xd4, 0x89, 0x3c, 0x45, 0x95, - 0x48, 0x48, 0x40, 0x54, 0xaa, 0x40, 0x55, 0x7e, 0x50, 0x94, 0x4a, 0x91, 0x50, 0x5a, 0x16, 0x96, - 0xe8, 0x62, 0xbf, 0xb8, 0x16, 0xb9, 0x3b, 0xcb, 0x77, 0xfd, 0x91, 0x0d, 0x31, 0x21, 0x26, 0x16, - 0xd6, 0xae, 0x30, 0x76, 0x60, 0xe2, 0x2f, 0xe8, 0x58, 0xb1, 0xc0, 0x14, 0xa1, 0x74, 0xe8, 0xc6, - 0xd0, 0x1d, 0x09, 0xc5, 0xe7, 0x38, 0x6d, 0xe2, 0x48, 0x4d, 0x3b, 0xd0, 0x25, 0xb6, 0xdf, 0xbb, - 0xf7, 0xf9, 0x7b, 0xdf, 0xcb, 0xfb, 0x12, 0x94, 0x35, 0x18, 0x71, 0x18, 0xc7, 0xf5, 0x26, 0x64, - 0xec, 0xba, 0x21, 0x5c, 0x4c, 0x79, 0x03, 0x5c, 0x62, 0x9b, 0x66, 0x13, 0x76, 0xb1, 0x0b, 0x99, - 0x9d, 0x6c, 0x1d, 0x04, 0xce, 0x66, 0xc4, 0x5e, 0xda, 0x71, 0x99, 0x60, 0x6a, 0xaa, 0x5f, 0x92, - 0x0e, 0x2d, 0x49, 0xfb, 0x25, 0xf1, 0xfb, 0x06, 0xe3, 0x84, 0xf1, 0x0c, 0xe1, 0x56, 0x66, 0x27, - 0xdb, 0xbd, 0x48, 0x88, 0xf8, 0x2c, 0x26, 0x36, 0x65, 0x19, 0xef, 0xd3, 0x0f, 0xcd, 0x59, 0xcc, - 0x62, 0xde, 0x6d, 0xa6, 0x7b, 0xe7, 0x47, 0x17, 0x24, 0x42, 0x4d, 0x26, 0xe4, 0x83, 0x9f, 0x2a, - 0x5d, 0x98, 0x79, 0x38, 0x49, 0x89, 0xa2, 0xf9, 0x14, 0xeb, 0x98, 0xf7, 0x0b, 0x0c, 0x66, 0x53, - 0x99, 0xd7, 0xff, 0x28, 0x28, 0x56, 0xe1, 0xd6, 0x6b, 0xc7, 0xc4, 0x02, 0x8a, 0xdb, 0x5c, 0x30, - 0x52, 0xae, 0x1b, 0xaf, 0xb0, 0x8b, 0x09, 0x57, 0x9f, 0xa2, 0x28, 0xde, 0x16, 0x5b, 0xcc, 0xb5, - 0x45, 0x2b, 0xa6, 0x24, 0x95, 0x54, 0xb4, 0x10, 0xfb, 0xf1, 0xed, 0xe1, 0x9c, 0xcf, 0x33, 0x6f, - 0x9a, 0x2e, 0x70, 0xbe, 0x21, 0x5c, 0x9b, 0x5a, 0xd5, 0xfe, 0x51, 0x75, 0x03, 0x4d, 0x3b, 0x1e, - 0x42, 0x6c, 0x22, 0xa9, 0xa4, 0x66, 0x72, 0x8f, 0xd2, 0x17, 0x95, 0x34, 0x2d, 0xdf, 0x5c, 0x88, - 0x1e, 0xb6, 0x13, 0x91, 0xaf, 0x27, 0x07, 0x4b, 0x4a, 0xd5, 0x87, 0x5a, 0x79, 0xf1, 0xfe, 0xe4, - 0x60, 0xa9, 0xff, 0x92, 0x8f, 0x27, 0x07, 0x4b, 0xb9, 0x33, 0x12, 0xed, 0x8d, 0x10, 0x29, 0x68, - 0x4e, 0x22, 0xeb, 0x3a, 0x4a, 0x0e, 0x84, 0x82, 0xae, 0xab, 0xc0, 0x1d, 0x46, 0x39, 0xe8, 0x1f, - 0x26, 0x90, 0x5a, 0xe1, 0x56, 0xde, 0x34, 0xcb, 0x85, 0xe2, 0x1a, 0x40, 0x91, 0xd1, 0x86, 0x6d, - 0xa9, 0xb9, 0x61, 0x39, 0xe6, 0x4e, 0xdb, 0x89, 0x3b, 0x2d, 0x4c, 0x9a, 0x2b, 0x7a, 0x90, 0xd2, - 0xcf, 0x4a, 0x91, 0x47, 0xc8, 0xd8, 0xc2, 0x94, 0x42, 0xb3, 0x66, 0x9b, 0x9e, 0x1c, 0xd1, 0x82, - 0xde, 0x69, 0x27, 0xa2, 0x45, 0x19, 0x2d, 0x97, 0x4e, 0xdb, 0x89, 0x59, 0x89, 0xd0, 0x3f, 0xa8, - 0x57, 0xa3, 0xfe, 0x43, 0xd9, 0x54, 0x97, 0xd1, 0x4c, 0x03, 0xa0, 0x86, 0xa5, 0xda, 0xb1, 0x49, - 0x0f, 0xe3, 0xde, 0x69, 0x3b, 0xa1, 0xca, 0x32, 0xb7, 0xd9, 0xea, 0x25, 0xf5, 0x2a, 0x6a, 0x00, - 0xf8, 0x73, 0x51, 0x73, 0x68, 0x9e, 0xd8, 0xb4, 0x26, 0x6c, 0x02, 0x6c, 0x5b, 0x78, 0x57, 0x2e, - 0x30, 0x71, 0x62, 0x37, 0x92, 0x4a, 0x6a, 0xb2, 0x7a, 0x97, 0xd8, 0x74, 0x53, 0xe6, 0x36, 0x7b, - 0xa9, 0x95, 0x5b, 0xe7, 0x55, 0xd6, 0x1f, 0xa0, 0xf8, 0xb0, 0x12, 0x81, 0x50, 0xfb, 0x0a, 0x9a, - 0xaf, 0x70, 0xab, 0x0a, 0x84, 0xed, 0xc0, 0x35, 0xd0, 0x6a, 0x88, 0x7e, 0x02, 0x2d, 0x86, 0xf2, - 0x0b, 0x3a, 0xf8, 0x2b, 0x3b, 0xc8, 0x9b, 0x66, 0xbe, 0xd9, 0x64, 0xbb, 0x60, 0x96, 0xeb, 0xc6, - 0x26, 0x7b, 0x0b, 0xf4, 0x7f, 0x4d, 0xfb, 0x39, 0xba, 0xd9, 0x1d, 0x5a, 0x03, 0xc0, 0x9b, 0xf4, - 0x4c, 0x6e, 0x21, 0xed, 0xaf, 0x5b, 0x77, 0x85, 0x83, 0x3d, 0x29, 0x32, 0x9b, 0x9e, 0xdb, 0x12, - 0x62, 0xd3, 0x35, 0x00, 0x55, 0x43, 0xc8, 0x01, 0xd7, 0x00, 0x2a, 0xb0, 0x05, 0xfe, 0xa0, 0xcf, - 0x44, 0x46, 0x08, 0x34, 0xdc, 0x7e, 0x20, 0xd0, 0x4f, 0x69, 0x10, 0x52, 0xc2, 0x6b, 0xa2, 0xd1, - 0x13, 0x34, 0x65, 0x02, 0x65, 0xc4, 0xdf, 0x05, 0xad, 0xd3, 0x4e, 0x4c, 0x95, 0xba, 0x81, 0xf0, - 0x4a, 0x79, 0x78, 0xa8, 0x75, 0xe9, 0x04, 0xa1, 0x8d, 0xf5, 0xba, 0xcf, 0x7d, 0x9f, 0x46, 0x93, - 0x15, 0x6e, 0xa9, 0x5f, 0x14, 0x34, 0x1f, 0xee, 0x91, 0x85, 0x8b, 0x7b, 0xdb, 0x28, 0x9f, 0x8d, - 0xaf, 0x5f, 0x02, 0x63, 0x84, 0x77, 0xa9, 0x9f, 0x15, 0x74, 0x7b, 0xd0, 0xb8, 0x9e, 0x8d, 0x85, - 0x3f, 0x50, 0x1d, 0x2f, 0x5d, 0xa5, 0x3a, 0xe0, 0xb5, 0xaf, 0x20, 0x35, 0xc4, 0x27, 0x56, 0xc7, - 0x02, 0x1f, 0x06, 0x88, 0xbf, 0xbc, 0x22, 0xc0, 0x39, 0x82, 0x21, 0x36, 0xb0, 0x3a, 0x6e, 0xf7, - 0x03, 0x00, 0x63, 0x12, 0x1c, 0xbd, 0x89, 0xde, 0x77, 0x30, 0x7c, 0x0d, 0x0b, 0x97, 0xd0, 0x60, - 0x90, 0xe6, 0xfa, 0xd5, 0x31, 0x7a, 0x4c, 0xe3, 0x53, 0xef, 0xba, 0x9e, 0x54, 0x58, 0x3e, 0xec, - 0x68, 0xca, 0x51, 0x47, 0x53, 0x7e, 0x77, 0x34, 0xe5, 0xd3, 0xb1, 0x16, 0x39, 0x3a, 0xd6, 0x22, - 0xbf, 0x8e, 0xb5, 0xc8, 0x9b, 0xc5, 0x51, 0xbf, 0xd6, 0xa2, 0xe5, 0x00, 0xaf, 0x4f, 0x7b, 0xff, - 0x4d, 0x1e, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x4d, 0x96, 0xfe, 0x14, 0xbd, 0x09, 0x00, 0x00, + // 789 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0xbf, 0x6f, 0xda, 0x5a, + 0x14, 0xc6, 0xe1, 0x91, 0x27, 0x2e, 0x7a, 0x2f, 0x2f, 0x7e, 0xc9, 0x7b, 0x04, 0x35, 0x06, 0x79, + 0x42, 0x91, 0x0a, 0x85, 0x56, 0x8d, 0x14, 0xb5, 0x8a, 0xf8, 0xd1, 0x54, 0x44, 0x42, 0x8a, 0x1c, + 0xba, 0x74, 0x41, 0xc6, 0x3e, 0x38, 0x56, 0xf1, 0xbd, 0x96, 0xef, 0x4d, 0x02, 0x5b, 0xd5, 0xa9, + 0xea, 0xd4, 0xa5, 0x6b, 0xd6, 0x76, 0xcc, 0xd0, 0xa9, 0x7f, 0x41, 0xc6, 0xa8, 0x4b, 0x3b, 0xa1, + 0x8a, 0x0c, 0xd9, 0x3a, 0xe4, 0x2f, 0xa8, 0xf0, 0x35, 0x86, 0x80, 0x91, 0x20, 0x19, 0x9a, 0x05, + 0xdb, 0xe7, 0xf8, 0x7c, 0xf7, 0x3b, 0xdf, 0xc7, 0x39, 0x32, 0xca, 0x69, 0xc4, 0xb2, 0x09, 0x55, + 0x1b, 0x2d, 0xc8, 0x9a, 0x0d, 0x8d, 0x39, 0x2a, 0xa6, 0x4d, 0x70, 0x2c, 0x53, 0xd7, 0x5b, 0x70, + 0xac, 0x3a, 0x90, 0x3d, 0xca, 0x35, 0x80, 0xa9, 0xb9, 0x2c, 0x6b, 0x67, 0x6c, 0x87, 0x30, 0x22, + 0xa6, 0x87, 0x25, 0x99, 0xc0, 0x92, 0x8c, 0x57, 0x92, 0xf8, 0x5f, 0x23, 0xd4, 0x22, 0x34, 0x6b, + 0x51, 0x23, 0x7b, 0x94, 0xeb, 0x5f, 0x38, 0x44, 0x62, 0x59, 0xb5, 0x4c, 0x4c, 0xb2, 0xee, 0xaf, + 0x17, 0x5a, 0x31, 0x88, 0x41, 0xdc, 0xdb, 0x6c, 0xff, 0xce, 0x8b, 0xae, 0x71, 0x84, 0x3a, 0x4f, + 0xf0, 0x07, 0x2f, 0x55, 0x9e, 0x99, 0x79, 0x30, 0x49, 0x8e, 0x22, 0x79, 0x14, 0x1b, 0x2a, 0x1d, + 0x16, 0x68, 0xc4, 0xc4, 0x3c, 0x2f, 0xff, 0x14, 0x50, 0xbc, 0x4a, 0x8d, 0x17, 0xb6, 0xae, 0x32, + 0x28, 0x1d, 0x52, 0x46, 0xac, 0x4a, 0x43, 0xdb, 0x53, 0x1d, 0xd5, 0xa2, 0xe2, 0x63, 0x14, 0x55, + 0x0f, 0xd9, 0x01, 0x71, 0x4c, 0xd6, 0x89, 0x0b, 0x29, 0x21, 0x1d, 0x2d, 0xc6, 0xbf, 0x7e, 0xbe, + 0xbf, 0xe2, 0xf1, 0x2c, 0xe8, 0xba, 0x03, 0x94, 0xee, 0x33, 0xc7, 0xc4, 0x86, 0x32, 0x7c, 0x55, + 0xdc, 0x47, 0x8b, 0xb6, 0x8b, 0x10, 0x5f, 0x48, 0x09, 0xe9, 0x58, 0xfe, 0x41, 0x66, 0x56, 0x49, + 0x33, 0xfc, 0xe4, 0x62, 0xf4, 0xac, 0x9b, 0x0c, 0x7d, 0xba, 0x3c, 0xdd, 0x10, 0x14, 0x0f, 0x6a, + 0xeb, 0xd9, 0x9b, 0xcb, 0xd3, 0x8d, 0xe1, 0x21, 0xef, 0x2e, 0x4f, 0x37, 0xf2, 0x23, 0x12, 0xb5, + 0xa7, 0x88, 0xe4, 0x37, 0xc7, 0x91, 0x65, 0x19, 0xa5, 0xc6, 0x42, 0x7e, 0xd7, 0x0a, 0x50, 0x9b, + 0x60, 0x0a, 0xf2, 0xdb, 0x05, 0x24, 0x56, 0xa9, 0x51, 0xd0, 0xf5, 0x4a, 0xb1, 0xb4, 0x03, 0x50, + 0x22, 0xb8, 0x69, 0x1a, 0x62, 0x7e, 0x52, 0x8e, 0x95, 0xab, 0x6e, 0xf2, 0x9f, 0x8e, 0x6a, 0xb5, + 0xb6, 0x64, 0x3f, 0x25, 0x8f, 0x4a, 0x51, 0x40, 0x48, 0x3b, 0x50, 0x31, 0x86, 0x56, 0xdd, 0xd4, + 0x5d, 0x39, 0xa2, 0x45, 0xb9, 0xd7, 0x4d, 0x46, 0x4b, 0x3c, 0x5a, 0x29, 0x5f, 0x75, 0x93, 0xcb, + 0x1c, 0x61, 0xf8, 0xa2, 0xac, 0x44, 0xbd, 0x87, 0x8a, 0x2e, 0x6e, 0xa2, 0x58, 0x13, 0xa0, 0xae, + 0x72, 0xb5, 0xe3, 0x61, 0x17, 0xe3, 0xbf, 0xab, 0x6e, 0x52, 0xe4, 0x65, 0x4e, 0xab, 0x33, 0x48, + 0xca, 0x0a, 0x6a, 0x02, 0x78, 0xbe, 0x88, 0x79, 0xb4, 0x6a, 0x99, 0xb8, 0xce, 0x4c, 0x0b, 0xc8, + 0x21, 0x73, 0xaf, 0x94, 0xa9, 0x96, 0x1d, 0xff, 0x23, 0x25, 0xa4, 0xc3, 0xca, 0xbf, 0x96, 0x89, + 0x6b, 0x3c, 0x57, 0x1b, 0xa4, 0xb6, 0xfe, 0xbe, 0xae, 0xb2, 0x7c, 0x0f, 0x25, 0x26, 0x95, 0xf0, + 0x85, 0x3a, 0x11, 0xd0, 0x6a, 0x95, 0x1a, 0x0a, 0x58, 0xe4, 0x08, 0xee, 0x80, 0x56, 0x13, 0xf4, + 0x93, 0x68, 0x3d, 0x90, 0x9f, 0xdf, 0x41, 0x77, 0xc1, 0xed, 0xa0, 0xa0, 0xeb, 0x85, 0x56, 0x8b, + 0x1c, 0x83, 0x5e, 0x69, 0x68, 0x35, 0xf2, 0x0a, 0xf0, 0xef, 0x72, 0xfb, 0x29, 0xfa, 0xb3, 0x6f, + 0x5a, 0x13, 0xc0, 0x75, 0x3a, 0x96, 0x5f, 0xcb, 0x78, 0xe3, 0xd6, 0x1f, 0x61, 0x7f, 0x4e, 0x4a, + 0xc4, 0xc4, 0xd7, 0xa6, 0xc4, 0x32, 0xf1, 0x0e, 0x80, 0x28, 0x21, 0x64, 0x83, 0xa3, 0x01, 0x66, + 0xaa, 0x01, 0x9e, 0xd1, 0x23, 0x11, 0xb1, 0x8e, 0x96, 0x58, 0xbb, 0x6e, 0x3b, 0xa6, 0x4b, 0xd8, + 0x3d, 0x26, 0x92, 0x0a, 0xa7, 0x63, 0xf9, 0xcd, 0xd9, 0x67, 0xb4, 0xd6, 0xde, 0xf3, 0xea, 0x77, + 0x00, 0x94, 0xbf, 0xd8, 0xe8, 0xe3, 0x14, 0x07, 0x26, 0xf5, 0xf5, 0x1d, 0xf8, 0xc6, 0x37, 0x10, + 0xf7, 0xe8, 0x8e, 0x98, 0xf0, 0x08, 0x45, 0x74, 0xc0, 0xc4, 0xf2, 0x86, 0x4d, 0xea, 0x75, 0x93, + 0x91, 0x72, 0x3f, 0x10, 0x5c, 0xc9, 0x5f, 0x9e, 0x68, 0x9d, 0xaf, 0x9a, 0xc0, 0xc6, 0x06, 0xdd, + 0xe7, 0xbf, 0x2c, 0xa2, 0x70, 0x95, 0x1a, 0xe2, 0x47, 0x01, 0xad, 0x06, 0x2f, 0xe1, 0xe2, 0xec, + 0xc6, 0x4c, 0x5b, 0xe4, 0x89, 0xdd, 0x1b, 0x60, 0x4c, 0x59, 0x8e, 0xe2, 0x07, 0x01, 0x2d, 0x8d, + 0x6f, 0xc6, 0x27, 0x73, 0xe1, 0x8f, 0x55, 0x27, 0xca, 0xb7, 0xa9, 0xf6, 0x79, 0x9d, 0x08, 0x48, + 0x0c, 0x58, 0x44, 0xdb, 0x73, 0x81, 0x4f, 0x02, 0x24, 0x9e, 0xdf, 0x12, 0xe0, 0x1a, 0xc1, 0x80, + 0x3d, 0xb3, 0x3d, 0x6f, 0xf7, 0x63, 0x00, 0x73, 0x12, 0x9c, 0x3e, 0x89, 0xee, 0x7f, 0x30, 0x78, + 0x0c, 0x8b, 0x37, 0xd0, 0x60, 0x9c, 0xe6, 0xee, 0xed, 0x31, 0x06, 0x4c, 0x13, 0x91, 0xd7, 0xfd, + 0xa5, 0x57, 0xdc, 0x3c, 0xeb, 0x49, 0xc2, 0x79, 0x4f, 0x12, 0x7e, 0xf4, 0x24, 0xe1, 0xfd, 0x85, + 0x14, 0x3a, 0xbf, 0x90, 0x42, 0xdf, 0x2f, 0xa4, 0xd0, 0xcb, 0xf5, 0x69, 0x9f, 0x03, 0xac, 0x63, + 0x03, 0x6d, 0x2c, 0xba, 0x1f, 0x3f, 0x0f, 0x7f, 0x05, 0x00, 0x00, 0xff, 0xff, 0x24, 0x32, 0x1d, + 0x8f, 0x1e, 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1043,6 +1054,20 @@ func (m *MsgAddAllowedIbcToken) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l + if len(m.TxPriorityFee) > 0 { + for iNdEx := len(m.TxPriorityFee) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.TxPriorityFee[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTx(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x2a + } + } if m.Percentage != 0 { i = encodeVarintTx(dAtA, i, uint64(m.Percentage)) i-- @@ -1278,6 +1303,12 @@ func (m *MsgAddAllowedIbcToken) Size() (n int) { if m.Percentage != 0 { n += 1 + sovTx(uint64(m.Percentage)) } + if len(m.TxPriorityFee) > 0 { + for _, e := range m.TxPriorityFee { + l = e.Size() + n += 1 + l + sovTx(uint64(l)) + } + } return n } @@ -2015,6 +2046,40 @@ func (m *MsgAddAllowedIbcToken) Unmarshal(dAtA []byte) error { break } } + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TxPriorityFee", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTx + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTx + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTx + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.TxPriorityFee = append(m.TxPriorityFee, &TxPriorityFee{}) + if err := m.TxPriorityFee[len(m.TxPriorityFee)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex default: iNdEx = preIndex skippy, err := skipTx(dAtA[iNdEx:])