You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on this #1263 it may still be good to provide a way to distribute fees between recipient and module on a more dynamic basis
Problem Definition
Based on this #1263
we should probably let the executor of the fee accessor have the ability to distribute any additional fee to the ecosystem
i.e add a string bips = 5; // bips the recipient gets field to MsgAssessCustomMsgFeeRequest
// MsgAssessCustomMsgFeeRequest defines an sdk.Msg type
message MsgAssessCustomMsgFeeRequest {
option (gogoproto.equal) = false;
option (gogoproto.goproto_getters) = false;
option (gogoproto.goproto_stringer) = true;
string name = 1; // optional short name for custom msg fee, this will be emitted as a property of the event
cosmos.base.v1beta1.Coin amount = 2 [(gogoproto.nullable) = false]; // amount of additional fee that must be paid
string recipient = 3; // optional recipient address, the total amount is given to the recipient, if present.
string from = 4; // the signer of the msg
string bips = 5; // bips the recipient gets
}
that maybe a better option
Proposal
Change proto as defined ^^.
Change code to read that field.
Change provwasm and other clients that consume it.
For Admin Use
Not duplicate issue
Appropriate labels applied
Appropriate contributors tagged
Contributor assigned/self-assigned
The text was updated successfully, but these errors were encountered:
Summary
Based on this #1263 it may still be good to provide a way to distribute fees between recipient and module on a more dynamic basis
Problem Definition
Based on this #1263
we should probably let the executor of the fee accessor have the ability to distribute any additional fee to the ecosystem
i.e add a
string bips = 5; // bips the recipient gets
field toMsgAssessCustomMsgFeeRequest
that maybe a better option
Proposal
Change proto as defined ^^.
Change code to read that field.
Change provwasm and other clients that consume it.
For Admin Use
The text was updated successfully, but these errors were encountered: