@okxweb3/hardhat-explorer-verify
v1.6.5
Published
Hardhat plugin for verifying contracts on OKExChain
Downloads
178
Keywords
Readme
@okxweb3/hardhat-explorer-verify
Background
The @okxweb3/hardhat-explorer-verify
plugin is designed for the Hardhat framework to verify smart contracts deployed on the EVM chains including X Layer. This plugin focuses on verifying that the deployed contract code matches the original source code, thus enhancing the transparency and trustworthiness of smart contracts. Users can utilize this plugin to verify their contracts on the OKX Chain blockchain explorer without the need for manual submissions.
Features
- Automated Verification: Simplifies the verification process by automatically extracting contract information from the Hardhat project and submitting it to the OKX Chain explorer.
- Security: Ensures that the deployed contracts are identical to the source code, enhancing contract security.
- Ease of Use: The integration is straightforward, requiring minimal configuration to get started.
Installation
To install this plugin in your Hardhat project, use the following command:
npm install @okxweb3/hardhat-explorer-verify
Usage
Install the Plugin: As described in the installation section, first install the
@okxweb3/hardhat-explorer-verify
plugin in your project.Configure Hardhat: In your Hardhat configuration file (usually
hardhat.config.js
orhardhat.config.ts
), import and configure the plugin. Ensure your network configuration and API keys are correctly set.Here is a sample configuration:
import { HardhatUserConfig } from "hardhat/config"; import "@nomicfoundation/hardhat-toolbox"; import '@okxweb3/hardhat-explorer-verify'; // Import the plugin const config: HardhatUserConfig = { solidity: "0.8.24", sourcify: { enabled: true, }, networks: { xlayer: { url: "https://xlayerrpc.example.com", accounts: ["<Your Wallet Private Key>"], }, }, etherscan: { apiKey: '...' }, okxweb3explorer: { apiKey: "<Your API Key>", } }; export default config;
Verify Contracts: After deploying the contracts, use Hardhat to run the verification script. This typically involves running a specific Hardhat task that automatically fetches contract data and submits it to the OKX Chain explorer for verification.
Example command:
npx hardhat okverify --network xlayer <Your Contract Address>
- View Verification Results: Once verification is successful, you can view the verification status and the contract code on the OKX Chain blockchain explorer.
- Verify TransparentUpgradeableProxy Contract
Example command:
npx hardhat okverify --network xlayer --contract <Contract>:<Name> --proxy <address>
--proxy
: mention it's a proxy contract address.
- Veirify Multiple Contracts Simultaneously
To simutaneously verify multiple contracts, you will need to creata a verification script where you include the deployed contract address and their constructor parameters. See the example below for reference:
// scripts/batchVerify.js
async function main() {
const contractsToVerify = [
{
name: "ContractA",
address: "0x1234567890abcdef1234567890abcdef12345678", // replace to real address
args: [42], // replace to real constructor
},
{
name: "ContractB",
address: "0xabcdefabcdefabcdefabcdefabcdefabcdefabcd",
args: ["Hello, Hardhat!"],
},
{
name: "ContractC",
address: "0xabcdefabcdefabcdefabcdefabcdefabcdefabcd",
args: ["0xAbcdefabcdefabcdefabcdefabcdefabcdefAbc"],
},
// More
...
];
for (const contract of contractsToVerify) {
try {
await hre.run("verify:verify", {
address: contract.address,
constructorArguments: contract.args,
});
console.log(`${contract.name} verified at ${contract.address}`);
} catch (error) {
console.error(`Failed to verify ${contract.name} at ${contract.address}:`, error);
}
}
}
main()
.then(() => process.exit(0))
.catch((error) => {
console.error(error);
process.exit(1);
});
Then run the verification script:
npx hardhat run --network <network-name> scripts/batchVerify.js
Note:
- If using 897 Contract, don't add
--proxy
. Directly usenpx hardhat okverify --network xlayer --contract <Contract>:<Name>
This document is designed to help developers effectively use the @okxweb3/hardhat-explorer-verify
plugin. If you have questions or need further assistance, feel free to submit issues to the project's GitHub repository.