合约尚未部署到 Rinkeby 网络上检测到的网络(网络/工件不匹配)

Posted

技术标签:

【中文标题】合约尚未部署到 Rinkeby 网络上检测到的网络(网络/工件不匹配)【英文标题】:contract has not been deployed to detected network (network/artifact mismatch) on Rinkeby Network 【发布时间】:2018-07-19 12:53:07 【问题描述】:

我一直遇到标题中指定的问题。

我开发了一个智能合约,并成功编译并部署到网络上,如下: 1.运行testrpc 2.松露编译 3.松露迁移

但是,上面的错误仍然显示。 然后我尝试删除构建文件并按照以下步骤操作: 1.运行testrpc 2.松露编译 3. truffle migrate --network rinkeby

错误仍在显示。

下面是 truffle.js 文件

module.exports = 
  migrations_directory: "./migrations",
  networks: 
development: 
  host: "localhost",
  port: 8545,
  network_id: "*" // Match any network id
,
rinkeby: 
  host: "localhost", // Connect to geth on the specified
  port: 8545, 
  network_id: "*",

;

如果有人遇到过任何类似的问题并已解决,如果您能分享您的解决方法,我将不胜感激。

提前致谢

【问题讨论】:

您可以添加完整的geth start 命令吗? 更新:我刚刚注意到合约没有使用 testrpc 正确部署,我尝试通过运行 geth 节点来迁移合约:geth --rinkeby --rpc --rpcapi db,eth,net,web3,personal --unlock <ADDRESS>,我收到以下错误。运行迁移:1_initial_migration.js 部署迁移... ... undefined 遇到错误,保释。网络状态未知。手动查看成功的交易。错误:需要身份验证:密码或解锁@AdamKipnis 知道吗? 你需要使用--password选项和geth来解锁账户。 personal.unlockAccount("Address", "Password") 在 geth 控制台上运行时,它返回 true。并且错误仍然存​​在 更新:我现在收到错误:Error encountered, bailing. Network state unknown. Review successful transactions manually. Error: insufficient funds for gas * price + value 【参考方案1】:

对我来说,以下步骤有效:使用代码在迁移文件夹中创建文件 2_deploy_contract.js

var myContract = artifacts.require("myContract");

module.exports = function(deployer)
  deployer.deploy(myContract);

在终端上运行

$ truffle migrate --reset

我不需要更改 truffle-config.js 中的任何设置

【讨论】:

【参考方案2】:

我遇到了同样的问题,并使用以下代码在迁移文件夹中创建了文件 2_deploy_contract.js:

var myContract = artifacts.require("myContract");

module.exports = function(deployer)
  deployer.deploy(myContract);

我还使用默认设置检查了文件夹根目录下的 truffle-config.js:

rinkeby: 
  host: "localhost", 
  port: 8545, 
  from: "0x0085f8e72391Ce4BB5ce47541C846d059399fA6c", // default address to use for any transaction Truffle makes during migrations
  network_id: 4,
  gas: 4612388 // Gas limit used for deploys

【讨论】:

【参考方案3】:

通过原帖和 cmets 有很多不同的错误信息。我认为最好的办法是提供使用 Truffle 部署到 Rinkeby 的分步指南:

格思

首先,创建您要用于此测试的帐户。看起来您已经完成了这项工作,但为了完整起见,将其包括在内。请注意,我使用的是自定义密钥库目录,因为我喜欢将我的密钥库在不同的网络中分开。

geth --rinkeby --keystore ./eth/accounts/rinkeby/keystore account new

输入密码后,您将取回您的新地址。创建帐户后,创建一个名为 pass.txt 的新文本文件,并将用于创建帐户的密码放入文件中并保存。

显然这不是保证密码安全的首选方式。不要在现场环境中这样做

您还需要向您的帐户添加一些以太币。使用faucet.rinkeby.io。

接下来,确保您正确地开始启动 Geth 并且它处于正确的状态。我使用自定义数据和密钥库目录。如果您愿意,可以使用默认值。

geth --rpc --datadir ./eth/geth/data/rinkeby --keystore ./eth/accounts/rinkeby/keystore --rinkeby --rpccorsdomain '*' --rpcapi 'web3,eth,net,personal' --unlock '0x25e6C81C823D4e15084F8e93F4d9B7F365C0857d' --password ./pass.txt --syncmode="full" --cache=1024

用您创建的地址替换我的地址。启动后,您应该会看到如下内容:

