latestTime.js 213 B

1234567
  1. import { ethGetBlock } from './web3';
  2. // Returns the time of the last mined block in seconds
  3. export default async function latestTime () {
  4. const block = await ethGetBlock('latest');
  5. return block.timestamp;
  6. }