Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

406
Views
Hardhat - get latest block number in seconds

How to get the latest block number in seconds (TEST_URL = RPC BSC test) :

const provider = new ethers.providers.JsonRpcProvider(Process.env.TEST_URL);
let timestamp = 0;
// Block Number
provider.getBlockNumber().then(function(blockNumber) {
    timestamp = blockNumber;
});
about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

I think this is what you are looking for

// Get the block number
provider.getBlockNumber().then(function(blockNumber) {

    // getBlock returns a block object and it has a timestamp property.
    provider.getBlock(blockNumber).then(function(block) {

        // Assign block.timestamp to timestamp variable
        timestamp = block.timestamp;
    }
});
about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!