INFO [02-13|17:47:24] Starting peer-to-peer node               instance=Geth/TrustDevTestNode/v1.7.3-stable-4bb3c89d/windows-amd64/go1.9
INFO [02-13|17:47:24] Allocated cache and file handles         database=C:\\cygwin\\home\\adamk\\eth\\geth\\data\\rinkeby\\geth\\chaindata cache=1024 handles=1024
INFO [02-13|17:47:47] Initialised chain configuration          config="ChainID: 4 Homestead: 1 DAO: <nil> DAOSupport: true EIP150: 2 EIP155: 3 EIP158: 3 Byzantium: 1035301 Engine: clique"
INFO [02-13|17:47:47] Initialising Ethereum protocol           versions="[63 62]" network=4
INFO [02-13|17:47:47] Loaded most recent local header          number=1766839 hash=6d71ad…ca5a95 td=3285475
INFO [02-13|17:47:47] Loaded most recent local full block      number=1766839 hash=6d71ad…ca5a95 td=3285475
INFO [02-13|17:47:47] Loaded most recent local fast block      number=1766839 hash=6d71ad…ca5a95 td=3285475
INFO [02-13|17:47:47] Loaded local transaction journal         transactions=0 dropped=0
INFO [02-13|17:47:47] Regenerated local transaction journal    transactions=0 accounts=0
INFO [02-13|17:47:48] Starting P2P networking
2018/02/13 17:47:50 ssdp: got unexpected search target result "upnp:rootdevice"
2018/02/13 17:47:50 ssdp: got unexpected search target result "uuid:2f402f80-da50-11e1-9b23-001788409545"
2018/02/13 17:47:50 ssdp: got unexpected search target result "urn:schemas-upnp-org:device:basic:1"
2018/02/13 17:47:50 ssdp: got unexpected search target result "upnp:rootdevice"
2018/02/13 17:47:50 ssdp: got unexpected search target result "uuid:2f402f80-da50-11e1-9b23-001788409545"
INFO [02-13|17:47:51] UDP listener up                          self=enode://751bc7825c66f9ab5b87f933d6b6302fd14434b7ed4d7c921c3f39684915843078eda4e995c927561067946b4f856ca2a35ea7285c27439c0f535338aaca80e9@172.88.30.226:30303
INFO [02-13|17:47:51] RLPx listener up                         self=enode://751bc7825c66f9ab5b87f933d6b6302fd14434b7ed4d7c921c3f39684915843078eda4e995c927561067946b4f856ca2a35ea7285c27439c0f535338aaca80e9@172.88.30.226:30303
INFO [02-13|17:47:51] IPC endpoint opened: \\.\pipe\geth.ipc
INFO [02-13|17:47:51] HTTP endpoint opened: http://127.0.0.1:8545
INFO [02-13|17:47:52] Unlocked account                         address=0x25e6C81C823D4e15084F8e93F4d9B7F365C0857d
确认 network=4。 确认显示正在解锁的帐户的最后一行成功且没有错误。 一旦您的节点启动,请确保它已完全同步。

松露

truffle.js(或 truffle-config.js,如果是 Windows):

module.exports = 
  networks: 
    development: 
      host: "localhost",
      port: 8545,
      network_id: "*" // Match any network id
    ,
    rinkeby: 
      host: "localhost",
      port: 8545,
      from: "0x25e6c81c823d4e15084f8e93f4d9b7f365c0857d",
      network_id: "4"
    
  
;

使用 Truffle 控制台确认您的节点和帐户:

$ truffle console --network rinkeby
truffle(rinkeby)> web3.eth.blockNumber
1767136 // Confirm latest block number on https://rinkeby.etherscan.io/
truffle(rinkeby)> web3.eth.getBalance('0x25e6c81c823d4e15084f8e93f4d9b7f365c0857d');
 [String: '2956062100000000000'] s: 1, e: 18, c: [ 29560, 62100000000000 ] 

退出控制台并运行您的编译/迁移(这将需要大约一分钟才能运行):

$ truffle migrate --network rinkeby
Compiling .\contracts\LoopExample.sol...
Writing artifacts to .\build\contracts

Using network 'rinkeby'.

Running migration: 1_initial_migration.js
  Deploying Migrations...
  ... 0xf377be391a2eaff821c0405256c6a1f50389650ea9754bdc2711296b02533e02
  Migrations: 0x9cef8d8959d0611046d5144ec0439473ad842c7c
Saving successful migration to network...
  ... 0x4cf989973ea56a9aa4477effaccd9b59bfb80cc0e0e1b7878ff25fa5cae328db
Saving artifacts...
Running migration: 2_deploy_contracts.js
  Deploying LoopExample...
  ... 0x4977c60fd86e1c4ab09d8f970be7b7827ee25245575bfbe206c19c6b065e9031
  LoopExample: 0x56b9c563f287cdd6a9a41e4678ceeeb6fc56e104
Saving successful migration to network...
  ... 0x5628d64dc43708ccb30d7754a440e8e420a82a7b3770539cb94302fe7ad9098f
Saving artifacts...

在 etherscan 上确认部署:https://rinkeby.etherscan.io/address/0x56b9c563f287cdd6a9a41e4678ceeeb6fc56e104

【讨论】:

【参考方案4】:

我遇到了同样的问题,以下为我解决了:

...配置 1_initial_migration.js 以部署 TodoList 合约以使其工作。在执行 truffle init 时,它会部署一个 Migration.sol 合约,因此您必须更改它:

var TodoList = artifacts.require('../contracts/TodoList.sol');
module.exports = function(deployer) 
  deployer.deploy(TodoList);


来源:https://medium.com/@addibro/i-had-to-fiddle-around-with-truffle-compile-and-migrate-first-and-also-configuring-the-9bc7a6ea8e3e

【讨论】:

您能分享一下您将如何使用构造函数及其参数部署合约吗?例如,constructor(address1 _add1, address2 _add2, uint value)

以上是关于合约尚未部署到 Rinkeby 网络上检测到的网络(网络/工件不匹配)的主要内容,如果未能解决你的问题,请参考以下文章

Rinkeby 测试网络上的合约部署和交易不一致失败?

无法将 Solidity 合约部署到 Rinkeby 网络(无效的 asm.js:stdlib 的无效成员)

为部署在 RinkeBy 测试网上的智能合约执行 ERC20 代币“传输函数”的原始交易

以太坊交易在 750 秒内未被挖掘

验证使用 Truffle 部署的智能合约代码

hardhat:将 NFT 部署到 rinkeby 网络时的问题