getEntryPoint method
Implementation
Future<String> getEntryPoint() async {
if (!isInitialized) {
return entryPointContract.contract.address;
}
if (isVerified) {
return entryPointContract.contract.address;
}
final result = await contract.call("entryPoint", []);
return (result[0] as EthereumAddress).hex;
}