
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@nomicfoundation/hardhat-ignition-ethers
Advanced tools
The Ethers extension to Hardhat Ignition. Hardhat Ignition is a declarative system for deploying smart contracts on Ethereum. It enables you to define smart contract instances you want to deploy, and any operation you want to run on them. By taking over t
This plugin integrates Hardhat Ignition with ethers.js.
This plugin is part of the Ethers+Mocha Hardhat Toolbox. If you are using that toolbox, there's nothing else you need to do.
To install this plugin, run the following command:
npm install --save-dev @nomicfoundation/hardhat-ignition-ethers
In your hardhat.config.ts
file, import the plugin and add it to the plugins
array:
import hardhatIgnitionEthers from "@nomicfoundation/hardhat-ignition-ethers";
export default {
plugins: [hardhatIgnitionEthers],
};
This plugin adds an ignition
property to each network connection:
import { network } from "hardhat";
import Counter from "../ignition/modules/Counter.js";
const { ignition } = await network.connect();
const { counter } = await ignition.deploy(Counter);
await counter.inc();
console.log(await counter.x());
The ignition
object has a deploy
method that can be used to deploy Ignition modules. This returns an ethers contract instance for each contract returned by the module.
FAQs
The Ethers extension to Hardhat Ignition. Hardhat Ignition is a declarative system for deploying smart contracts on Ethereum. It enables you to define smart contract instances you want to deploy, and any operation you want to run on them. By taking over t
The npm package @nomicfoundation/hardhat-ignition-ethers receives a total of 43,122 weekly downloads. As such, @nomicfoundation/hardhat-ignition-ethers popularity was classified as popular.
We found that @nomicfoundation/hardhat-ignition-ethers demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.