confirmedTxs method
Get confirmed transactions for a plugin group
Implementation
Future<TxHistoryPage> confirmedTxs(
String groupHex, {
int page = 0,
int pageSize = 10,
}) async {
final data = await proxy.get(
'/plugin/$pluginName/$groupHex/confirmed-txs?page=$page&page_size=$pageSize',
);
final historyPage = _decodeProto(data, () => pb.TxHistoryPage());
return TxHistoryPage.fromProto(historyPage);
}