Anthony Towns [ARCHIVE] on Nostr: 📅 Original date posted:2021-10-14 📝 Original message:On Sat, Oct 09, 2021 at ...
📅 Original date posted:2021-10-14
📝 Original message:On Sat, Oct 09, 2021 at 04:49:42PM +0000, Pieter Wuille via bitcoin-dev wrote:
> You can construct a taproot-capable wallet in Bitcoin Core as follows:
> * Have or create a descriptor wallet (createwallet RPC, with descriptors=true).
> * Import a taproot descriptor (of the form "tr(KEY)"), as active descriptor
> (with active=true), where KEY can be a tprv.../* or any other supported key
> expression.
> * Get a new address with addresstype=bech32m
Running master (which has PR#21500 merged), then the above can be
done with:
1. create a descriptor wallet
bitcoin-cli -signet -named createwallet wallet_name=descwallet descriptors=true load_on_startup=true
2. get the associated bip32 tprv private key
TPRV=$(bitcoin-cli -rpcwallet=descwallet -signet listdescriptors true | jq '.descriptors | .[].desc' | sed 's/^.*(//;s/[)/].*//' | uniq | head -n1)
(This step requires PR#21500 to extract the wallet's tprv; you'll need to
be running an updated version of bitcoin-cli here as well as bitcoind. You
could also generate the tprv some other way.)
3. construct the taproot descriptor per BIP 86
DESC="tr($TPRV/86'/1'/0'/0/*)"
CHK="$(bitcoin-cli -rpcwallet=descwallet -signet getdescriptorinfo "$DESC" | jq -r .checksum)"
4. import the descriptor
bitcoin-cli -rpcwallet=descwallet -signet importdescriptors "[{\"desc\": \"$DESC#$CHK\", \"active\": true, \"timestamp\": \"now\", \"range\": [0,1000], \"next_index\": 1}]"
5. get an address
bitcoin-cli -rpcwallet=descwallet -signet getnewaddress '' bech32m
You can then use the signet faucet to send a few million ssats to that
address directly.
Same stuff works with testnet, though I'm not sure if any testnet faucets
will accept bech32m addresses directly.
This is all a bit deliberately cumbersome prior to taproot activating on
mainnet; once that happens and PR#22364 is merged, you'll only need to
do steps (1) and (5).
Cheers,
aj
Published at
2023-06-07 22:59:58Event JSON
{
"id": "54c6b254a79a2dd78720bc99d335697186fa8306a782dbb543ca7617f09c3740",
"pubkey": "f0feda6ad58ea9f486e469f87b3b9996494363a26982b864667c5d8acb0542ab",
"created_at": 1686178798,
"kind": 1,
"tags": [
[
"e",
"001d5c1679043d22353a678ecef4bfb6f6617e463bb040964d517a99705a4946",
"",
"root"
],
[
"e",
"b306782a09fa6bb6093d26ec17fd2778a8dd588abd627dd27639c43104de1458",
"",
"reply"
],
[
"p",
"5cb21bf5d7f25a9d46879713cbd32433bbc10e40ef813a3c28fe7355f49854d6"
]
],
"content": "📅 Original date posted:2021-10-14\n📝 Original message:On Sat, Oct 09, 2021 at 04:49:42PM +0000, Pieter Wuille via bitcoin-dev wrote:\n\u003e You can construct a taproot-capable wallet in Bitcoin Core as follows:\n\u003e * Have or create a descriptor wallet (createwallet RPC, with descriptors=true).\n\u003e * Import a taproot descriptor (of the form \"tr(KEY)\"), as active descriptor\n\u003e (with active=true), where KEY can be a tprv.../* or any other supported key\n\u003e expression.\n\u003e * Get a new address with addresstype=bech32m\n\nRunning master (which has PR#21500 merged), then the above can be\ndone with:\n\n1. create a descriptor wallet\n\n bitcoin-cli -signet -named createwallet wallet_name=descwallet descriptors=true load_on_startup=true\n\n2. get the associated bip32 tprv private key\n\n TPRV=$(bitcoin-cli -rpcwallet=descwallet -signet listdescriptors true | jq '.descriptors | .[].desc' | sed 's/^.*(//;s/[)/].*//' | uniq | head -n1)\n\n(This step requires PR#21500 to extract the wallet's tprv; you'll need to\nbe running an updated version of bitcoin-cli here as well as bitcoind. You\ncould also generate the tprv some other way.)\n\n3. construct the taproot descriptor per BIP 86\n\n DESC=\"tr($TPRV/86'/1'/0'/0/*)\"\n CHK=\"$(bitcoin-cli -rpcwallet=descwallet -signet getdescriptorinfo \"$DESC\" | jq -r .checksum)\"\n\n4. import the descriptor\n\n bitcoin-cli -rpcwallet=descwallet -signet importdescriptors \"[{\\\"desc\\\": \\\"$DESC#$CHK\\\", \\\"active\\\": true, \\\"timestamp\\\": \\\"now\\\", \\\"range\\\": [0,1000], \\\"next_index\\\": 1}]\"\n\n5. get an address\n\n bitcoin-cli -rpcwallet=descwallet -signet getnewaddress '' bech32m\n\nYou can then use the signet faucet to send a few million ssats to that\naddress directly.\n\nSame stuff works with testnet, though I'm not sure if any testnet faucets\nwill accept bech32m addresses directly.\n\nThis is all a bit deliberately cumbersome prior to taproot activating on\nmainnet; once that happens and PR#22364 is merged, you'll only need to\ndo steps (1) and (5).\n\nCheers,\naj",
"sig": "b63a026ab586e639315cd8ad7ffcae8a6fd44d7ac91fdcbf449df4c88d5770d0ae5a936f970eb8bdb4ca4e7cb9cbcaefff40b4958451d620b17d1123a3bc484e"
}