ChainConfig constructor

ChainConfig({
  1. ChainNamespace chainNamespace = ChainNamespace.eip155,
  2. int? decimals = 18,
  3. String? blockExplorerUrl,
  4. required String chainId,
  5. String? displayName,
  6. required String rpcTarget,
  7. String? ticker,
  8. String? tickerName,
})

Implementation

ChainConfig({
  this.chainNamespace = ChainNamespace.eip155,
  this.decimals = 18,
  this.blockExplorerUrl,
  required this.chainId,
  this.displayName,
  this.logo,
  required this.rpcTarget,
  this.ticker,
  this.tickerName,
});