Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@compound-finance/hardhat-import
Advanced tools
Hardhat plugin for importing deployed contract bytecode and metadata from etherscan.
Hardhat plugin for importing contract bytecode and metadata from verified etherscan data.
Add to your project via npm. If using local source, first build the project using npm run build
.
Add the following statement to your hardhat.config.js
:
require("@compound-finance/hardhat-import");
Or, if you are using TypeScript, add this to your hardhat.config.ts
:
import "@compound-finance/hardhat-import";
This plugin provides the import
task, which allows you to import contracts from all Ethereum networks (test and mainnet) supported by Etherscan. The result contains the deployed bytecode and metadata.
Add your Etherscan API key to config hardhat.config.js
file:
module.exports = {
networks: {
mainnet: { ... }
},
etherscan: {
// Your API key for Etherscan
// Obtain one at https://etherscan.io/
apiKey: "YOUR_ETHERSCAN_API_KEY"
}
};
Lastly, run the import
task, passing the address of the contract and the network where it's deployed, and an output directory.
npx hardhat import --address <CONTRACT_ADDRESS> --outdir <OUTPUT_DIRECTORY> --network mainnet
To call the import task from within a Hardhat task or script, use the "import"
task. You can run the subtask like this:
const importRes = await hre.run("import", {
address: contractAddress,
});
FAQs
Hardhat plugin for importing deployed contract bytecode and metadata from etherscan.
We found that @compound-finance/hardhat-import demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.