Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
hardhat-ethernal
Advanced tools
Ethernal is a block explorer for EVM-based chains. You can use it with your local chains (the Hardhat network for example), or for chains deployed on remote servers.
It allows you to interact with contracts by automatically generating an UI for all read/write methods. You can also read contract variables in any blocks.
To use Ethernal, you need to synchronize blocks, transactions & artifacts with the dashboard. This plugin allows you to easily do that instead of having to run the CLI separately.
If you are looking for more detailed doc about Ethernal: https://doc.tryethernal.com
Add hardhat-ethernal
to your package.json
, and run npm install
or yarn
In your hardhat-config.js
file, require the plugin:
require('hardhat-ethernal');
That's it! Blocks and transactions will now be synchronized.
It's possible to disable the synchronization by setting ethernalSync
to false
on the hre
object.
You can also specify which workspace you want to synchronize blocks & transactions to (default to the last one used in the dashboard).
extendEnvironment((hre) => {
hre.ethernalSync = true;
hre.ethernalWorkspace = 'Workspace';
});
In your deploy script, first require the plugin:
const ethernal = require('hardhat-ethernal');
Then, push your artifacts to Ethernal, after deploying your contract:
/!\ The name parameter needs to match the name of the contract
const Greeter = await hre.ethers.getContractFactory("Greeter");
const greeter = await Greeter.deploy("Hello, Hardhat!");
await hre.ethernal.push({
name: 'Greeter',
address: greeter.address
});
The following fields will be synchronized:
FAQs
Ethernal Hardhat plugin
The npm package hardhat-ethernal receives a total of 401 weekly downloads. As such, hardhat-ethernal popularity was classified as not popular.
We found that hardhat-ethernal demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.