
org.bitcoinj.examples.BackupToMnemonicSeed Maven / Gradle / Ivy
package org.bitcoinj.examples;
import org.bitcoinj.core.NetworkParameters;
import org.bitcoinj.core.Wallet;
import org.bitcoinj.params.TestNet3Params;
import org.bitcoinj.wallet.DeterministicSeed;
import com.google.common.base.Joiner;
/**
* The following example shows you how to create a deterministic seed from a hierarchical deterministic wallet represented as a mnemonic code.
* This seed can be used to fully restore your wallet. The RestoreFromSeed.java example shows how to load the wallet from this seed.
*
* In Bitcoin Improvement Proposal (BIP) 39 and BIP 32 describe the details about hierarchical deterministic wallets and mnemonic sentences
* https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki
* https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki
*/
public class BackupToMnemonicSeed {
public static void main(String[] args) {
NetworkParameters params = TestNet3Params.get();
Wallet wallet = new Wallet(params);
DeterministicSeed seed = wallet.getKeyChainSeed();
System.out.println("seed: " + seed.toString());
System.out.println("creation time: " + seed.getCreationTimeSeconds());
System.out.println("mnemonicCode: " + Joiner.on(" ").join(seed.getMnemonicCode()));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy