Re: How to multi-signatures in bitcoinj?

2018-05-16 Thread 지우중
Thank you!!! 2018년 5월 15일 화요일 오후 8시 0분 53초 UTC+9, matan navon 님의 말: > > I guess you want to create a P2SH Wallet which is type of a multisig > wallet. > If P2SH is a term that is new to you you better read about it. > > What you have to do is first create a married wallet. you can read about >

Re: Deriving wallet all addresses as once using bitcoinj

2018-05-16 Thread Andreas Schildbach
On 05/16/2018 10:33 PM, Tyga wrote: > can i derive all wallet addresses using bitcoinj just like this site > https://iancoleman.io/bip39/ > this site generates list of addresses along with address path pub key and > prv key. > is bitcoinj support this, if yes then little code example will be

Driving wallet all addresses as once using bitcoinj

2018-05-16 Thread Tyga
can i drive all wallet addresses using bitcoinj just like this site https://iancoleman.io/bip39/ this site generates list of addresses along with address path pub key and prv key. is bitcoinj support this, if yes then little code example will be helpfull. -- You received this message because

How to derive segwit addresses from an extended public key?

2018-05-16 Thread Jacky Li
I tried to use the following code: DeterministicKey key = DeterministicKey.deserializeB58(null , "xpub...", MAINNET); DeterministicHierarchy hierarchy = new DeterministicHierarchy(key); DeterministicKey chain = hierarchy.deriveChild(key.getPath(), false, false, new ChildNumber(0, false));

Re: How to derive segwit addresses from an extended public key?

2018-05-16 Thread Jacky Li
If I use: DeterministicKey key = DeterministicKey.deserializeB58("MY XPUB KEY",params); Wallet wallet = Wallet.fromWatchingKey(params,key); wallet.currentReceiveAddress() It only returns legacy address instead of segwit address... -- You received this message because you are subscribed to the