estimateUsd.js 226 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 });