getEntryPoint method

Future<Object> getEntryPoint()

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;
}