尝试使用https://github.com/web3j/sample-project-gradle时遇到以下代码:
// We then need to load our Ethereum wallet file
// FIXME: Generate a new wallet file using the web3j command line tools https://docs.web3j.io/command_line.html
Credentials credentials =
WalletUtils.loadCredentials(
"<password>",
"/path/to/<walletfile>");
log.info("Credentials loaded");
我想使用 ganache-cli 创建的网络。我确实成功连接到网络,但我找不到钱包文件。有没有办法在这里使用 ganache-cli 生成的帐户?