Your crypto wallet for everything onchain.
Built for a better Web3 browsing experience in a multichain world with advanced onchain security. Over 550K self-custodial humans trust Zerion each month to explore every layer of web3.
Leading security firms have independently audited the Zerion Extension: Cure-53, Secfault, SlowMist, and Zokyo. Learn more about Zerion's commitment to security and user safety.
The Zerion Extension is available for Chromium-based browsers.
You can also download the latest build of the Zerion Extension from here.
- Install npm
This project requires Node.js version >=20.10 and npm >=11.10. If you don't have Node.js installed, download and install it from the official website. After installation, you can verify the versions using the following commands:
node --version
npm --versionRun the following command to install all the required dependencies. This command reads the package.json file and installs the necessary packages.
npm installTo reduce exposure to npm supply-chain attacks, this project enforces a 15-day cooldown: npm install will only resolve dependency versions that were published more than 15 days ago. Compromised "fresh" releases are usually detected and unpublished within that window.
This is configured via min-release-age=15 in the project's .npmrc and requires npm >=11.10 (older npm silently ignores it). It applies to every npm install here and in CI.
The cooldown only affects version resolution (i.e. updating package-lock.json); a plain install from an existing lockfile is unaffected.
Overriding for an urgent fix. If you need a security patch newer than 15 days, bypass the window for a single install and commit the result:
npm install <package>@<version> --min-release-age=0Then commit the updated package-lock.json with a note explaining why.
Copy the .env.example file:
cp .env.example .envStart the extension locally with:
npm startThis command will build the extension in development mode. The output files are written to the ./dist folder.
- Enable Developer Mode in Chrome: Go to
chrome://extensionsand enable Developer mode. - Import the Extension: Click on "Load unpacked" and select the build folder (
./distfrom the previous step).
GPL-3.0 License
Got questions, feedback, or need help? Chat with us here: https://help.zerion.io
