Mist

Windows - 可以從命令行使用霧嗎?

  • January 24, 2018

我看到可以在 Linux 的命令行中使用霧,但是mistand/orethereumwallet命令在 PowerShell 甚至在 Windows 中的 Git bash 中都不起作用。有什麼方法可以從命令行使用 Mist 嗎?

就像問題評論中提到的 Зелёный 一樣,您必須使用完整路徑以及start命令。**重要提示:**至少在我使用它時,標誌(如-rpc不適用於 PowerShell,儘管它們確實適用於 Git bash。

安裝您的電腦 Geth https://geth.ethereum.org/並安裝 mkdir 目錄使用到 cmd 範例:C:\Program Files\Geth

然後將此文件保存到電腦上的任何驅動器文件名/ genesis.json

{
   "nonce"     : "0x0000000000000055",
   "mixHash"   : "0x0000000000000000000000000000000000000000000000000000000000000000",
   "parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
   "difficulty": "0x20000",
   "gasLimit"  : "0x800000",
   "timestamp" : "0x0",
   "extraData" : "",
   "coinbase"  : "0x0000000000000000000000000000000000000000",
   "alloc"     : {},
   "config"    : {
       "chainId": 100,
       "homesteadBlock": 0,
       "eip155Block": 0,
       "eip158Block": 0
   }
}

然後 geth 文件目錄和命令執行範例:

geth --datadir "D:\bolckchain\chaindata" init "c\genesis.json" 

然後命令執行:

>geth attach  

在此處輸入圖像描述

>admin

然後 Windows 命令執行 謝謝

引用自:https://ethereum.stackexchange.com/questions/37076