【发布时间】:2020-05-10 05:28:46
【问题描述】:
我正在尝试部署我的合同,但它返回此错误
松露迁移 --network ropsten --reset
1_initial_migration.js
======================
Deploying 'Migrations'
----------------------
Error: Error: Error: *** Deployment Failed ***
"Migrations" -- sender account not recognized.
truffle_config.js
ropsten: {
provider: function() {
return new HDWalletProvider(mnemonic, "https://ropsten.infura.io/v3/<PROJECTID>")
},
network_id: "*",
gas: 4000000,
from: "0x4e2f89...."
}
【问题讨论】:
-
您是否尝试将地址的索引应用到提供者? HDWalletProvider(助记符, "ropsten.infura.io/v3/<PROJECTID>", indexOfYourAddress)
-
我没有看到任何关于它的文档,你在哪里读到的?
-
在 HDWalletProvider 文档中
-
有效!!!谢谢 !!!非常感谢您的帮助!
-
我写了一个正确的答案