Truffle

如何使用 truffle-plugin-verify 驗證合約

  • November 15, 2021

我正在嘗試驗證一個簡單的契約。該合約已經部署在 Ropsten 網路上。

import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract Tress is ERC20, AccessControl {
   bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
   bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");

   constructor() public ERC20("TRESS", "TRS") {
       // Grant the contract deployer the default admin role: it will be able
       // to grant and revoke any roles
       _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
   }

   function mint(address to, uint256 amount) public {
       require(hasRole(MINTER_ROLE, msg.sender), "Caller is not a minter");
       _mint(to, amount);
   }

   function burn(address from, uint256 amount) public {
       require(hasRole(BURNER_ROLE, msg.sender), "Caller is not a burner");
       _burn(from, amount);
   }
}

但這對我不起作用。它向我拋出以下錯誤。 在此處輸入圖像描述

我很感激任何幫助

通過查看錯誤,似乎存在文件系統問題,因為該命令沒有看到契約Tress.sol。(您能提供更多詳細資訊嗎?)。

如果您在部署後刪除建構目錄,也會發生驗證期間的錯誤。

對於以後偶然發現此錯誤的任何人。這是 truffle-plugin-verify 中的一個錯誤,此後已在v0.5.3中修復。

引用自:https://ethereum.stackexchange.com/questions/90242