Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
ether-time-traveler
Advanced tools
A utility that simplifies writing time dependent or stateless tests on a local Ethereum blockchain.
A utility that simplifies writing time dependent or stateless tests on a local Ethereum blockchain.
Forked from ejwessel's ganache-time-traveler to allow use in a testing environment using ethers.js.
npm i ether-time-traveler
The general outline is to add require
at the top of your tests
const timeMachine = require('ether-time-traveler');
add the beforeEach
and afterEach
hooks into your test file
contract('Test', async (accounts) => {
const provider = new MockProvider();
let exampleContract;
beforeEach(async() => {
let snapshotId = await timeMachine.takeSnapshot(provider);
};
afterEach(async() => {
await timeMachine.revertToSnapshot(provider, snapshotId);
});
before('Deploy Contracts', async() => {
/* DEPLOY CONTRACTS HERE */
exampleContract = await ExampleContract.new();
});
/* ADD TESTS HERE */
it('Time Dependent Test', async () => {
await timeMachine.advanceTimeAndBlock(provider, SECONDS_TO_ADVANCE_BY)
});
});
advanceTime(<ethers_provider>, <seconds_to_advance_by>)
Advances the time on the blockchain forward. Takes an extra parameter, which is the number of seconds to advance by.
Note: for advancetime() to take effect, the block must also be mined using advanceBlock()
. See advanceTimeAndBlock()
to do both.
advanceBlock(<ethers_provider>)
Mines a new block; advances the block forward by 1 block.
advanceBlockAndSetTime(<ethers_provider>, <new_time>)
Advances the block forward by 1 and sets the time to a new time.
advanceTimeAndBlock(<ethers_provider>, <seconds_to_advance_by>)
Advances the block by 1 in addition to advancing the time on the blockchain forward. Takes an extra parameter, which is the number of seconds to advance by.
takeSnapshot(<ethers_provider>)
Snapshot the state of the blockchain at the current block. Returns the integer id of the snapshot created.
revertToSnapshot(<ethers_provider>, <id_to_revert_to>)
Revert the state of the blockchain to a previous snapshot. Takes an extra parameter, which is the snapshot id to revert to.
FAQs
A utility that simplifies writing time dependent or stateless tests on a local Ethereum blockchain.
The npm package ether-time-traveler receives a total of 0 weekly downloads. As such, ether-time-traveler popularity was classified as not popular.
We found that ether-time-traveler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.