14 lines
611 B
Nim
14 lines
611 B
Nim
import pkg/ethers
|
|
|
|
proc currentTime*(provider: Provider): Future[UInt256] {.async.} =
|
|
return (!await provider.getBlock(BlockTag.pending)).timestamp
|
|
|
|
proc advanceTime*(provider: JsonRpcProvider, seconds: UInt256) {.async.} =
|
|
discard await provider.send("evm_increaseTime", @[%("0x" & seconds.toHex)])
|
|
discard await provider.send("evm_mine")
|
|
|
|
proc advanceTimeTo*(provider: JsonRpcProvider, timestamp: UInt256) {.async.} =
|
|
if (await provider.currentTime()) != timestamp:
|
|
discard await provider.send("evm_setNextBlockTimestamp", @[%("0x" & timestamp.toHex)])
|
|
discard await provider.send("evm_mine")
|