ClientConfig constructor

ClientConfig(
  1. {NetworkConfig network,
  2. CryptoConfig crypto,
  3. AbiConfig abi}
)

Implementation

ClientConfig({
  NetworkConfig network,
  CryptoConfig crypto,
  AbiConfig abi,
}) {
  _network = network;
  _crypto = crypto;
  _abi = abi;
}