我有问题,开始与一个帐户,我创建了使用Metamask。这个帐户0x76Eb17471A5fb78EF6768254D1dAEc528ec6b5a8已经收到了来自科万水龙头的多个ETH。
在Windows 10中运行以下命令
奇偶-链kovan --解锁0x76Eb17471A5fb78EF67684D1D1DEC528ec6b5a8-密码password.txt
给出误差
帐户76eb…找不到当前链的b5a8。您可以通过RPC、UI或
parity account new --chain kovan --keys-path C:\Users\test\AppData\Roaming\Parity\Ethereum\keys创建帐户。
但是这个帐户确实存在于Kovan链中!这里有什么问题?

2017-09-17 19:01:01 Starting Parity/v1.7.0-beta-5f2cabd-20170727/x86_64-windows-msvc/rustc1.18.0
2017-09-17 19:01:01 Keys path C:\Users\test\AppData\Roaming\Parity\Ethereum\keys\Kovan
2017-09-17 19:01:01 DB path C:\Users\test\AppData\Local\Parity\Ethereum\chains\kovan\db\9bf388941c25ea98
2017-09-17 19:01:01 Path to dapps C:\Users\test\AppData\Roaming\Parity\Ethereum\dapps
2017-09-17 19:01:01 State DB configuration: fast
2017-09-17 19:01:01 Operating mode: active
Account 76eb…b5a8 not found for the current chain. You can create an account via RPC, UI or `parity account new --chain kovan --keys-path C:\Users\test\AppData\Roaming\Parity\Ethereum\keys`.发布于 2018-04-09 23:08:47
我也碰到这个了。我想问题是我是如何创建我的账户的。
我通过parity account new创建了我的帐户,它默认为ethereum链。我不得不给parity account new --chain kovan打电话。然后,我可以打开我的奇偶科万帐户。
在调用parity account list --chain kovan时,检查帐户地址是否显示
发布于 2022-12-09 09:08:23
你为什么不按代码创建呢?与链的同步可能不是快速和正确的。
因此,您可以尝试使用以下命令解锁帐户:
parity --chain kovan --unlock 0x76Eb17471A5fb78EF6768254D1dAEc528ec6b5a8 --private-key <private_key>通常的方法是,您还可以尝试以平价方式创建一个新帐户,并使用以下命令将资金从Metamask帐户转移到新帐户:
# Create a new account in Parity
parity account new --chain kovan --keys-path C:\Users\test\AppData\Roaming\Parity\Ethereum\keys
# Transfer funds from the Metamask account to the new account in Parity
parity --chain kovan --from 0x76Eb17471A5fb78EF6768254D1dAEc528ec6b5a8 --to <new_account_address> --value <amount>记住用实际值替换占位符(例如<private_key>、<new_account_address>、<amount>),并指定与提供的示例不同的keystore目录的正确路径。
或者你可以选一顶安全帽。
https://ethereum.stackexchange.com/questions/26604
复制相似问题