getEntryPoint method
Implementation
Future<Object> 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;
}