stack_wallet/lib/utilities/test_eth_node_connection.dart
2023-05-30 10:38:47 -06:00

12 lines
299 B
Dart

import 'package:http/http.dart';
import 'package:web3dart/web3dart.dart' as web3;
Future<bool> testEthNodeConnection(String host) async {
web3.Web3Client client = web3.Web3Client(host, Client());
try {
await client.getBlockNumber();
return true;
} catch (_) {
return false;
}
}