1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
Return-Path: <andreas@schildbach.de>
Received: from smtp1.osuosl.org (smtp1.osuosl.org [IPv6:2605:bc80:3010::138])
by lists.linuxfoundation.org (Postfix) with ESMTP id 3207AC000D
for <bitcoin-dev@lists.linuxfoundation.org>;
Sat, 9 Oct 2021 15:46:50 +0000 (UTC)
Received: from localhost (localhost [127.0.0.1])
by smtp1.osuosl.org (Postfix) with ESMTP id 21080832B3
for <bitcoin-dev@lists.linuxfoundation.org>;
Sat, 9 Oct 2021 15:46:50 +0000 (UTC)
X-Virus-Scanned: amavisd-new at osuosl.org
X-Spam-Flag: NO
X-Spam-Score: -0.7
X-Spam-Level:
X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5
tests=[BAYES_05=-0.5, DKIM_SIGNED=0.1, DKIM_VALID=-0.1,
DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001,
SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: smtp1.osuosl.org (amavisd-new);
dkim=pass (1024-bit key) header.d=schildbach.de
Received: from smtp1.osuosl.org ([127.0.0.1])
by localhost (smtp1.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)
with ESMTP id hvcW4qBGK1Hy
for <bitcoin-dev@lists.linuxfoundation.org>;
Sat, 9 Oct 2021 15:46:48 +0000 (UTC)
X-Greylist: delayed 00:09:57 by SQLgrey-1.8.0
Received: from mx.schildbach.de (mx.schildbach.de [159.69.14.146])
by smtp1.osuosl.org (Postfix) with ESMTPS id AFB5383180
for <bitcoin-dev@lists.linuxfoundation.org>;
Sat, 9 Oct 2021 15:46:48 +0000 (UTC)
Received: from [IPv6:2a01:c23:5d14:a700:77b1:566f:f1a8:ad5a]
(frontend_traefik_1.frontend [172.23.0.3])
by mail.schildbach.de (Postfix) with ESMTPSA id 668851909EAD
for <bitcoin-dev@lists.linuxfoundation.org>;
Sat, 9 Oct 2021 15:36:47 +0000 (UTC)
DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=schildbach.de;
s=mail200903; t=1633793807;
bh=ZDF3wAb0zET7s/N+CuDhpLjEysH5OgdDdFZz34bXs8k=;
h=To:From:Subject:Date:From;
b=Yct0/eGKpycw5vTnn4JzdV8Ee6U5DEKkjQD44VuEyemAIexiovKioAXu0xxtLHt3c
fBYHsB4QefuC7kexR79QSkxrFEkudi9vW3VCn3O+LoZ9YrAty+T50Gs/xUxVSOfird
1RV+f/pDlAtfLWLonJyRK4YNpIzjmK7BHxhu7FCc=
To: bitcoin-dev@lists.linuxfoundation.org
From: Andreas Schildbach <andreas@schildbach.de>
Message-ID: <cf1aa346-4f0d-8192-c8e8-1861e7840371@schildbach.de>
Date: Sat, 9 Oct 2021 17:36:47 +0200
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Language: en-US
Content-Transfer-Encoding: 8bit
Subject: [bitcoin-dev] Taproot testnet wallet
X-BeenThere: bitcoin-dev@lists.linuxfoundation.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: Bitcoin Protocol Discussion <bitcoin-dev.lists.linuxfoundation.org>
List-Unsubscribe: <https://lists.linuxfoundation.org/mailman/options/bitcoin-dev>,
<mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=unsubscribe>
List-Archive: <http://lists.linuxfoundation.org/pipermail/bitcoin-dev/>
List-Post: <mailto:bitcoin-dev@lists.linuxfoundation.org>
List-Help: <mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=help>
List-Subscribe: <https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev>,
<mailto:bitcoin-dev-request@lists.linuxfoundation.org?subject=subscribe>
X-List-Received-Date: Sat, 09 Oct 2021 15:46:50 -0000
I'm trying to finish off bitcoinj's implementation for sending to
taproot addresses. For this, I'd like to test against a wallet that can
receive to P2TR and spend back.
I've been trying to get a taproot address from Bitcoin Core 22.0 and
spent many hours, but in vain. Can someone please simply send my a
testnet wallet that has at least one taproot address? (I don't care
about anyone stealing my testnet coins, so don't worry about the
compromised private key.)
Thanks!
|