latestTime.js 208 B

123456
  1. import moment from 'moment'
  2. // Returns a moment.js instance representing the time of the last mined block
  3. export default function latestTime() {
  4. return moment.unix(web3.eth.getBlock('latest').timestamp)
  5. }