org.bitcoinj.wallet.KeyChainGroup Java Examples
The following examples show how to use
org.bitcoinj.wallet.KeyChainGroup.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BloomFilterTest.java From bcm-android with GNU General Public License v3.0 | 6 votes |
@Test public void walletTest() throws Exception { Context.propagate(new Context(MAINNET)); DumpedPrivateKey privKey = DumpedPrivateKey.fromBase58(MAINNET, "5Kg1gnAjaLfKiwhhPpGS3QfRg2m6awQvaj98JCZBZQ5SuS2F15C"); Address addr = LegacyAddress.fromKey(MAINNET, privKey.getKey()); assertTrue(addr.toString().equals("17Wx1GQfyPTNWpQMHrTwRSMTCAonSiZx9e")); KeyChainGroup group = new KeyChainGroup(MAINNET); // Add a random key which happens to have been used in a recent generation group.importKeys(ECKey.fromPublicOnly(privKey.getKey().getPubKeyPoint()), ECKey.fromPublicOnly(HEX.decode("03cb219f69f1b49468bd563239a86667e74a06fcba69ac50a08a5cbc42a5808e99"))); Wallet wallet = new Wallet(MAINNET, group); wallet.commitTx(new Transaction(MAINNET, HEX.decode("01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff0d038754030114062f503253482fffffffff01c05e559500000000232103cb219f69f1b49468bd563239a86667e74a06fcba69ac50a08a5cbc42a5808e99ac00000000"))); // We should have 2 per pubkey, and one for the P2PK output we have assertEquals(5, wallet.getBloomFilterElementCount()); BloomFilter filter = wallet.getBloomFilter(wallet.getBloomFilterElementCount(), 0.001, 0); // Value generated by Bitcoin Core assertTrue(Arrays.equals(HEX.decode("082ae5edc8e51d4a03080000000000000002"), filter.unsafeBitcoinSerialize())); }
Example #2
Source File: ElectrumMultiWalletTest.java From java-stratum with Apache License 2.0 | 6 votes |
@Before public void setUp() throws Exception { params = NetworkParameters.fromID(NetworkParameters.ID_UNITTESTNET); mapper = new ObjectMapper(); DeterministicSeed seed = new DeterministicSeed("correct battery horse staple", null, "", 0); DeterministicKeyChain chain = DeterministicKeyChain.builder() .seed(seed) .build(); KeyChainGroup group = new KeyChainGroup(params); group.addAndActivateHDChain(chain); wallet = new SmartWallet(params, group); wallet.setKeychainLookaheadSize(10); control = EasyMock.createStrictControl(); client = control.createMock(StratumClient.class); expect(client.getConnectedAddresses()).andStubReturn(Lists.newArrayList(new InetSocketAddress(InetAddress.getLocalHost(), 0))); expect(client.getPeerVersion()).andStubReturn("1.0"); store = control.createMock(HeadersStore.class); stratumChain = control.createMock(StratumChain.class); expect(stratumChain.getPeerHeight()).andStubReturn(100L); expect(store.get(340242)).andStubReturn(params.getGenesisBlock().cloneAsHeader()); multiWallet = new ElectrumMultiWallet(wallet, BASE_DIRECTORY); multiWallet.start(client, stratumChain, store); }
Example #3
Source File: BloomFilterTest.java From GreenBits with GNU General Public License v3.0 | 6 votes |
@Test public void walletTest() throws Exception { NetworkParameters params = MainNetParams.get(); Context.propagate(new Context(params)); DumpedPrivateKey privKey = DumpedPrivateKey.fromBase58(params, "5Kg1gnAjaLfKiwhhPpGS3QfRg2m6awQvaj98JCZBZQ5SuS2F15C"); Address addr = privKey.getKey().toAddress(params); assertTrue(addr.toString().equals("17Wx1GQfyPTNWpQMHrTwRSMTCAonSiZx9e")); KeyChainGroup group = new KeyChainGroup(params); // Add a random key which happens to have been used in a recent generation group.importKeys(ECKey.fromPublicOnly(privKey.getKey().getPubKeyPoint()), ECKey.fromPublicOnly(HEX.decode("03cb219f69f1b49468bd563239a86667e74a06fcba69ac50a08a5cbc42a5808e99"))); Wallet wallet = new Wallet(params, group); wallet.commitTx(new Transaction(params, HEX.decode("01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff0d038754030114062f503253482fffffffff01c05e559500000000232103cb219f69f1b49468bd563239a86667e74a06fcba69ac50a08a5cbc42a5808e99ac00000000"))); // We should have 2 per pubkey, and one for the pay-2-pubkey output we have assertEquals(5, wallet.getBloomFilterElementCount()); BloomFilter filter = wallet.getBloomFilter(wallet.getBloomFilterElementCount(), 0.001, 0); // Value generated by Bitcoin Core assertTrue(Arrays.equals(HEX.decode("082ae5edc8e51d4a03080000000000000002"), filter.unsafeBitcoinSerialize())); }
Example #4
Source File: BloomFilterTest.java From green_android with GNU General Public License v3.0 | 6 votes |
@Test public void walletTest() throws Exception { NetworkParameters params = MainNetParams.get(); Context.propagate(new Context(params)); DumpedPrivateKey privKey = DumpedPrivateKey.fromBase58(params, "5Kg1gnAjaLfKiwhhPpGS3QfRg2m6awQvaj98JCZBZQ5SuS2F15C"); Address addr = privKey.getKey().toAddress(params); assertTrue(addr.toString().equals("17Wx1GQfyPTNWpQMHrTwRSMTCAonSiZx9e")); KeyChainGroup group = new KeyChainGroup(params); // Add a random key which happens to have been used in a recent generation group.importKeys(ECKey.fromPublicOnly(privKey.getKey().getPubKeyPoint()), ECKey.fromPublicOnly(HEX.decode("03cb219f69f1b49468bd563239a86667e74a06fcba69ac50a08a5cbc42a5808e99"))); Wallet wallet = new Wallet(params, group); wallet.commitTx(new Transaction(params, HEX.decode("01000000010000000000000000000000000000000000000000000000000000000000000000ffffffff0d038754030114062f503253482fffffffff01c05e559500000000232103cb219f69f1b49468bd563239a86667e74a06fcba69ac50a08a5cbc42a5808e99ac00000000"))); // We should have 2 per pubkey, and one for the pay-2-pubkey output we have assertEquals(5, wallet.getBloomFilterElementCount()); BloomFilter filter = wallet.getBloomFilter(wallet.getBloomFilterElementCount(), 0.001, 0); // Value generated by Bitcoin Core assertTrue(Arrays.equals(HEX.decode("082ae5edc8e51d4a03080000000000000002"), filter.unsafeBitcoinSerialize())); }
Example #5
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV(String xprv, WalletCreationCallback callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); walletFriendlyAddress = wallet.currentReceiveAddress().toString(); xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV: " + iae.toString()); callback.onWalletCreated(wallet); return; } callback.onWalletCreated(wallet); RequestorBtc.getUTXOListDgbNew(wallet.currentReceiveAddress().toString(), new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { List<UTXOItemDgb> utxos = (List<UTXOItemDgb>)response; setUTXO(utxos); } @Override public void onFailure(String msg) { } }); }
Example #6
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV2(String xprv, Runnable callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); sharedManager.setLastSyncedBlock(Coders.encodeBase64(xprv)); walletFriendlyAddress = wallet.currentReceiveAddress().toString(); xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV2: " + iae.toString()); callback.run(); return; } callback.run(); RequestorBtc.getUTXOListBch(wallet.currentReceiveAddress().toString(), new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { List<UTXOItem> utxos = (List<UTXOItem>)response; setUTXO(utxos); } @Override public void onFailure(String msg) { } }); }
Example #7
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV(String xprv, WalletCreationCallback callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); walletFriendlyAddress = wallet.currentReceiveAddress().toString(); xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV: " + iae.toString()); callback.onWalletCreated(wallet); return; } callback.onWalletCreated(wallet); RequestorBtc.getUTXOListBch(wallet.currentReceiveAddress().toString(), new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { List<UTXOItem> utxos = (List<UTXOItem>)response; setUTXO(utxos); } @Override public void onFailure(String msg) { } }); }
Example #8
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV2(String xprv, Runnable callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); sharedManager.setLastSyncedBlock(Coders.encodeBase64(xprv)); walletFriendlyAddress = wallet.currentReceiveAddress().toString(); xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV2: " + iae.toString()); callback.run(); return; } callback.run(); RequestorBtc.getUTXOListBch(wallet.currentReceiveAddress().toString(), new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { List<UTXOItem> utxos = (List<UTXOItem>)response; setUTXO(utxos); } @Override public void onFailure(String msg) { } }); }
Example #9
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV(String xprv, WalletCreationCallback callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); walletFriendlyAddress = wallet.currentReceiveAddress().toString(); xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV: " + iae.toString()); callback.onWalletCreated(wallet); return; } callback.onWalletCreated(wallet); RequestorBtc.getUTXOListBch(wallet.currentReceiveAddress().toString(), new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { List<UTXOItem> utxos = (List<UTXOItem>)response; setUTXO(utxos); } @Override public void onFailure(String msg) { } }); }
Example #10
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV2(String xprv, Runnable callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); sharedManager.setLastSyncedBlock(Coders.encodeBase64(xprv)); walletFriendlyAddress = wallet.currentReceiveAddress().toString(); xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV2: " + iae.toString()); callback.run(); return; } callback.run(); RequestorBtc.getUTXOListBtgNew(wallet.currentReceiveAddress().toString(), new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { List<UTXOItem> utxos = (List<UTXOItem>)response; setUTXO(utxos); } @Override public void onFailure(String msg) { } }); }
Example #11
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV(String xprv, WalletCreationCallback callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); walletFriendlyAddress = wallet.currentReceiveAddress().toString(); xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV: " + iae.toString()); callback.onWalletCreated(wallet); return; } callback.onWalletCreated(wallet); RequestorBtc.getUTXOListBtgNew(wallet.currentReceiveAddress().toString(), new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { List<UTXOItem> utxos = (List<UTXOItem>)response; setUTXO(utxos); } @Override public void onFailure(String msg) { } }); }
Example #12
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV2(String xprv, Runnable callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); //TODO: get wif: ecKey001.getPrivateKeyAsWiF(params); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); sharedManager.setLastSyncedBlock(Coders.encodeBase64(xprv)); walletFriendlyAddress = wallet.currentReceiveAddress().toString(); xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV2: " + iae.toString()); callback.run(); return; } callback.run(); RequestorBtc.getUTXOList(wallet.currentReceiveAddress().toString(), new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { UTXOListResponse utxoResponse = (UTXOListResponse) response; setUTXO(utxoResponse.getUTXOList()); } @Override public void onFailure(String msg) { } }); }
Example #13
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV(String xprv, WalletCreationCallback callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); //TODO: get wif: ecKey001.getPrivateKeyAsWiF(params); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); walletFriendlyAddress = wallet.currentReceiveAddress().toString(); xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV: " + iae.toString()); callback.onWalletCreated(wallet); return; } callback.onWalletCreated(wallet); RequestorBtc.getUTXOList(wallet.currentReceiveAddress().toString(), new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { UTXOListResponse utxoResponse = (UTXOListResponse) response; setUTXO(utxoResponse.getUTXOList()); } @Override public void onFailure(String msg) { } }); }
Example #14
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV2(String xprv, Runnable callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); sharedManager.setLastSyncedBlock(Coders.encodeBase64(xprv)); updateWalletFriendlyAddress(); xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV2: " + iae.toString()); callback.run(); return; } callback.run(); RequestorBtc.getUTXOListQtum(walletFriendlyAddress, new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { List<UTXOItem> utxos = (List<UTXOItem>)response; setUTXO(utxos); } @Override public void onFailure(String msg) { } }); }
Example #15
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV(String xprv, WalletCreationCallback callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); updateWalletFriendlyAddress(); xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV: " + iae.toString()); callback.onWalletCreated(wallet); return; } callback.onWalletCreated(wallet); RequestorBtc.getUTXOListQtum(walletFriendlyAddress, new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { List<UTXOItem> utxos = (List<UTXOItem>)response; setUTXO(utxos); } @Override public void onFailure(String msg) { } }); }
Example #16
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV2(String xprv, Runnable callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); sharedManager.setLastSyncedBlock(Coders.encodeBase64(xprv)); walletFriendlyAddress = wallet.currentReceiveAddress().toString(); xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV2: " + iae.toString()); callback.run(); return; } callback.run(); RequestorBtc.getUTXOListLtcNew(wallet.currentReceiveAddress().toString(), new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { List<UTXOItem> utxos = (List<UTXOItem>)response; setUTXO(utxos); } @Override public void onFailure(String msg) { } }); }
Example #17
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV(String xprv, WalletCreationCallback callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); walletFriendlyAddress = wallet.currentReceiveAddress().toString(); xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV: " + iae.toString()); callback.onWalletCreated(wallet); return; } callback.onWalletCreated(wallet); RequestorBtc.getUTXOListLtcNew(wallet.currentReceiveAddress().toString(), new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { List<UTXOItem> utxos = (List<UTXOItem>)response; setUTXO(utxos); } @Override public void onFailure(String msg) { } }); }
Example #18
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV2(String xprv, Runnable callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); sharedManager.setLastSyncedBlock(Coders.encodeBase64(xprv)); walletFriendlyAddress = wallet.currentReceiveAddress().toString(); walletFriendlyAddress = testReadonlyAddress == null ? walletFriendlyAddress : testReadonlyAddress; xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV2: " + iae.toString()); callback.run(); return; } callback.run(); RequestorBtc.getUTXOListKmdNew(walletFriendlyAddress, new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { List<UTXOItem> utxos = (List<UTXOItem>)response; setUTXO(utxos); } @Override public void onFailure(String msg) { } }); }
Example #19
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV(String xprv, WalletCreationCallback callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); walletFriendlyAddress = wallet.currentReceiveAddress().toString(); walletFriendlyAddress = testReadonlyAddress == null ? walletFriendlyAddress : testReadonlyAddress; xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV: " + iae.toString()); callback.onWalletCreated(wallet); return; } callback.onWalletCreated(wallet); RequestorBtc.getUTXOListKmdNew(walletFriendlyAddress, new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { List<UTXOItem> utxos = (List<UTXOItem>)response; setUTXO(utxos); } @Override public void onFailure(String msg) { } }); }
Example #20
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV2(String xprv, Runnable callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); sharedManager.setLastSyncedBlock(Coders.encodeBase64(xprv)); walletFriendlyAddress = wallet.currentReceiveAddress().toString(); xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV2: " + iae.toString()); callback.run(); return; } callback.run(); RequestorBtc.getUTXOListSbtcNew(wallet.currentReceiveAddress().toString(), new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { List<UTXOItem> utxos = (List<UTXOItem>)response; setUTXO(utxos); } @Override public void onFailure(String msg) { } }); }
Example #21
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV(String xprv, WalletCreationCallback callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); walletFriendlyAddress = wallet.currentReceiveAddress().toString(); xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV: " + iae.toString()); callback.onWalletCreated(wallet); return; } callback.onWalletCreated(wallet); RequestorBtc.getUTXOListSbtcNew(wallet.currentReceiveAddress().toString(), new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { List<UTXOItem> utxos = (List<UTXOItem>)response; setUTXO(utxos); } @Override public void onFailure(String msg) { } }); }
Example #22
Source File: WalletManager.java From guarda-android-wallets with GNU General Public License v3.0 | 5 votes |
public void restoreFromBlockByXPRV2(String xprv, Runnable callback) { xprv = xprv.trim(); try { DeterministicKey dk01 = DeterministicKey.deserializeB58(xprv, params); String privhex = dk01.getPrivateKeyAsHex(); ECKey ecKey001 = ECKey.fromPrivate(Hex.decode(privhex)); KeyChainGroup kcg = new KeyChainGroup(params, dk01.dropPrivateBytes().dropParent()); kcg.importKeys(ecKey001); wallet = new Wallet(params, kcg); sharedManager.setLastSyncedBlock(Coders.encodeBase64(xprv)); walletFriendlyAddress = wallet.currentReceiveAddress().toString(); xprvKey = xprv; } catch (IllegalArgumentException iae) { FirebaseCrash.report(iae); Log.e("psd", "restoreFromBlockByXPRV2: " + iae.toString()); callback.run(); return; } callback.run(); RequestorBtc.getUTXOListDgbNew(wallet.currentReceiveAddress().toString(), new ApiMethods.RequestListener() { @Override public void onSuccess(Object response) { List<UTXOItemDgb> utxos = (List<UTXOItemDgb>)response; setUTXO(utxos); } @Override public void onFailure(String msg) { } }); }
Example #23
Source File: MockWallet.java From thundernetwork with GNU Affero General Public License v3.0 | 4 votes |
public MockWallet (NetworkParameters params, KeyChainGroup keyChainGroup) { super(params, keyChainGroup); }
Example #24
Source File: MockWallet.java From thundernetwork with GNU Affero General Public License v3.0 | 4 votes |
public MockWallet (Context context, KeyChainGroup keyChainGroup) { super(context, keyChainGroup); }
Example #25
Source File: BsqWallet.java From bisq with GNU Affero General Public License v3.0 | 4 votes |
public BsqWallet(NetworkParameters params, KeyChainGroup keyChainGroup) { super(params, keyChainGroup); }
Example #26
Source File: WalletConfig.java From bisq with GNU Affero General Public License v3.0 | 4 votes |
public WalletConfig(NetworkParameters params, Socks5Proxy socks5Proxy, File directory, Config config, LocalBitcoinNode localBitcoinNode, String userAgent, int numConnectionsForBtc, @SuppressWarnings("SameParameterValue") String btcWalletFileName, @SuppressWarnings("SameParameterValue") String bsqWalletFileName, @SuppressWarnings("SameParameterValue") String spvChainFileName) { this.config = config; this.localBitcoinNode = localBitcoinNode; this.userAgent = userAgent; this.numConnectionsForBtc = numConnectionsForBtc; this.context = new Context(params); this.params = checkNotNull(context.getParams()); this.directory = checkDir(directory); this.btcWalletFileName = checkNotNull(btcWalletFileName); this.bsqWalletFileName = bsqWalletFileName; this.spvChainFileName = spvChainFileName; this.socks5Proxy = socks5Proxy; walletFactory = new BisqWalletFactory() { @Override public Wallet create(NetworkParameters params, KeyChainGroup keyChainGroup) { // This is called when we load an existing wallet // We have already the chain here so we can use this to distinguish. List<DeterministicKeyChain> deterministicKeyChains = keyChainGroup.getDeterministicKeyChains(); if (!deterministicKeyChains.isEmpty() && deterministicKeyChains.get(0) instanceof BisqDeterministicKeyChain) { return new BsqWallet(params, keyChainGroup); } else { return new Wallet(params, keyChainGroup); } } @Override public Wallet create(NetworkParameters params, KeyChainGroup keyChainGroup, boolean isBsqWallet) { // This is called at first startup when we create the wallet if (isBsqWallet) { return new BsqWallet(params, keyChainGroup); } else { return new Wallet(params, keyChainGroup); } } }; String path = null; if (params.equals(MainNetParams.get())) { // Checkpoints are block headers that ship inside our app: for a new user, we pick the last header // in the checkpoints file and then download the rest from the network. It makes things much faster. // Checkpoint files are made using the BuildCheckpoints tool and usually we have to download the // last months worth or more (takes a few seconds). path = "/wallet/checkpoints.txt"; } else if (params.equals(TestNet3Params.get())) { path = "/wallet/checkpoints.testnet.txt"; } if (path != null) { try { setCheckpoints(getClass().getResourceAsStream(path)); } catch (Exception e) { e.printStackTrace(); log.error(e.toString()); } } }
Example #27
Source File: MockWallet.java From thunder with GNU Affero General Public License v3.0 | 4 votes |
public MockWallet (Context context, KeyChainGroup keyChainGroup) { super(context, keyChainGroup); }
Example #28
Source File: MockWallet.java From thunder with GNU Affero General Public License v3.0 | 4 votes |
public MockWallet (NetworkParameters params, KeyChainGroup keyChainGroup) { super(params, keyChainGroup); }
Example #29
Source File: WalletConfig.java From bisq-core with GNU Affero General Public License v3.0 | 4 votes |
public WalletConfig(NetworkParameters params, Socks5Proxy socks5Proxy, File directory, BisqEnvironment bisqEnvironment, String userAgent, int numConnectionForBtc, @SuppressWarnings("SameParameterValue") String btcWalletFileName, @SuppressWarnings("SameParameterValue") String bsqWalletFileName, @SuppressWarnings("SameParameterValue") String spvChainFileName) { this.bisqEnvironment = bisqEnvironment; this.userAgent = userAgent; this.numConnectionForBtc = numConnectionForBtc; this.context = new Context(params); this.params = checkNotNull(context.getParams()); this.directory = checkNotNull(directory); this.btcWalletFileName = checkNotNull(btcWalletFileName); this.bsqWalletFileName = bsqWalletFileName; this.spvChainFileName = spvChainFileName; this.socks5Proxy = socks5Proxy; walletFactory = new BisqWalletFactory() { @Override public Wallet create(NetworkParameters params, KeyChainGroup keyChainGroup) { // This is called when we load an existing wallet // We have already the chain here so we can use this to distinguish. List<DeterministicKeyChain> deterministicKeyChains = keyChainGroup.getDeterministicKeyChains(); if (!deterministicKeyChains.isEmpty() && deterministicKeyChains.get(0) instanceof BisqDeterministicKeyChain) { checkArgument(BisqEnvironment.isBaseCurrencySupportingBsq(), "BisqEnvironment.isBaseCurrencySupportingBsq() is false but we get get " + "called BisqWalletFactory.create with BisqDeterministicKeyChain"); return new BsqWallet(params, keyChainGroup); } else { return new Wallet(params, keyChainGroup); } } @Override public Wallet create(NetworkParameters params, KeyChainGroup keyChainGroup, boolean isBsqWallet) { // This is called at first startup when we create the wallet if (isBsqWallet) { checkArgument(BisqEnvironment.isBaseCurrencySupportingBsq(), "BisqEnvironment.isBaseCurrencySupportingBsq() is false but we get get " + "called BisqWalletFactory.create with isBsqWallet=true"); return new BsqWallet(params, keyChainGroup); } else { return new Wallet(params, keyChainGroup); } } }; String path = null; if (params.equals(MainNetParams.get())) { // Checkpoints are block headers that ship inside our app: for a new user, we pick the last header // in the checkpoints file and then download the rest from the network. It makes things much faster. // Checkpoint files are made using the BuildCheckpoints tool and usually we have to download the // last months worth or more (takes a few seconds). path = "/wallet/checkpoints"; } else if (params.equals(TestNet3Params.get())) { path = "/wallet/checkpoints.testnet"; } if (path != null) { try { setCheckpoints(getClass().getResourceAsStream(path)); } catch (Exception e) { e.printStackTrace(); log.error(e.toString()); } } }
Example #30
Source File: BsqWallet.java From bisq-core with GNU Affero General Public License v3.0 | 4 votes |
public BsqWallet(NetworkParameters params, KeyChainGroup keyChainGroup) { super(params, keyChainGroup); }