Re: how to generate addresses using xPub key

2018-04-07 Thread Andreas Schildbach
On 03/26/2018 04:34 PM, Tyga Christed wrote: > how can i generate unsigned addresses using xPub key Use Wallet.fromWatchingKeyB58() and supply your xpub. Then you can use freshReceiveAddress() or currentReceiveAddress() to generate addresses for that wallet. -- You received this message because

Re: How do I get started ?

2018-04-07 Thread Andreas Schildbach
On 03/27/2018 10:27 PM, Angelique Potter wrote: > I honestly am so lost on how bitcoin works. I work in Rands and don't know > how to link my banking account to bitcoin. I need to use bitcoin to purchase > credits. > > I'd appreciate some help here in directing me in the right channels. This i

Re: How to get the confirmation count after a transaction

2018-04-07 Thread Andreas Schildbach
On 03/28/2018 09:25 AM, aman.v...@mobiloittegroup.com wrote: > I want confirmation count of transaction for example 2/6 like this is there > any method I can use to get the confirmation count Use tx.getConfidence().getDepthInBlocks(). -- You received this message because you are subscribed to

Re: How to send a 'getheaders' message?

2018-04-07 Thread Andreas Schildbach
On 04/04/2018 09:19 PM, manuel.raf...@ifm.it wrote: > Can I send the 'getheaders' message with bitcoinj library? I think Future future = peer.getBlock(blockHash); should do the trick. For a full example, have a look at the FetchBlock example. -- You received this message because you are subscr

Re: Help with importing bitcoinj library as module in android studio

2018-04-07 Thread Andreas Schildbach
We will be migrating to Gradle really soon now. If you want to help testing the gradle build, please have a look at this PR: https://github.com/bitcoinj/bitcoinj/pull/1533 On 04/03/2018 09:12 PM, rohan agarwal wrote: > Hello, > I wanted to modify the bitcoinj library to support my signing throug

Re: Error at Block #481815 Reading the blockchain from Block #1 to the end

2018-04-07 Thread Andreas Schildbach
Just to let you know: the issue is fixed with PR https://github.com/bitcoinj/bitcoinj/pull/1552. On 04/04/2018 02:44 AM, chenpeng...@gmail.com wrote: > Okay, at least it works. If you get some other solutions, please let me > know, thank you. > > 在 2018年4月3日星期二 UTC+8下午5:54:55,Olivér Zsámár写道: >

Re: Offline wallet

2018-04-07 Thread Andreas Schildbach
On 04/02/2018 01:02 AM, Tyga Christed wrote: > How to create offline wallet for Android using bitcoinj, any tutorial will be > helpful, thanks. What exactly do you mean by "offline wallet"? What's your scenario? -- You received this message because you are subscribed to the Google Groups "bitc

Re: How can receive transaction with bitcoinj offline

2018-04-07 Thread Andreas Schildbach
Well, you could add those listeners while being offline but of course you won't get notifies until you connect your wallet to a PeerGroup and make sure it's online. On 02/27/2018 10:45 PM, Leonardo Belluzzi wrote: > But u can't use functions like  addCoinsReceivedEventListener(new > WalletCoinsRe

Re: why I build bitcoinj project and happended error with pom.xml in bitcoinj.core directory

2018-04-07 Thread Andreas Schildbach
Both get set in the same file (just search for them if you're interested). You can ignore those kind of errors of your IntelliJ plugin. On 03/29/2018 06:00 AM, ziyuan fang wrote: > I am downloaded bitcoinj sourcecode and run main function and error, and > I checked pom.xml in core direcroty,and I

`Making the app work with hardware wallet

2018-04-07 Thread R&R Apps
Hey Dev, I was modifying the android app to make it work with my hardware wallet. However, I found the app to be tightly coupled with Wallet class and therefore the ECKey class. I would be grateful if you could suggest the easiest way possible to separate the signing part and make the wallet jus