Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
hardhat-deploy-tenderly
Advanced tools
Hardhat plugin for hardhat-deploy to push contracts to tenderly
A plugin to push contracts to tenderly
This plugin add 2 commands to hardhat
hardhat --network <networkName> tenderly:push
hardhat --network <networkName> tenderly:verify
npm install -D hardhat-deploy-tenderly
And add the following statement to your hardhat.config.ts
:
import "hardhat-deploy-tenderly";
hardhat-deploy
This plugin adds the tenderly:push task to Hardhat:
hardhat --network <networkName> tenderly:push
This will push all your contract currently deployed on that network to tenderly.
You ll have access to all debugging facility of Tenderly but your contract code will remains private to you and tenderly
This plugin adds the tenderly:verify task to Hardhat:
hardhat --network <networkName> tenderly:verify
This will push all your contract currently deployed on that network to tenderly and verify them publicly.
This plugin extends the HardhatConfig
's ProjectPaths
object with an optional
tenderly
field.
This is an example of how to set it:
module.exports = {
tenderly: {
project: '<tenderly project name>',
username: '<tenderly username>',
}
};
Make sure you configure your tenderly settings above.
Install it and you can execute
hardhat --network <networkName> tenderly:push
hardhat --network <networkName> tenderly:verify
FAQs
Hardhat plugin for hardhat-deploy to push contracts to tenderly
The npm package hardhat-deploy-tenderly receives a total of 944 weekly downloads. As such, hardhat-deploy-tenderly popularity was classified as not popular.
We found that hardhat-deploy-tenderly 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.