Hardhat plugin for Ethernal
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
Installation
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');
To authenticate, you need to set ETHERNAL_API_TOKEN
in your env variables. You can find the token by logging in at https://app.tryethernal.com > Settings > Account
You can also set them in the config object:
module.exports = {
ethernal: {
apiToken: process.env.ETHERNAL_API_TOKEN
}
};
Synchronize blocks & transactions
Once you've installed the plugin and authenticated, the plugin will automatically sync blocks and transactions going through your node.
By default, it will synchronize to the latest workspace you've used in the dashboard. See next section to learn how to set the workspace manually.
Options
All options need to be under the optional ethernal
key in the Hardhat config object, default values are shown below:
module.exports = {
ethernal: {
disableSync: false,
disableTrace: false,
workspace: undefined,
uploadAst: false,
disabled: false,
resetOnStart: undefined,
serverSync: false,
skipFirstBlock: false,
verbose: false
}
};
Synchronize artifacts
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,
workspace: 'hardhat'
});
By default, the push function is not going to upload AST to Ethernal. If you want to use "Storage" tab on contracts pages, you'll need to activate it. To do so, set the hre.ethernalUploadAst = true
flag in your Hardhat config file (this will upload the ast field, as well as the source field).
Reset a workspace programmatically
You can reset a workspace programmatically by calling: hre.ethernal.resetWorkspace(workspaceName)
(async function). All accounts/blocks/transactions/contracts will be deleted.