Truffle/Ganache:有没有办法设置部署地址?

Posted

技术标签:

【中文标题】Truffle/Ganache:有没有办法设置部署地址?【英文标题】:Truffle/Ganache: is there a way to set a deployment address? 【发布时间】:2019-08-14 21:23:43 【问题描述】:

我目前正在使用 Solidity 开发一个 dapp,并希望经常在本地测试它以及更新 - 所以我真的不想每次都将它重新部署到测试网络。 但是,每次我部署它时,智能合约的部署地址都会发生变化,所以我必须将我的前端代码更新到新地址。

有没有办法“强制”智能合约始终部署在同一个地址?或者您可能会想到其他等效的解决方案吗?

谢谢!

【问题讨论】:

仅供参考blog.zeppelinos.org/proxy-patterns 这很有趣,但它对我的情况并没有真正的帮助......除非我错过了什么? 【参考方案1】:

您可以通过在follows 文件中传递follows 之类的帐户参数来获取您拥有的帐户列表:

module.exports = function(deployer, network, accounts) 
  // Use the accounts within your migrations.

【讨论】:

【参考方案2】:

面临同样的问题。我不知道这是否合法,但你可以这样做:

在您的迁移文件中 (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]);
;

Documentation

【讨论】:

以上是关于Truffle/Ganache:有没有办法设置部署地址?的主要内容,如果未能解决你的问题,请参考以下文章

Solidity 智能合约迁移错误的 Truffle 和 Ganache 教程

奇了,结婚也能写成区块链智能合约

更新后 Web3.eth.getAccountns() 不工作

有没有办法在 kubernetes 部署(或 statefulset)中为每个 pod 创建一个持久卷?

项目部署时没有出现页面的问题

用tomcat部署上java web项目后在地址里输入地址有没有办法不加项目名