Future<bool> transactionPending(String txnHash) async { final response = await getTransactionByHash(txnHash); return response["type"] == "pending_transaction"; }