public FetchDataForKyber(
     IEtherScanService etherScanService,
     IEthPlorerService ethPlorerService)
 {
     _etherScanService = etherScanService;
     _ethPlorerService = ethPlorerService;
 }
 public FetchDataForUniswap(
     IUniswapService uniswapService,
     IEtherScanService etherScanService,
     IEthPlorerService ethPlorerService)
 {
     _uniswapService   = uniswapService;
     _etherScanService = etherScanService;
     _ethPlorerService = ethPlorerService;
 }
Ejemplo n.º 3
0
 public KyberNtf(
     ITelegramService telegramService,
     IEtherScanService etherScanService,
     IEthPlorerService ethPlorerService
     )
 {
     _telegramService  = telegramService;
     _etherScanService = etherScanService;
     _ethPlorerService = ethPlorerService;
 }
Ejemplo n.º 4
0
 public UniNtf(
     ITelegramService telegramService,
     IUniswapService uniswapService,
     IEtherScanService etherScanService,
     IEthPlorerService ethPlorerService)
 {
     _telegramService  = telegramService;
     _uniswapService   = uniswapService;
     _etherScanService = etherScanService;
     _ethPlorerService = ethPlorerService;
 }
 public TokenContractStep(IEtherScanService etherScanService)
 {
     _etherScanService = etherScanService;
 }