Hardhat Verify
Verify with Hardhat
Hardhat has an Etherscan plugin: Hardhat Etherscan plugin
Note: Hardhat was previously Buidler.
Install the plugin
Configure the plugin in buidler.config.js
Add require("@nomiclabs/hardhat-etherscan");
Add Bscscan API key
Warning
keep secret and don’t commit to version control)
Go to register and get API key: https://testnet-explorer.brisescan.com/myapikey
Set compiler version to match what was deployed
Verify
Warning
Remove any unnecessary contracts and clear the artifacts otherwise these will also be part of the verified contract.
Run the following command:
Example
Last updated