estimateUsd.js 234 B
Newer Older
/**
 * Estimate ETHUSD
 */

export const estimateUsd = () => {
Rakhi Sharma's avatar
Rakhi Sharma committed
  return fetch('https://api.etherscan.io/api?module=stats&action=ethprice')
    .then(data => data.json())
    .then(data => {
      return data.result.ethusd;
    });