EnsRegistryContract.smartchain constructor

EnsRegistryContract.smartchain({
  1. required EvmRpcInterface rpc,
})

Implementation

factory EnsRegistryContract.smartchain({required EvmRpcInterface rpc}) {
  return EnsRegistryContract(
    contractAddress: znsRegistryContractAddress,
    rpc: rpc,
  );
}