Addresses
用於生成地址和私鑰的控制台應用程序
是否有可以生成地址和私鑰作為控制台視窗輸出的 Windows 控制台應用程序?
在 Windows 平台上,您通常可以選擇使用Nethereum,一個 .NET web3 庫。這可能是首選,因為 Windows 帶有 .NET 執行時,因此您的使用者不必安裝 node.js。
生成私鑰和帳戶非常簡單。
// using Nethereum.Signer; var ecKey = EthECKey.GenerateKey(); var privateKey = ecKey.GetPrivateKey(); var genAddress = ecKey.GetPublicAddress(); Console.WriteLine("Key is {0}", privateKey); Console.WriteLine("Address is {0}", genAddress);
使用 Javascript 和 nodejs。
使用此處的指南安裝 nodejs 和 npm 。
安裝keythereum npm 包。
keythereum 文件(在該頁面上)概述了它的用法。