谁是使用松露部署的合同的所有者?
who is the owner of the contracts deployed using truffle?
我正在使用 testrpc 和 truffle 来测试我的合约。
当我输入 truffle migrate
时,这会将我的合约部署到 testrpc 网络。
我的问题是,哪个账户(来自testrpc账户)被用来部署合约。
也就是说,谁的合约拥有者?
提前致谢
默认情况下,所有者是 accounts[0]
,因此列表中的第一个帐户,但您可以通过在 truffle.js 配置文件中添加 "from" 来设置所有者
module.exports = {
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*",
from: "0xda9b1a939350dc7198165ff84c43ce77a723ef73"
}
}
};
有关迁移的更多信息,请参阅此
https://github.com/trufflesuite/truffle/issues/138
我正在使用 testrpc 和 truffle 来测试我的合约。
当我输入 truffle migrate
时,这会将我的合约部署到 testrpc 网络。
我的问题是,哪个账户(来自testrpc账户)被用来部署合约。
也就是说,谁的合约拥有者?
提前致谢
默认情况下,所有者是 accounts[0]
,因此列表中的第一个帐户,但您可以通过在 truffle.js 配置文件中添加 "from" 来设置所有者
module.exports = {
networks: {
development: {
host: "localhost",
port: 8545,
network_id: "*",
from: "0xda9b1a939350dc7198165ff84c43ce77a723ef73"
}
}
};
有关迁移的更多信息,请参阅此 https://github.com/trufflesuite/truffle/issues/138