13

我正在使用 testrpc 和 truffle 来测试我的合同。

当我输入 时truffle migrate,这会将我的合约部署到 testrpc 网络。

我的问题是,哪个帐户(来自 testrpc 帐户)已用于部署合同。

换句话说,合约所有者是谁?

先感谢您

4

1 回答 1

22

默认情况下,所有者是accounts[0]列表中的第一个帐户,但您可以通过在 truffle.js 配置文件中添加“来自”来设置所有者

module.exports = {
  networks: {
    development: {
      host: "localhost",
      port: 8545,
      network_id: "*",
      from: "0xda9b1a939350dc7198165ff84c43ce77a723ef73"
    }
  }
};

有关迁移的更多信息,请参阅此 https://github.com/trufflesuite/truffle/issues/138

于 2017-05-15T13:33:17.817 回答