我正在使用Truffle在Rinkeby网络上部署智能合约。智能合约包含图书馆的导入(Ownable)。
我正在尝试验证Etherscan上的合同,但我无法:(
似乎Truffle“压扁”了合同代码,但我找不到用于编译的实际输出。
我检查了构建文件夹,我可以找到字节码和已部署的代码,但不能找到“扁平”合同来源。
我在哪里可以找到这些信息?
在Rinkeby上部署:
michael$ truffle deploy --reset --network rinkeby
Using network 'rinkeby'.
Running migration: 1_initial_migration.js
Replacing Migrations...
... 0xe179c58d10d66def5d26a06c89848b88c812458f1c2e92bcff40372e6c476f08
Migrations: 0xa06c5370a513ad9aa25213db9610d77a9533c4c1
Saving successful migration to network...
... 0xaa08dbc87a185613854689ffe408e3dc441344191c52194d835124e37a2a4fd1
Saving artifacts...
Running migration: 2_deploy_contracts.js
Replacing BlockBetGameRegistry...
... 0x9bc7e990dc4ef9dd87f5c69c8a65b0e22cbcda10102abc7067fcfb451ca429bc
BlockBetGameRegistry: 0x7be5198a14ff47815a85adc47bb5f1da31d352e6
Saving successful migration to network...
... 0xb942099bc2201d955bf60ce7ecba9edbe2f664b744f8543d43aa5588ff4d2f2f
Saving artifacts...
合同代码:
pragma solidity 0.4.18;
import 'zeppelin-solidity/contracts/ownership/Ownable.sol';
contract BlockBetGameRegistry is Ownable {
address[] public games;
event eventGameAdded(address game);
function addGame (address _contractAddress) onlyOwner public {
require(_contractAddress != address(0));
games.push(_contractAddress);
eventGameAdded(_contractAddress);
}
function numberOfGames () view public returns (uint256) {
return games.length;
}
}
答案 0 :(得分:1)
不幸的是,Truffle还不支持这一点。它目前是一个开放的功能请求(请参阅feature request)。这似乎是一个流行的问题,Truffle背后的工程师相信支持,所以他们实施它可能只是时间问题。
在此之前,您必须使用一个实用程序来为您展平代码。评论中提到了2个:sol-merger和truffle-flattener。
答案 1 :(得分:0)
正如另一个答案所述,没有本机的松露功能可以帮助解决此问题。但是,Truffle团队在今年年初确实发布了插件功能。因此,我创建了truffle-plugin-verify
来在Etherscan上自动化Truffle合同验证。
npm install truffle-plugin-verify
truffle.js
或truffle-config.js
文件中module.exports = {
/* ... rest of truffle-config */
plugins: [
'truffle-plugin-verify'
]
}
module.exports = {
/* ... rest of truffle-config */
api_keys: {
etherscan: 'MY_API_KEY'
}
}
将合同迁移到公共网络后,您可以通过运行以下命令在Etherscan上进行验证:
truffle run verify ContractName [--network networkName]
更多信息可以在the repository或我的文章Automatically verify Truffle smart contracts on Etherscan中找到。