npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mock3

v0.1.3

Published

Mock3 is a tool to help DApp testing in UI test

Readme

Mock3

GitHub Workflow Badge

Mock3 is a wrapper using ethers.js to help developing and running UI tests for dApps on Ethereum. This can connect an actual blockchain network such as Goerli Testnet, Infura and Ganache.

Major good things of Mock3 are that it can see actual blockchain result(block number, transaction hash and so forth) generated by Ethereum node, and if you combine this with your local Ethereum node (necessary to reset chaindata or just use Ganache) it will be acting like a static mock at every test.

Currently, very limited number of features are covered but it will be better later. (Think positively 💡)

Usage

First, install a package:

yarn add --dev mock3

or if you are using npm:

npm install --save-dev mock3

Second, create a new Mock3 in your source code. You can select one of ways below:

// Set JSON RPC using Infura, Ganache, or your own
// You should set RPC_URL or it will be an error
const web3 = new Mock3('RPC_URL');

You can use if branch using NODE_ENV or your own way to select which web3 will be used.

let web3;
if (NODE_ENV === 'test') {
  web3 = new Mock3('RPC_URL');
} else {
  web3 = window.ethereum; // or something you want
}

Third, set signers you want to use using private keys. You can select one of ways below:

// Set a signer with a single private key
web3.setSigner('0x3afe...');

// Set signers with private key array
web3.setSigner(['0x3afe...', '0xf2f1...']);

You can set a specific account enabled only using setAccountIndex() like real behavior of selecting from MetaMask or just retrieve all accounts.

// Retrieve all accounts set by you
web3.setAccountIndex(null); // or no set at all after creating first
const accounts = (await web3.listAccounts()).map((account) => account.address);

// Just retrieve an account in index 2
web3.setAccountIndex(2);
const account = (await web3.listAccounts()).map((account) => account.address);

Before and After using Mock3

Before:

Web 3 Transaction

After:

You will be free from clicking bunch of MeteMask popups during the development and to add any UI tests related to transactions.

Mock3 Transaction

Development

Clone this repo and link it as a npm package:

git https://github.com/curvegrid/mock3.git
cd mock3
npm link # or yarn link

Then you can add it as a local package in your project:

cd path-to-your-project
npm link mock3 # or yarn link mock3

Contribution

Anything is welcome. 👋 (DO NOT FORGET to add tests for the new PR)