- P2TR txs taking off!
- https://twitter.com/murchandamus/status/1624834282534449153
- Almost no one was using P2TR before ordinals
- context: TR = taproot
- TR was the softfork added to bitcoin ~2 years ago
- it was deemed so important and such an obvious win for bitcoin that it took precedence over other BIPs
Tasks:
- Compile Bitcoin Core
- Run the unit and functional tests
- In
example_test.py, get node 1 to mine another block, send it to node 2, and check that node 2 received it.
Explanation:
- Following the logic of
run_test, I created a new function calledrun_extra_testto complete this task.
The goal of this gist is to provide the pleb community with an easy to follow guide for how to setup a lightning node that runs on both Mainnet and Testnet at the same time. This guide will also walk you through setting up your node in "hybrid mode" (i.e. clearnet + tor) and installing Tunnel SATS for your static clearnet IP.
Acknowledgments: Parts of this guide were taken from the Run-LND repo by Alex Bosworth.
Example commands are given from the perspective of running Ubuntu on a Raspberry Pi.
Topic: LDK Onion Messages & bolt12 [link]
- LDK merges support for onion messages
- Onion messages are a precursor to bolt12 offers
- Step towards deprecating support for bolt11 in favor of offers
- What are Onion Messages?
- Simple messages sent btwn peers via onion routing (TOR)
- Can be sent via blinded routes
- LDK signals support for bolt12 [link]
- LDK merges support for onion messages
- Onion messages are a precursor to bolt12 offers
- Step towards deprecating support for bolt11 in favor of offers
- What do onion messages do?
- Defines a standardized way to package Taro asset proofs
- Flat File => plain text (.txt, .csv) or binary format
- Proof => contains data attesting to the taro assets in question
- Bitcoin merkle proof: https://en.bitcoinwiki.org/wiki/Merkle_tree
These are the trivia questions from the BitDevs Socractic Village at TABconf. Looking up answers was not allowed during trivia game
Easier Questions
-
What number does a P2SH address start with?
-
What signature scheme comes with Taproot?
-
How many blocks are in each difficulty period?
| public class Car { | |
| //private variables | |
| private String color; | |
| private int maxSpeed; | |
| public void carInfo() { | |
| System.out.println("Car Color= " + color + " Max Speed= " + maxSpeed); | |
| } | |
| public void setColor(String color) { |
