1 2016-12-24 02:21:21 <phantomcircuit> nnbosko, basically no
 2 2016-12-24 02:21:38 <phantomcircuit> nnbosko, dare i ask what you're doing?
 3 2016-12-24 04:50:05 <cluelessperson> hi all
 4 2016-12-24 04:50:13 <cluelessperson> I'm interested in making a new bitcoin thin wallet.
 5 2016-12-24 04:50:23 <cluelessperson> would anyone be interested?
 6 2016-12-24 04:52:46 <cluelessperson> http://i.imgur.com/MjyIKHQ.png
 7 2016-12-24 04:52:51 <cluelessperson> specifically in python
 8 2016-12-24 07:56:49 <cannon-c> is it possible to construct and create a multisig address with only public key hashes instead of public keys?
 9 2016-12-24 08:17:22 <luke-jr> cannon-c: hypothetically I think, but there is no standard for it
10 2016-12-24 08:28:07 <luke-jr> cannon-c: OP_DUP OP_HASH160 <pubKeyHash> OP_EQUALVERIFY OP_CHECKSIG ( OP_ROT OP_ROT OP_DUP OP_HASH160 <pubKeyHash> OP_EQUALVERIFY OP_CHECKSIG OP_ADD )*(n-1) n OP_EQUAL
11 2016-12-24 08:29:29 <cannon-c> where can I learn about understanding this kind of scripting and meanings of different ops?
12 2016-12-24 08:29:33 <cannon-c> thanks luke-jr
13 2016-12-24 08:29:53 <luke-jr> cannon-c: https://en.bitcoin.it/wiki/Script
14 2016-12-24 08:30:08 <cannon-c> thanks
15 2016-12-24 08:31:10 <cannon-c> I have an idea for something, but requires multisig that does not reveal the public keys until signing.
16 2016-12-24 08:31:18 <cannon-c> i.e. multisig made up of public key hashes.
17 2016-12-24 08:31:24 <cannon-c> hence why I was asking
18 2016-12-24 08:33:11 <luke-jr> this can get up to N-of-17
19 2016-12-24 08:33:54 <cannon-c> I just saw your comment in core-dev room.
20 2016-12-24 08:33:58 <cannon-c> That is neat though.
21 2016-12-24 08:34:10 <cannon-c> For N-of-UNLIMITED
22 2016-12-24 08:34:21 <cannon-c> wouldn't multisig trees work?
23 2016-12-24 08:34:48 <luke-jr> maybe, I didn't put that much effort into it :p
24 2016-12-24 08:35:15 <luke-jr> not sure trees are actually possible
25 2016-12-24 08:35:17 <cannon-c> i.e. multisig addresses made up of multisig addresses work?
26 2016-12-24 08:35:32 <cannon-c> P2SH with m of n made up of other P2SH
27 2016-12-24 08:35:34 <luke-jr> p2sh is not recursive
28 2016-12-24 08:35:39 <cannon-c> : (
29 2016-12-24 08:36:19 <luke-jr> without OP_CAT, I don't think trees are possible :/
30 2016-12-24 08:36:35 <luke-jr> or OP_SUBSTR