supportedEntryPoints method

  1. @override
Future<List<String>> supportedEntryPoints()
override

Returns a list of supported entrypoints for the bundler.

Returns a Future that completes with a list of supported entrypoints.

Implementation

@override
Future<List<String>> supportedEntryPoints() async {
  final entrypointList =
      await _bundlerRpc.send<List<dynamic>>('eth_supportedEntryPoints');
  return List.castFrom(entrypointList);
}