transactionMempool method
Implementation
Future<List<dynamic>> transactionMempool(
{required MempoolTransactionType transactionType}) async {
try {
return (await client.get(api('transaction/mempool', {
"type": transactionType.name,
})))[transactionType.name.substring(0, transactionType.name.length - 1)];
} on ExplorerException catch (e) {
throw ExplorerException(
code: e.code, message: '{"mempool": "${e.message}"}');
}
}