我目前正在 Solidity 中开发一个 dapp,并希望经常在本地测试它以及更新 - 所以我真的不想每次都将它重新部署到测试网。但是,每次我部署它时,智能合约部署到的地址都会发生变化,所以我必须将我的前端代码更新到新地址。
有没有办法“强制”智能合约始终部署在同一个地址?或者您可能会想到其他等效的解决方案吗?
谢谢!
您可以通过在文件中传递如下的accounts参数来获取您拥有的帐户列表deploy_migration
:
module.exports = function(deployer, network, accounts) {
// Use the accounts within your migrations.
}
面临同样的问题。我不知道这是否合法,但你可以这样做:
在您的迁移文件中(migrations/1_example_migration.js)
var MyContract = artifacts.require("MyContract");
module.exports = function(deployer) {
console.log(deployer);
console.log(arguments);
let n = 5; // it can be any address from list of available
deployer.deploy(MyContract, {from: arguments[2][n]});
};