https://github.com/beykery/willwallet
以太坊钱包
https://github.com/beykery/willwallet
ethereum java mnemonic wallet
Last synced: 6 months ago
JSON representation
以太坊钱包
- Host: GitHub
- URL: https://github.com/beykery/willwallet
- Owner: beykery
- License: apache-2.0
- Created: 2018-04-08T06:01:13.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-06-17T01:47:36.000Z (about 4 years ago)
- Last Synced: 2025-10-20T15:36:51.395Z (8 months ago)
- Topics: ethereum, java, mnemonic, wallet
- Language: Java
- Size: 102 KB
- Stars: 18
- Watchers: 2
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# willwallet
以太坊钱包
### 坐标
```
org.beykery
willwallet
1.0.5
```
### 使用
WillWallet wa = WillWallet.createWithMnemonic(null, "m/44'/60'/0'/0/0");
String mnemonic = wa.getMnemonic();
String pk = wa.getPrivateKey();
String addr = wa.getAddress();
System.out.println(mnemonic);
System.out.println(pk);
System.out.println(addr);