区块链技术:简单使用以太坊Web3j

懂币君 百科
2019-02-21 12:02:39

  





1、创建钱包

  1. 生成助记词
    import org.web3j.crypto.MnemonicUtils;
    import static org.web3j.crypto.SecureRandomUtils.secureRandom;

     

    private String generateMnemonics() {     byte[] initialEntropy = new byte[16];     secureRandom().nextBytes(initialEntropy);     String mnemonic = MnemonicUtils.generateMnemonic(initialEntropy); }

  2. 生成种子
    //如果使用密码可能与大部分钱包不兼容
    byte[] seed = MnemonicUtils.generateSeed(mnemonic, password)
    
  3. 生成密钥对和地址
    import org.web3j.utils.Numeric;
    import static org.web3j.crypto.Hash.sha256;
    import org.web3j.crypto.Keys;

     

    ECKeyPair ecKeyPair = ECKeyPair.create(sha256(seed)); String priKeyWithPrefix = Numeric.toHexStringWithPrefix(ecKeyPair.getPrivateKey()); String pubKeyWithPrefix = Numeric.toHexStringWithPrefix(ecKeyPair.getPublicKey());

    //根据公钥或者ECKeyPair获取钱包地址 String address = Keys.getAddress(ecKeyPair); String address = Keys.getAddress(pubKeyWithPrefix);

  4. 生成钱包文件
      WalletFile walletFile = Wallet.createLight(password, keyPair);
    
以上所有流程,在 Web3j 最新版本中被整合进一个方法中
Bip39Wallet wallet = WalletUtils.generateBip39Wallet(password, destinationDirectory)
Bip39Wallet 是一个纯 POJO 对象,包含了钱包文件和助记词。

 

在 BIP39 基础上,Web3j 同时提供了对 BIP44 的支持

Bip39Wallet wallet = Bip44WalletUtils.generateBip44Wallet(password, destinationDirectory)

 

2、恢复钱包

  • 私钥恢复
    ECKeyPair ecKeyPair = ECKeyPair.create(new BigInteger(mPrivateKey,16));
    
  • 助记词恢复通过助记词得到种子 然后再得到公私钥,可参考前面 2-3步
  • 钱包文件恢复
    ECKeyPair ecKeyPair = Wallet.decrypt("密码", WalletFile );
    

 

3、交易

//Web3j web3b = Web3j.build(new HttpService("https://api.myetherapi.com/eth"));
Web3j web3b = Web3j.build(new HttpService());  // defaults to http://localhost:8545/

 

//Credentials credentials = WalletUtils.loadCredentials(password, "/path/to/walletfile"); Credentials credentials = WalletUtils.loadBip39Credentials(password, mnemonic)

TransactionReceipt transactionReceipt = Transfer.sendFunds(web3b, credentials, "0x<address>|<ensName>",BigDecimal.valueOf(1.0), Convert.Unit.ETHER).send();


本文地址: https://www.xiguacaijing.com/news/baike/2019/3841.html
声明:本文经授权发布,除注明来源外,均为西瓜财经用户投稿,不代表西瓜财经立场。转载请注明:西瓜财经(xiguacaijing.com)
提醒:投资有风险,入市需谨慎。若内容涉及投资建议,仅供参考勿作为投资依据。谨防以“区块链”名义进行非法集资。
赞助商