Iskander Nizamov
Iskander Nizamov
Can we implement some ABI structs generator? It would be very convenient to convert ABI.json to ABIFunction type entities
``` let group = DispatchGroup() group.enter() var network: EthereumNetwork? net_version { result in switch result { case .success(let data): network = data case .failure(let error): self.logger.warning("Client has no network: \(error.localizedDescription)")...
How can I check the connection status for asynchronous calls? I tried use ConnectivityStateMonitor but caught error 'ConnectivityStateMonitor' initializer is inaccessible due to 'internal' protection level, although ConnectivityStateMonitor is public...