MsgSetCommunityPoolRebate.deserialize constructor
Implementation
factory MsgSetCommunityPoolRebate.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return MsgSetCommunityPoolRebate(
creator: decode.getString<String?>(1),
chainId: decode.getString<String?>(2),
rebateRate: decode.getString<String?>(3),
liquidStakedStTokenAmount: decode.getString<String?>(4),
);
}