MsgSetCommunityPoolRebate.deserialize constructor

MsgSetCommunityPoolRebate.deserialize(
  1. List<int> bytes
)

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),
  );
}