diff --git a/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/index.html b/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/index.html index b136e9c5eb..cbfab85c0c 100644 --- a/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/index.html +++ b/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/index.html @@ -20,7 +20,7 @@ R’_i, R’’_i R = sum of (R’_i + b_i.R’’_i) sig_i -</code></pre><p>Then there was MuSig2, this is an upgrade of MuSig, where you remove this first round of commitments but instead of that you generate not a single nonce but you generate two nonces. Then you share this nonce with everyone else, you combine it with some hash based coefficient, I don’t want to go into details but this way it is secure under certain assumptions. If you want to make it even more secure you generate 4 nonces. This relates to some funky cryptographic things like the Forking Lemma and time machines and whatnot. I recommend you read the paper if you want to get into the details. Basically generating one extra nonce makes everything secure and then you have two rounds. Two rounds is already much better. What you can do is generate the nonces in advance. You can gather 100 nonces from each of the hardware wallets and then you just use them when you need to sign. Then you need to run through all your hardware wallets only once. This again requires the state. The hardware wallet needs to know about the nonces that it generated and it needs to verify that it didn’t reuse the same nonce twice. If you reuse the same nonce then you are screwed. You basically lose your private key.</p><p>Then finally FROST. FROST is interesting because it is not focusing on this nonce negotiation. It is focusing more on the key aggregation. It allows you to do 2-of-3, 3-of-5, something like that. The idea there is you use Shamir’s Verifiable Secret Sharing Scheme. If you want to do 2-of-3, if you have 3 private keys that are on the same line then you can derive this combined private key or public key or signature only having 2 of them. Any 2 points of these 3 can help you to reconstruct the final signature. This means that the only problem is how to make sure that the private keys that we generated at random will end up on this line. The main idea of this FROST paper is how to communicate between different signers in such a way that they end up on the same line. It is an interactive scheme but it is very nice because after the first interactive setup you can move them around and you still have 2 rounds. But again all these 3 schemes are relying on the fact that your nonce is never reused. This means that in order to generate fresh nonces you need either a counter or a random number generator. These are two problems especially on the hardware wallet because I can hack the counter, I can hack the random number generator. Let me show how you do this.</p><p>Pros - fairly simple to implement, almost non-interactive with 2 rounds</p><p>Cons - heavily relies on RNG or counter, requires keeping state</p><h1 id=taproot-is-hard---nonce-derivation-for-multisig>Taproot is hard - nonce derivation for multisig</h1><p>The first idea is just use the counter. You have a number that you always increase and never reset, never reuse the same value and you hash it together with your private key to get this nonce.</p><p>counter++</p><p><code>r = hash(d, counter)</code></p><p>When you use something you increase the counter again. It works perfectly in theory. In theory there are plenty of attacks, for example what the Fraunhofer Institute <a href=https://www.aisec.fraunhofer.de/en/FirmwareProtection.html>did</a> with unlocking a microcontroller. They just shot a laser into it. If you shoot the laser into the right spot of the flash memory of the microcontroller it will reset. Either it will go to zero or you will flip the bit and it can go down in the counter, it can be reusing the same counter again. Here the problem is as this is the nonce in the signature this means that it will be on the blockchain or it is known by your co-signers and your software wallet. This means that if there is not enough entropy or it is reused then they can recalculate your private key from the signature. With a random number generator there was a very nice <a href="https://www.youtube.com/watch?v=Zuqw0-jZh9Y">talk</a> at Defcon where they talk about problems of random number generators for 45 minutes. This means that even if you are using a certified (closed source) random number generator it is normally not enough. Most of the talk is about how you can screw up the random number generator yourself as the developer. It doesn’t even touch the problem of hacking the random number generator.</p><h1 id=taproot-is-hard---breaking-rng-wait-for-bad-rng-output>Taproot is hard - Breaking RNG (Wait for bad RNG output)</h1><p>So how can you screw up with the random number generator? First it happened in the wild. The Sony Playstation 2 was hacked this way because they reused the same nonce and leaked the private keys so you could homebrew your Playstation 2 with these leaked Sony private keys. Yubikey, when they went through the certification process they got certified but they screwed up with the initialization of the random number generator. You only had to have 3 signatures to reconstruct the private key so there was a huge problem there. Then as I mentioned in this <a href="https://www.youtube.com/watch?v=Zuqw0-jZh9Y">talk</a> they analyzed the output of two random number generators from different microcontrollers. What they saw, sometimes you accidentally get a bunch of zeros, your nonce is zero, that is bad. Then sometimes it repeats the same value multiple times because you are asking for random numbers too often. It just wasn’t able to generate a new random number. And also sometimes the RNG fails because there is a voltage glitch or for some mysterious reason the sun heats the microcontroller and something happens. By the way this can also happen with the counter. You will be very, very unfortunate if this happens with your hardware wallet that uses the counter. This is how you can shoot yourself in the foot.</p><h1 id=taproot-is-hard---breaking-rng-influence-rng-operation>Taproot is hard - Breaking RNG (Influence RNG operation)</h1><p>Now let’s say someone else wants to shoot you in the foot. How can you do this? This is the most common random number generator architecture, a ring oscillator. Basically because it is using standard NOT gates that can be easily done in the semiconductor. You have a NOT gate that converts <code>0</code> to <code>1</code> and <code>1</code> to <code>0</code>. Then you chain 3 of them one after another such that you get some time delay. Then you feed the output of the third one to the input of the first one. This becomes this ridiculous logic circuit that is constantly switching between <code>0</code> and <code>1</code> and the timing between the switching is very dependent on the environment, on the manufacturing imperfections, on the impurities of the semiconductor, on all this stuff. This basically gives you a very unpredictable output. To get even more random numbers you take a bunch of these oscillators and XOR them together. Now I am asking you to remember your physics class, high school or elementary school. What happens if you have multiple pendulums on a rod? On the rod everything is fine, they are oscillating with their own frequencies, but what if you put it on a rope that can transfer energy from one pendulum to another one? Then after some time it will synchronize. Google it on YouTube and see how it works in action. The problem is if you have a bunch of oscillators that are coupled together they will eventually synchronize and then your random output will be not random anymore. In the certified, good, well designed random number generator there are some countermeasures and they check the output is fine. What happens if you just put your microcontroller on the PCB board that is poorly designed that has a trace going through all of them? It can introduce this coupling. If there is an attack, like an evil maid attack, that takes your device, disassembles it, puts some wire there, it also can introduce the coupling and then you are screwed. Other types of random number generators are also not perfect. If you are using something that is dependent on the temperature you can freeze them. Also you can lower the supply voltage of the random number generator and it will output <code>0</code>s more often than <code>1</code>s or do some weird stuff. Weird stuff is where low entropy is. You don’t have enough entropy, your nonce is brute forceable and then you are done. Also all kinds of fault injections where I can just take an electromagnetic meter and force all these oscillators or the random number generator to malfunction. So a random number generator is bad or at least not perfect.</p><h1 id=taproot-is-hard-interactive-multisig-zoo-cont>Taproot is hard (interactive multisig zoo) cont.</h1><p>Is there a solution? You saw that there are 5 papers. In the second column there are 2 papers that don’t require a random number generator. They use deterministic nonces and not just deterministic nonces, they use verifiable deterministic nonces. This means that your hardware wallet or your signer can generate the nonce and prove to everyone else that it was generated deterministically using a particular algorithm. <a href=https://eprint.iacr.org/2020/1057.pdf>MuSig-DN</a> is MuSig deterministic nonces. <a href=https://eprint.iacr.org/2021/1055.pdf>GKMN21</a> (Garillot, Kondi, Mohassel, Nikolaenko) is something from Facebook. They actually published this paper but it is a very nice one. It looks like a very good solution. The only problem is that generating these proofs, that you generated the nonce deterministically, is pretty complex. For example in MuSig-DN the benchmark says that if you are running it on a Intercore I7 3GHz, like a normal computer, it will generate 1 second to generate the proof. If we think about hardware wallets that are 100MHz, they are also 32 bit not 64 bit, you can easily get a factor of 100.</p><h1 id=interactive-multisig-comparison>Interactive multisig comparison</h1><p>Here is the comparison. The first 3 guys (MuSig, MuSig2, FROST) are relying on RNG so we don’t care about the benchmarks, it is fast. But the last two guys (MuSig-DN, GKMN21), MuSig-DN on the microcontroller it will probably take 100 seconds. If you have a 5 input transaction you will need to wait for 10 minutes, not great. Also the memory requirements are pretty high. I think it can be optimized but still 10MB is not what you have on the microcontroller. There you normally have 100KB, something around this. Maybe megabytes you can get on the high end ones. Keystone for example that is Android based can have plenty of memory but they are running the secure code on the secure element that is also not very performant. And the proof size is ok, 1KB. I am a QR code guy so I don’t like transferring 1KB over QR codes, that will be complicated but ok fine. Then finally the second paper (GKMN21). It uses a different zero knowledge proof so it is much faster and on the microcontroller it can actually run. On the memory I am not sure but I think it is also using a few megabytes. The proof size is 1MB. So it is like a whole block of the Bitcoin blockchain is just a proof that you generated the nonce properly. But you don’t need to broadcast it so just internally transferred from one signer to another. This is the summary of all multisignature schemes. All of them have certain trade-offs. I would say if you are using multiple hardware wallets that you don’t want to connect at the same time to the same computer, you for example have them distributed, then don’t use interactive multisig. Use just normal multisig until we get some reasonable MuSig implementation. But there are plenty of use cases where it is extremely useful.</p><h1 id=taproot---where-can-we-use-it-now>Taproot - Where can we use it now?</h1><p>For example Lightning, completely different security model, your keys are always online anyway. You need to keep the state anyway. It doesn’t increase your attack surface if you start using MuSig. Lightning, good. Then atomic swaps, here also you probably have it on the hot wallet so very similar situation. So also fine. Then for services where you have a server that is one of the signers. For example Blockstream Green uses 2-of-2 or 1-of-2 plus timelock. This can be really optimized for Taproot. Muun wallet is using 2-of-2, the guys at Square are doing something funny with a server, mobile wallet and secure key storage. These are very good use cases. And finally my favorite, my dream, my passion, my precious, I am dreaming about this for 3 years but never had time to implement. A paranoid HSM where you combine multiple chips in the same device. You take RISC-V PGA board that is fully open source, you take a secure element under NDA from Infineon for example and you take some other RAM based microcontroller for example. Each of them has a key and each of them needs to sign in order to generate the full signature. Then if the attacker wants to hack this thing he needs to hack 3 different microcontrollers. This is really, really great, especially for HSM enterprise use cases. In the HSM, enterprise you can also cover it in the Faraday cage and have a conductive mesh that detects all the tamper attempts and so on. This is really cool. I think Taproot is awesome. Let’s see how it evolves, it is really nice.</p><h1 id=qa>Q&A</h1><p>Q - What Lightning wallets can use Taproot multisignature today?</p><p>A - I think right now it is not even specified in the specs so I don’t think it is implemented in software yet. I think c-lightning is working in that direction but maybe better to ask Christian Decker who is here. I think it is still in the write a specification step. But in general this would mean all your channel opening and mutual channel close transactions appear on the blockchain as a single signature and single key. Only if you need to do a unilateral close, then you expose the fact that there is a timelock in the Taptree.</p><p>Q - Which one of the collaborative multisig schemes do you think is on the path to mainstream adoption? We are in a weird situation when you have 14 standards, we need to create one standard to rule them all and then we have 15 standards.</p><p>A - I don’t know which one will be the one that is used by everyone. I personally like MuSig probably and some kind of combination with FROST because it gives you threshold signatures, 2-of-3, something like that. From my understanding FROST will have problems with cross input integration, Sanket mentioned that. I don’t know frankly speaking. I think it makes sense to start looking at MuSig first because this will probably be the first adopted. It might be better to ask someone who is writing libsecp256k1. I don’t have a definite answer.</p><p>Q - Are there any hardware wallets that allow you to provide your own entropy for the nonce? If not is there a good reason why not?</p><p>A - Before all the Taproot stuff what was discussed in the hardware wallet, Bitcoin community was the verification and mitigations of the chosen nonce attacks, anti side channel thing where the hardware wallet when it is hacked can leak your private key. I know two hardware wallets implemented mixing of additional entropy into their signatures, this is <a href=https://medium.com/blockstream/anti-exfil-stopping-key-exfiltration-589f02facc2e>Jade</a> and Bitbox. As far as I know no one else implemented that. But this is pretty much for the first step for MuSig. I think we can reuse the same specs and protocol for MuSig coordination as well. I think as soon as other hardware wallets start, if they start implementing MuSig, they will need to have this API for mixing additional entropy.</p><p>Q - You mentioned RISC-V. Do you think there is any scope there for custom instructions to try to make this really quick? Basically you have to emulate everything in software implementations.</p><p>A - With RISC-V on FPGA? I would recommend to look at <a href="https://www.bunniestudios.com/blog/?p=5921">Precursor</a> the project from Bunnie, the secure communication device for journalists and stuff that was on crowdfunding. Now they are manufacturing it. The guys are really into hardware, they use FPGA and a RISC-V core on the FPGA so it makes sense to look into that. They also have a OS and stuff and some secure measures. In principle they are also fully open source. What we can do, we can take everything that they did and use for our benefit. I think open source RISC-V cores are evolving fairly quickly and getting more production ready. In this setup for example you don’t need to hit the really production ready state because you also have security by other chips. I think there are also some FPGAs manufactured in China, I don’t know how much you trust China. They are extremely cheap and can run RISC-V in the minimum implementation. Generally with FPGAs if you want RISC-V and reasonable speed you need to pay a premium because FPGAs are more expensive, maybe a few hundred dollars.</p><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> +</code></pre><p>Then there was MuSig2, this is an upgrade of MuSig, where you remove this first round of commitments but instead of that you generate not a single nonce but you generate two nonces. Then you share this nonce with everyone else, you combine it with some hash based coefficient, I don’t want to go into details but this way it is secure under certain assumptions. If you want to make it even more secure you generate 4 nonces. This relates to some funky cryptographic things like the Forking Lemma and time machines and whatnot. I recommend you read the paper if you want to get into the details. Basically generating one extra nonce makes everything secure and then you have two rounds. Two rounds is already much better. What you can do is generate the nonces in advance. You can gather 100 nonces from each of the hardware wallets and then you just use them when you need to sign. Then you need to run through all your hardware wallets only once. This again requires the state. The hardware wallet needs to know about the nonces that it generated and it needs to verify that it didn’t reuse the same nonce twice. If you reuse the same nonce then you are screwed. You basically lose your private key.</p><p>Then finally FROST. FROST is interesting because it is not focusing on this nonce negotiation. It is focusing more on the key aggregation. It allows you to do 2-of-3, 3-of-5, something like that. The idea there is you use Shamir’s Verifiable Secret Sharing Scheme. If you want to do 2-of-3, if you have 3 private keys that are on the same line then you can derive this combined private key or public key or signature only having 2 of them. Any 2 points of these 3 can help you to reconstruct the final signature. This means that the only problem is how to make sure that the private keys that we generated at random will end up on this line. The main idea of this FROST paper is how to communicate between different signers in such a way that they end up on the same line. It is an interactive scheme but it is very nice because after the first interactive setup you can move them around and you still have 2 rounds. But again all these 3 schemes are relying on the fact that your nonce is never reused. This means that in order to generate fresh nonces you need either a counter or a random number generator. These are two problems especially on the hardware wallet because I can hack the counter, I can hack the random number generator. Let me show how you do this.</p><p>Pros - fairly simple to implement, almost non-interactive with 2 rounds</p><p>Cons - heavily relies on RNG or counter, requires keeping state</p><h1 id=taproot-is-hard---nonce-derivation-for-multisig>Taproot is hard - nonce derivation for multisig</h1><p>The first idea is just use the counter. You have a number that you always increase and never reset, never reuse the same value and you hash it together with your private key to get this nonce.</p><p>counter++</p><p><code>r = hash(d, counter)</code></p><p>When you use something you increase the counter again. It works perfectly in theory. In theory there are plenty of attacks, for example what the Fraunhofer Institute <a href=https://www.aisec.fraunhofer.de/en/FirmwareProtection.html>did</a> with unlocking a microcontroller. They just shot a laser into it. If you shoot the laser into the right spot of the flash memory of the microcontroller it will reset. Either it will go to zero or you will flip the bit and it can go down in the counter, it can be reusing the same counter again. Here the problem is as this is the nonce in the signature this means that it will be on the blockchain or it is known by your co-signers and your software wallet. This means that if there is not enough entropy or it is reused then they can recalculate your private key from the signature. With a random number generator there was a very nice <a href="https://www.youtube.com/watch?v=Zuqw0-jZh9Y">talk</a> at Defcon where they talk about problems of random number generators for 45 minutes. This means that even if you are using a certified (closed source) random number generator it is normally not enough. Most of the talk is about how you can screw up the random number generator yourself as the developer. It doesn’t even touch the problem of hacking the random number generator.</p><h1 id=taproot-is-hard---breaking-rng-wait-for-bad-rng-output>Taproot is hard - Breaking RNG (Wait for bad RNG output)</h1><p>So how can you screw up with the random number generator? First it happened in the wild. The Sony Playstation 2 was hacked this way because they reused the same nonce and leaked the private keys so you could homebrew your Playstation 2 with these leaked Sony private keys. Yubikey, when they went through the certification process they got certified but they screwed up with the initialization of the random number generator. You only had to have 3 signatures to reconstruct the private key so there was a huge problem there. Then as I mentioned in this <a href="https://www.youtube.com/watch?v=Zuqw0-jZh9Y">talk</a> they analyzed the output of two random number generators from different microcontrollers. What they saw, sometimes you accidentally get a bunch of zeros, your nonce is zero, that is bad. Then sometimes it repeats the same value multiple times because you are asking for random numbers too often. It just wasn’t able to generate a new random number. And also sometimes the RNG fails because there is a voltage glitch or for some mysterious reason the sun heats the microcontroller and something happens. By the way this can also happen with the counter. You will be very, very unfortunate if this happens with your hardware wallet that uses the counter. This is how you can shoot yourself in the foot.</p><h1 id=taproot-is-hard---breaking-rng-influence-rng-operation>Taproot is hard - Breaking RNG (Influence RNG operation)</h1><p>Now let’s say someone else wants to shoot you in the foot. How can you do this? This is the most common random number generator architecture, a ring oscillator. Basically because it is using standard NOT gates that can be easily done in the semiconductor. You have a NOT gate that converts <code>0</code> to <code>1</code> and <code>1</code> to <code>0</code>. Then you chain 3 of them one after another such that you get some time delay. Then you feed the output of the third one to the input of the first one. This becomes this ridiculous logic circuit that is constantly switching between <code>0</code> and <code>1</code> and the timing between the switching is very dependent on the environment, on the manufacturing imperfections, on the impurities of the semiconductor, on all this stuff. This basically gives you a very unpredictable output. To get even more random numbers you take a bunch of these oscillators and XOR them together. Now I am asking you to remember your physics class, high school or elementary school. What happens if you have multiple pendulums on a rod? On the rod everything is fine, they are oscillating with their own frequencies, but what if you put it on a rope that can transfer energy from one pendulum to another one? Then after some time it will synchronize. Google it on YouTube and see how it works in action. The problem is if you have a bunch of oscillators that are coupled together they will eventually synchronize and then your random output will be not random anymore. In the certified, good, well designed random number generator there are some countermeasures and they check the output is fine. What happens if you just put your microcontroller on the PCB board that is poorly designed that has a trace going through all of them? It can introduce this coupling. If there is an attack, like an evil maid attack, that takes your device, disassembles it, puts some wire there, it also can introduce the coupling and then you are screwed. Other types of random number generators are also not perfect. If you are using something that is dependent on the temperature you can freeze them. Also you can lower the supply voltage of the random number generator and it will output <code>0</code>s more often than <code>1</code>s or do some weird stuff. Weird stuff is where low entropy is. You don’t have enough entropy, your nonce is brute forceable and then you are done. Also all kinds of fault injections where I can just take an electromagnetic meter and force all these oscillators or the random number generator to malfunction. So a random number generator is bad or at least not perfect.</p><h1 id=taproot-is-hard-interactive-multisig-zoo-cont>Taproot is hard (interactive multisig zoo) cont.</h1><p>Is there a solution? You saw that there are 5 papers. In the second column there are 2 papers that don’t require a random number generator. They use deterministic nonces and not just deterministic nonces, they use verifiable deterministic nonces. This means that your hardware wallet or your signer can generate the nonce and prove to everyone else that it was generated deterministically using a particular algorithm. <a href=https://eprint.iacr.org/2020/1057.pdf>MuSig-DN</a> is MuSig deterministic nonces. <a href=https://eprint.iacr.org/2021/1055.pdf>GKMN21</a> (Garillot, Kondi, Mohassel, Nikolaenko) is something from Facebook. They actually published this paper but it is a very nice one. It looks like a very good solution. The only problem is that generating these proofs, that you generated the nonce deterministically, is pretty complex. For example in MuSig-DN the benchmark says that if you are running it on a Intercore I7 3GHz, like a normal computer, it will generate 1 second to generate the proof. If we think about hardware wallets that are 100MHz, they are also 32 bit not 64 bit, you can easily get a factor of 100.</p><h1 id=interactive-multisig-comparison>Interactive multisig comparison</h1><p>Here is the comparison. The first 3 guys (MuSig, MuSig2, FROST) are relying on RNG so we don’t care about the benchmarks, it is fast. But the last two guys (MuSig-DN, GKMN21), MuSig-DN on the microcontroller it will probably take 100 seconds. If you have a 5 input transaction you will need to wait for 10 minutes, not great. Also the memory requirements are pretty high. I think it can be optimized but still 10MB is not what you have on the microcontroller. There you normally have 100KB, something around this. Maybe megabytes you can get on the high end ones. Keystone for example that is Android based can have plenty of memory but they are running the secure code on the secure element that is also not very performant. And the proof size is ok, 1KB. I am a QR code guy so I don’t like transferring 1KB over QR codes, that will be complicated but ok fine. Then finally the second paper (GKMN21). It uses a different zero knowledge proof so it is much faster and on the microcontroller it can actually run. On the memory I am not sure but I think it is also using a few megabytes. The proof size is 1MB. So it is like a whole block of the Bitcoin blockchain is just a proof that you generated the nonce properly. But you don’t need to broadcast it so just internally transferred from one signer to another. This is the summary of all multisignature schemes. All of them have certain trade-offs. I would say if you are using multiple hardware wallets that you don’t want to connect at the same time to the same computer, you for example have them distributed, then don’t use interactive multisig. Use just normal multisig until we get some reasonable MuSig implementation. But there are plenty of use cases where it is extremely useful.</p><h1 id=taproot---where-can-we-use-it-now>Taproot - Where can we use it now?</h1><p>For example Lightning, completely different security model, your keys are always online anyway. You need to keep the state anyway. It doesn’t increase your attack surface if you start using MuSig. Lightning, good. Then atomic swaps, here also you probably have it on the hot wallet so very similar situation. So also fine. Then for services where you have a server that is one of the signers. For example Blockstream Green uses 2-of-2 or 1-of-2 plus timelock. This can be really optimized for Taproot. Muun wallet is using 2-of-2, the guys at Square are doing something funny with a server, mobile wallet and secure key storage. These are very good use cases. And finally my favorite, my dream, my passion, my precious, I am dreaming about this for 3 years but never had time to implement. A paranoid HSM where you combine multiple chips in the same device. You take RISC-V PGA board that is fully open source, you take a secure element under NDA from Infineon for example and you take some other RAM based microcontroller for example. Each of them has a key and each of them needs to sign in order to generate the full signature. Then if the attacker wants to hack this thing he needs to hack 3 different microcontrollers. This is really, really great, especially for HSM enterprise use cases. In the HSM, enterprise you can also cover it in the Faraday cage and have a conductive mesh that detects all the tamper attempts and so on. This is really cool. I think Taproot is awesome. Let’s see how it evolves, it is really nice.</p><h1 id=qa>Q&A</h1><p>Q - What Lightning wallets can use Taproot multisignature today?</p><p>A - I think right now it is not even specified in the specs so I don’t think it is implemented in software yet. I think c-lightning is working in that direction but maybe better to ask Christian Decker who is here. I think it is still in the write a specification step. But in general this would mean all your channel opening and mutual channel close transactions appear on the blockchain as a single signature and single key. Only if you need to do a unilateral close, then you expose the fact that there is a timelock in the Taptree.</p><p>Q - Which one of the collaborative multisig schemes do you think is on the path to mainstream adoption? We are in a weird situation when you have 14 standards, we need to create one standard to rule them all and then we have 15 standards.</p><p>A - I don’t know which one will be the one that is used by everyone. I personally like MuSig probably and some kind of combination with FROST because it gives you threshold signatures, 2-of-3, something like that. From my understanding FROST will have problems with cross input integration, Sanket mentioned that. I don’t know frankly speaking. I think it makes sense to start looking at MuSig first because this will probably be the first adopted. It might be better to ask someone who is writing libsecp256k1. I don’t have a definite answer.</p><p>Q - Are there any hardware wallets that allow you to provide your own entropy for the nonce? If not is there a good reason why not?</p><p>A - Before all the Taproot stuff what was discussed in the hardware wallet, Bitcoin community was the verification and mitigations of the chosen nonce attacks, anti side channel thing where the hardware wallet when it is hacked can leak your private key. I know two hardware wallets implemented mixing of additional entropy into their signatures, this is <a href=https://medium.com/blockstream/anti-exfil-stopping-key-exfiltration-589f02facc2e>Jade</a> and Bitbox. As far as I know no one else implemented that. But this is pretty much for the first step for MuSig. I think we can reuse the same specs and protocol for MuSig coordination as well. I think as soon as other hardware wallets start, if they start implementing MuSig, they will need to have this API for mixing additional entropy.</p><p>Q - You mentioned RISC-V. Do you think there is any scope there for custom instructions to try to make this really quick? Basically you have to emulate everything in software implementations.</p><p>A - With RISC-V on FPGA? I would recommend to look at <a href="https://www.bunniestudios.com/blog/?p=5921">Precursor</a> the project from Bunnie, the secure communication device for journalists and stuff that was on crowdfunding. Now they are manufacturing it. The guys are really into hardware, they use FPGA and a RISC-V core on the FPGA so it makes sense to look into that. They also have a OS and stuff and some secure measures. In principle they are also fully open source. What we can do, we can take everything that they did and use for our benefit. I think open source RISC-V cores are evolving fairly quickly and getting more production ready. In this setup for example you don’t need to hit the really production ready state because you also have security by other chips. I think there are also some FPGAs manufactured in China, I don’t know how much you trust China. They are extremely cheap and can run RISC-V in the minimum implementation. Generally with FPGAs if you want RISC-V and reasonable speed you need to pay a premium because FPGAs are more expensive, maybe a few hundred dollars.</p><h4></h4><ul><li><a href=/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/>zh: Taproot on hardware wallets</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> <script src=https://btctranscripts.com/lib/popper.min.js></script> <script src=https://btctranscripts.com/js/bootstrap.min.js></script> <script type=text/javascript src=/plugins/lunr.min.js></script> diff --git a/en/sitemap.xml b/en/sitemap.xml index feb7720135..a31ae89682 100644 --- a/en/sitemap.xml +++ b/en/sitemap.xml @@ -1 +1 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml"><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/</loc><lastmod>2016-10-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/</loc><lastmod>2018-10-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/scalingbitcoin/tokyo-2018/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/scalingbitcoin/tokyo-2018/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/</loc><lastmod>2020-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/andrew-chow/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/andrew-chow/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/andrew-chow/"/></url><url><loc>https://btctranscripts.com/tags/bitcoin-core/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/bitcoin-core/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/bitcoin-core/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/bitcoin-core-dev-tech/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/build-systems/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/categories/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/categories/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/cmake/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/categories/core-dev-tech/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/core-dev-tech/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/core-dev-tech/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/core-dev-tech/"/></url><url><loc>https://btctranscripts.com/speakers/cory-fields/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/wallet-legacy-upgrade/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/signature-aggregation/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/signature-aggregation/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/speakers/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/"/></url><url><loc>https://btctranscripts.com/tags/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/"/></url><url><loc>https://btctranscripts.com/tags/wallet/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/wallet/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/wallet/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/wallet/"/></url><url><loc>https://btctranscripts.com/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/"/></url><url><loc>https://btctranscripts.com/tags/assumeutxo/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/assumeutxo-update/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/coin-selection/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/gloria-zhao/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/kernel/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/kernel-planning/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/libsecp256k1/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/libsecp256k1/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/libsecp256k1/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/libsecp256k1-meeting/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/mark-erhardt/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/mark-erhardt/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/mark-erhardt/"/></url><url><loc>https://btctranscripts.com/tags/p2p/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/p2p/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/p2p/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-design-goals/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/package-relay/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/package-relay-planning/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/privacy/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/privacy/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/privacy/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/privacy/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/privacy-metrics/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/thecharlatan/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-working-session/</loc><lastmod>2023-09-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/kernel-update/</loc><lastmod>2023-09-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/lightning/</loc><lastmod>2023-08-28T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/lightning/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/lightning/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/lightning/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/lightning/"/></url><url><loc>https://btctranscripts.com/lightning-specification/</loc><lastmod>2023-08-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-08-28-specification-call/</loc><lastmod>2023-08-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-08-14-specification-call/</loc><lastmod>2023-08-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-07-31-specification-call/</loc><lastmod>2023-07-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-07-17-specification-call/</loc><lastmod>2023-07-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/dusty-daemon/</loc><lastmod>2023-07-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/multisig/</loc><lastmod>2023-07-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/multisig/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/multisig/"/></url><url><loc>https://btctranscripts.com/categories/podcast/</loc><lastmod>2023-07-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/podcast/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/podcast/"/></url><url><loc>https://btctranscripts.com/speakers/stephan-livera/</loc><lastmod>2023-07-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/</loc><lastmod>2023-07-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/what-is-splicing/</loc><lastmod>2023-07-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-06-19-specification-call/</loc><lastmod>2023-06-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-06-05-specification-call/</loc><lastmod>2023-06-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-05-22-specification-call/</loc><lastmod>2023-05-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-05-08-specification-call/</loc><lastmod>2023-05-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-assumeutxo/</loc><lastmod>2023-04-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/</loc><lastmod>2023-04-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/fuzzing/</loc><lastmod>2023-04-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-fuzzing/</loc><lastmod>2023-04-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/james-obeirne/</loc><lastmod>2023-04-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/niklas-g%C3%B6gge/</loc><lastmod>2023-04-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/libbitcoin-kernel/</loc><lastmod>2023-04-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-libbitcoin-kernel/</loc><lastmod>2023-04-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-meta-discussion/</loc><lastmod>2023-04-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/asmap/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-asmap/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/fabian-jahr/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/fabian-jahr/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/fabian-jahr/"/></url><url><loc>https://btctranscripts.com/speakers/josibake/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/mempool/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-mempool-clustering/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-package-relay-primer/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/pieter-wuille/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/pieter-wuille/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/pieter-wuille/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-refactors/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/ruben-somsen/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/ruben-somsen/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/ruben-somsen/"/></url><url><loc>https://btctranscripts.com/tags/silent-payments/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-silent-payments/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/suhas-daftuar/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-04-24-specification-call/</loc><lastmod>2023-04-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2023-03-06-greg-sanders/</loc><lastmod>2023-03-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/greg-sanders/</loc><lastmod>2023-03-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/advancing-bitcoin/</loc><lastmod>2023-03-01T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/advancing-bitcoin/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2022/</loc><lastmod>2023-03-01T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/advancing-bitcoin/2022/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2022/"/></url><url><loc>https://btctranscripts.com/speakers/christian-lewe/</loc><lastmod>2023-03-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/categories/conference/</loc><lastmod>2023-03-01T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/conference/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/conference/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/conference/"/></url><url><loc>https://btctranscripts.com/tags/miniscript/</loc><lastmod>2023-03-01T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/miniscript/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/miniscript/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/miniscript/"/></url><url><loc>https://btctranscripts.com/tags/script/</loc><lastmod>2023-03-01T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/script/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/script/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2022/simplicity-going-beyond-miniscript-by-christian-lewe-at-advancing-bitcoin-conference-in-london-2023/</loc><lastmod>2023-03-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2023-02-27-craig-raw-bitcoin-multi-signature/</loc><lastmod>2023-02-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/craig-raw/</loc><lastmod>2023-02-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/matt-corallo/</loc><lastmod>2023-02-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/matt-corallo/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/matt-corallo/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2023-02-23-matt-corallo/</loc><lastmod>2023-02-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-02-13-specification-call/</loc><lastmod>2023-02-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/categories/meeting/</loc><lastmod>2023-02-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/casey-rodarmor/</loc><lastmod>2023-02-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2023-02-02-casey-rodarmor/</loc><lastmod>2023-02-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/anant-tapadia/</loc><lastmod>2023-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/slp455-anant-tapadia-single-sig-or-multi-sig/</loc><lastmod>2023-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-01-30-specification-call/</loc><lastmod>2023-01-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcointranscripts/</loc><lastmod>2023-01-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/op_vault/</loc><lastmod>2023-01-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcointranscripts/stephan-livera-podcast/opvault-a-new-way-to-hodl/</loc><lastmod>2023-01-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/antoine-poinsot/</loc><lastmod>2023-01-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2023-01-23-antoine-poinsot-and-salvatore-ingala/</loc><lastmod>2023-01-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/salvatore-ingala/</loc><lastmod>2023-01-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2023-01-18-josibake/</loc><lastmod>2023-01-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2023-01-14-james-obeirne-a-new-way-to-hodl/</loc><lastmod>2023-01-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/dhruv/</loc><lastmod>2022-11-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/tim-ruffing/</loc><lastmod>2022-11-13T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/tim-ruffing/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/tim-ruffing/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-11-13-dhruv-pieter-wuille-and-tim-ruffing/</loc><lastmod>2022-11-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/bob-mcelrath/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/bob-mcelrath/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/bob-mcelrath/"/></url><url><loc>https://btctranscripts.com/tabconf/2022/2022-10-15-braidpool/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/2022-10-15-braidpool/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/2022-10-15-braidpool/"/></url><url><loc>https://btctranscripts.com/tags/fees/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/fees/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/fees/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/fees/"/></url><url><loc>https://btctranscripts.com/tags/mining/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/mining/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/mining/"/></url><url><loc>https://btctranscripts.com/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/"/></url><url><loc>https://btctranscripts.com/tags/p2pool/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/p2pool/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/p2pool/"/></url><url><loc>https://btctranscripts.com/tags/pools/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/pools/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/pools/"/></url><url><loc>https://btctranscripts.com/tags/segwit/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/segwit/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/segwit/"/></url><url><loc>https://btctranscripts.com/tabconf/2022/2022-10-15-silent-payments/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/2022-10-15-silent-payments/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/2022-10-15-silent-payments/"/></url><url><loc>https://btctranscripts.com/tabconf/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/"/></url><url><loc>https://btctranscripts.com/tabconf/2022/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/"/></url><url><loc>https://btctranscripts.com/tags/frost/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/frost/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/frost/"/></url><url><loc>https://btctranscripts.com/speakers/jonas-nick/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/jonas-nick/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/jonas-nick/"/></url><url><loc>https://btctranscripts.com/tabconf/2022/2022-10-14-hac-spec/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tabconf/2022/2022-10-14-roast/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/2022-10-14-roast/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/2022-10-14-roast/"/></url><url><loc>https://btctranscripts.com/tags/schnorr/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/schnorr/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/schnorr/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/schnorr/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/</loc><lastmod>2022-10-12T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/</loc><lastmod>2022-10-12T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/"/></url><url><loc>https://btctranscripts.com/tags/research/</loc><lastmod>2022-10-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-research-wishlist/</loc><lastmod>2022-10-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-merging/</loc><lastmod>2022-10-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-github/</loc><lastmod>2022-10-11T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-github/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-github/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/</loc><lastmod>2022-10-11T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-frost/</loc><lastmod>2022-10-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-hac-spec/</loc><lastmod>2022-10-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-package-relay/</loc><lastmod>2022-10-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-stratum-v2/</loc><lastmod>2022-10-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/stratum-v2/</loc><lastmod>2022-10-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/"/></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/</loc><lastmod>2022-08-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/categories/meetup/</loc><lastmod>2022-08-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2022-08-11-tim-ruffing-musig2/</loc><lastmod>2022-08-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-08-11-gloria-zhao/</loc><lastmod>2022-08-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/chelsea-komlo/</loc><lastmod>2022-08-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/elizabeth-crites/</loc><lastmod>2022-08-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2022-08-07-komlo-crites-frost/</loc><lastmod>2022-08-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/</loc><lastmod>2022-08-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/misc/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/misc/"/></url><url><loc>https://btctranscripts.com/tags/threshold-signatures/</loc><lastmod>2022-08-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-08-02-jonas-nick-tim-ruffing/</loc><lastmod>2022-08-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2022-07-14-tim-ruffing-roast/</loc><lastmod>2022-07-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/alex-myers/</loc><lastmod>2022-06-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoinplusplus/</loc><lastmod>2022-06-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoinplusplus/2022/</loc><lastmod>2022-06-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoinplusplus/2022/2022-06-07-alex-myers-minisketch-lightning-gossip/</loc><lastmod>2022-06-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/covenants/</loc><lastmod>2022-05-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/covenants/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/covenants/"/></url><url><loc>https://btctranscripts.com/greg-maxwell/2022-05-05-covenants-bip119/</loc><lastmod>2022-05-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/greg-maxwell/</loc><lastmod>2022-05-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/greg-maxwell/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/greg-maxwell/"/></url><url><loc>https://btctranscripts.com/greg-maxwell/</loc><lastmod>2022-05-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/greg-maxwell/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/greg-maxwell/"/></url><url><loc>https://btctranscripts.com/speakers/carl-dong/</loc><lastmod>2022-04-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/</loc><lastmod>2022-04-12T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/chaincode-labs/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/chaincode-labs/"/></url><url><loc>https://btctranscripts.com/tags/consensus/</loc><lastmod>2022-04-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/2022-04-12-carl-dong-libbitcoinkernel/</loc><lastmod>2022-04-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/categories/video/</loc><lastmod>2022-04-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/max-hillebrand/</loc><lastmod>2022-04-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-04-01-max-hillebrand/</loc><lastmod>2022-04-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/</loc><lastmod>2022-03-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2022-03-29-socratic-seminar/</loc><lastmod>2022-03-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-03-27-rene-pickhardt/</loc><lastmod>2022-03-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/rene-pickhardt/</loc><lastmod>2022-03-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2022-03-14-specification-call/</loc><lastmod>2022-03-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/c-lightning/</loc><lastmod>2022-03-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/c-lightning/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/c-lightning/"/></url><url><loc>https://btctranscripts.com/c-lightning/</loc><lastmod>2022-03-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2022-03-07-developer-call/</loc><lastmod>2022-03-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/john-cantrell/</loc><lastmod>2022-03-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-03-07-john-cantrell-sensei/</loc><lastmod>2022-03-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/christian-decker/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/christian-decker/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/christian-decker/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-christian-decker-greenlight/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/hardware-wallet/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/hardware-wallet/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/hardware-wallet/"/></url><url><loc>https://btctranscripts.com/speakers/jimmy-song/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/michael-folkson/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/"/></url><url><loc>https://btctranscripts.com/speakers/sanket-kanjalkar/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/sanket-kanjalkar/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sanket-kanjalkar/"/></url><url><loc>https://btctranscripts.com/speakers/stepan-snigirev/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/stepan-snigirev/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/stepan-snigirev/"/></url><url><loc>https://btctranscripts.com/tags/taproot/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/taproot/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/taproot/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-jimmy-song-taproot-multisig/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-michael-folkson-taproot-update/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/bastien-teinturier/</loc><lastmod>2022-03-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2022-03-01-lightning-panel/</loc><lastmod>2022-03-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/oliver-gugger/</loc><lastmod>2022-03-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-02-15-chris-stewart/</loc><lastmod>2022-02-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/chris-stewart/</loc><lastmod>2022-02-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2022-02-14-specification-call/</loc><lastmod>2022-02-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-01-31-nvk-bitcoin-hardware-innovation/</loc><lastmod>2022-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2022-01-31-specification-call/</loc><lastmod>2022-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/nvk/</loc><lastmod>2022-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoinology/2022-01-26-igor-korsakov-cool-ln-developments/</loc><lastmod>2022-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoinology/</loc><lastmod>2022-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/igor-korsakov/</loc><lastmod>2022-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/layer-2/</loc><lastmod>2022-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/rgb/</loc><lastmod>2022-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2022-01-24-developer-call/</loc><lastmod>2022-01-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/jeremy-rubin/</loc><lastmod>2022-01-17T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/jeremy-rubin/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/jeremy-rubin/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/jeremy-rubin/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-01-17-jeremy-rubin/</loc><lastmod>2022-01-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-01-11-salvatore-ingala/</loc><lastmod>2022-01-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2022-01-10-developer-call/</loc><lastmod>2022-01-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2022-01-03-specification-call/</loc><lastmod>2022-01-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/eric-sirion/</loc><lastmod>2021-12-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-12-17-eric-sirion/</loc><lastmod>2021-12-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-12-13-developer-call/</loc><lastmod>2021-12-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2021-12-06-specification-call/</loc><lastmod>2021-12-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-11-29-developer-call/</loc><lastmod>2021-11-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/alex-bosworth/</loc><lastmod>2021-11-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/graham-krizek/</loc><lastmod>2021-11-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/lisa-neigut/</loc><lastmod>2021-11-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-11-27-lisa-neigut-alex-bosworth-graham-krizek-and-matt-corallo/</loc><lastmod>2021-11-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2021-11-22-specification-call/</loc><lastmod>2021-11-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/adopting-bitcoin/</loc><lastmod>2021-11-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/adopting-bitcoin/2021/</loc><lastmod>2021-11-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/adopting-bitcoin/2021/2021-11-17-bastien-teinturier-privacy-on-lightning/</loc><lastmod>2021-11-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/andrew-poelstra/</loc><lastmod>2021-11-16T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/andrew-poelstra/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/andrew-poelstra/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/andrew-poelstra/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-11-16-pieter-wuille-andrew-poelstra-andrew-chow-mark-erhardt/</loc><lastmod>2021-11-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/adopting-bitcoin/2021/2021-11-16-gloria-zhao-transaction-relay-policy/</loc><lastmod>2021-11-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-11-15-developer-call/</loc><lastmod>2021-11-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/nicholas-gregory/</loc><lastmod>2021-11-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-11-12-nicholas-gregory/</loc><lastmod>2021-11-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-11-07-t-bast/</loc><lastmod>2021-11-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/</loc><lastmod>2021-11-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/"/></url><url><loc>https://btctranscripts.com/tabconf/2021/</loc><lastmod>2021-11-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2021/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2021/"/></url><url><loc>https://btctranscripts.com/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/</loc><lastmod>2021-11-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/"/></url><url><loc>https://btctranscripts.com/tabconf/2021/bitcoin-mining-firmware-and-stratum-v2-rachel-rybarczyk-tabconf-2021/</loc><lastmod>2021-11-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/rachel-rybarczyk/</loc><lastmod>2021-11-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/ibd/</loc><lastmod>2021-11-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/security/</loc><lastmod>2021-11-02T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/security/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/security/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/security/"/></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2021-11-02-socratic-seminar-assumeutxo/</loc><lastmod>2021-11-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2021-11-02-socratic-seminar/</loc><lastmod>2021-11-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-11-01-developer-call/</loc><lastmod>2021-11-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/k3tan/</loc><lastmod>2021-10-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-10-27-k3tan-networking-for-bitcoiners/</loc><lastmod>2021-10-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/dustin-trammell/</loc><lastmod>2021-10-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-10-24-dustin-trammell/</loc><lastmod>2021-10-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-10-18-developer-call/</loc><lastmod>2021-10-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-10-04-developer-call/</loc><lastmod>2021-10-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/philip-glazman/</loc><lastmod>2021-10-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-10-02-philip-glazman/</loc><lastmod>2021-10-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/anthony-potdevin/</loc><lastmod>2021-09-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-09-29-thomas-jestopher-and-anthony-potdevin/</loc><lastmod>2021-09-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/thomas-jestopher/</loc><lastmod>2021-09-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-09-20-developer-call/</loc><lastmod>2021-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-09-06-developer-call/</loc><lastmod>2021-09-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-08-24-seedsigner/</loc><lastmod>2021-08-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-08-23-developer-call/</loc><lastmod>2021-08-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/iacr/</loc><lastmod>2021-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/iacr/2021-08-16-jonas-nick-musig2/</loc><lastmod>2021-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/smart-contracts/</loc><lastmod>2021-08-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2021-08-10-socratic-seminar-dlcs/</loc><lastmod>2021-08-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-08-09-developer-call/</loc><lastmod>2021-08-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-08-09-rusty-russell/</loc><lastmod>2021-08-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/rusty-russell/</loc><lastmod>2021-08-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2021-07-20-socratic-seminar-taproot-rollout/</loc><lastmod>2021-07-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-07-17-andrew-chow/</loc><lastmod>2021-07-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-07-13-nvk-bitcoin-security/</loc><lastmod>2021-07-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2021-07-06-socratic-seminar/</loc><lastmod>2021-07-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2021-06-01-socratic-seminar/</loc><lastmod>2021-06-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/wasabi-research-club/2021-05-30-rusty-russell-improving-lightning/</loc><lastmod>2021-05-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/wasabi-research-club/</loc><lastmod>2021-05-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/alejandro-de-la-torre/</loc><lastmod>2021-05-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-05-24-alejandro-de-la-torre/</loc><lastmod>2021-05-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/anthony-ronning/</loc><lastmod>2021-05-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-05-21-anthony-ronning-bitcoin-lightning-privacy/</loc><lastmod>2021-05-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/pavel-moravec/</loc><lastmod>2021-05-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-05-13-pavel-moravec/</loc><lastmod>2021-05-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-podcast/</loc><lastmod>2021-05-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-podcast/2021-05-12-matt-corallo-ldk/</loc><lastmod>2021-05-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/pete-rizzo/</loc><lastmod>2021-04-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-04-28-pete-rizzo/</loc><lastmod>2021-04-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/aaron-van-wirdum/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/aaron-van-wirdum/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/aaron-van-wirdum/"/></url><url><loc>https://btctranscripts.com/bitcoin-magazine/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/"/></url><url><loc>https://btctranscripts.com/speakers/sjors-provoost/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/sjors-provoost/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sjors-provoost/"/></url><url><loc>https://btctranscripts.com/bitcoin-magazine/2021-04-23-taproot-activation-update/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/2021-04-23-taproot-activation-update/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/2021-04-23-taproot-activation-update/"/></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2021/2021-04-03-defending-against-99-attack/</loc><lastmod>2021-04-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/</loc><lastmod>2021-04-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2021/</loc><lastmod>2021-04-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/tadge-dryja/</loc><lastmod>2021-04-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/tadge-dryja/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/tadge-dryja/"/></url><url><loc>https://btctranscripts.com/categories/hackathon/</loc><lastmod>2021-03-27T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/categories/hackathon/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/hackathon/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/hackathon/"/></url><url><loc>https://btctranscripts.com/lightning-hack-day/</loc><lastmod>2021-03-27T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/lightning-hack-day/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/lightning-hack-day/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lightning-hack-day/"/></url><url><loc>https://btctranscripts.com/lightning-hack-day/2021-03-27-alex-bosworth-lightning-routing/</loc><lastmod>2021-03-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/routing/</loc><lastmod>2021-03-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-03-24-craig-raw-bitcoin-multi-sig/</loc><lastmod>2021-03-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-03-17-luke-dashjr/</loc><lastmod>2021-03-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/luke-dashjr/</loc><lastmod>2021-03-17T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/luke-dashjr/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/luke-dashjr/"/></url><url><loc>https://btctranscripts.com/tags/soft-fork/</loc><lastmod>2021-03-17T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/soft-fork/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/soft-fork/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-03-17-luke-dashjr-taproot-activation/</loc><lastmod>2021-03-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/</loc><lastmod>2021-03-12T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-03-04-matt-corallo/</loc><lastmod>2021-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/gleb-naumenko/</loc><lastmod>2021-02-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/</loc><lastmod>2021-02-26T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-02-26-gleb-naumenko/</loc><lastmod>2021-02-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/attacks/</loc><lastmod>2021-02-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2021-02-23-socratic-seminar/</loc><lastmod>2021-02-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/daniela-brozzoni/</loc><lastmod>2021-02-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/munich-meetup/</loc><lastmod>2021-02-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/munich-meetup/2021-02-21-daniela-brozzoni-stratumv2/</loc><lastmod>2021-02-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tftc-podcast/</loc><lastmod>2021-02-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tftc-podcast/2021-02-11-matt-corallo-taproot-activation/</loc><lastmod>2021-02-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-01-21-wiz-and-simon-mempool/</loc><lastmod>2021-01-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/simon/</loc><lastmod>2021-01-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/wiz/</loc><lastmod>2021-01-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/jonas-schnelli/</loc><lastmod>2021-01-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-01-14-jonas-schnelli-maintaining-bitcoin-core/</loc><lastmod>2021-01-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/realworldcrypto/2021/2021-01-12-tim-ruffing-musig2/</loc><lastmod>2021-01-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/realworldcrypto/</loc><lastmod>2021-01-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/realworldcrypto/2021/</loc><lastmod>2021-01-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-11-30-carl-dong-reproducible-builds/</loc><lastmod>2020-11-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/</loc><lastmod>2020-11-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2020-11-30-socratic-seminar-20/</loc><lastmod>2020-11-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2020-11-25-greg-maxwell-replacing-pgp/</loc><lastmod>2020-11-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2020-11-05-greg-maxwell-yubikey-security/</loc><lastmod>2020-11-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/altcoin/</loc><lastmod>2020-11-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2020-11-01-greg-maxwell-hardware-wallets-altcoins/</loc><lastmod>2020-11-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-10-27-jonas-nick-tim-ruffing-musig2/</loc><lastmod>2020-10-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2020-10-26-greg-maxwell-bitcoin-core-github/</loc><lastmod>2020-10-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/nadav-kohen/</loc><lastmod>2020-10-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-10-15-nadav-kohen-bitcoin-dlcs/</loc><lastmod>2020-10-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/barnab%C3%A1s-b%C3%A1gyi/</loc><lastmod>2020-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/cppcon/</loc><lastmod>2020-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/cppcon/2020/</loc><lastmod>2020-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/cppcon/2020/2020-10-09-barnabas-bagyi-fuzzing-class-interfaces/</loc><lastmod>2020-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-10-02-gloria-zhao-bitcoin-core/</loc><lastmod>2020-10-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/michael-flaxman/</loc><lastmod>2020-09-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-09-28-michael-flaxman-security-guide/</loc><lastmod>2020-09-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-09-15-steve-lee-of-square-crypto/</loc><lastmod>2020-09-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/steve-lee/</loc><lastmod>2020-09-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/bitcoin-core-functional-test-framework/</loc><lastmod>2020-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/</loc><lastmod>2020-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/</loc><lastmod>2020-09-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/scalingbitcoin/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/scalingbitcoin/"/></url><url><loc>https://btctranscripts.com/tags/testing/</loc><lastmod>2020-09-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/testing/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/testing/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/debugging-bitcoin/</loc><lastmod>2020-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/ben-kaufman/</loc><lastmod>2020-08-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-08-28-stepan-snigirev-and-ben-kaufman/</loc><lastmod>2020-08-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2020-08-27-greg-maxwell-checkmultisig-bug/</loc><lastmod>2020-08-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/hard-fork/</loc><lastmod>2020-08-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2020-08-25-socratic-seminar/</loc><lastmod>2020-08-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-design/2020-08-20-bitcoin-core-gui/</loc><lastmod>2020-08-20T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-design/2020-08-20-bitcoin-core-gui/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-design/2020-08-20-bitcoin-core-gui/"/></url><url><loc>https://btctranscripts.com/bitcoin-design/</loc><lastmod>2020-08-20T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-design/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-design/"/></url><url><loc>https://btctranscripts.com/tags/signet/</loc><lastmod>2020-08-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-08-19-socratic-seminar-signet/</loc><lastmod>2020-08-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-08-13-christian-decker/</loc><lastmod>2020-08-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-08-13-christian-decker-lightning-topics/</loc><lastmod>2020-08-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chicago-bitdevs/</loc><lastmod>2020-08-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chicago-bitdevs/2020-08-12-socratic-seminar/</loc><lastmod>2020-08-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-08-09-thomas-voegtlin-ghost43-electrum/</loc><lastmod>2020-08-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-08-09-thomas-voegtlin-and-ghost43/</loc><lastmod>2020-08-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/ghost43/</loc><lastmod>2020-08-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/thomas-voegtlin/</loc><lastmod>2020-08-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/eric-lombrozo/</loc><lastmod>2020-08-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/eric-lombrozo/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/eric-lombrozo/"/></url><url><loc>https://btctranscripts.com/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/</loc><lastmod>2020-08-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-07-26-nix-bitcoindev/</loc><lastmod>2020-07-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-07-26-nix-bitcoin/</loc><lastmod>2020-07-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/nixbitcoindev/</loc><lastmod>2020-07-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/openoms/</loc><lastmod>2020-07-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-07-21-rootzoll-and-openoms-raspiblitz/</loc><lastmod>2020-07-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/rootzoll/</loc><lastmod>2020-07-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2020-07-21-socratic-seminar/</loc><lastmod>2020-07-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-07-21-socratic-seminar-bip-taproot/</loc><lastmod>2020-07-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2020-07-20-greg-maxwell-taproot-pace/</loc><lastmod>2020-07-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/vr-bitcoin/2020-07-11-jeremy-rubin-sapio-101/</loc><lastmod>2020-07-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/vr-bitcoin/</loc><lastmod>2020-07-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2020-07-10-what-am-i-working-on/</loc><lastmod>2020-07-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chicago-bitdevs/2020-07-08-socratic-seminar/</loc><lastmod>2020-07-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2020-07-05-greg-maxwell-useful-proof-of-work/</loc><lastmod>2020-07-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-06-30-john-cantrell-bruteforcing-bitcoin-seeds/</loc><lastmod>2020-06-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2020-06-23-socratic-seminar/</loc><lastmod>2020-06-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-06-23-socratic-seminar-coinswap/</loc><lastmod>2020-06-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-hack-day/2020-06-21-rootzoll-openoms-raspiblitz/</loc><lastmod>2020-06-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/la-bitdevs/</loc><lastmod>2020-06-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/psbt/</loc><lastmod>2020-06-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/la-bitdevs/2020-06-18-luke-dashjr-segwit-psbt-vulnerability/</loc><lastmod>2020-06-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-06-17-tim-ruffing-schnorr-multisig/</loc><lastmod>2020-06-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-06-16-socratic-seminar-bip-schnorr/</loc><lastmod>2020-06-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/wasabi-research-club/2020-06-15-coinswap/</loc><lastmod>2020-06-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/fungibility/</loc><lastmod>2020-06-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/ergo/</loc><lastmod>2020-06-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-06-09-ergo-unwinding-bitcoin/</loc><lastmod>2020-06-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2020-06-08-greg-maxwell-liquid-censorship-resistance/</loc><lastmod>2020-06-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-05-27-bitcoin-coin-selection/</loc><lastmod>2020-05-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/kevin-loaec/</loc><lastmod>2020-05-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-05-26-kevin-loaec-antoine-poinsot-revault/</loc><lastmod>2020-05-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/sergi-delgado-segura/</loc><lastmod>2020-05-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/sergi-delgado-segura/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sergi-delgado-segura/"/></url><url><loc>https://btctranscripts.com/lightning-hack-day/2020-05-24-sergi-delgado-watchtowers/</loc><lastmod>2020-05-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/lightning-hack-day/2020-05-24-sergi-delgado-watchtowers/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lightning-hack-day/2020-05-24-sergi-delgado-watchtowers/"/></url><url><loc>https://btctranscripts.com/speakers/alekos-filini/</loc><lastmod>2020-05-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/la-bitdevs/2020-05-21-alekos-filini-magical-bitcoin/</loc><lastmod>2020-05-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2020-05-19-socratic-seminar/</loc><lastmod>2020-05-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-05-19-socratic-seminar-vaults/</loc><lastmod>2020-05-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/vr-bitcoin/2020-05-16-oliver-gugger-lsat/</loc><lastmod>2020-05-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/ruben-somsen/</loc><lastmod>2020-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/ruben-somsen/2020-05-11-ruben-somsen-succinct-atomic-swap/</loc><lastmod>2020-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-hack-day/2020-05-09-sergei-tikhomirov-lightning-privacy/</loc><lastmod>2020-05-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/lightning-hack-day/2020-05-09-sergei-tikhomirov-lightning-privacy/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lightning-hack-day/2020-05-09-sergei-tikhomirov-lightning-privacy/"/></url><url><loc>https://btctranscripts.com/tags/scalability/</loc><lastmod>2020-05-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/scalability/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/scalability/"/></url><url><loc>https://btctranscripts.com/speakers/sergei-tikhomirov/</loc><lastmod>2020-05-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/speakers/sergei-tikhomirov/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sergei-tikhomirov/"/></url><url><loc>https://btctranscripts.com/speakers/adam-gibson/</loc><lastmod>2020-05-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-05-05-socratic-seminar-payjoins/</loc><lastmod>2020-05-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-hack-day/2020-05-03-christian-decker-lightning-backups/</loc><lastmod>2020-05-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-04-29-kalle-rosenbaum-grokking-bitcoin/</loc><lastmod>2020-04-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/kalle-rosenbaum/</loc><lastmod>2020-04-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/honey-badger-diaries/</loc><lastmod>2020-04-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-04-24-lisa-neigut-lighting-network-channel/</loc><lastmod>2020-04-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/honey-badger-diaries/2020-04-24-kevin-loaec-antoine-poinsot-revault/</loc><lastmod>2020-04-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/ux/</loc><lastmod>2020-04-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/ux/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/ux/"/></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-04-22-socratic-seminar/</loc><lastmod>2020-04-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/chris-belcher/</loc><lastmod>2020-04-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-04-21-chris-belcher/</loc><lastmod>2020-04-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/joost-jager/</loc><lastmod>2020-04-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/vr-bitcoin/2020-04-18-laolu-joost-oliver-lnd0.10/</loc><lastmod>2020-04-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/lnd/</loc><lastmod>2020-04-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/olaoluwa-osuntokun/</loc><lastmod>2020-04-18T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/olaoluwa-osuntokun/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/olaoluwa-osuntokun/"/></url><url><loc>https://btctranscripts.com/speakers/amiti-uttarwar/</loc><lastmod>2020-04-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/la-bitdevs/2020-04-16-amiti-uttarwar-attacking-bitcoin-core/</loc><lastmod>2020-04-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/adam-back/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/andreas-antonopoulos/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/andreas-antonopoulos/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/andreas-antonopoulos/"/></url><url><loc>https://btctranscripts.com/andreas-antonopoulos/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/"/></url><url><loc>https://btctranscripts.com/blockstream-webinars/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/2020-04-08-john-newbery-contracts-in-bitcoin/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/john-newbery/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/john-newbery/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/john-newbery/"/></url><url><loc>https://btctranscripts.com/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/"/></url><url><loc>https://btctranscripts.com/blockstream-webinars/2020-04-08-adam-back-simplicity/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-04-07-gleb-naumenko-erlay/</loc><lastmod>2020-04-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-03-12-matt-corallo-compact-blocks-fibre/</loc><lastmod>2020-03-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2020/</loc><lastmod>2020-03-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2020/2020-03-07-andrew-poelstra-taproot/</loc><lastmod>2020-03-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/</loc><lastmod>2020-02-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/"/></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/</loc><lastmod>2020-02-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/"/></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/bram-cohen/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/consensus-protocol-risks-and-vulnerabilities/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/cryptography/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/cryptography/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/cryptography/"/></url><url><loc>https://btctranscripts.com/speakers/dan-boneh/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/dan-boneh/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/dan-boneh/"/></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/welcome-remarks/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/categories/workshop/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/byron-gibson/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/communication-with-regulators/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/opening-remarks/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/regulation/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/regulatory-pain-points/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/risk-overview/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/ryosuke-ushida/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/shinichiro-matsuo/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/stress-testing-decentralized-finance/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/tarun-chitra/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/technological-stability/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-02-16-waxwing-or-adam-gibson/</loc><lastmod>2020-02-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-02-11-jeremy-rubin-ctv/</loc><lastmod>2020-02-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2020/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/"/></url><url><loc>https://btctranscripts.com/speakers/kalle-alm/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/kalle-alm/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/kalle-alm/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/"/></url><url><loc>https://btctranscripts.com/speakers/antoine-riard/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/antoine-riard/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/antoine-riard/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-kalle-alm-signet-integration/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/"/></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-02-05-andrew-chow-hardware-wallets/</loc><lastmod>2020-02-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/james-chiang/</loc><lastmod>2020-02-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-02-04-andrew-poelstra-miniscript/</loc><lastmod>2020-02-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-02-04-james-chiang-trace-net/</loc><lastmod>2020-02-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-01-28-pieter-wuille/</loc><lastmod>2020-01-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/</loc><lastmod>2020-01-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-01-06-andreas-antonopoulos/</loc><lastmod>2020-01-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/anthony-towns/</loc><lastmod>2019-12-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-12-27-aj-towns-schnorr-taproot/</loc><lastmod>2019-12-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-12-27-aj-townsschnorr-taproot-tapscript-bips/</loc><lastmod>2019-12-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2019-12-16-bip-taproot-bip-tapscript/</loc><lastmod>2019-12-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-12-16-rusty-russelllightning-multi-part-payments/</loc><lastmod>2019-12-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/jan-%C4%8Dapek/</loc><lastmod>2019-11-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-11-27-jan-capekstratum-v2/</loc><lastmod>2019-11-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/</loc><lastmod>2019-11-19T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-11-16-thomas-voegtlin-electrum-wallet/</loc><lastmod>2019-11-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-11-13-jon-atack/</loc><lastmod>2019-11-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2019-11-13-gleb-naumenko-p2p-erlay/</loc><lastmod>2019-11-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/jon-atack/</loc><lastmod>2019-11-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/allen-piscitello/</loc><lastmod>2019-11-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-11-08-allen-piscitellosidechains/</loc><lastmod>2019-11-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/jack-mallers/</loc><lastmod>2019-10-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-10-29-jack-mallers/</loc><lastmod>2019-10-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-10-24-alex-bosworth-submarine-swaps/</loc><lastmod>2019-10-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/eclair/</loc><lastmod>2019-10-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-conference/</loc><lastmod>2019-10-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-conference/2019/</loc><lastmod>2019-10-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-conference/2019/2019-10-20-nadav-kohen-payment-points/</loc><lastmod>2019-10-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-conference/2019/2019-10-20-antoine-riard-rust-lightning/</loc><lastmod>2019-10-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-conference/2019/2019-10-20-bastien-teinturier-trampoline-routing/</loc><lastmod>2019-10-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-conference/2019/2019-10-19-rusty-russell-offers/</loc><lastmod>2019-10-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-conference/2019/2019-10-19-chris-stewart-private-key-management/</loc><lastmod>2019-10-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/</loc><lastmod>2019-10-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/</loc><lastmod>2019-10-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/russell-oconnor/</loc><lastmod>2019-10-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/sidechains/</loc><lastmod>2019-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/sidechains/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/sidechains/"/></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/2019-10-15-russell-oconnor-simplicity/</loc><lastmod>2019-10-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/</loc><lastmod>2019-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/"/></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/</loc><lastmod>2019-10-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/chaincode-labs/chaincode-residency/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/chaincode-labs/chaincode-residency/"/></url><url><loc>https://btctranscripts.com/speakers/giulia-fanti/</loc><lastmod>2019-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-10-09-giulia-fanti-p2p-privacy-attacks/</loc><lastmod>2019-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/categories/residency/</loc><lastmod>2019-10-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/residency/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/residency/"/></url><url><loc>https://btctranscripts.com/tags/academia/</loc><lastmod>2019-10-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/bryan-bishop/</loc><lastmod>2019-10-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/bryan-bishop/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/bryan-bishop/"/></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/knowledge-aggregation-and-propagation/</loc><lastmod>2019-10-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/threshold-schnorr-signatures/</loc><lastmod>2019-10-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2019-10-04-majority-miner-attack/</loc><lastmod>2019-10-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoinops/</loc><lastmod>2019-09-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoinops/2019-09-27-schnorr-taproot-workshop/</loc><lastmod>2019-09-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-09-22-bryan-bishop/</loc><lastmod>2019-09-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/baltic-honeybadger/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/"/></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2019/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2019/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2019/"/></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/"/></url><url><loc>https://btctranscripts.com/speakers/rodolfo-novak/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/rodolfo-novak/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/rodolfo-novak/"/></url><url><loc>https://btctranscripts.com/speakers/carla-kirk-cohen/</loc><lastmod>2019-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/2019-09-09-carla-kirk-cohen-routing-problems-and-solutions/</loc><lastmod>2019-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-09-09-amiti-uttarwar-transaction-rebroadcast/</loc><lastmod>2019-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/decentralized-financial-architecture-workshop/custody-group/</loc><lastmod>2019-09-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/decentralized-financial-architecture-workshop/</loc><lastmod>2019-09-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockstream-webinars/2019-09-04-christian-decker-c-lightning-questions/</loc><lastmod>2019-09-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-08-22-fabian-jahr-debugging/</loc><lastmod>2019-08-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/</loc><lastmod>2019-08-22T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/"/></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-08-22-james-chiang-taproot-policy/</loc><lastmod>2019-08-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/dallas-bitcoin-symposium/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/dhruv-bansal/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/elichai-turkel/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/gideon-powell/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/dallas-bitcoin-symposium/intro/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/justin-moon/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/marty-bent/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/michael-goldstein/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/parker-lewis/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/dallas-bitcoin-symposium/q-a/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-08-16-elichai-turkel-schnorr-signatures/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/tuur-demeester/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/joe-netti/</loc><lastmod>2019-08-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-08-12-rusty-russell-joe-netti/</loc><lastmod>2019-08-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-08-08-michael-flaxman/</loc><lastmod>2019-08-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/jonathan-metzman/</loc><lastmod>2019-08-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2019-08-07-jonathan-metzman-structured-fuzzing/</loc><lastmod>2019-08-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockstream-webinars/2019-07-31-rusty-russell-getting-started-with-c-lightning/</loc><lastmod>2019-07-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-07-31-roy-sheinfeld-lightning-network-services/</loc><lastmod>2019-07-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/roy-sheinfeld/</loc><lastmod>2019-07-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-07-31-roy-sheinfeld-stephan-livera/</loc><lastmod>2019-07-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/britt-kelly/</loc><lastmod>2019-07-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-07-25-britt-kelly-btcpayserver-documentation/</loc><lastmod>2019-07-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/submarine-swaps/</loc><lastmod>2019-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2019-07-03-alex-bosworth-submarine-swaps/</loc><lastmod>2019-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/2019-06-29-hardware-wallets/</loc><lastmod>2019-06-29T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-06-29-hardware-wallets/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-06-29-hardware-wallets/"/></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-28-christian-decker-multiparty-channels/</loc><lastmod>2019-06-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-28-christian-decker-rendezvous-routing/</loc><lastmod>2019-06-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/fabrice-drouin/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/limitations/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-26-fabrice-drouin-limitations-of-lightweight-clients/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-26-rene-pickhardt-path-finding-lightning-network/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/path-finding/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/splicing/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-26-rene-pickhardt-splicing/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-26-rene-pickhardt-update-layer/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/update-layer/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-fabrice-drouin-attack-vectors-of-lightning-network/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/eltoo/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/eltoo/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/eltoo/"/></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/"/></url><url><loc>https://btctranscripts.com/tags/multiple-path-payments/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-alex-bosworth-mpp/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/onion/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-onion-routing-deep-dive/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/routing-failures/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-fabrice-drouin-routing-failures/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/sphinx/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-24-fabrice-drouin-base-and-transport-layers-of-lightning-network/</loc><lastmod>2019-06-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/conner-fromknecht/</loc><lastmod>2019-06-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-06-24-conner-fromknecht-stephan-livera/</loc><lastmod>2019-06-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-24-rene-pickhardt-multihop-in-lightning/</loc><lastmod>2019-06-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-19-john-newbery-wallet-development/</loc><lastmod>2019-06-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-18-james-obeirne-advanced-segwit/</loc><lastmod>2019-06-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/musig/</loc><lastmod>2019-06-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tftc-podcast/2019-06-18-andrew-poelstra-tftc/</loc><lastmod>2019-06-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-17-john-newbery-security-models/</loc><lastmod>2019-06-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/</loc><lastmod>2019-06-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/</loc><lastmod>2019-06-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/2019-06-09-joost-jager-hodl-invoices/</loc><lastmod>2019-06-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/ethan-heilman/</loc><lastmod>2019-06-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-12-ethan-heilman-network-partitioning-attacks/</loc><lastmod>2019-06-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lets-talk-bitcoin-podcast/</loc><lastmod>2019-06-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/lets-talk-bitcoin-podcast/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lets-talk-bitcoin-podcast/"/></url><url><loc>https://btctranscripts.com/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/</loc><lastmod>2019-06-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/"/></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/2019-06-08-mempool-analysis-simulation/</loc><lastmod>2019-06-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/p2p-encryption/</loc><lastmod>2019-06-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-assumeutxo/</loc><lastmod>2019-06-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/</loc><lastmod>2019-06-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-hardware-wallets/</loc><lastmod>2019-06-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/</loc><lastmod>2019-06-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/</loc><lastmod>2019-06-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-statechains/</loc><lastmod>2019-06-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/accumulators/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/accumulators/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/accumulators/"/></url><url><loc>https://btctranscripts.com/tags/forks/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-great-consensus-cleanup/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/"/></url><url><loc>https://btctranscripts.com/speakers/michael-ford/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/secure-protocols-bip-taproot/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-taproot/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-utreexo/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/wladimir-van-der-laan/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-code-review/</loc><lastmod>2019-06-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/</loc><lastmod>2019-06-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/"/></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/</loc><lastmod>2019-05-27T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/"/></url><url><loc>https://btctranscripts.com/speakers/paul-sztorc/</loc><lastmod>2019-05-27T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/paul-sztorc/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/paul-sztorc/"/></url><url><loc>https://btctranscripts.com/what-bitcoin-did-podcast/2019-05-14-adam-back-bryan-bishop-block-reorgs/</loc><lastmod>2019-05-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/what-bitcoin-did-podcast/</loc><lastmod>2019-05-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/crypto-in-cryptocurrency/</loc><lastmod>2019-05-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/fork-dynamics/</loc><lastmod>2019-05-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/</loc><lastmod>2019-05-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/</loc><lastmod>2019-05-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/the-state-of-bitcoin-mining/</loc><lastmod>2019-05-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/zero-knowledge/</loc><lastmod>2019-05-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-satellite-network/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/elizabeth-stark/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/elizabeth-stark/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/elizabeth-stark/"/></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/htc/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/intro/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/leigh-cuen/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/lightning-payments/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/ln-present-and-future-panel/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/mcf-episode/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/noded-podcast/2019-05-11-andrew-poelstra-miniscript/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/noded-podcast/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/phil-chen/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/stacy-herbert/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/state-of-lightning-network/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/submarine-swaps/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/taxonomy-of-ln-nodes/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/will-obeirne/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2019-05-02-conner-fromknecht-lnd-0.6-beta/</loc><lastmod>2019-05-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2019-05-01-stepan-snigirev-hardware-wallet-attacks/</loc><lastmod>2019-05-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-04-11-james-obeirne/</loc><lastmod>2019-04-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/boltathon/</loc><lastmod>2019-04-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/boltathon/2019-04-06-rusty-russell-json-interface/</loc><lastmod>2019-04-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/boltathon/2019-04-06-alex-bosworth-major-limitations/</loc><lastmod>2019-04-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/boltathon/2019-04-06-conner-fromknecht-watchtowers/</loc><lastmod>2019-04-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2019-03-15-partially-signed-bitcoin-transactions/</loc><lastmod>2019-03-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-03-14-christian-decker-channel-factories/</loc><lastmod>2019-03-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/topology/</loc><lastmod>2019-03-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-03-11-chris-belcher/</loc><lastmod>2019-03-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2019/</loc><lastmod>2019-03-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2019/signature-scheme-security-properties/</loc><lastmod>2019-03-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/attacking-evm-resource-metering/</loc><lastmod>2019-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/benjamin-livshits/</loc><lastmod>2019-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/daniel-perez/</loc><lastmod>2019-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-02-11-jack-dorsey-elizabeth-stark/</loc><lastmod>2019-02-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/jack-dorsey/</loc><lastmod>2019-02-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2019-02-09-mcelrath-on-chain-defense-in-depth/</loc><lastmod>2019-02-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/custody/</loc><lastmod>2019-02-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2019/</loc><lastmod>2019-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2019/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2019/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/</loc><lastmod>2019-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/"/></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2019-02-05-matt-corallo-betterhash/</loc><lastmod>2019-02-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2019-02-04-threshold-signatures-and-accountability/</loc><lastmod>2019-02-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/verifiable-delay-functions/vdf-day-2019/</loc><lastmod>2019-02-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/verifiable-delay-functions/</loc><lastmod>2019-02-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/verifiable-delay-functions/vdf-day-2019/dan-boneh/</loc><lastmod>2019-02-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/</loc><lastmod>2019-02-01T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/"/></url><url><loc>https://btctranscripts.com/tags/validation/</loc><lastmod>2019-02-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-07-21-kukks-btcpayserver-architecture/</loc><lastmod>2019-01-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/georgios-konstantopoulos/</loc><lastmod>2019-01-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/kukks/</loc><lastmod>2019-01-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/nicolas-dorier/</loc><lastmod>2019-01-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-01-20-nicolas-dorier-and-btcpayserver/</loc><lastmod>2019-01-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/plasma-cash/</loc><lastmod>2019-01-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/</loc><lastmod>2019-01-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/istvan-andras-seres/</loc><lastmod>2019-01-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/lightning-network-topological-analysis/</loc><lastmod>2019-01-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2019-01-05-unchained-capital-socratic-seminar/</loc><lastmod>2019-01-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/noded-podcast/2018-12-14-laolu-conner-lnd/</loc><lastmod>2018-12-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2018-12-11-laolu-osuntokun-stephan-livera/</loc><lastmod>2018-12-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/tom-kirkpatrick/</loc><lastmod>2018-12-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-hack-day/2018-12-01-tom-kirkpatrick-zap-wallet/</loc><lastmod>2018-12-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-hack-day/2018-10-27-pierre-rochard-excel-in-lightning/</loc><lastmod>2018-10-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/pierre-rochard/</loc><lastmod>2018-10-27T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/pierre-rochard/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/pierre-rochard/"/></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-26-pierre-rochard-lightning-excel-plugin/</loc><lastmod>2018-10-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-24-christian-decker-c-lightning-api/</loc><lastmod>2018-10-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/</loc><lastmod>2018-10-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/"/></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-elaine-ou-bootstrapping-lightning-node/</loc><lastmod>2018-10-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-alex-bosworth-building-lightning-applications/</loc><lastmod>2018-10-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-alex-bosworth-channel-management/</loc><lastmod>2018-10-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/elaine-ou/</loc><lastmod>2018-10-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-christian-decker-history-of-lightning/</loc><lastmod>2018-10-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-christian-decker-lightning-bitcoin/</loc><lastmod>2018-10-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-alex-bosworth-lightning-protocol/</loc><lastmod>2018-10-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/</loc><lastmod>2018-10-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-10-signmessage/</loc><lastmod>2018-10-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-09-bitcoin-optech/</loc><lastmod>2018-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-09-wallet-stuff/</loc><lastmod>2018-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-efficient-p2p-transaction-relay/</loc><lastmod>2018-10-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/</loc><lastmod>2018-10-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-utxo-accumulators-and-utreexo/</loc><lastmod>2018-10-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/</loc><lastmod>2018-10-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/</loc><lastmod>2018-10-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/python-bitcoinlib/</loc><lastmod>2018-10-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/wallet-architecture/</loc><lastmod>2018-10-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/wallet-security/</loc><lastmod>2018-10-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/noded-podcast/jnewbery-cve-2018-17144-bug/</loc><lastmod>2018-09-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/</loc><lastmod>2018-09-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/"/></url><url><loc>https://btctranscripts.com/greg-maxwell/2018-09-23-greg-maxwell-bitcoin-core-testing/</loc><lastmod>2018-09-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-custody/</loc><lastmod>2018-09-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-custody/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-custody/"/></url><url><loc>https://btctranscripts.com/greg-maxwell/2018-09-23-greg-maxwell-multiple-implementations/</loc><lastmod>2018-09-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2018-09-19-sjors-provoost-core-hardware-wallet/</loc><lastmod>2018-09-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-09-18-alex-bosworth-incentive-problems-in-the-lightning-network/</loc><lastmod>2018-09-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/andreas-antonopoulos/2018-08-30-andreas-antonopoulos-home-network-security/</loc><lastmod>2018-08-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/2018-08-17-richard-bondi-bitcoin-cli-regtest/</loc><lastmod>2018-08-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/richard-bondi/</loc><lastmod>2018-08-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/jim-posen/</loc><lastmod>2018-07-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2018-07-24-la-blockchain-jim-posen-lightning-bolt-by-bolt/</loc><lastmod>2018-07-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2018-07-23-john-light-bitcoin-full-nodes/</loc><lastmod>2018-07-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/john-light/</loc><lastmod>2018-07-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2018-07-09-taproot-schnorr-signatures-and-sighash-noinput-oh-my/</loc><lastmod>2018-07-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/lightning-routing-ants-pheromones/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/bitcoin-assets/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/bootstrapping-lightning-network/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/crypto-castles/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/eric-voskuil/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/eric-voskuil/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/eric-voskuil/"/></url><url><loc>https://btctranscripts.com/speakers/giacomo-zucco/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/giacomo-zucco/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/giacomo-zucco/"/></url><url><loc>https://btctranscripts.com/speakers/jameson-lopp/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/jameson-lopp/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/jameson-lopp/"/></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/libbitcoin/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/ricardo-perez-marco/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/adam-ficsor/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/anonymous-bitcoin/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/binary-transparency/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/blind-signatures-and-scriptless-scripts/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/btcpay/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/coinjoinxt/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/current-and-future-state-of-wallets/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/dandelion/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/lawrence-nahum/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/lawrence-nahum/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/lawrence-nahum/"/></url><url><loc>https://btctranscripts.com/tags/miners/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/mustafa-al-bassam/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/peter-todd/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/peter-todd/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/peter-todd/"/></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/single-use-seals/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/thomas-kerin/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/tooling/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/working-on-scripts/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2018-06-12-adam-gibson-unfairly-linear-signatures/</loc><lastmod>2018-06-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/bitcoin-build-system/</loc><lastmod>2018-06-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/layer2-summit/</loc><lastmod>2018-05-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/layer2-summit/2018/</loc><lastmod>2018-05-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/layer2-summit/2018/scriptless-scripts/</loc><lastmod>2018-05-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/layer2-summit/2018/lightning-overview/</loc><lastmod>2018-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2018-04-23-jeremy-rubin-bitcoin-core/</loc><lastmod>2018-04-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2018-04-20-laolu-osuntokun-exploring-lnd0.4/</loc><lastmod>2018-04-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/</loc><lastmod>2018-03-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/</loc><lastmod>2018-03-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/"/></url><url><loc>https://btctranscripts.com/tags/hashlocks/</loc><lastmod>2018-03-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/hashlocks/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/hashlocks/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/</loc><lastmod>2018-03-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/</loc><lastmod>2018-03-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/"/></url><url><loc>https://btctranscripts.com/tags/timelocks/</loc><lastmod>2018-03-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/timelocks/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/timelocks/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/</loc><lastmod>2018-03-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/</loc><lastmod>2018-03-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/"/></url><url><loc>https://btctranscripts.com/speakers/ron-paul/</loc><lastmod>2018-02-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/satoshi-roundtable/sr-004/ron-paul/</loc><lastmod>2018-02-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/satoshi-roundtable/</loc><lastmod>2018-02-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/satoshi-roundtable/sr-004/</loc><lastmod>2018-02-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2018-02-02-andrew-poelstra-bulletproofs/</loc><lastmod>2018-02-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/</loc><lastmod>2018-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/</loc><lastmod>2018-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/proofs-of-space/</loc><lastmod>2018-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/schnorr-signatures-for-bitcoin-challenges-opportunities/</loc><lastmod>2018-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/hardening-lightning/</loc><lastmod>2018-01-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/2018-01-25-russell-oconnor-simplicity/</loc><lastmod>2018-01-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/christopher-allen/</loc><lastmod>2018-01-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2018-01-24-rusty-russell-future-bitcoin-tech-directions/</loc><lastmod>2018-01-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/2018-01-24-christopher-allen-smart-signatures/</loc><lastmod>2018-01-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/realworldcrypto/2018/mimblewimble-and-scriptless-scripts/</loc><lastmod>2018-01-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/realworldcrypto/2018/</loc><lastmod>2018-01-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/bech32/</loc><lastmod>2017-12-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2017-12-22-bech32-design/</loc><lastmod>2017-12-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2017-11-27-gmaxwell-advances-in-block-propagation/</loc><lastmod>2017-11-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/cppcon/2017/</loc><lastmod>2017-10-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/cppcon/2017/2017-10-11-kostya-serebryany-fuzzing/</loc><lastmod>2017-10-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/kostya-serebryany/</loc><lastmod>2017-10-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/</loc><lastmod>2017-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/changing-consensus-rules-without-breaking-bitcoin/</loc><lastmod>2017-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/christopher-jeffrey/</loc><lastmod>2017-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/2017-09-10-christopher-jeffrey-consensus-pitfalls/</loc><lastmod>2017-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/interview-adam-back-elizabeth-stark/</loc><lastmod>2017-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/solar-powered-space-pirates/</loc><lastmod>2017-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/antoine-le-calvez/</loc><lastmod>2017-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/banks-as-bitcoin-custodians/</loc><lastmod>2017-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/breaking-hardware-wallets/</loc><lastmod>2017-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/light-clients-during-2017-interfork-period/</loc><lastmod>2017-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/nicolas-bacca/</loc><lastmod>2017-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/p2sh/</loc><lastmod>2017-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/socialized-costs-of-hard-forks/</loc><lastmod>2017-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/spam-attacks-analysis/</loc><lastmod>2017-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/</loc><lastmod>2017-09-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/</loc><lastmod>2017-09-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/</loc><lastmod>2017-09-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/</loc><lastmod>2017-09-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/"/></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2017-09-04-jonas-schnelli-bip150-bip151/</loc><lastmod>2017-09-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2017-08-28-gmaxwell-deep-dive-bitcoin-core-v0.15/</loc><lastmod>2017-08-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2017-07-08-bram-cohen-merkle-sets/</loc><lastmod>2017-07-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/merkle-trees/</loc><lastmod>2017-07-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/merkle-trees/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/merkle-trees/"/></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2017-06-06-laolu-osuntokun-neutrino/</loc><lastmod>2017-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/spv/</loc><lastmod>2017-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lets-talk-bitcoin-podcast/2017-06-04-consensus-uasf-and-forks/</loc><lastmod>2017-06-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2017-04-28-gmaxwell-confidential-transactions/</loc><lastmod>2017-04-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2017-04-03-andreas-antonopoulos-bitcoin-scripting/</loc><lastmod>2017-04-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2017-03-29-new-address-type-for-segwit-addresses/</loc><lastmod>2017-03-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/bitcoin-mining-and-trustlessness/</loc><lastmod>2017-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/david-vorick/</loc><lastmod>2017-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/exchange-security/</loc><lastmod>2017-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/ideal-number-of-full-bitcoin-nodes/</loc><lastmod>2017-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/mimblewimble-and-scriptless-scripts/</loc><lastmod>2017-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/</loc><lastmod>2017-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/mitchell-dong/</loc><lastmod>2017-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/scaling-and-utxos/</loc><lastmod>2017-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/</loc><lastmod>2017-02-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/lightning-network-security-analysis/</loc><lastmod>2017-02-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/scalable-smart-contracts-via-proofs-and-single-use-seals/</loc><lastmod>2017-02-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/2017-01-26-jeremy-rubin-covenants/</loc><lastmod>2017-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/dan-robinson/</loc><lastmod>2017-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/2017-01-26-dan-robinson-ivy/</loc><lastmod>2017-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/2017-01-26-russell-oconnor-posts-theorem/</loc><lastmod>2017-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lets-talk-bitcoin-podcast/2016-12-25-christopher-jeffrey-consensus-barnacles/</loc><lastmod>2016-12-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/roger-ver/</loc><lastmod>2016-12-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2016-12-14-whalepool/</loc><lastmod>2016-12-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2016-11-21-mimblewimble/</loc><lastmod>2016-11-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2016-adam-back/</loc><lastmod>2016-11-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/schnorr-signatures/</loc><lastmod>2016-10-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/bip151-peer-encryption/</loc><lastmod>2016-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2016-09-28-christopher-jeffrey-bcoin/</loc><lastmod>2016-09-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/dan-boneh/</loc><lastmod>2016-08-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/</loc><lastmod>2016-08-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/ethereum/</loc><lastmod>2016-08-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/cali2016/</loc><lastmod>2016-07-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2016-07-18-laolu-osuntokun-lightning-network/</loc><lastmod>2016-07-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/doug-schepers/</loc><lastmod>2016-06-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/intro/</loc><lastmod>2016-06-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/</loc><lastmod>2016-06-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2016-04-11-lightning-network-as-a-directed-graph-single-funded-channel-network-topology/</loc><lastmod>2016-04-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/adam3us-bitcoin-scaling-tradeoffs/</loc><lastmod>2016-04-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2015-11-09-gmaxwell-mining-and-block-size-etc/</loc><lastmod>2015-11-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2015-09-07-epicenter-bitcoin-adam3us-scalability/</loc><lastmod>2015-09-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/proof-of-work/</loc><lastmod>2015-09-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2015-08-24-pieter-wuille-key-tree-signatures/</loc><lastmod>2015-08-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/daniele-micciancio/</loc><lastmod>2015-07-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/simons-institute/history-of-lattice-based-cryptography/</loc><lastmod>2015-07-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/simons-institute/</loc><lastmod>2015-07-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/simons-institute/pairing-cryptography/</loc><lastmod>2015-07-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2015-06-08-gmaxwell-sidechains-elements/</loc><lastmod>2015-06-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/joseph-poon/</loc><lastmod>2015-05-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2015-05-26-lightning-network/</loc><lastmod>2015-05-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2015-04-29-gmaxwell-bitcoin-selection-cryptography/</loc><lastmod>2015-04-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2015-02-23-scaling-bitcoin-to-billions-of-transactions-per-day/</loc><lastmod>2015-02-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/bitcoin-sidechains-unchained-epicenter-adam3us-gmaxwell/</loc><lastmod>2015-02-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2015-01-08-libsecp256k1-testing/</loc><lastmod>2015-01-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2015-01-08-openssl-bug/</loc><lastmod>2015-01-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/nydfs-bitlicense-lawsky-update/</loc><lastmod>2014-12-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/</loc><lastmod>2014-10-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/"/></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/a-bevy-of-block-size-proposals-bip100-bip102-and-more/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/a-flexible-limit-trading-subsidy-for-larger-blocks/</loc></url><url><loc>https://btctranscripts.com/simons-institute/a-wishlist-for-verifiable-computation/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/abstract-groups/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/abstract-thinking-about-consensus-systems/</loc></url><url><loc>https://btctranscripts.com/bit-block-boom/2019/accumulating-bitcoin/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bit-block-boom/2019/accumulating-bitcoin/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bit-block-boom/2019/accumulating-bitcoin/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/accumulators/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/accumulators/</loc><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/scalingbitcoin/tokyo-2018/accumulators/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/scalingbitcoin/tokyo-2018/accumulators/"/></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/accumulators/</loc></url><url><loc>https://btctranscripts.com/speakers/adam-ludwin/</loc></url><url><loc>https://btctranscripts.com/speakers/adlai-chandrasekhar/</loc></url><url><loc>https://btctranscripts.com/speakers/akio-nakamura/</loc></url><url><loc>https://btctranscripts.com/speakers/alan-reiner/</loc></url><url><loc>https://btctranscripts.com/speakers/alberto-sonnino/</loc></url><url><loc>https://btctranscripts.com/speakers/alena-vranova/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/alena-vranova/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/alena-vranova/"/></url><url><loc>https://btctranscripts.com/speakers/alessandro-chiesa/</loc></url><url><loc>https://btctranscripts.com/speakers/alex-petrov/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/alex-petrov/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/alex-petrov/"/></url><url><loc>https://btctranscripts.com/speakers/alex-zinder/</loc></url><url><loc>https://btctranscripts.com/speakers/alexander-chepurnoy/</loc></url><url><loc>https://btctranscripts.com/speakers/alexander-zaidelson/</loc></url><url><loc>https://btctranscripts.com/speakers/alexandra-moxin/</loc></url><url><loc>https://btctranscripts.com/speakers/alexei-ostrovskiy/</loc></url><url><loc>https://btctranscripts.com/speakers/alexei-zamyatin/</loc></url><url><loc>https://btctranscripts.com/speakers/alicia-bendhan/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/all-about-decentralized-trust/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/alternatives-to-block-size-as-aggregate-resource-limits/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/amiko-pay/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/analysis-of-dust-in-utxo-based-cryptocurrencies/</loc></url><url><loc>https://btctranscripts.com/speakers/andrew-miller/</loc></url><url><loc>https://btctranscripts.com/speakers/andrew-stone/</loc></url><url><loc>https://btctranscripts.com/speakers/andy-ofiesh/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/anonymous-atomic-locks/</loc></url><url><loc>https://btctranscripts.com/speakers/anton-yemelyanov/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/arbitrum-v2/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/archival-science/</loc></url><url><loc>https://btctranscripts.com/speakers/ari-juels/</loc></url><url><loc>https://btctranscripts.com/speakers/ariel-gabizon/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/armory-proof-of-payment/</loc></url><url><loc>https://btctranscripts.com/speakers/arthur-gervais/</loc></url><url><loc>https://btctranscripts.com/speakers/arvind-narayanan/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/arvind-narayanan/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/arvind-narayanan/"/></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/arvind-narayanan/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/asics/</loc></url><url><loc>https://btctranscripts.com/speakers/assimakis-kattis/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/atomic-multi-channel-updates/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/atomic-multi-channel-updates/</loc></url><url><loc>https://btctranscripts.com/tags/atomic-swaps/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/atomic-swaps/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/atomically-trading-with-roger-gambling-on-the-success-of-a-hard-fork/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/aurora-transparent-succinct-arguments-r1cs/</loc></url><url><loc>https://btctranscripts.com/speakers/austin-hill/</loc></url><url><loc>https://btctranscripts.com/speakers/aviv-zohar/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/backpackers/</loc></url><url><loc>https://btctranscripts.com/speakers/baker-marquart/</loc></url><url><loc>https://btctranscripts.com/speakers/balaji-srinivasan/</loc></url><url><loc>https://btctranscripts.com/speakers/barry-silbert/</loc></url><url><loc>https://btctranscripts.com/speakers/bart-suichies/</loc></url><url><loc>https://btctranscripts.com/speakers/ben-fisch/</loc></url><url><loc>https://btctranscripts.com/speakers/ben-maurer/</loc></url><url><loc>https://btctranscripts.com/speakers/benedikt-b%C3%BCnz/</loc><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/benedikt-b%C3%BCnz/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/benedikt-b%C3%BCnz/"/></url><url><loc>https://btctranscripts.com/speakers/benjamin-chan/</loc></url><url><loc>https://btctranscripts.com/speakers/benjamin-fisch/</loc><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/benjamin-fisch/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/benjamin-fisch/"/></url><url><loc>https://btctranscripts.com/speakers/benjamin-lawsky/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/"/></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/beyond-hashrate-majority-attacks/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/bip-securethebag/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/bip101-block-propagation-data-from-testnet/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/bip99-and-uncontroversial-hard-forks/</loc></url><url><loc>https://btctranscripts.com/bit-block-boom/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bit-block-boom/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bit-block-boom/"/></url><url><loc>https://btctranscripts.com/bit-block-boom/2019/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bit-block-boom/2019/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bit-block-boom/2019/"/></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-block-propagation-iblt-rusty-russell/</loc></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/</loc></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/jnewbery-bitcoin-core-v0.17/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/bitcoin-data-structures/</loc></url><url><loc>https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-developers/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-failure-modes-and-the-role-of-the-lightning-network/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-financing-and-trading/</loc></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-load-spike-simulation/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-maximalism-dissected/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-maximalism-dissected/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-maximalism-dissected/"/></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/bitcoin-payment-economic-analysis/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/"/></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-protocol-development-panel/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-regulation-landscape/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/bitcoin-script/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/bitcoin-script-v2.0-and-strengthened-payment-channels/</loc></url><url><loc>https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-security/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/bitcoin-toolchain-unit-testing-and-deterministic-builds/</loc></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-without-internet/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/bitml/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/blind-signatures/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/block-rewards/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/block-structure-and-headers-utxos-merkle-trees-segwit-bip141/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/block-synchronization-time/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/blockchain-database-technology-in-a-global-context/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/blockchain-design-patterns/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/blockchain-hub/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/blockchain-testbed/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/blockchains-for-multiplayer-games/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/blocksci-platform/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/bloxroute/</loc></url><url><loc>https://btctranscripts.com/speakers/bobby-cho/</loc></url><url><loc>https://btctranscripts.com/speakers/bobby-lee/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/bolt-anonymous-payment-channels-for-decentralized-currencies/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/boomerang/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/bosminer/</loc></url><url><loc>https://btctranscripts.com/speakers/boyma-fahnbulleh/</loc></url><url><loc>https://btctranscripts.com/speakers/brad-peterson/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/braiding-the-blockchain/</loc></url><url><loc>https://btctranscripts.com/speakers/brandon-goodell/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/breaking-bitcoin-privacy/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/breaking-the-chain/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/breaking-wasabi/</loc></url><url><loc>https://btctranscripts.com/speakers/brett-seyler/</loc></url><url><loc>https://btctranscripts.com/speakers/brian-deery/</loc></url><url><loc>https://btctranscripts.com/speakers/brian-kelly/</loc></url><url><loc>https://btctranscripts.com/speakers/brian-klein/</loc></url><url><loc>https://btctranscripts.com/speakers/brian-n.-levine/</loc></url><url><loc>https://btctranscripts.com/speakers/brian-okeefe/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/brick-async-state-channels/</loc></url><url><loc>https://btctranscripts.com/speakers/bruce-fenton/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/bruce-fenton/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/bruce-fenton/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/build-scale-operate/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/building-bulletproofs/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/building-mimblewimble-and-grin/</loc></url><url><loc>https://btctranscripts.com/bit-block-boom/2019/building-vibrant-bitcoin-communities/</loc></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/bulletproofs/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/bulletproofs/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/casper/</loc></url><url><loc>https://btctranscripts.com/speakers/cathie-yun/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/celo-ultralight-client/</loc></url><url><loc>https://btctranscripts.com/misc/cftc-bitcoin/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/chainbreak/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/changes-without-unanimous-consent/</loc></url><url><loc>https://btctranscripts.com/speakers/charles-cascarilla/</loc></url><url><loc>https://btctranscripts.com/speakers/charles-guillemet/</loc></url><url><loc>https://btctranscripts.com/speakers/charlie-lee/</loc></url><url><loc>https://btctranscripts.com/speakers/chris-church/</loc></url><url><loc>https://btctranscripts.com/speakers/chris-odom/</loc></url><url><loc>https://btctranscripts.com/speakers/chris-tse/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/christopher-allen/</loc></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/clearing-and-settlement-for-global-financial-institutions/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/client-side-validation/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/clockwork-nonfrontrunning/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/coin-selection/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/coin-selection/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/coinscope-andrew-miller/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/collective-signing/</loc></url><url><loc>https://btctranscripts.com/speakers/come-plooy/</loc></url><url><loc>https://btctranscripts.com/verifiable-delay-functions/vdf-day-2019/comments-and-observations-about-timelocks-ron-rivest/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/compact-multi-signatures-for-smaller-blockchains/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/competitive-equilibria-staking-lending/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/competitive-fee-market-urgency/</loc></url><url><loc>https://btctranscripts.com/decentralized-financial-architecture-workshop/compliance-and-confidentiality/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/concurrency-and-privacy-with-payment-channel-networks/</loc></url><url><loc>https://btctranscripts.com/speakers/constance-choi/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/coordinated-upgrades/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/cory-fields/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/covenants/</loc></url><url><loc>https://btctranscripts.com/speakers/cristina-p%C3%A9rez-sol%C3%A0/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/cross-chain-deals-and-adversarial-commerce/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/cross-chain-swaps/</loc></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/cryptographic-hocus-pocus/</loc></url><url><loc>https://btctranscripts.com/grincon/2019/cryptography-audit/</loc></url><url><loc>https://btctranscripts.com/misc/ctv-bip-review-workshop/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/"/></url><url><loc>https://btctranscripts.com/speakers/dahlia-malkhi/</loc></url><url><loc>https://btctranscripts.com/grincon/2019/dan-boneh/</loc></url><url><loc>https://btctranscripts.com/speakers/daniel-cline/</loc></url><url><loc>https://btctranscripts.com/speakers/daniel-j.-bernstein/</loc></url><url><loc>https://btctranscripts.com/speakers/daniel-robinson/</loc></url><url><loc>https://btctranscripts.com/speakers/dave-levin/</loc></url><url><loc>https://btctranscripts.com/speakers/david-bailey/</loc></url><url><loc>https://btctranscripts.com/speakers/david-rutter/</loc></url><url><loc>https://btctranscripts.com/speakers/david-schwartz/</loc></url><url><loc>https://btctranscripts.com/speakers/david-tse/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/day-1-closing-panel/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/day-1-closing-panel/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/day-1-closing-panel/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/day-1-group-summaries/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/day-2-group-summaries/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/day-2-groups/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/day-2-opening/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/decentralization-through-game-theory/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/decentralized-oracles-tls/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/defense-of-bitcoin/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/marco-santori-delaware-initiative/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/deploying-blockchain-at-scale-lessons-from-the-internet-deployment-in-japan/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/deterministic-signatures-group/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/digital-signatures/</loc></url><url><loc>https://btctranscripts.com/misc/discreet-log-contracts/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/discreet-log-contracts/</loc></url><url><loc>https://btctranscripts.com/speakers/dmitry-meshkov/</loc></url><url><loc>https://btctranscripts.com/speakers/duc-v.-le/</loc></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/economic-risks/</loc></url><url><loc>https://btctranscripts.com/speakers/ed-felten/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/edgeplusplus/</loc></url><url><loc>https://btctranscripts.com/speakers/edward-budd/</loc></url><url><loc>https://btctranscripts.com/speakers/elaine-shi/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/elastic-block-caps/</loc></url><url><loc>https://btctranscripts.com/speakers/eleftherios-kokoris-kogias/</loc></url><url><loc>https://btctranscripts.com/speakers/eli-ben-sasson/</loc></url><url><loc>https://btctranscripts.com/speakers/emin-gun-sirer/</loc></url><url><loc>https://btctranscripts.com/speakers/eran-tromer/</loc></url><url><loc>https://btctranscripts.com/speakers/eric-martindale/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/erlay/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/ethcore/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/ethereum2/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/everything-is-broken/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/extensibility/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/extracting-seeds-from-hardware-wallets/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/"/></url><url><loc>https://btctranscripts.com/misc/failures-of-secret-key-cryptography/</loc></url><url><loc>https://btctranscripts.com/tags/fairness/</loc></url><url><loc>https://btctranscripts.com/speakers/fan-zhang/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/fast-difficulty-adjustment/</loc></url><url><loc>https://btctranscripts.com/tags/fee-management/</loc></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-fabrice-drouin-fee-management/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/peter-r/</loc></url><url><loc>https://btctranscripts.com/bit-block-boom/2019/fiat-money-fiat-food/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/flare-routing-in-lightning/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/flash-boys-v2/</loc></url><url><loc>https://btctranscripts.com/speakers/florian-maier/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/florian-maier/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/florian-maier/"/></url><url><loc>https://btctranscripts.com/speakers/florian-tramer/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/flyclient-super-light-clients-for-cryptocurrencies/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/formal-verification/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/forward-blocks/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/fractal/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/fraud-proofs-petertodd/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/fraud-proofs/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/fud-perceived-vs-real-bitcoin-risks/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/funding/</loc></url><url><loc>https://btctranscripts.com/misc/bitcoin-adam3us-fungibility-privacy/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/fungibility-and-scalability/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/fungibility-overview/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/future-of-blockchains/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/future-of-hardware-wallets/</loc></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/future-of-privacy-coins/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/future-of-regulation/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/future-of-spv-tech/</loc></url><url><loc>https://btctranscripts.com/decentralized-financial-architecture-workshop/g20-discussion/</loc></url><url><loc>https://btctranscripts.com/speakers/gavin-andresen/</loc></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/gavinandresen/</loc></url><url><loc>https://btctranscripts.com/speakers/georgia-avarikioti/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/ghostdag/</loc></url><url><loc>https://btctranscripts.com/speakers/giulio-malavolta/</loc></url><url><loc>https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/jihan-wu-google-tech-talk/</loc></url><url><loc>https://btctranscripts.com/texas-bitcoin-conference-2014/gox/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/graphene-set-reconciliation/</loc></url><url><loc>https://btctranscripts.com/speakers/gregory-neven/</loc></url><url><loc>https://btctranscripts.com/grincon/</loc></url><url><loc>https://btctranscripts.com/grincon/2019/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/group-updates/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/groups/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/groups-identity/</loc></url><url><loc>https://btctranscripts.com/speakers/guillermo-navarro-arribas/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/hackathon-intro/</loc></url><url><loc>https://btctranscripts.com/tags/halving/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/halving/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/halving/"/></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/handel-practical-multisig-aggregation/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/reorgs/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/hardware-accelerated-rsa/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/hardware-wallet-design-best-practices/</loc></url><url><loc>https://btctranscripts.com/speakers/harry-kalodner/</loc></url><url><loc>https://btctranscripts.com/speakers/henry-de-valence/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/hierarchical-deterministic-wallets/</loc></url><url><loc>https://btctranscripts.com/dallas-bitcoin-symposium/history-and-extrapolation/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/how-much-privacy-is-enough/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/how-tech-companies-are-embracing-blockchain-database-technology/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/how-to-charge-lightning/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/how-to-get-bitcoin/</loc></url><url><loc>https://btctranscripts.com/bit-block-boom/2019/how-to-meme-bitcoin-to-the-moon/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/how-to-mine-bitcoin-profitably/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/htlcs-considered-harmful/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/human-side-trust-workshop/</loc></url><url><loc>https://btctranscripts.com/speakers/hutchins/</loc></url><url><loc>https://btctranscripts.com/speakers/ian-lee/</loc></url><url><loc>https://btctranscripts.com/speakers/ian-miers/</loc></url><url><loc>https://btctranscripts.com/decentralized-financial-architecture-workshop/implications/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/maaku-panel/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2018/improving-bitcoin-smart-contract-efficiency/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/in-adversarial-environments-blockchains-dont-scale/</loc></url><url><loc>https://btctranscripts.com/tags/incentives/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/incentives-tradeoffs-transaction-selection-in-dag-based-protocols/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/incentivizing-payment-channel-watchtowers/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/internal-approaches-blockchain-database-technology-strategies/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/internet-of-value/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/intro/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/intro/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/intro/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/intro/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/intro/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/wendy/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/introduction/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/introduction/</loc></url><url><loc>https://btctranscripts.com/decentralized-financial-architecture-workshop/introduction/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/introduction/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/invertible-bloom-lookup-tables-and-weak-block-propagation-performance/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/investing-in-bitcoin-businesses/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/investing-in-bitcoin-businesses/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/investing-in-bitcoin-businesses/"/></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/ipfs/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/issues-impacting-block-size-proposals/</loc></url><url><loc>https://btctranscripts.com/speakers/ittai-abraham/</loc></url><url><loc>https://btctranscripts.com/speakers/ittay-eyal/</loc></url><url><loc>https://btctranscripts.com/speakers/j.-christopher-giancarlo/</loc></url><url><loc>https://btctranscripts.com/speakers/jacob-leshno/</loc></url><url><loc>https://btctranscripts.com/speakers/james-dangelo/</loc></url><url><loc>https://btctranscripts.com/speakers/james-gatto/</loc></url><url><loc>https://btctranscripts.com/speakers/james-hilliard/</loc></url><url><loc>https://btctranscripts.com/speakers/james-smith/</loc></url><url><loc>https://btctranscripts.com/speakers/jan-capek/</loc></url><url><loc>https://btctranscripts.com/speakers/jarl-fransson/</loc></url><url><loc>https://btctranscripts.com/speakers/jason-potts/</loc></url><url><loc>https://btctranscripts.com/speakers/jason-teutsch/</loc></url><url><loc>https://btctranscripts.com/speakers/jeff-garzik/</loc></url><url><loc>https://btctranscripts.com/speakers/jeremy-allaire/</loc></url><url><loc>https://btctranscripts.com/speakers/jeremy-wilson/</loc></url><url><loc>https://btctranscripts.com/speakers/jerry-brito/</loc></url><url><loc>https://btctranscripts.com/speakers/jerry-cuomo/</loc></url><url><loc>https://btctranscripts.com/speakers/jihan-wu/</loc></url><url><loc>https://btctranscripts.com/speakers/jinglan-wang/</loc></url><url><loc>https://btctranscripts.com/speakers/joachim-breitner/</loc></url><url><loc>https://btctranscripts.com/speakers/joachim-neu/</loc></url><url><loc>https://btctranscripts.com/speakers/joe-gerber/</loc></url><url><loc>https://btctranscripts.com/speakers/john-woeltz/</loc></url><url><loc>https://btctranscripts.com/speakers/johnson-lau/</loc></url><url><loc>https://btctranscripts.com/speakers/joi-ito/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/joi-ito/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/joinmarket/</loc></url><url><loc>https://btctranscripts.com/speakers/jonathan-bier/</loc></url><url><loc>https://btctranscripts.com/speakers/jonathan-harvey-buschel/</loc></url><url><loc>https://btctranscripts.com/speakers/jonathan-tomim/</loc></url><url><loc>https://btctranscripts.com/speakers/jordi-herrera/</loc></url><url><loc>https://btctranscripts.com/speakers/jorge-tim%C3%B3n/</loc></url><url><loc>https://btctranscripts.com/speakers/joshua-lim/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/journal-review/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/journals-as-clubs/</loc></url><url><loc>https://btctranscripts.com/speakers/jun-muai/</loc></url><url><loc>https://btctranscripts.com/speakers/justin-camarena/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/jute-braiding/</loc></url><url><loc>https://btctranscripts.com/speakers/juthica-chou/</loc></url><url><loc>https://btctranscripts.com/speakers/kanta-matsuura/</loc></url><url><loc>https://btctranscripts.com/speakers/karl-floersch/</loc></url><url><loc>https://btctranscripts.com/speakers/katherine-wu/</loc></url><url><loc>https://btctranscripts.com/speakers/kathleen-breitman/</loc></url><url><loc>https://btctranscripts.com/speakers/kenji-saito/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote-gavin-andresen/</loc></url><url><loc>https://btctranscripts.com/speakers/kim-hamilton-duffy/</loc></url><url><loc>https://btctranscripts.com/speakers/kolya-sakhno/</loc></url><url><loc>https://btctranscripts.com/speakers/kris-merkel/</loc></url><url><loc>https://btctranscripts.com/speakers/kristov-atlas/</loc></url><url><loc>https://btctranscripts.com/speakers/lata-varghese/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/law-enforcement-and-anonymous-transactions/</loc></url><url><loc>https://btctranscripts.com/speakers/lawrence-h.-summers/</loc></url><url><loc>https://btctranscripts.com/speakers/leen-alshenibr/</loc></url><url><loc>https://btctranscripts.com/grincon/2019/lehnberg/</loc></url><url><loc>https://btctranscripts.com/speakers/lei-yang/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/lessons-for-bitcoin-from-150-years-of-decentralization/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/libbitcoin/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/libra/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/libra-blockchain-intro/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/lightning/</loc></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-24-fabrice-drouin-the-transfer-layer/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/lightning-network/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/lightning-network/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/lightning-network-layer-by-layer/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/lightning-network-routing/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/lightning-network-routing-security/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/lightning-network-security-panel/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/lightning-network-sphinx-and-onion-routing/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/lightning-network-topology/</loc></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/lightning-wallet-design/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/linking-anonymous-transactions/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/links/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/linq/</loc></url><url><loc>https://btctranscripts.com/speakers/lloyd-fournier/</loc></url><url><loc>https://btctranscripts.com/speakers/lous-parker/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/lower-bounds-limits-plasma/</loc></url><url><loc>https://btctranscripts.com/speakers/madars-virza/</loc></url><url><loc>https://btctranscripts.com/speakers/mahdi-zamani/</loc></url><url><loc>https://btctranscripts.com/speakers/mahnush-movahedi/</loc></url><url><loc>https://btctranscripts.com/speakers/manu-drijvers/</loc></url><url><loc>https://btctranscripts.com/speakers/marco-falke/</loc></url><url><loc>https://btctranscripts.com/speakers/marco-santori/</loc></url><url><loc>https://btctranscripts.com/speakers/marek-olszewski/</loc></url><url><loc>https://btctranscripts.com/speakers/mark-friedenbach/</loc></url><url><loc>https://btctranscripts.com/speakers/mark-wetjen/</loc></url><url><loc>https://btctranscripts.com/speakers/marshall-long/</loc></url><url><loc>https://btctranscripts.com/speakers/martin-lundfall/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/matsuo/</loc></url><url><loc>https://btctranscripts.com/speakers/matt-weinberg/</loc></url><url><loc>https://btctranscripts.com/speakers/matt-weiss/</loc></url><url><loc>https://btctranscripts.com/speakers/matteo-maffei/</loc></url><url><loc>https://btctranscripts.com/speakers/matthew-mezinskis/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/matthew-mezinskis/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/matthew-mezinskis/"/></url><url><loc>https://btctranscripts.com/speakers/maurice-herlihy/</loc></url><url><loc>https://btctranscripts.com/speakers/max-keidun/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/max-keidun/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/max-keidun/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/measuring-network-maximum-sustained-transaction-throughput/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/mechanism-design/</loc></url><url><loc>https://btctranscripts.com/speakers/megan-chen/</loc></url><url><loc>https://btctranscripts.com/speakers/melanie-shapiro/</loc></url><url><loc>https://btctranscripts.com/speakers/meltem-demirors/</loc></url><url><loc>https://btctranscripts.com/speakers/meni-rosenfeld/</loc></url><url><loc>https://btctranscripts.com/decentralized-financial-architecture-workshop/metadata/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/metadata/</loc></url><url><loc>https://btctranscripts.com/speakers/michael-more/</loc></url><url><loc>https://btctranscripts.com/speakers/michael-straka/</loc></url><url><loc>https://btctranscripts.com/speakers/michael-walfish/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/microchains/</loc></url><url><loc>https://btctranscripts.com/speakers/mikael-dubrovsky/</loc></url><url><loc>https://btctranscripts.com/speakers/mike-schmidt/</loc></url><url><loc>https://btctranscripts.com/speakers/miles-carlsten/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/mimblewimble/</loc></url><url><loc>https://btctranscripts.com/misc/mimblewimble-podcast/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/mining-firmware-security/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/miniscript/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2018/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/mixicles/</loc></url><url><loc>https://btctranscripts.com/speakers/mooly-sagiv/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/more-core-devs/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/motoko-language/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/multi-hop-locks/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/multi-party-channels-in-the-utxo-model-challenges-and-opportunities/</loc></url><url><loc>https://btctranscripts.com/speakers/nathan-wilcox/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/near-misses/</loc></url><url><loc>https://btctranscripts.com/speakers/neha-narula/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/network-topologies-and-their-scalability-implications-on-decentralized-off-chain-networks/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/neutrino/</loc></url><url><loc>https://btctranscripts.com/speakers/nic-carter/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/nic-carter/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/nic-carter/"/></url><url><loc>https://btctranscripts.com/speakers/nick-spooner/</loc></url><url><loc>https://btctranscripts.com/speakers/nick-szabo/</loc></url><url><loc>https://btctranscripts.com/speakers/nicolas-gailly/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/no-incentive/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/non-currency-applications/</loc></url><url><loc>https://btctranscripts.com/speakers/oleg-andreev/</loc></url><url><loc>https://btctranscripts.com/speakers/omer-shlomovits/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/omniledger/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/on-the-security-and-performance-of-proof-of-work-blockchains/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/onion-routing-in-lightning/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/eric-martindale/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/opening/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/opening/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/opening/"/></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/opening-remarks/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/opening-remarks/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/opening-remarks-state-of-blockchain-ryan-selkis/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/optimistic-vm/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/optimizing-fee-estimation-via-mempool-state/</loc></url><url><loc>https://btctranscripts.com/speakers/or-sattath/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/overview-bitcoin-core-architecture/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/overview-of-bips-necessary-for-lightning/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/overview-of-security-concerns/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/edgeplusplus/p2p-john-newbery/</loc></url><url><loc>https://btctranscripts.com/tags/p2pkh/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/p2pkh-p2wpkh-p2h-p2wsh/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/partially-signed-bitcoin-transactions-bip174/</loc></url><url><loc>https://btctranscripts.com/speakers/patricia-estevao/</loc></url><url><loc>https://btctranscripts.com/speakers/patrick-mccorry/</loc></url><url><loc>https://btctranscripts.com/speakers/patrick-murck/</loc></url><url><loc>https://btctranscripts.com/speakers/patrick-strateman/</loc></url><url><loc>https://btctranscripts.com/speakers/paul-vigna/</loc></url><url><loc>https://btctranscripts.com/speakers/pavel-prihodko/</loc></url><url><loc>https://btctranscripts.com/speakers/pavol-rusnak/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/pavol-rusnak/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/pavol-rusnak/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/payment-channel-recovery-with-seeds/</loc></url><url><loc>https://btctranscripts.com/speakers/pedro-moreno-sanchez/</loc></url><url><loc>https://btctranscripts.com/decentralized-financial-architecture-workshop/perspective/</loc></url><url><loc>https://btctranscripts.com/speakers/peter-rizun/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/petertodd-dex/</loc></url><url><loc>https://btctranscripts.com/speakers/phillip-hoenisch/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/physical-assets/</loc></url><url><loc>https://btctranscripts.com/speakers/pierre-roberge/</loc></url><url><loc>https://btctranscripts.com/speakers/pindar-wong/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/plasma-cash/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/playing-with-fire-adjusting-bitcoin-block-subsidy/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/plonk/</loc></url><url><loc>https://btctranscripts.com/tags/post-quantum/</loc></url><url><loc>https://btctranscripts.com/speakers/prakash-santhana/</loc></url><url><loc>https://btctranscripts.com/speakers/pramod-viswanath/</loc></url><url><loc>https://btctranscripts.com/speakers/prastudy-fauzi/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/present-and-future-tech-challenges-in-bitcoin/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/prism/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/prism/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/privacy-and-fungibility/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/privacy-anonymity-and-identity-group/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/privacy-concepts/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/privacy-preserving-multi-hop-locks/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/privacy-preserving-smart-contracts/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/private-information-retrieval/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/proof-of-necessary-work/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/proof-of-necessary-work/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/proof-of-stake/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/proof-of-verification-for-proof-of-work/</loc></url><url><loc>https://btctranscripts.com/tags/proof-of-stake/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/proofs-of-space-and-replication/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/protecting-yourself-and-your-business/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/provenance-groups/</loc></url><url><loc>https://btctranscripts.com/speakers/quentin-le-sceller/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/quisquis/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/r3/</loc></url><url><loc>https://btctranscripts.com/speakers/ranjit-kumaresan/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/reaching-consensus-open-blockchains/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/rebalancing-lightning/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/rebroadcasting/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/redesigning-bitcoin-fee-market/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/relay-network/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/reproducible-builds/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/reproducible-lightning-benchmark/</loc></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/research-and-development-goals/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/reworking-bitcoin-core-p2p-code-for-robustness-and-event-driven/</loc></url><url><loc>https://btctranscripts.com/speakers/riccardo-casatta/</loc></url><url><loc>https://btctranscripts.com/speakers/richard-myers/</loc></url><url><loc>https://btctranscripts.com/speakers/robert-schwinker/</loc></url><url><loc>https://btctranscripts.com/speakers/rodrigo-buenaventura/</loc></url><url><loc>https://btctranscripts.com/speakers/roman-snitko/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/roman-snitko/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/roman-snitko/"/></url><url><loc>https://btctranscripts.com/speakers/ron-rivest/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/rootstock/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-1/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-2/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/royalties/</loc></url><url><loc>https://btctranscripts.com/speakers/ryan-selkis/</loc></url><url><loc>https://btctranscripts.com/misc/safecurves-choosing-safe-curves-for-elliptic-curve-cryptography-2014/</loc></url><url><loc>https://btctranscripts.com/speakers/saifedean-ammous/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/saifedean-ammous/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/saifedean-ammous/"/></url><url><loc>https://btctranscripts.com/speakers/sandra-ro/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/peter-todd-scalability/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/scalable-rsa-modulus-generation/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/scaling-debate-is-a-proxy-battle-over-centralization/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/scaling-oblivious-read-write/</loc></url><url><loc>https://btctranscripts.com/speakers/scott-manuel/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/scriptless-ecdsa/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/scriptless-lotteries/</loc></url><url><loc>https://btctranscripts.com/grincon/2019/scriptless-scripts-with-mimblewimble/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/scripts-general-and-simple/</loc></url><url><loc>https://btctranscripts.com/speakers/sean-neville/</loc></url><url><loc>https://btctranscripts.com/speakers/sebasti%C3%A1n-reca/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/secure-fountain-architecture/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/security-and-usability/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/security-assumptions/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/security-attacks-decentralized-mining-pools/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/security-of-diminishing-block-subsidy/</loc></url><url><loc>https://btctranscripts.com/tags/segregated-witness/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/segregated-witness-and-its-impact-on-scalability/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/segwit-lessons-learned/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/self-reproducing-coins-as-universal-turing-machine/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/self-sovereign-identity-ideology-and-architecture/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/selfish-mining/</loc></url><url><loc>https://btctranscripts.com/speakers/sergej-kotliar/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/sergej-kotliar/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sergej-kotliar/"/></url><url><loc>https://btctranscripts.com/speakers/sergio-lerner/</loc></url><url><loc>https://btctranscripts.com/speakers/shafi-goldwasser/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/shamir-secret-sharing/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/sharding-the-blockchain/</loc></url><url><loc>https://btctranscripts.com/speakers/shayan-eskandari/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/siacoin/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/matt-corallo-sidechains/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/sidechains/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/sidechains-and-federation-models/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/sighash-noinput/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/signet/</loc></url><url><loc>https://btctranscripts.com/speakers/simon-peffers/</loc></url><url><loc>https://btctranscripts.com/speakers/slava-zhigulin/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/smart-contract-bug-hunting/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/smart-signatures/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/snarks/</loc></url><url><loc>https://btctranscripts.com/simons-institute/snarks-and-their-practical-applications/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/solving-data-availability-attacks-using-coded-merkle-trees/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/solving-the-blockchain-trilemma/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/some-questions-for-bitcoiners/</loc></url><url><loc>https://btctranscripts.com/speakers/soumya-basu/</loc></url><url><loc>https://btctranscripts.com/dallas-bitcoin-symposium/sound-money/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/spork-probabilistic-bitcoin-soft-forks/</loc></url><url><loc>https://btctranscripts.com/speakers/sreeram-kannan/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/stark-dex/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/stark-for-developers/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/state-channels/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/state-of-blockchain/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/state-of-cryptography/</loc></url><url><loc>https://btctranscripts.com/bit-block-boom/2019/state-of-multisig/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/statechains/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/statechains/</loc></url><url><loc>https://btctranscripts.com/speakers/stefan-dziembowski/</loc></url><url><loc>https://btctranscripts.com/speakers/stefano-lande/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/andrew-miller/</loc></url><url><loc>https://btctranscripts.com/speakers/stephanie-hurder/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/streamlet/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/stroem-payment-channels/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/survey-of-progress-in-zero-knowledge-proofs-towards-trustless-snarks/</loc></url><url><loc>https://btctranscripts.com/speakers/swanand-kadhe/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/swashbuckling-safety-training/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/sybilquorum/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/systematizing-knowledge/</loc></url><url><loc>https://btctranscripts.com/speakers/taariq-lewis/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/taproot/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/taproot-and-graftroot/</loc></url><url><loc>https://btctranscripts.com/bit-block-boom/2019/taproot-schnorr-soft-fork/</loc></url><url><loc>https://btctranscripts.com/texas-bitcoin-conference-2014/</loc></url><url><loc>https://btctranscripts.com/dallas-bitcoin-symposium/texas-energy-market/</loc></url><url><loc>https://btctranscripts.com/speakers/thang-n.-dinh/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/the-b-foundation/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-b-foundation/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-b-foundation/"/></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/the-bitcoin-standard/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-bitcoin-standard/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-bitcoin-standard/"/></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/"/></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/"/></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-lightning/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-lightning/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-lightning/"/></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/the-reserve-currency-fallacy/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-reserve-currency-fallacy/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-reserve-currency-fallacy/"/></url><url><loc>https://btctranscripts.com/bit-block-boom/2019/there-can-only-be-one/</loc></url><url><loc>https://btctranscripts.com/speakers/thomas-eizinger/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/threshold-scriptless-scripts/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/arvind-narayanan/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/threshold-signatures/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/thundercore/</loc></url><url><loc>https://btctranscripts.com/speakers/tim-roughgarden/</loc></url><url><loc>https://btctranscripts.com/tags/timestamping/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/timestamping/</loc></url><url><loc>https://btctranscripts.com/simons-institute/todo/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/token-journal/</loc></url><url><loc>https://btctranscripts.com/speakers/tone-vays/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/tone-vays/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/tone-vays/"/></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/topics/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/trading-panel/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/trading-panel/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/trading-panel/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/transaction-fee-estimation/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/transparent-dishonesty/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/transparent-snarks-from-dark-compilers/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/trust-and-blockchain-marketplaces/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/tumblebit/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/txprobe/</loc></url><url><loc>https://btctranscripts.com/speakers/udi-wertheimer/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/unlinkable-outsourced-channel-monitoring/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/upgrading-capital-markets-for-digital-asset-trading/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/urkel-trees/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/using-the-chain-for-what-chains-are-good-for/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2019/utreexo/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/validation-cost-metric/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/validation-costs/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/valueshuffle-mixing-confidential-transactions/</loc></url><url><loc>https://btctranscripts.com/speakers/vasily-kharin/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/visa-chain/</loc></url><url><loc>https://btctranscripts.com/speakers/vitalik-buterin/</loc></url><url><loc>https://btctranscripts.com/speakers/vivek-bagaria/</loc></url><url><loc>https://btctranscripts.com/speakers/vlad-zamfir/</loc></url><url><loc>https://btctranscripts.com/speakers/vortex/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/vortex/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/vortex/"/></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/vulnerability-detection/</loc></url><url><loc>https://btctranscripts.com/speakers/warren-togami/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/weak-signal-radio-communications-for-bitcoin-network-resilience/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/weak-signals/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/welcome/</loc></url><url><loc>https://btctranscripts.com/speakers/wendy-seltzer/</loc></url><url><loc>https://btctranscripts.com/speakers/whalepanda/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/whalepanda/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/whalepanda/"/></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/pindar-wong/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/why-bitcoin-still-matters/</loc></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/why-block-sizes-should-not-be-too-big/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/why-miners-will-not-voluntarily-individually-produce-smaller-blocks/</loc></url><url><loc>https://btctranscripts.com/speakers/william-mougayar/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/work-in-progress/</loc></url><url><loc>https://btctranscripts.com/speakers/yonatan-sompolinsky/</loc></url><url><loc>https://btctranscripts.com/speakers/yorke-rhodes/</loc></url><url><loc>https://btctranscripts.com/speakers/yurii-rashkovskii/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/yurii-rashkovskii/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/yurii-rashkovskii/"/></url><url><loc>https://btctranscripts.com/speakers/yuta-takanashi/</loc></url><url><loc>https://btctranscripts.com/speakers/yuval-kogman/</loc></url><url><loc>https://btctranscripts.com/simons-institute/zero-knowledge-probabilistic-proof-systems/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/zero-knowledge-proofs-for-bitcoin-scalability-and-beyond/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/zerocash-and-zero-knowledge-succint-arguments-of-knowledge-libsnark/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/zerolink-sudoku/</loc></url><url><loc>https://btctranscripts.com/speakers/zeta-avarikioti/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/zksharks/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/zkvm/</loc></url></urlset> \ No newline at end of file +<?xml version="1.0" encoding="utf-8" standalone="yes"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml"><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/</loc><lastmod>2016-10-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/</loc><lastmod>2018-10-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/scalingbitcoin/tokyo-2018/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/scalingbitcoin/tokyo-2018/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/</loc><lastmod>2020-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/andrew-chow/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/andrew-chow/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/andrew-chow/"/></url><url><loc>https://btctranscripts.com/tags/bitcoin-core/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/bitcoin-core/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/bitcoin-core/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/bitcoin-core-dev-tech/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/build-systems/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/categories/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/categories/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/cmake/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/categories/core-dev-tech/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/core-dev-tech/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/core-dev-tech/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/core-dev-tech/"/></url><url><loc>https://btctranscripts.com/speakers/cory-fields/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/wallet-legacy-upgrade/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/signature-aggregation/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/signature-aggregation/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/speakers/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/"/></url><url><loc>https://btctranscripts.com/tags/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/"/></url><url><loc>https://btctranscripts.com/tags/wallet/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/wallet/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/wallet/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/wallet/"/></url><url><loc>https://btctranscripts.com/</loc><lastmod>2023-09-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/"/></url><url><loc>https://btctranscripts.com/tags/assumeutxo/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/assumeutxo-update/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/coin-selection/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/gloria-zhao/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/kernel/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/kernel-planning/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/libsecp256k1/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/libsecp256k1/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/libsecp256k1/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/libsecp256k1-meeting/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/mark-erhardt/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/mark-erhardt/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/mark-erhardt/"/></url><url><loc>https://btctranscripts.com/tags/p2p/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/p2p/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/p2p/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-design-goals/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/package-relay/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/package-relay-planning/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/privacy/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/privacy/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/privacy/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/privacy/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/privacy-metrics/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/thecharlatan/</loc><lastmod>2023-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-working-session/</loc><lastmod>2023-09-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/kernel-update/</loc><lastmod>2023-09-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/lightning/</loc><lastmod>2023-08-28T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/lightning/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/lightning/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/lightning/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/lightning/"/></url><url><loc>https://btctranscripts.com/lightning-specification/</loc><lastmod>2023-08-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-08-28-specification-call/</loc><lastmod>2023-08-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-08-14-specification-call/</loc><lastmod>2023-08-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-07-31-specification-call/</loc><lastmod>2023-07-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-07-17-specification-call/</loc><lastmod>2023-07-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/dusty-daemon/</loc><lastmod>2023-07-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/multisig/</loc><lastmod>2023-07-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/multisig/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/multisig/"/></url><url><loc>https://btctranscripts.com/categories/podcast/</loc><lastmod>2023-07-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/podcast/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/podcast/"/></url><url><loc>https://btctranscripts.com/speakers/stephan-livera/</loc><lastmod>2023-07-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/</loc><lastmod>2023-07-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/what-is-splicing/</loc><lastmod>2023-07-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-06-19-specification-call/</loc><lastmod>2023-06-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-06-05-specification-call/</loc><lastmod>2023-06-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-05-22-specification-call/</loc><lastmod>2023-05-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-05-08-specification-call/</loc><lastmod>2023-05-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-assumeutxo/</loc><lastmod>2023-04-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/</loc><lastmod>2023-04-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/fuzzing/</loc><lastmod>2023-04-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-fuzzing/</loc><lastmod>2023-04-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/james-obeirne/</loc><lastmod>2023-04-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/niklas-g%C3%B6gge/</loc><lastmod>2023-04-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/libbitcoin-kernel/</loc><lastmod>2023-04-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-libbitcoin-kernel/</loc><lastmod>2023-04-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-meta-discussion/</loc><lastmod>2023-04-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/asmap/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-asmap/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/fabian-jahr/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/fabian-jahr/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/fabian-jahr/"/></url><url><loc>https://btctranscripts.com/speakers/josibake/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/mempool/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-mempool-clustering/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-package-relay-primer/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/pieter-wuille/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/pieter-wuille/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/pieter-wuille/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-refactors/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/ruben-somsen/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/ruben-somsen/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/ruben-somsen/"/></url><url><loc>https://btctranscripts.com/tags/silent-payments/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-silent-payments/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/suhas-daftuar/</loc><lastmod>2023-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-04-24-specification-call/</loc><lastmod>2023-04-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2023-03-06-greg-sanders/</loc><lastmod>2023-03-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/greg-sanders/</loc><lastmod>2023-03-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/advancing-bitcoin/</loc><lastmod>2023-03-01T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/advancing-bitcoin/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2022/</loc><lastmod>2023-03-01T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/advancing-bitcoin/2022/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2022/"/></url><url><loc>https://btctranscripts.com/speakers/christian-lewe/</loc><lastmod>2023-03-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/categories/conference/</loc><lastmod>2023-03-01T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/conference/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/conference/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/conference/"/></url><url><loc>https://btctranscripts.com/tags/miniscript/</loc><lastmod>2023-03-01T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/miniscript/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/miniscript/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/miniscript/"/></url><url><loc>https://btctranscripts.com/tags/script/</loc><lastmod>2023-03-01T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/script/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/script/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2022/simplicity-going-beyond-miniscript-by-christian-lewe-at-advancing-bitcoin-conference-in-london-2023/</loc><lastmod>2023-03-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2023-02-27-craig-raw-bitcoin-multi-signature/</loc><lastmod>2023-02-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/craig-raw/</loc><lastmod>2023-02-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/matt-corallo/</loc><lastmod>2023-02-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/matt-corallo/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/matt-corallo/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2023-02-23-matt-corallo/</loc><lastmod>2023-02-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-02-13-specification-call/</loc><lastmod>2023-02-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/categories/meeting/</loc><lastmod>2023-02-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/casey-rodarmor/</loc><lastmod>2023-02-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2023-02-02-casey-rodarmor/</loc><lastmod>2023-02-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/anant-tapadia/</loc><lastmod>2023-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/slp455-anant-tapadia-single-sig-or-multi-sig/</loc><lastmod>2023-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2023-01-30-specification-call/</loc><lastmod>2023-01-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcointranscripts/</loc><lastmod>2023-01-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/op_vault/</loc><lastmod>2023-01-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcointranscripts/stephan-livera-podcast/opvault-a-new-way-to-hodl/</loc><lastmod>2023-01-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/antoine-poinsot/</loc><lastmod>2023-01-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2023-01-23-antoine-poinsot-and-salvatore-ingala/</loc><lastmod>2023-01-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/salvatore-ingala/</loc><lastmod>2023-01-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2023-01-18-josibake/</loc><lastmod>2023-01-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2023-01-14-james-obeirne-a-new-way-to-hodl/</loc><lastmod>2023-01-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/dhruv/</loc><lastmod>2022-11-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/tim-ruffing/</loc><lastmod>2022-11-13T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/tim-ruffing/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/tim-ruffing/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-11-13-dhruv-pieter-wuille-and-tim-ruffing/</loc><lastmod>2022-11-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/bob-mcelrath/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/bob-mcelrath/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/bob-mcelrath/"/></url><url><loc>https://btctranscripts.com/tabconf/2022/2022-10-15-braidpool/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/2022-10-15-braidpool/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/2022-10-15-braidpool/"/></url><url><loc>https://btctranscripts.com/tags/fees/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/fees/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/fees/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/fees/"/></url><url><loc>https://btctranscripts.com/tags/mining/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/mining/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/mining/"/></url><url><loc>https://btctranscripts.com/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/"/></url><url><loc>https://btctranscripts.com/tags/p2pool/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/p2pool/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/p2pool/"/></url><url><loc>https://btctranscripts.com/tags/pools/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/pools/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/pools/"/></url><url><loc>https://btctranscripts.com/tags/segwit/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/segwit/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/segwit/"/></url><url><loc>https://btctranscripts.com/tabconf/2022/2022-10-15-silent-payments/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/2022-10-15-silent-payments/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/2022-10-15-silent-payments/"/></url><url><loc>https://btctranscripts.com/tabconf/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/"/></url><url><loc>https://btctranscripts.com/tabconf/2022/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/"/></url><url><loc>https://btctranscripts.com/tags/frost/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/frost/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/frost/"/></url><url><loc>https://btctranscripts.com/speakers/jonas-nick/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/jonas-nick/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/jonas-nick/"/></url><url><loc>https://btctranscripts.com/tabconf/2022/2022-10-14-hac-spec/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tabconf/2022/2022-10-14-roast/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/2022-10-14-roast/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/2022-10-14-roast/"/></url><url><loc>https://btctranscripts.com/tags/schnorr/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/schnorr/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/schnorr/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/schnorr/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/</loc><lastmod>2022-10-12T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/</loc><lastmod>2022-10-12T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/"/></url><url><loc>https://btctranscripts.com/tags/research/</loc><lastmod>2022-10-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-research-wishlist/</loc><lastmod>2022-10-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-merging/</loc><lastmod>2022-10-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-github/</loc><lastmod>2022-10-11T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-github/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-github/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/</loc><lastmod>2022-10-11T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-frost/</loc><lastmod>2022-10-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-hac-spec/</loc><lastmod>2022-10-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-package-relay/</loc><lastmod>2022-10-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-stratum-v2/</loc><lastmod>2022-10-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/stratum-v2/</loc><lastmod>2022-10-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/"/></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/</loc><lastmod>2022-08-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/categories/meetup/</loc><lastmod>2022-08-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2022-08-11-tim-ruffing-musig2/</loc><lastmod>2022-08-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-08-11-gloria-zhao/</loc><lastmod>2022-08-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/chelsea-komlo/</loc><lastmod>2022-08-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/elizabeth-crites/</loc><lastmod>2022-08-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2022-08-07-komlo-crites-frost/</loc><lastmod>2022-08-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/</loc><lastmod>2022-08-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/misc/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/misc/"/></url><url><loc>https://btctranscripts.com/tags/threshold-signatures/</loc><lastmod>2022-08-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-08-02-jonas-nick-tim-ruffing/</loc><lastmod>2022-08-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2022-07-14-tim-ruffing-roast/</loc><lastmod>2022-07-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/alex-myers/</loc><lastmod>2022-06-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoinplusplus/</loc><lastmod>2022-06-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoinplusplus/2022/</loc><lastmod>2022-06-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoinplusplus/2022/2022-06-07-alex-myers-minisketch-lightning-gossip/</loc><lastmod>2022-06-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/covenants/</loc><lastmod>2022-05-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/covenants/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/covenants/"/></url><url><loc>https://btctranscripts.com/greg-maxwell/2022-05-05-covenants-bip119/</loc><lastmod>2022-05-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/greg-maxwell/</loc><lastmod>2022-05-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/greg-maxwell/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/greg-maxwell/"/></url><url><loc>https://btctranscripts.com/greg-maxwell/</loc><lastmod>2022-05-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/greg-maxwell/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/greg-maxwell/"/></url><url><loc>https://btctranscripts.com/speakers/carl-dong/</loc><lastmod>2022-04-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/</loc><lastmod>2022-04-12T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/chaincode-labs/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/chaincode-labs/"/></url><url><loc>https://btctranscripts.com/tags/consensus/</loc><lastmod>2022-04-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/2022-04-12-carl-dong-libbitcoinkernel/</loc><lastmod>2022-04-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/categories/video/</loc><lastmod>2022-04-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/max-hillebrand/</loc><lastmod>2022-04-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-04-01-max-hillebrand/</loc><lastmod>2022-04-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/</loc><lastmod>2022-03-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2022-03-29-socratic-seminar/</loc><lastmod>2022-03-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-03-27-rene-pickhardt/</loc><lastmod>2022-03-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/rene-pickhardt/</loc><lastmod>2022-03-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2022-03-14-specification-call/</loc><lastmod>2022-03-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/c-lightning/</loc><lastmod>2022-03-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/c-lightning/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/c-lightning/"/></url><url><loc>https://btctranscripts.com/c-lightning/</loc><lastmod>2022-03-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2022-03-07-developer-call/</loc><lastmod>2022-03-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/john-cantrell/</loc><lastmod>2022-03-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-03-07-john-cantrell-sensei/</loc><lastmod>2022-03-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/christian-decker/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/christian-decker/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/christian-decker/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-christian-decker-greenlight/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/hardware-wallet/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/hardware-wallet/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/hardware-wallet/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/hardware-wallet/"/></url><url><loc>https://btctranscripts.com/speakers/jimmy-song/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/michael-folkson/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/"/></url><url><loc>https://btctranscripts.com/speakers/sanket-kanjalkar/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/sanket-kanjalkar/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sanket-kanjalkar/"/></url><url><loc>https://btctranscripts.com/speakers/stepan-snigirev/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/stepan-snigirev/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/stepan-snigirev/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/stepan-snigirev/"/></url><url><loc>https://btctranscripts.com/tags/taproot/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/taproot/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/taproot/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/taproot/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-jimmy-song-taproot-multisig/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-michael-folkson-taproot-update/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/bastien-teinturier/</loc><lastmod>2022-03-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2022-03-01-lightning-panel/</loc><lastmod>2022-03-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/oliver-gugger/</loc><lastmod>2022-03-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-02-15-chris-stewart/</loc><lastmod>2022-02-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/chris-stewart/</loc><lastmod>2022-02-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2022-02-14-specification-call/</loc><lastmod>2022-02-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-01-31-nvk-bitcoin-hardware-innovation/</loc><lastmod>2022-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2022-01-31-specification-call/</loc><lastmod>2022-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/nvk/</loc><lastmod>2022-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoinology/2022-01-26-igor-korsakov-cool-ln-developments/</loc><lastmod>2022-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoinology/</loc><lastmod>2022-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/igor-korsakov/</loc><lastmod>2022-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/layer-2/</loc><lastmod>2022-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/rgb/</loc><lastmod>2022-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2022-01-24-developer-call/</loc><lastmod>2022-01-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/jeremy-rubin/</loc><lastmod>2022-01-17T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/jeremy-rubin/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/jeremy-rubin/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/jeremy-rubin/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-01-17-jeremy-rubin/</loc><lastmod>2022-01-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2022-01-11-salvatore-ingala/</loc><lastmod>2022-01-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2022-01-10-developer-call/</loc><lastmod>2022-01-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2022-01-03-specification-call/</loc><lastmod>2022-01-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/eric-sirion/</loc><lastmod>2021-12-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-12-17-eric-sirion/</loc><lastmod>2021-12-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-12-13-developer-call/</loc><lastmod>2021-12-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2021-12-06-specification-call/</loc><lastmod>2021-12-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-11-29-developer-call/</loc><lastmod>2021-11-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/alex-bosworth/</loc><lastmod>2021-11-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/graham-krizek/</loc><lastmod>2021-11-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/lisa-neigut/</loc><lastmod>2021-11-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-11-27-lisa-neigut-alex-bosworth-graham-krizek-and-matt-corallo/</loc><lastmod>2021-11-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-specification/2021-11-22-specification-call/</loc><lastmod>2021-11-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/adopting-bitcoin/</loc><lastmod>2021-11-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/adopting-bitcoin/2021/</loc><lastmod>2021-11-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/adopting-bitcoin/2021/2021-11-17-bastien-teinturier-privacy-on-lightning/</loc><lastmod>2021-11-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/andrew-poelstra/</loc><lastmod>2021-11-16T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/andrew-poelstra/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/andrew-poelstra/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/andrew-poelstra/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-11-16-pieter-wuille-andrew-poelstra-andrew-chow-mark-erhardt/</loc><lastmod>2021-11-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/adopting-bitcoin/2021/2021-11-16-gloria-zhao-transaction-relay-policy/</loc><lastmod>2021-11-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-11-15-developer-call/</loc><lastmod>2021-11-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/nicholas-gregory/</loc><lastmod>2021-11-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-11-12-nicholas-gregory/</loc><lastmod>2021-11-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-11-07-t-bast/</loc><lastmod>2021-11-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/</loc><lastmod>2021-11-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/"/></url><url><loc>https://btctranscripts.com/tabconf/2021/</loc><lastmod>2021-11-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2021/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2021/"/></url><url><loc>https://btctranscripts.com/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/</loc><lastmod>2021-11-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/"/></url><url><loc>https://btctranscripts.com/tabconf/2021/bitcoin-mining-firmware-and-stratum-v2-rachel-rybarczyk-tabconf-2021/</loc><lastmod>2021-11-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/rachel-rybarczyk/</loc><lastmod>2021-11-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/ibd/</loc><lastmod>2021-11-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/security/</loc><lastmod>2021-11-02T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/security/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/security/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/security/"/></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2021-11-02-socratic-seminar-assumeutxo/</loc><lastmod>2021-11-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2021-11-02-socratic-seminar/</loc><lastmod>2021-11-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-11-01-developer-call/</loc><lastmod>2021-11-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/k3tan/</loc><lastmod>2021-10-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-10-27-k3tan-networking-for-bitcoiners/</loc><lastmod>2021-10-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/dustin-trammell/</loc><lastmod>2021-10-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-10-24-dustin-trammell/</loc><lastmod>2021-10-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-10-18-developer-call/</loc><lastmod>2021-10-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-10-04-developer-call/</loc><lastmod>2021-10-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/philip-glazman/</loc><lastmod>2021-10-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-10-02-philip-glazman/</loc><lastmod>2021-10-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/anthony-potdevin/</loc><lastmod>2021-09-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-09-29-thomas-jestopher-and-anthony-potdevin/</loc><lastmod>2021-09-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/thomas-jestopher/</loc><lastmod>2021-09-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-09-20-developer-call/</loc><lastmod>2021-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-09-06-developer-call/</loc><lastmod>2021-09-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-08-24-seedsigner/</loc><lastmod>2021-08-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-08-23-developer-call/</loc><lastmod>2021-08-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/iacr/</loc><lastmod>2021-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/iacr/2021-08-16-jonas-nick-musig2/</loc><lastmod>2021-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/smart-contracts/</loc><lastmod>2021-08-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2021-08-10-socratic-seminar-dlcs/</loc><lastmod>2021-08-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/c-lightning/2021-08-09-developer-call/</loc><lastmod>2021-08-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-08-09-rusty-russell/</loc><lastmod>2021-08-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/rusty-russell/</loc><lastmod>2021-08-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2021-07-20-socratic-seminar-taproot-rollout/</loc><lastmod>2021-07-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-07-17-andrew-chow/</loc><lastmod>2021-07-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-07-13-nvk-bitcoin-security/</loc><lastmod>2021-07-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2021-07-06-socratic-seminar/</loc><lastmod>2021-07-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2021-06-01-socratic-seminar/</loc><lastmod>2021-06-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/wasabi-research-club/2021-05-30-rusty-russell-improving-lightning/</loc><lastmod>2021-05-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/wasabi-research-club/</loc><lastmod>2021-05-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/alejandro-de-la-torre/</loc><lastmod>2021-05-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-05-24-alejandro-de-la-torre/</loc><lastmod>2021-05-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/anthony-ronning/</loc><lastmod>2021-05-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-05-21-anthony-ronning-bitcoin-lightning-privacy/</loc><lastmod>2021-05-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/pavel-moravec/</loc><lastmod>2021-05-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-05-13-pavel-moravec/</loc><lastmod>2021-05-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-podcast/</loc><lastmod>2021-05-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-podcast/2021-05-12-matt-corallo-ldk/</loc><lastmod>2021-05-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/pete-rizzo/</loc><lastmod>2021-04-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-04-28-pete-rizzo/</loc><lastmod>2021-04-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/aaron-van-wirdum/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/aaron-van-wirdum/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/aaron-van-wirdum/"/></url><url><loc>https://btctranscripts.com/bitcoin-magazine/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/"/></url><url><loc>https://btctranscripts.com/speakers/sjors-provoost/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/sjors-provoost/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sjors-provoost/"/></url><url><loc>https://btctranscripts.com/bitcoin-magazine/2021-04-23-taproot-activation-update/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/2021-04-23-taproot-activation-update/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/2021-04-23-taproot-activation-update/"/></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2021/2021-04-03-defending-against-99-attack/</loc><lastmod>2021-04-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/</loc><lastmod>2021-04-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2021/</loc><lastmod>2021-04-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/tadge-dryja/</loc><lastmod>2021-04-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/tadge-dryja/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/tadge-dryja/"/></url><url><loc>https://btctranscripts.com/categories/hackathon/</loc><lastmod>2021-03-27T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/categories/hackathon/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/hackathon/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/hackathon/"/></url><url><loc>https://btctranscripts.com/lightning-hack-day/</loc><lastmod>2021-03-27T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/lightning-hack-day/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/lightning-hack-day/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lightning-hack-day/"/></url><url><loc>https://btctranscripts.com/lightning-hack-day/2021-03-27-alex-bosworth-lightning-routing/</loc><lastmod>2021-03-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/routing/</loc><lastmod>2021-03-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-03-24-craig-raw-bitcoin-multi-sig/</loc><lastmod>2021-03-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-03-17-luke-dashjr/</loc><lastmod>2021-03-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/luke-dashjr/</loc><lastmod>2021-03-17T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/luke-dashjr/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/luke-dashjr/"/></url><url><loc>https://btctranscripts.com/tags/soft-fork/</loc><lastmod>2021-03-17T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/soft-fork/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/soft-fork/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-03-17-luke-dashjr-taproot-activation/</loc><lastmod>2021-03-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/</loc><lastmod>2021-03-12T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-03-04-matt-corallo/</loc><lastmod>2021-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/gleb-naumenko/</loc><lastmod>2021-02-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/</loc><lastmod>2021-02-26T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-02-26-gleb-naumenko/</loc><lastmod>2021-02-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/attacks/</loc><lastmod>2021-02-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2021-02-23-socratic-seminar/</loc><lastmod>2021-02-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/daniela-brozzoni/</loc><lastmod>2021-02-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/munich-meetup/</loc><lastmod>2021-02-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/munich-meetup/2021-02-21-daniela-brozzoni-stratumv2/</loc><lastmod>2021-02-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tftc-podcast/</loc><lastmod>2021-02-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tftc-podcast/2021-02-11-matt-corallo-taproot-activation/</loc><lastmod>2021-02-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-01-21-wiz-and-simon-mempool/</loc><lastmod>2021-01-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/simon/</loc><lastmod>2021-01-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/wiz/</loc><lastmod>2021-01-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/jonas-schnelli/</loc><lastmod>2021-01-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2021-01-14-jonas-schnelli-maintaining-bitcoin-core/</loc><lastmod>2021-01-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/realworldcrypto/2021/2021-01-12-tim-ruffing-musig2/</loc><lastmod>2021-01-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/realworldcrypto/</loc><lastmod>2021-01-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/realworldcrypto/2021/</loc><lastmod>2021-01-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-11-30-carl-dong-reproducible-builds/</loc><lastmod>2020-11-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/</loc><lastmod>2020-11-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2020-11-30-socratic-seminar-20/</loc><lastmod>2020-11-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2020-11-25-greg-maxwell-replacing-pgp/</loc><lastmod>2020-11-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2020-11-05-greg-maxwell-yubikey-security/</loc><lastmod>2020-11-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/altcoin/</loc><lastmod>2020-11-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2020-11-01-greg-maxwell-hardware-wallets-altcoins/</loc><lastmod>2020-11-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-10-27-jonas-nick-tim-ruffing-musig2/</loc><lastmod>2020-10-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2020-10-26-greg-maxwell-bitcoin-core-github/</loc><lastmod>2020-10-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/nadav-kohen/</loc><lastmod>2020-10-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-10-15-nadav-kohen-bitcoin-dlcs/</loc><lastmod>2020-10-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/barnab%C3%A1s-b%C3%A1gyi/</loc><lastmod>2020-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/cppcon/</loc><lastmod>2020-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/cppcon/2020/</loc><lastmod>2020-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/cppcon/2020/2020-10-09-barnabas-bagyi-fuzzing-class-interfaces/</loc><lastmod>2020-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-10-02-gloria-zhao-bitcoin-core/</loc><lastmod>2020-10-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/michael-flaxman/</loc><lastmod>2020-09-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-09-28-michael-flaxman-security-guide/</loc><lastmod>2020-09-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-09-15-steve-lee-of-square-crypto/</loc><lastmod>2020-09-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/steve-lee/</loc><lastmod>2020-09-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/bitcoin-core-functional-test-framework/</loc><lastmod>2020-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/</loc><lastmod>2020-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/</loc><lastmod>2020-09-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/scalingbitcoin/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/scalingbitcoin/"/></url><url><loc>https://btctranscripts.com/tags/testing/</loc><lastmod>2020-09-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/testing/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/testing/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/debugging-bitcoin/</loc><lastmod>2020-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/ben-kaufman/</loc><lastmod>2020-08-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-08-28-stepan-snigirev-and-ben-kaufman/</loc><lastmod>2020-08-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2020-08-27-greg-maxwell-checkmultisig-bug/</loc><lastmod>2020-08-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/hard-fork/</loc><lastmod>2020-08-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2020-08-25-socratic-seminar/</loc><lastmod>2020-08-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-design/2020-08-20-bitcoin-core-gui/</loc><lastmod>2020-08-20T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-design/2020-08-20-bitcoin-core-gui/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-design/2020-08-20-bitcoin-core-gui/"/></url><url><loc>https://btctranscripts.com/bitcoin-design/</loc><lastmod>2020-08-20T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-design/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-design/"/></url><url><loc>https://btctranscripts.com/tags/signet/</loc><lastmod>2020-08-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-08-19-socratic-seminar-signet/</loc><lastmod>2020-08-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-08-13-christian-decker/</loc><lastmod>2020-08-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-08-13-christian-decker-lightning-topics/</loc><lastmod>2020-08-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chicago-bitdevs/</loc><lastmod>2020-08-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chicago-bitdevs/2020-08-12-socratic-seminar/</loc><lastmod>2020-08-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-08-09-thomas-voegtlin-ghost43-electrum/</loc><lastmod>2020-08-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-08-09-thomas-voegtlin-and-ghost43/</loc><lastmod>2020-08-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/ghost43/</loc><lastmod>2020-08-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/thomas-voegtlin/</loc><lastmod>2020-08-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/eric-lombrozo/</loc><lastmod>2020-08-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/eric-lombrozo/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/eric-lombrozo/"/></url><url><loc>https://btctranscripts.com/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/</loc><lastmod>2020-08-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-07-26-nix-bitcoindev/</loc><lastmod>2020-07-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-07-26-nix-bitcoin/</loc><lastmod>2020-07-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/nixbitcoindev/</loc><lastmod>2020-07-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/openoms/</loc><lastmod>2020-07-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-07-21-rootzoll-and-openoms-raspiblitz/</loc><lastmod>2020-07-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/rootzoll/</loc><lastmod>2020-07-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2020-07-21-socratic-seminar/</loc><lastmod>2020-07-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-07-21-socratic-seminar-bip-taproot/</loc><lastmod>2020-07-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2020-07-20-greg-maxwell-taproot-pace/</loc><lastmod>2020-07-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/vr-bitcoin/2020-07-11-jeremy-rubin-sapio-101/</loc><lastmod>2020-07-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/vr-bitcoin/</loc><lastmod>2020-07-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2020-07-10-what-am-i-working-on/</loc><lastmod>2020-07-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chicago-bitdevs/2020-07-08-socratic-seminar/</loc><lastmod>2020-07-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2020-07-05-greg-maxwell-useful-proof-of-work/</loc><lastmod>2020-07-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-06-30-john-cantrell-bruteforcing-bitcoin-seeds/</loc><lastmod>2020-06-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2020-06-23-socratic-seminar/</loc><lastmod>2020-06-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-06-23-socratic-seminar-coinswap/</loc><lastmod>2020-06-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-hack-day/2020-06-21-rootzoll-openoms-raspiblitz/</loc><lastmod>2020-06-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/la-bitdevs/</loc><lastmod>2020-06-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/psbt/</loc><lastmod>2020-06-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/la-bitdevs/2020-06-18-luke-dashjr-segwit-psbt-vulnerability/</loc><lastmod>2020-06-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-06-17-tim-ruffing-schnorr-multisig/</loc><lastmod>2020-06-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-06-16-socratic-seminar-bip-schnorr/</loc><lastmod>2020-06-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/wasabi-research-club/2020-06-15-coinswap/</loc><lastmod>2020-06-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/fungibility/</loc><lastmod>2020-06-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/ergo/</loc><lastmod>2020-06-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-06-09-ergo-unwinding-bitcoin/</loc><lastmod>2020-06-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2020-06-08-greg-maxwell-liquid-censorship-resistance/</loc><lastmod>2020-06-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-05-27-bitcoin-coin-selection/</loc><lastmod>2020-05-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/kevin-loaec/</loc><lastmod>2020-05-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-05-26-kevin-loaec-antoine-poinsot-revault/</loc><lastmod>2020-05-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/sergi-delgado-segura/</loc><lastmod>2020-05-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/sergi-delgado-segura/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sergi-delgado-segura/"/></url><url><loc>https://btctranscripts.com/lightning-hack-day/2020-05-24-sergi-delgado-watchtowers/</loc><lastmod>2020-05-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/lightning-hack-day/2020-05-24-sergi-delgado-watchtowers/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lightning-hack-day/2020-05-24-sergi-delgado-watchtowers/"/></url><url><loc>https://btctranscripts.com/speakers/alekos-filini/</loc><lastmod>2020-05-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/la-bitdevs/2020-05-21-alekos-filini-magical-bitcoin/</loc><lastmod>2020-05-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sydney-bitcoin-meetup/2020-05-19-socratic-seminar/</loc><lastmod>2020-05-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-05-19-socratic-seminar-vaults/</loc><lastmod>2020-05-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/vr-bitcoin/2020-05-16-oliver-gugger-lsat/</loc><lastmod>2020-05-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/ruben-somsen/</loc><lastmod>2020-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/ruben-somsen/2020-05-11-ruben-somsen-succinct-atomic-swap/</loc><lastmod>2020-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-hack-day/2020-05-09-sergei-tikhomirov-lightning-privacy/</loc><lastmod>2020-05-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/lightning-hack-day/2020-05-09-sergei-tikhomirov-lightning-privacy/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lightning-hack-day/2020-05-09-sergei-tikhomirov-lightning-privacy/"/></url><url><loc>https://btctranscripts.com/tags/scalability/</loc><lastmod>2020-05-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/scalability/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/scalability/"/></url><url><loc>https://btctranscripts.com/speakers/sergei-tikhomirov/</loc><lastmod>2020-05-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/speakers/sergei-tikhomirov/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sergei-tikhomirov/"/></url><url><loc>https://btctranscripts.com/speakers/adam-gibson/</loc><lastmod>2020-05-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-05-05-socratic-seminar-payjoins/</loc><lastmod>2020-05-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-hack-day/2020-05-03-christian-decker-lightning-backups/</loc><lastmod>2020-05-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-04-29-kalle-rosenbaum-grokking-bitcoin/</loc><lastmod>2020-04-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/kalle-rosenbaum/</loc><lastmod>2020-04-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/honey-badger-diaries/</loc><lastmod>2020-04-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-04-24-lisa-neigut-lighting-network-channel/</loc><lastmod>2020-04-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/honey-badger-diaries/2020-04-24-kevin-loaec-antoine-poinsot-revault/</loc><lastmod>2020-04-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/ux/</loc><lastmod>2020-04-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/ux/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/ux/"/></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-04-22-socratic-seminar/</loc><lastmod>2020-04-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/chris-belcher/</loc><lastmod>2020-04-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-04-21-chris-belcher/</loc><lastmod>2020-04-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/joost-jager/</loc><lastmod>2020-04-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/vr-bitcoin/2020-04-18-laolu-joost-oliver-lnd0.10/</loc><lastmod>2020-04-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/lnd/</loc><lastmod>2020-04-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/olaoluwa-osuntokun/</loc><lastmod>2020-04-18T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/olaoluwa-osuntokun/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/olaoluwa-osuntokun/"/></url><url><loc>https://btctranscripts.com/speakers/amiti-uttarwar/</loc><lastmod>2020-04-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/la-bitdevs/2020-04-16-amiti-uttarwar-attacking-bitcoin-core/</loc><lastmod>2020-04-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/adam-back/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/andreas-antonopoulos/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/andreas-antonopoulos/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/andreas-antonopoulos/"/></url><url><loc>https://btctranscripts.com/andreas-antonopoulos/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/"/></url><url><loc>https://btctranscripts.com/blockstream-webinars/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/2020-04-08-john-newbery-contracts-in-bitcoin/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/john-newbery/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/john-newbery/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/john-newbery/"/></url><url><loc>https://btctranscripts.com/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/"/></url><url><loc>https://btctranscripts.com/blockstream-webinars/2020-04-08-adam-back-simplicity/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-04-07-gleb-naumenko-erlay/</loc><lastmod>2020-04-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-03-12-matt-corallo-compact-blocks-fibre/</loc><lastmod>2020-03-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2020/</loc><lastmod>2020-03-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2020/2020-03-07-andrew-poelstra-taproot/</loc><lastmod>2020-03-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/</loc><lastmod>2020-02-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/"/></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/</loc><lastmod>2020-02-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/"/></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/bram-cohen/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/consensus-protocol-risks-and-vulnerabilities/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/cryptography/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/cryptography/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/cryptography/"/></url><url><loc>https://btctranscripts.com/speakers/dan-boneh/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/dan-boneh/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/dan-boneh/"/></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/welcome-remarks/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/categories/workshop/</loc><lastmod>2020-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/byron-gibson/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/communication-with-regulators/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/opening-remarks/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/regulation/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/regulatory-pain-points/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/risk-overview/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/ryosuke-ushida/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/shinichiro-matsuo/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/stress-testing-decentralized-finance/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/tarun-chitra/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/technological-stability/</loc><lastmod>2020-02-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-02-16-waxwing-or-adam-gibson/</loc><lastmod>2020-02-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-02-11-jeremy-rubin-ctv/</loc><lastmod>2020-02-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2020/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/"/></url><url><loc>https://btctranscripts.com/speakers/kalle-alm/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/kalle-alm/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/kalle-alm/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/"/></url><url><loc>https://btctranscripts.com/speakers/antoine-riard/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/antoine-riard/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/antoine-riard/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-kalle-alm-signet-integration/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/"/></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-02-05-andrew-chow-hardware-wallets/</loc><lastmod>2020-02-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/james-chiang/</loc><lastmod>2020-02-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-02-04-andrew-poelstra-miniscript/</loc><lastmod>2020-02-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2020-02-04-james-chiang-trace-net/</loc><lastmod>2020-02-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-01-28-pieter-wuille/</loc><lastmod>2020-01-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/</loc><lastmod>2020-01-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2020-01-06-andreas-antonopoulos/</loc><lastmod>2020-01-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/anthony-towns/</loc><lastmod>2019-12-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-12-27-aj-towns-schnorr-taproot/</loc><lastmod>2019-12-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-12-27-aj-townsschnorr-taproot-tapscript-bips/</loc><lastmod>2019-12-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2019-12-16-bip-taproot-bip-tapscript/</loc><lastmod>2019-12-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-12-16-rusty-russelllightning-multi-part-payments/</loc><lastmod>2019-12-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/jan-%C4%8Dapek/</loc><lastmod>2019-11-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-11-27-jan-capekstratum-v2/</loc><lastmod>2019-11-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/</loc><lastmod>2019-11-19T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/"/></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-11-16-thomas-voegtlin-electrum-wallet/</loc><lastmod>2019-11-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-11-13-jon-atack/</loc><lastmod>2019-11-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2019-11-13-gleb-naumenko-p2p-erlay/</loc><lastmod>2019-11-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/jon-atack/</loc><lastmod>2019-11-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/allen-piscitello/</loc><lastmod>2019-11-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-11-08-allen-piscitellosidechains/</loc><lastmod>2019-11-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/jack-mallers/</loc><lastmod>2019-10-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-10-29-jack-mallers/</loc><lastmod>2019-10-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-10-24-alex-bosworth-submarine-swaps/</loc><lastmod>2019-10-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/eclair/</loc><lastmod>2019-10-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-conference/</loc><lastmod>2019-10-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-conference/2019/</loc><lastmod>2019-10-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-conference/2019/2019-10-20-nadav-kohen-payment-points/</loc><lastmod>2019-10-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-conference/2019/2019-10-20-antoine-riard-rust-lightning/</loc><lastmod>2019-10-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-conference/2019/2019-10-20-bastien-teinturier-trampoline-routing/</loc><lastmod>2019-10-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-conference/2019/2019-10-19-rusty-russell-offers/</loc><lastmod>2019-10-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-conference/2019/2019-10-19-chris-stewart-private-key-management/</loc><lastmod>2019-10-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/</loc><lastmod>2019-10-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/</loc><lastmod>2019-10-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/russell-oconnor/</loc><lastmod>2019-10-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/sidechains/</loc><lastmod>2019-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/sidechains/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/sidechains/"/></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/2019-10-15-russell-oconnor-simplicity/</loc><lastmod>2019-10-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/</loc><lastmod>2019-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/"/></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/</loc><lastmod>2019-10-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/chaincode-labs/chaincode-residency/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/chaincode-labs/chaincode-residency/"/></url><url><loc>https://btctranscripts.com/speakers/giulia-fanti/</loc><lastmod>2019-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-10-09-giulia-fanti-p2p-privacy-attacks/</loc><lastmod>2019-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/categories/residency/</loc><lastmod>2019-10-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/residency/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/residency/"/></url><url><loc>https://btctranscripts.com/tags/academia/</loc><lastmod>2019-10-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/bryan-bishop/</loc><lastmod>2019-10-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/bryan-bishop/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/bryan-bishop/"/></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/knowledge-aggregation-and-propagation/</loc><lastmod>2019-10-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/threshold-schnorr-signatures/</loc><lastmod>2019-10-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2019-10-04-majority-miner-attack/</loc><lastmod>2019-10-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoinops/</loc><lastmod>2019-09-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoinops/2019-09-27-schnorr-taproot-workshop/</loc><lastmod>2019-09-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-09-22-bryan-bishop/</loc><lastmod>2019-09-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/baltic-honeybadger/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/"/></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2019/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2019/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2019/"/></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/"/></url><url><loc>https://btctranscripts.com/speakers/rodolfo-novak/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/rodolfo-novak/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/rodolfo-novak/"/></url><url><loc>https://btctranscripts.com/speakers/carla-kirk-cohen/</loc><lastmod>2019-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/2019-09-09-carla-kirk-cohen-routing-problems-and-solutions/</loc><lastmod>2019-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-09-09-amiti-uttarwar-transaction-rebroadcast/</loc><lastmod>2019-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/decentralized-financial-architecture-workshop/custody-group/</loc><lastmod>2019-09-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/decentralized-financial-architecture-workshop/</loc><lastmod>2019-09-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockstream-webinars/2019-09-04-christian-decker-c-lightning-questions/</loc><lastmod>2019-09-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-08-22-fabian-jahr-debugging/</loc><lastmod>2019-08-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/</loc><lastmod>2019-08-22T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/"/></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-08-22-james-chiang-taproot-policy/</loc><lastmod>2019-08-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/dallas-bitcoin-symposium/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/dhruv-bansal/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/elichai-turkel/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/gideon-powell/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/dallas-bitcoin-symposium/intro/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/justin-moon/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/marty-bent/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/michael-goldstein/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/parker-lewis/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/dallas-bitcoin-symposium/q-a/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-08-16-elichai-turkel-schnorr-signatures/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/tuur-demeester/</loc><lastmod>2019-08-16T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/joe-netti/</loc><lastmod>2019-08-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-08-12-rusty-russell-joe-netti/</loc><lastmod>2019-08-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-08-08-michael-flaxman/</loc><lastmod>2019-08-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/jonathan-metzman/</loc><lastmod>2019-08-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2019-08-07-jonathan-metzman-structured-fuzzing/</loc><lastmod>2019-08-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockstream-webinars/2019-07-31-rusty-russell-getting-started-with-c-lightning/</loc><lastmod>2019-07-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-07-31-roy-sheinfeld-lightning-network-services/</loc><lastmod>2019-07-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/roy-sheinfeld/</loc><lastmod>2019-07-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-07-31-roy-sheinfeld-stephan-livera/</loc><lastmod>2019-07-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/britt-kelly/</loc><lastmod>2019-07-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-07-25-britt-kelly-btcpayserver-documentation/</loc><lastmod>2019-07-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/submarine-swaps/</loc><lastmod>2019-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2019-07-03-alex-bosworth-submarine-swaps/</loc><lastmod>2019-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/2019-06-29-hardware-wallets/</loc><lastmod>2019-06-29T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-06-29-hardware-wallets/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-06-29-hardware-wallets/"/></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-28-christian-decker-multiparty-channels/</loc><lastmod>2019-06-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-28-christian-decker-rendezvous-routing/</loc><lastmod>2019-06-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/fabrice-drouin/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/limitations/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-26-fabrice-drouin-limitations-of-lightweight-clients/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-26-rene-pickhardt-path-finding-lightning-network/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/path-finding/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/splicing/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-26-rene-pickhardt-splicing/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-26-rene-pickhardt-update-layer/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/update-layer/</loc><lastmod>2019-06-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-fabrice-drouin-attack-vectors-of-lightning-network/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/eltoo/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/eltoo/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/eltoo/"/></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/"/></url><url><loc>https://btctranscripts.com/tags/multiple-path-payments/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-alex-bosworth-mpp/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/onion/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-onion-routing-deep-dive/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/routing-failures/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-fabrice-drouin-routing-failures/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/sphinx/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-24-fabrice-drouin-base-and-transport-layers-of-lightning-network/</loc><lastmod>2019-06-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/conner-fromknecht/</loc><lastmod>2019-06-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-06-24-conner-fromknecht-stephan-livera/</loc><lastmod>2019-06-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-24-rene-pickhardt-multihop-in-lightning/</loc><lastmod>2019-06-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-19-john-newbery-wallet-development/</loc><lastmod>2019-06-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-18-james-obeirne-advanced-segwit/</loc><lastmod>2019-06-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/musig/</loc><lastmod>2019-06-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tftc-podcast/2019-06-18-andrew-poelstra-tftc/</loc><lastmod>2019-06-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-17-john-newbery-security-models/</loc><lastmod>2019-06-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/</loc><lastmod>2019-06-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/</loc><lastmod>2019-06-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/2019-06-09-joost-jager-hodl-invoices/</loc><lastmod>2019-06-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/ethan-heilman/</loc><lastmod>2019-06-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-12-ethan-heilman-network-partitioning-attacks/</loc><lastmod>2019-06-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lets-talk-bitcoin-podcast/</loc><lastmod>2019-06-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/lets-talk-bitcoin-podcast/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lets-talk-bitcoin-podcast/"/></url><url><loc>https://btctranscripts.com/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/</loc><lastmod>2019-06-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/"/></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/2019-06-08-mempool-analysis-simulation/</loc><lastmod>2019-06-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/p2p-encryption/</loc><lastmod>2019-06-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-assumeutxo/</loc><lastmod>2019-06-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/</loc><lastmod>2019-06-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-hardware-wallets/</loc><lastmod>2019-06-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/</loc><lastmod>2019-06-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/</loc><lastmod>2019-06-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-statechains/</loc><lastmod>2019-06-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/accumulators/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/accumulators/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/accumulators/"/></url><url><loc>https://btctranscripts.com/tags/forks/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-great-consensus-cleanup/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/"/></url><url><loc>https://btctranscripts.com/speakers/michael-ford/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/secure-protocols-bip-taproot/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-taproot/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-utreexo/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/wladimir-van-der-laan/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-code-review/</loc><lastmod>2019-06-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/</loc><lastmod>2019-06-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/"/></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/</loc><lastmod>2019-05-27T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/"/></url><url><loc>https://btctranscripts.com/speakers/paul-sztorc/</loc><lastmod>2019-05-27T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/paul-sztorc/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/paul-sztorc/"/></url><url><loc>https://btctranscripts.com/what-bitcoin-did-podcast/2019-05-14-adam-back-bryan-bishop-block-reorgs/</loc><lastmod>2019-05-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/what-bitcoin-did-podcast/</loc><lastmod>2019-05-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/crypto-in-cryptocurrency/</loc><lastmod>2019-05-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/fork-dynamics/</loc><lastmod>2019-05-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/</loc><lastmod>2019-05-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/</loc><lastmod>2019-05-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/the-state-of-bitcoin-mining/</loc><lastmod>2019-05-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/zero-knowledge/</loc><lastmod>2019-05-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-satellite-network/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/elizabeth-stark/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/elizabeth-stark/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/elizabeth-stark/"/></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/htc/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/intro/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/leigh-cuen/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/lightning-payments/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/ln-present-and-future-panel/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/mcf-episode/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/noded-podcast/2019-05-11-andrew-poelstra-miniscript/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/noded-podcast/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/phil-chen/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/stacy-herbert/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/state-of-lightning-network/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/submarine-swaps/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/taxonomy-of-ln-nodes/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/will-obeirne/</loc><lastmod>2019-05-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2019-05-02-conner-fromknecht-lnd-0.6-beta/</loc><lastmod>2019-05-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2019-05-01-stepan-snigirev-hardware-wallet-attacks/</loc><lastmod>2019-05-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-04-11-james-obeirne/</loc><lastmod>2019-04-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/boltathon/</loc><lastmod>2019-04-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/boltathon/2019-04-06-rusty-russell-json-interface/</loc><lastmod>2019-04-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/boltathon/2019-04-06-alex-bosworth-major-limitations/</loc><lastmod>2019-04-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/boltathon/2019-04-06-conner-fromknecht-watchtowers/</loc><lastmod>2019-04-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2019-03-15-partially-signed-bitcoin-transactions/</loc><lastmod>2019-03-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-03-14-christian-decker-channel-factories/</loc><lastmod>2019-03-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/topology/</loc><lastmod>2019-03-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-03-11-chris-belcher/</loc><lastmod>2019-03-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2019/</loc><lastmod>2019-03-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2019/signature-scheme-security-properties/</loc><lastmod>2019-03-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/attacking-evm-resource-metering/</loc><lastmod>2019-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/benjamin-livshits/</loc><lastmod>2019-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/daniel-perez/</loc><lastmod>2019-02-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-02-11-jack-dorsey-elizabeth-stark/</loc><lastmod>2019-02-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/jack-dorsey/</loc><lastmod>2019-02-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2019-02-09-mcelrath-on-chain-defense-in-depth/</loc><lastmod>2019-02-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/custody/</loc><lastmod>2019-02-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2019/</loc><lastmod>2019-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2019/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2019/"/></url><url><loc>https://btctranscripts.com/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/</loc><lastmod>2019-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/"/></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2019-02-05-matt-corallo-betterhash/</loc><lastmod>2019-02-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2019-02-04-threshold-signatures-and-accountability/</loc><lastmod>2019-02-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/verifiable-delay-functions/vdf-day-2019/</loc><lastmod>2019-02-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/verifiable-delay-functions/</loc><lastmod>2019-02-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/verifiable-delay-functions/vdf-day-2019/dan-boneh/</loc><lastmod>2019-02-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/</loc><lastmod>2019-02-01T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/"/></url><url><loc>https://btctranscripts.com/tags/validation/</loc><lastmod>2019-02-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-07-21-kukks-btcpayserver-architecture/</loc><lastmod>2019-01-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/georgios-konstantopoulos/</loc><lastmod>2019-01-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/kukks/</loc><lastmod>2019-01-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/nicolas-dorier/</loc><lastmod>2019-01-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2019-01-20-nicolas-dorier-and-btcpayserver/</loc><lastmod>2019-01-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/plasma-cash/</loc><lastmod>2019-01-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/</loc><lastmod>2019-01-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/istvan-andras-seres/</loc><lastmod>2019-01-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/lightning-network-topological-analysis/</loc><lastmod>2019-01-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2019-01-05-unchained-capital-socratic-seminar/</loc><lastmod>2019-01-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/noded-podcast/2018-12-14-laolu-conner-lnd/</loc><lastmod>2018-12-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/stephan-livera-podcast/2018-12-11-laolu-osuntokun-stephan-livera/</loc><lastmod>2018-12-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/tom-kirkpatrick/</loc><lastmod>2018-12-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-hack-day/2018-12-01-tom-kirkpatrick-zap-wallet/</loc><lastmod>2018-12-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lightning-hack-day/2018-10-27-pierre-rochard-excel-in-lightning/</loc><lastmod>2018-10-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/pierre-rochard/</loc><lastmod>2018-10-27T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/pierre-rochard/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/pierre-rochard/"/></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-26-pierre-rochard-lightning-excel-plugin/</loc><lastmod>2018-10-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-24-christian-decker-c-lightning-api/</loc><lastmod>2018-10-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/</loc><lastmod>2018-10-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/"/></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-elaine-ou-bootstrapping-lightning-node/</loc><lastmod>2018-10-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-alex-bosworth-building-lightning-applications/</loc><lastmod>2018-10-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-alex-bosworth-channel-management/</loc><lastmod>2018-10-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/elaine-ou/</loc><lastmod>2018-10-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-christian-decker-history-of-lightning/</loc><lastmod>2018-10-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-christian-decker-lightning-bitcoin/</loc><lastmod>2018-10-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-alex-bosworth-lightning-protocol/</loc><lastmod>2018-10-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/</loc><lastmod>2018-10-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-10-signmessage/</loc><lastmod>2018-10-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-09-bitcoin-optech/</loc><lastmod>2018-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-09-wallet-stuff/</loc><lastmod>2018-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-efficient-p2p-transaction-relay/</loc><lastmod>2018-10-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/</loc><lastmod>2018-10-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-utxo-accumulators-and-utreexo/</loc><lastmod>2018-10-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/</loc><lastmod>2018-10-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/</loc><lastmod>2018-10-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/python-bitcoinlib/</loc><lastmod>2018-10-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/wallet-architecture/</loc><lastmod>2018-10-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/wallet-security/</loc><lastmod>2018-10-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/noded-podcast/jnewbery-cve-2018-17144-bug/</loc><lastmod>2018-09-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/</loc><lastmod>2018-09-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/"/></url><url><loc>https://btctranscripts.com/greg-maxwell/2018-09-23-greg-maxwell-bitcoin-core-testing/</loc><lastmod>2018-09-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-custody/</loc><lastmod>2018-09-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-custody/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-custody/"/></url><url><loc>https://btctranscripts.com/greg-maxwell/2018-09-23-greg-maxwell-multiple-implementations/</loc><lastmod>2018-09-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2018-09-19-sjors-provoost-core-hardware-wallet/</loc><lastmod>2018-09-19T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-09-18-alex-bosworth-incentive-problems-in-the-lightning-network/</loc><lastmod>2018-09-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/andreas-antonopoulos/2018-08-30-andreas-antonopoulos-home-network-security/</loc><lastmod>2018-08-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/austin-bitcoin-developers/2018-08-17-richard-bondi-bitcoin-cli-regtest/</loc><lastmod>2018-08-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/richard-bondi/</loc><lastmod>2018-08-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/jim-posen/</loc><lastmod>2018-07-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2018-07-24-la-blockchain-jim-posen-lightning-bolt-by-bolt/</loc><lastmod>2018-07-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2018-07-23-john-light-bitcoin-full-nodes/</loc><lastmod>2018-07-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/john-light/</loc><lastmod>2018-07-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2018-07-09-taproot-schnorr-signatures-and-sighash-noinput-oh-my/</loc><lastmod>2018-07-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/lightning-routing-ants-pheromones/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/bitcoin-assets/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/bootstrapping-lightning-network/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/crypto-castles/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/eric-voskuil/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/eric-voskuil/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/eric-voskuil/"/></url><url><loc>https://btctranscripts.com/speakers/giacomo-zucco/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/giacomo-zucco/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/giacomo-zucco/"/></url><url><loc>https://btctranscripts.com/speakers/jameson-lopp/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/jameson-lopp/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/jameson-lopp/"/></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/libbitcoin/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/ricardo-perez-marco/</loc><lastmod>2018-07-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/adam-ficsor/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/anonymous-bitcoin/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/binary-transparency/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/blind-signatures-and-scriptless-scripts/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/btcpay/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/coinjoinxt/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/current-and-future-state-of-wallets/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/dandelion/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/lawrence-nahum/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/lawrence-nahum/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/lawrence-nahum/"/></url><url><loc>https://btctranscripts.com/tags/miners/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/mustafa-al-bassam/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/peter-todd/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/peter-todd/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/peter-todd/"/></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/single-use-seals/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/thomas-kerin/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/tooling/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/working-on-scripts/</loc><lastmod>2018-07-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/2018-06-12-adam-gibson-unfairly-linear-signatures/</loc><lastmod>2018-06-12T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/bitcoin-build-system/</loc><lastmod>2018-06-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/layer2-summit/</loc><lastmod>2018-05-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/layer2-summit/2018/</loc><lastmod>2018-05-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/layer2-summit/2018/scriptless-scripts/</loc><lastmod>2018-05-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/layer2-summit/2018/lightning-overview/</loc><lastmod>2018-04-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2018-04-23-jeremy-rubin-bitcoin-core/</loc><lastmod>2018-04-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2018-04-20-laolu-osuntokun-exploring-lnd0.4/</loc><lastmod>2018-04-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/</loc><lastmod>2018-03-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/</loc><lastmod>2018-03-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/"/></url><url><loc>https://btctranscripts.com/tags/hashlocks/</loc><lastmod>2018-03-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/hashlocks/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/hashlocks/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/</loc><lastmod>2018-03-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/</loc><lastmod>2018-03-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/"/></url><url><loc>https://btctranscripts.com/tags/timelocks/</loc><lastmod>2018-03-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/timelocks/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/timelocks/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/</loc><lastmod>2018-03-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/</loc><lastmod>2018-03-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/"/></url><url><loc>https://btctranscripts.com/speakers/ron-paul/</loc><lastmod>2018-02-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/satoshi-roundtable/sr-004/ron-paul/</loc><lastmod>2018-02-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/satoshi-roundtable/</loc><lastmod>2018-02-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/satoshi-roundtable/sr-004/</loc><lastmod>2018-02-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2018-02-02-andrew-poelstra-bulletproofs/</loc><lastmod>2018-02-02T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/</loc><lastmod>2018-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/</loc><lastmod>2018-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/proofs-of-space/</loc><lastmod>2018-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/schnorr-signatures-for-bitcoin-challenges-opportunities/</loc><lastmod>2018-01-31T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/hardening-lightning/</loc><lastmod>2018-01-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/2018-01-25-russell-oconnor-simplicity/</loc><lastmod>2018-01-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/christopher-allen/</loc><lastmod>2018-01-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2018-01-24-rusty-russell-future-bitcoin-tech-directions/</loc><lastmod>2018-01-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/2018-01-24-christopher-allen-smart-signatures/</loc><lastmod>2018-01-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/realworldcrypto/2018/mimblewimble-and-scriptless-scripts/</loc><lastmod>2018-01-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/realworldcrypto/2018/</loc><lastmod>2018-01-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/bech32/</loc><lastmod>2017-12-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2017-12-22-bech32-design/</loc><lastmod>2017-12-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2017-11-27-gmaxwell-advances-in-block-propagation/</loc><lastmod>2017-11-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/cppcon/2017/</loc><lastmod>2017-10-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/cppcon/2017/2017-10-11-kostya-serebryany-fuzzing/</loc><lastmod>2017-10-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/kostya-serebryany/</loc><lastmod>2017-10-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/</loc><lastmod>2017-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/changing-consensus-rules-without-breaking-bitcoin/</loc><lastmod>2017-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/christopher-jeffrey/</loc><lastmod>2017-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/2017-09-10-christopher-jeffrey-consensus-pitfalls/</loc><lastmod>2017-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/interview-adam-back-elizabeth-stark/</loc><lastmod>2017-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/solar-powered-space-pirates/</loc><lastmod>2017-09-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/antoine-le-calvez/</loc><lastmod>2017-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/banks-as-bitcoin-custodians/</loc><lastmod>2017-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/breaking-hardware-wallets/</loc><lastmod>2017-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/light-clients-during-2017-interfork-period/</loc><lastmod>2017-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/nicolas-bacca/</loc><lastmod>2017-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/p2sh/</loc><lastmod>2017-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/socialized-costs-of-hard-forks/</loc><lastmod>2017-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2017/spam-attacks-analysis/</loc><lastmod>2017-09-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/</loc><lastmod>2017-09-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/</loc><lastmod>2017-09-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/</loc><lastmod>2017-09-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/"/></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/</loc><lastmod>2017-09-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/"/></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2017-09-04-jonas-schnelli-bip150-bip151/</loc><lastmod>2017-09-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2017-08-28-gmaxwell-deep-dive-bitcoin-core-v0.15/</loc><lastmod>2017-08-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2017-07-08-bram-cohen-merkle-sets/</loc><lastmod>2017-07-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/merkle-trees/</loc><lastmod>2017-07-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/merkle-trees/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/merkle-trees/"/></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2017-06-06-laolu-osuntokun-neutrino/</loc><lastmod>2017-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/spv/</loc><lastmod>2017-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lets-talk-bitcoin-podcast/2017-06-04-consensus-uasf-and-forks/</loc><lastmod>2017-06-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2017-04-28-gmaxwell-confidential-transactions/</loc><lastmod>2017-04-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2017-04-03-andreas-antonopoulos-bitcoin-scripting/</loc><lastmod>2017-04-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2017-03-29-new-address-type-for-segwit-addresses/</loc><lastmod>2017-03-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/bitcoin-mining-and-trustlessness/</loc><lastmod>2017-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/david-vorick/</loc><lastmod>2017-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/exchange-security/</loc><lastmod>2017-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/ideal-number-of-full-bitcoin-nodes/</loc><lastmod>2017-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/mimblewimble-and-scriptless-scripts/</loc><lastmod>2017-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/</loc><lastmod>2017-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/mitchell-dong/</loc><lastmod>2017-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/scaling-and-utxos/</loc><lastmod>2017-03-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/</loc><lastmod>2017-02-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/lightning-network-security-analysis/</loc><lastmod>2017-02-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/scalable-smart-contracts-via-proofs-and-single-use-seals/</loc><lastmod>2017-02-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/2017-01-26-jeremy-rubin-covenants/</loc><lastmod>2017-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/dan-robinson/</loc><lastmod>2017-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/2017-01-26-dan-robinson-ivy/</loc><lastmod>2017-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/2017-01-26-russell-oconnor-posts-theorem/</loc><lastmod>2017-01-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/lets-talk-bitcoin-podcast/2016-12-25-christopher-jeffrey-consensus-barnacles/</loc><lastmod>2016-12-25T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/roger-ver/</loc><lastmod>2016-12-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2016-12-14-whalepool/</loc><lastmod>2016-12-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2016-11-21-mimblewimble/</loc><lastmod>2016-11-21T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2016-adam-back/</loc><lastmod>2016-11-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/schnorr-signatures/</loc><lastmod>2016-10-10T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/bip151-peer-encryption/</loc><lastmod>2016-10-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2016-09-28-christopher-jeffrey-bcoin/</loc><lastmod>2016-09-28T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/dan-boneh/</loc><lastmod>2016-08-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/</loc><lastmod>2016-08-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/ethereum/</loc><lastmod>2016-08-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/cali2016/</loc><lastmod>2016-07-30T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2016-07-18-laolu-osuntokun-lightning-network/</loc><lastmod>2016-07-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/doug-schepers/</loc><lastmod>2016-06-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/intro/</loc><lastmod>2016-06-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/</loc><lastmod>2016-06-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2016-04-11-lightning-network-as-a-directed-graph-single-funded-channel-network-topology/</loc><lastmod>2016-04-11T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/adam3us-bitcoin-scaling-tradeoffs/</loc><lastmod>2016-04-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2015-11-09-gmaxwell-mining-and-block-size-etc/</loc><lastmod>2015-11-09T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/2015-09-07-epicenter-bitcoin-adam3us-scalability/</loc><lastmod>2015-09-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/tags/proof-of-work/</loc><lastmod>2015-09-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2015-08-24-pieter-wuille-key-tree-signatures/</loc><lastmod>2015-08-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/daniele-micciancio/</loc><lastmod>2015-07-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/simons-institute/history-of-lattice-based-cryptography/</loc><lastmod>2015-07-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/simons-institute/</loc><lastmod>2015-07-15T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/simons-institute/pairing-cryptography/</loc><lastmod>2015-07-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2015-06-08-gmaxwell-sidechains-elements/</loc><lastmod>2015-06-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/speakers/joseph-poon/</loc><lastmod>2015-05-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2015-05-26-lightning-network/</loc><lastmod>2015-05-26T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2015-04-29-gmaxwell-bitcoin-selection-cryptography/</loc><lastmod>2015-04-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/sf-bitcoin-meetup/2015-02-23-scaling-bitcoin-to-billions-of-transactions-per-day/</loc><lastmod>2015-02-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/bitcoin-sidechains-unchained-epicenter-adam3us-gmaxwell/</loc><lastmod>2015-02-03T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2015-01-08-libsecp256k1-testing/</loc><lastmod>2015-01-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/greg-maxwell/2015-01-08-openssl-bug/</loc><lastmod>2015-01-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/misc/nydfs-bitlicense-lawsky-update/</loc><lastmod>2014-12-18T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/</loc><lastmod>2014-10-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/"/></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/a-bevy-of-block-size-proposals-bip100-bip102-and-more/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/a-flexible-limit-trading-subsidy-for-larger-blocks/</loc></url><url><loc>https://btctranscripts.com/simons-institute/a-wishlist-for-verifiable-computation/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/abstract-groups/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/abstract-thinking-about-consensus-systems/</loc></url><url><loc>https://btctranscripts.com/bit-block-boom/2019/accumulating-bitcoin/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bit-block-boom/2019/accumulating-bitcoin/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bit-block-boom/2019/accumulating-bitcoin/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/accumulators/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/accumulators/</loc><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/scalingbitcoin/tokyo-2018/accumulators/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/scalingbitcoin/tokyo-2018/accumulators/"/></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/accumulators/</loc></url><url><loc>https://btctranscripts.com/speakers/adam-ludwin/</loc></url><url><loc>https://btctranscripts.com/speakers/adlai-chandrasekhar/</loc></url><url><loc>https://btctranscripts.com/speakers/akio-nakamura/</loc></url><url><loc>https://btctranscripts.com/speakers/alan-reiner/</loc></url><url><loc>https://btctranscripts.com/speakers/alberto-sonnino/</loc></url><url><loc>https://btctranscripts.com/speakers/alena-vranova/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/alena-vranova/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/alena-vranova/"/></url><url><loc>https://btctranscripts.com/speakers/alessandro-chiesa/</loc></url><url><loc>https://btctranscripts.com/speakers/alex-petrov/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/alex-petrov/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/alex-petrov/"/></url><url><loc>https://btctranscripts.com/speakers/alex-zinder/</loc></url><url><loc>https://btctranscripts.com/speakers/alexander-chepurnoy/</loc></url><url><loc>https://btctranscripts.com/speakers/alexander-zaidelson/</loc></url><url><loc>https://btctranscripts.com/speakers/alexandra-moxin/</loc></url><url><loc>https://btctranscripts.com/speakers/alexei-ostrovskiy/</loc></url><url><loc>https://btctranscripts.com/speakers/alexei-zamyatin/</loc></url><url><loc>https://btctranscripts.com/speakers/alicia-bendhan/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/all-about-decentralized-trust/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/alternatives-to-block-size-as-aggregate-resource-limits/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/amiko-pay/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/analysis-of-dust-in-utxo-based-cryptocurrencies/</loc></url><url><loc>https://btctranscripts.com/speakers/andrew-miller/</loc></url><url><loc>https://btctranscripts.com/speakers/andrew-stone/</loc></url><url><loc>https://btctranscripts.com/speakers/andy-ofiesh/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/anonymous-atomic-locks/</loc></url><url><loc>https://btctranscripts.com/speakers/anton-yemelyanov/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/arbitrum-v2/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/archival-science/</loc></url><url><loc>https://btctranscripts.com/speakers/ari-juels/</loc></url><url><loc>https://btctranscripts.com/speakers/ariel-gabizon/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/armory-proof-of-payment/</loc></url><url><loc>https://btctranscripts.com/speakers/arthur-gervais/</loc></url><url><loc>https://btctranscripts.com/speakers/arvind-narayanan/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/arvind-narayanan/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/arvind-narayanan/"/></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/arvind-narayanan/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/asics/</loc></url><url><loc>https://btctranscripts.com/speakers/assimakis-kattis/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/atomic-multi-channel-updates/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/atomic-multi-channel-updates/</loc></url><url><loc>https://btctranscripts.com/tags/atomic-swaps/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/atomic-swaps/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/atomically-trading-with-roger-gambling-on-the-success-of-a-hard-fork/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/aurora-transparent-succinct-arguments-r1cs/</loc></url><url><loc>https://btctranscripts.com/speakers/austin-hill/</loc></url><url><loc>https://btctranscripts.com/speakers/aviv-zohar/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/backpackers/</loc></url><url><loc>https://btctranscripts.com/speakers/baker-marquart/</loc></url><url><loc>https://btctranscripts.com/speakers/balaji-srinivasan/</loc></url><url><loc>https://btctranscripts.com/speakers/barry-silbert/</loc></url><url><loc>https://btctranscripts.com/speakers/bart-suichies/</loc></url><url><loc>https://btctranscripts.com/speakers/ben-fisch/</loc></url><url><loc>https://btctranscripts.com/speakers/ben-maurer/</loc></url><url><loc>https://btctranscripts.com/speakers/benedikt-b%C3%BCnz/</loc><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/benedikt-b%C3%BCnz/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/benedikt-b%C3%BCnz/"/></url><url><loc>https://btctranscripts.com/speakers/benjamin-chan/</loc></url><url><loc>https://btctranscripts.com/speakers/benjamin-fisch/</loc><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/benjamin-fisch/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/benjamin-fisch/"/></url><url><loc>https://btctranscripts.com/speakers/benjamin-lawsky/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/"/></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/beyond-hashrate-majority-attacks/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/bip-securethebag/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/bip101-block-propagation-data-from-testnet/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/bip99-and-uncontroversial-hard-forks/</loc></url><url><loc>https://btctranscripts.com/bit-block-boom/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bit-block-boom/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bit-block-boom/"/></url><url><loc>https://btctranscripts.com/bit-block-boom/2019/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bit-block-boom/2019/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bit-block-boom/2019/"/></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-block-propagation-iblt-rusty-russell/</loc></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/</loc></url><url><loc>https://btctranscripts.com/london-bitcoin-devs/jnewbery-bitcoin-core-v0.17/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/bitcoin-data-structures/</loc></url><url><loc>https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-developers/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-failure-modes-and-the-role-of-the-lightning-network/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-financing-and-trading/</loc></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-load-spike-simulation/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-maximalism-dissected/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-maximalism-dissected/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-maximalism-dissected/"/></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/bitcoin-payment-economic-analysis/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/"/></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-protocol-development-panel/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-regulation-landscape/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/bitcoin-script/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/bitcoin-script-v2.0-and-strengthened-payment-channels/</loc></url><url><loc>https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-security/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/bitcoin-toolchain-unit-testing-and-deterministic-builds/</loc></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-without-internet/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/bitml/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/blind-signatures/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/block-rewards/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/block-structure-and-headers-utxos-merkle-trees-segwit-bip141/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/block-synchronization-time/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/blockchain-database-technology-in-a-global-context/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/blockchain-design-patterns/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/blockchain-hub/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/blockchain-testbed/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/blockchains-for-multiplayer-games/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/blocksci-platform/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/bloxroute/</loc></url><url><loc>https://btctranscripts.com/speakers/bobby-cho/</loc></url><url><loc>https://btctranscripts.com/speakers/bobby-lee/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/bolt-anonymous-payment-channels-for-decentralized-currencies/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/boomerang/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/bosminer/</loc></url><url><loc>https://btctranscripts.com/speakers/boyma-fahnbulleh/</loc></url><url><loc>https://btctranscripts.com/speakers/brad-peterson/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/braiding-the-blockchain/</loc></url><url><loc>https://btctranscripts.com/speakers/brandon-goodell/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/breaking-bitcoin-privacy/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/breaking-the-chain/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/breaking-wasabi/</loc></url><url><loc>https://btctranscripts.com/speakers/brett-seyler/</loc></url><url><loc>https://btctranscripts.com/speakers/brian-deery/</loc></url><url><loc>https://btctranscripts.com/speakers/brian-kelly/</loc></url><url><loc>https://btctranscripts.com/speakers/brian-klein/</loc></url><url><loc>https://btctranscripts.com/speakers/brian-n.-levine/</loc></url><url><loc>https://btctranscripts.com/speakers/brian-okeefe/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/brick-async-state-channels/</loc></url><url><loc>https://btctranscripts.com/speakers/bruce-fenton/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/bruce-fenton/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/bruce-fenton/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/build-scale-operate/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/building-bulletproofs/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/building-mimblewimble-and-grin/</loc></url><url><loc>https://btctranscripts.com/bit-block-boom/2019/building-vibrant-bitcoin-communities/</loc></url><url><loc>https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/bulletproofs/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/bulletproofs/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/casper/</loc></url><url><loc>https://btctranscripts.com/speakers/cathie-yun/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/celo-ultralight-client/</loc></url><url><loc>https://btctranscripts.com/misc/cftc-bitcoin/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/chainbreak/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/changes-without-unanimous-consent/</loc></url><url><loc>https://btctranscripts.com/speakers/charles-cascarilla/</loc></url><url><loc>https://btctranscripts.com/speakers/charles-guillemet/</loc></url><url><loc>https://btctranscripts.com/speakers/charlie-lee/</loc></url><url><loc>https://btctranscripts.com/speakers/chris-church/</loc></url><url><loc>https://btctranscripts.com/speakers/chris-odom/</loc></url><url><loc>https://btctranscripts.com/speakers/chris-tse/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/christopher-allen/</loc></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/clearing-and-settlement-for-global-financial-institutions/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/client-side-validation/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/clockwork-nonfrontrunning/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/coin-selection/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/coin-selection/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/coinscope-andrew-miller/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/collective-signing/</loc></url><url><loc>https://btctranscripts.com/speakers/come-plooy/</loc></url><url><loc>https://btctranscripts.com/verifiable-delay-functions/vdf-day-2019/comments-and-observations-about-timelocks-ron-rivest/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/compact-multi-signatures-for-smaller-blockchains/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/competitive-equilibria-staking-lending/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/competitive-fee-market-urgency/</loc></url><url><loc>https://btctranscripts.com/decentralized-financial-architecture-workshop/compliance-and-confidentiality/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/concurrency-and-privacy-with-payment-channel-networks/</loc></url><url><loc>https://btctranscripts.com/speakers/constance-choi/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/coordinated-upgrades/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/cory-fields/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/covenants/</loc></url><url><loc>https://btctranscripts.com/speakers/cristina-p%C3%A9rez-sol%C3%A0/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/cross-chain-deals-and-adversarial-commerce/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/cross-chain-swaps/</loc></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/cryptographic-hocus-pocus/</loc></url><url><loc>https://btctranscripts.com/grincon/2019/cryptography-audit/</loc></url><url><loc>https://btctranscripts.com/misc/ctv-bip-review-workshop/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/"/></url><url><loc>https://btctranscripts.com/speakers/dahlia-malkhi/</loc></url><url><loc>https://btctranscripts.com/grincon/2019/dan-boneh/</loc></url><url><loc>https://btctranscripts.com/speakers/daniel-cline/</loc></url><url><loc>https://btctranscripts.com/speakers/daniel-j.-bernstein/</loc></url><url><loc>https://btctranscripts.com/speakers/daniel-robinson/</loc></url><url><loc>https://btctranscripts.com/speakers/dave-levin/</loc></url><url><loc>https://btctranscripts.com/speakers/david-bailey/</loc></url><url><loc>https://btctranscripts.com/speakers/david-rutter/</loc></url><url><loc>https://btctranscripts.com/speakers/david-schwartz/</loc></url><url><loc>https://btctranscripts.com/speakers/david-tse/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/day-1-closing-panel/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/day-1-closing-panel/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/day-1-closing-panel/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/day-1-group-summaries/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/day-2-group-summaries/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/day-2-groups/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/day-2-opening/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/decentralization-through-game-theory/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/decentralized-oracles-tls/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/defense-of-bitcoin/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/marco-santori-delaware-initiative/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/deploying-blockchain-at-scale-lessons-from-the-internet-deployment-in-japan/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/deterministic-signatures-group/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/digital-signatures/</loc></url><url><loc>https://btctranscripts.com/misc/discreet-log-contracts/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/discreet-log-contracts/</loc></url><url><loc>https://btctranscripts.com/speakers/dmitry-meshkov/</loc></url><url><loc>https://btctranscripts.com/speakers/duc-v.-le/</loc></url><url><loc>https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/economic-risks/</loc></url><url><loc>https://btctranscripts.com/speakers/ed-felten/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/edgeplusplus/</loc></url><url><loc>https://btctranscripts.com/speakers/edward-budd/</loc></url><url><loc>https://btctranscripts.com/speakers/elaine-shi/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/elastic-block-caps/</loc></url><url><loc>https://btctranscripts.com/speakers/eleftherios-kokoris-kogias/</loc></url><url><loc>https://btctranscripts.com/speakers/eli-ben-sasson/</loc></url><url><loc>https://btctranscripts.com/speakers/emin-gun-sirer/</loc></url><url><loc>https://btctranscripts.com/speakers/eran-tromer/</loc></url><url><loc>https://btctranscripts.com/speakers/eric-martindale/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/erlay/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/ethcore/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/ethereum2/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/everything-is-broken/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/extensibility/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/extracting-seeds-from-hardware-wallets/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/"/></url><url><loc>https://btctranscripts.com/misc/failures-of-secret-key-cryptography/</loc></url><url><loc>https://btctranscripts.com/tags/fairness/</loc></url><url><loc>https://btctranscripts.com/speakers/fan-zhang/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/fast-difficulty-adjustment/</loc></url><url><loc>https://btctranscripts.com/tags/fee-management/</loc></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-fabrice-drouin-fee-management/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/peter-r/</loc></url><url><loc>https://btctranscripts.com/bit-block-boom/2019/fiat-money-fiat-food/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/flare-routing-in-lightning/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/flash-boys-v2/</loc></url><url><loc>https://btctranscripts.com/speakers/florian-maier/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/florian-maier/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/florian-maier/"/></url><url><loc>https://btctranscripts.com/speakers/florian-tramer/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/flyclient-super-light-clients-for-cryptocurrencies/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/formal-verification/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/forward-blocks/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/fractal/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/fraud-proofs-petertodd/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/fraud-proofs/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/fud-perceived-vs-real-bitcoin-risks/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/funding/</loc></url><url><loc>https://btctranscripts.com/misc/bitcoin-adam3us-fungibility-privacy/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/fungibility-and-scalability/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/fungibility-overview/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/future-of-blockchains/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/future-of-hardware-wallets/</loc></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/future-of-privacy-coins/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/future-of-regulation/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/future-of-spv-tech/</loc></url><url><loc>https://btctranscripts.com/decentralized-financial-architecture-workshop/g20-discussion/</loc></url><url><loc>https://btctranscripts.com/speakers/gavin-andresen/</loc></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/gavinandresen/</loc></url><url><loc>https://btctranscripts.com/speakers/georgia-avarikioti/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/ghostdag/</loc></url><url><loc>https://btctranscripts.com/speakers/giulio-malavolta/</loc></url><url><loc>https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/jihan-wu-google-tech-talk/</loc></url><url><loc>https://btctranscripts.com/texas-bitcoin-conference-2014/gox/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/graphene-set-reconciliation/</loc></url><url><loc>https://btctranscripts.com/speakers/gregory-neven/</loc></url><url><loc>https://btctranscripts.com/grincon/</loc></url><url><loc>https://btctranscripts.com/grincon/2019/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/group-updates/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/groups/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/groups-identity/</loc></url><url><loc>https://btctranscripts.com/speakers/guillermo-navarro-arribas/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/hackathon-intro/</loc></url><url><loc>https://btctranscripts.com/tags/halving/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/halving/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/halving/"/></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/handel-practical-multisig-aggregation/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/reorgs/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/hardware-accelerated-rsa/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/hardware-wallet-design-best-practices/</loc></url><url><loc>https://btctranscripts.com/speakers/harry-kalodner/</loc></url><url><loc>https://btctranscripts.com/speakers/henry-de-valence/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/hierarchical-deterministic-wallets/</loc></url><url><loc>https://btctranscripts.com/dallas-bitcoin-symposium/history-and-extrapolation/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/how-much-privacy-is-enough/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/how-tech-companies-are-embracing-blockchain-database-technology/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/how-to-charge-lightning/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/how-to-get-bitcoin/</loc></url><url><loc>https://btctranscripts.com/bit-block-boom/2019/how-to-meme-bitcoin-to-the-moon/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/how-to-mine-bitcoin-profitably/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/htlcs-considered-harmful/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/human-side-trust-workshop/</loc></url><url><loc>https://btctranscripts.com/speakers/hutchins/</loc></url><url><loc>https://btctranscripts.com/speakers/ian-lee/</loc></url><url><loc>https://btctranscripts.com/speakers/ian-miers/</loc></url><url><loc>https://btctranscripts.com/decentralized-financial-architecture-workshop/implications/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/maaku-panel/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2018/improving-bitcoin-smart-contract-efficiency/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/in-adversarial-environments-blockchains-dont-scale/</loc></url><url><loc>https://btctranscripts.com/tags/incentives/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/incentives-tradeoffs-transaction-selection-in-dag-based-protocols/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/incentivizing-payment-channel-watchtowers/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/internal-approaches-blockchain-database-technology-strategies/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/internet-of-value/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/intro/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/intro/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/intro/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/intro/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/intro/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/wendy/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/introduction/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/introduction/</loc></url><url><loc>https://btctranscripts.com/decentralized-financial-architecture-workshop/introduction/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/introduction/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/invertible-bloom-lookup-tables-and-weak-block-propagation-performance/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/investing-in-bitcoin-businesses/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/investing-in-bitcoin-businesses/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/investing-in-bitcoin-businesses/"/></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/ipfs/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/issues-impacting-block-size-proposals/</loc></url><url><loc>https://btctranscripts.com/speakers/ittai-abraham/</loc></url><url><loc>https://btctranscripts.com/speakers/ittay-eyal/</loc></url><url><loc>https://btctranscripts.com/speakers/j.-christopher-giancarlo/</loc></url><url><loc>https://btctranscripts.com/speakers/jacob-leshno/</loc></url><url><loc>https://btctranscripts.com/speakers/james-dangelo/</loc></url><url><loc>https://btctranscripts.com/speakers/james-gatto/</loc></url><url><loc>https://btctranscripts.com/speakers/james-hilliard/</loc></url><url><loc>https://btctranscripts.com/speakers/james-smith/</loc></url><url><loc>https://btctranscripts.com/speakers/jan-capek/</loc></url><url><loc>https://btctranscripts.com/speakers/jarl-fransson/</loc></url><url><loc>https://btctranscripts.com/speakers/jason-potts/</loc></url><url><loc>https://btctranscripts.com/speakers/jason-teutsch/</loc></url><url><loc>https://btctranscripts.com/speakers/jeff-garzik/</loc></url><url><loc>https://btctranscripts.com/speakers/jeremy-allaire/</loc></url><url><loc>https://btctranscripts.com/speakers/jeremy-wilson/</loc></url><url><loc>https://btctranscripts.com/speakers/jerry-brito/</loc></url><url><loc>https://btctranscripts.com/speakers/jerry-cuomo/</loc></url><url><loc>https://btctranscripts.com/speakers/jihan-wu/</loc></url><url><loc>https://btctranscripts.com/speakers/jinglan-wang/</loc></url><url><loc>https://btctranscripts.com/speakers/joachim-breitner/</loc></url><url><loc>https://btctranscripts.com/speakers/joachim-neu/</loc></url><url><loc>https://btctranscripts.com/speakers/joe-gerber/</loc></url><url><loc>https://btctranscripts.com/speakers/john-woeltz/</loc></url><url><loc>https://btctranscripts.com/speakers/johnson-lau/</loc></url><url><loc>https://btctranscripts.com/speakers/joi-ito/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/joi-ito/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/joinmarket/</loc></url><url><loc>https://btctranscripts.com/speakers/jonathan-bier/</loc></url><url><loc>https://btctranscripts.com/speakers/jonathan-harvey-buschel/</loc></url><url><loc>https://btctranscripts.com/speakers/jonathan-tomim/</loc></url><url><loc>https://btctranscripts.com/speakers/jordi-herrera/</loc></url><url><loc>https://btctranscripts.com/speakers/jorge-tim%C3%B3n/</loc></url><url><loc>https://btctranscripts.com/speakers/joshua-lim/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/journal-review/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/journals-as-clubs/</loc></url><url><loc>https://btctranscripts.com/speakers/jun-muai/</loc></url><url><loc>https://btctranscripts.com/speakers/justin-camarena/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/jute-braiding/</loc></url><url><loc>https://btctranscripts.com/speakers/juthica-chou/</loc></url><url><loc>https://btctranscripts.com/speakers/kanta-matsuura/</loc></url><url><loc>https://btctranscripts.com/speakers/karl-floersch/</loc></url><url><loc>https://btctranscripts.com/speakers/katherine-wu/</loc></url><url><loc>https://btctranscripts.com/speakers/kathleen-breitman/</loc></url><url><loc>https://btctranscripts.com/speakers/kenji-saito/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote-gavin-andresen/</loc></url><url><loc>https://btctranscripts.com/speakers/kim-hamilton-duffy/</loc></url><url><loc>https://btctranscripts.com/speakers/kolya-sakhno/</loc></url><url><loc>https://btctranscripts.com/speakers/kris-merkel/</loc></url><url><loc>https://btctranscripts.com/speakers/kristov-atlas/</loc></url><url><loc>https://btctranscripts.com/speakers/lata-varghese/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/law-enforcement-and-anonymous-transactions/</loc></url><url><loc>https://btctranscripts.com/speakers/lawrence-h.-summers/</loc></url><url><loc>https://btctranscripts.com/speakers/leen-alshenibr/</loc></url><url><loc>https://btctranscripts.com/grincon/2019/lehnberg/</loc></url><url><loc>https://btctranscripts.com/speakers/lei-yang/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/lessons-for-bitcoin-from-150-years-of-decentralization/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/libbitcoin/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/libra/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/libra-blockchain-intro/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/lightning/</loc></url><url><loc>https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-24-fabrice-drouin-the-transfer-layer/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/lightning-network/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/lightning-network/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/lightning-network-layer-by-layer/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/lightning-network-routing/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/lightning-network-routing-security/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/lightning-network-security-panel/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/lightning-network-sphinx-and-onion-routing/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/lightning-network-topology/</loc></url><url><loc>https://btctranscripts.com/building-on-bitcoin/2018/lightning-wallet-design/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/linking-anonymous-transactions/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/links/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/linq/</loc></url><url><loc>https://btctranscripts.com/speakers/lloyd-fournier/</loc></url><url><loc>https://btctranscripts.com/speakers/lous-parker/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/lower-bounds-limits-plasma/</loc></url><url><loc>https://btctranscripts.com/speakers/madars-virza/</loc></url><url><loc>https://btctranscripts.com/speakers/mahdi-zamani/</loc></url><url><loc>https://btctranscripts.com/speakers/mahnush-movahedi/</loc></url><url><loc>https://btctranscripts.com/speakers/manu-drijvers/</loc></url><url><loc>https://btctranscripts.com/speakers/marco-falke/</loc></url><url><loc>https://btctranscripts.com/speakers/marco-santori/</loc></url><url><loc>https://btctranscripts.com/speakers/marek-olszewski/</loc></url><url><loc>https://btctranscripts.com/speakers/mark-friedenbach/</loc></url><url><loc>https://btctranscripts.com/speakers/mark-wetjen/</loc></url><url><loc>https://btctranscripts.com/speakers/marshall-long/</loc></url><url><loc>https://btctranscripts.com/speakers/martin-lundfall/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/matsuo/</loc></url><url><loc>https://btctranscripts.com/speakers/matt-weinberg/</loc></url><url><loc>https://btctranscripts.com/speakers/matt-weiss/</loc></url><url><loc>https://btctranscripts.com/speakers/matteo-maffei/</loc></url><url><loc>https://btctranscripts.com/speakers/matthew-mezinskis/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/matthew-mezinskis/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/matthew-mezinskis/"/></url><url><loc>https://btctranscripts.com/speakers/maurice-herlihy/</loc></url><url><loc>https://btctranscripts.com/speakers/max-keidun/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/max-keidun/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/max-keidun/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/measuring-network-maximum-sustained-transaction-throughput/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/mechanism-design/</loc></url><url><loc>https://btctranscripts.com/speakers/megan-chen/</loc></url><url><loc>https://btctranscripts.com/speakers/melanie-shapiro/</loc></url><url><loc>https://btctranscripts.com/speakers/meltem-demirors/</loc></url><url><loc>https://btctranscripts.com/speakers/meni-rosenfeld/</loc></url><url><loc>https://btctranscripts.com/decentralized-financial-architecture-workshop/metadata/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/metadata/</loc></url><url><loc>https://btctranscripts.com/speakers/michael-more/</loc></url><url><loc>https://btctranscripts.com/speakers/michael-straka/</loc></url><url><loc>https://btctranscripts.com/speakers/michael-walfish/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/microchains/</loc></url><url><loc>https://btctranscripts.com/speakers/mikael-dubrovsky/</loc></url><url><loc>https://btctranscripts.com/speakers/mike-schmidt/</loc></url><url><loc>https://btctranscripts.com/speakers/miles-carlsten/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/mimblewimble/</loc></url><url><loc>https://btctranscripts.com/misc/mimblewimble-podcast/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/mining-firmware-security/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/miniscript/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2018/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/mixicles/</loc></url><url><loc>https://btctranscripts.com/speakers/mooly-sagiv/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/more-core-devs/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/motoko-language/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/multi-hop-locks/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/multi-party-channels-in-the-utxo-model-challenges-and-opportunities/</loc></url><url><loc>https://btctranscripts.com/speakers/nathan-wilcox/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/near-misses/</loc></url><url><loc>https://btctranscripts.com/speakers/neha-narula/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/network-topologies-and-their-scalability-implications-on-decentralized-off-chain-networks/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/neutrino/</loc></url><url><loc>https://btctranscripts.com/speakers/nic-carter/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/nic-carter/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/nic-carter/"/></url><url><loc>https://btctranscripts.com/speakers/nick-spooner/</loc></url><url><loc>https://btctranscripts.com/speakers/nick-szabo/</loc></url><url><loc>https://btctranscripts.com/speakers/nicolas-gailly/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/no-incentive/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/non-currency-applications/</loc></url><url><loc>https://btctranscripts.com/speakers/oleg-andreev/</loc></url><url><loc>https://btctranscripts.com/speakers/omer-shlomovits/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/omniledger/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/on-the-security-and-performance-of-proof-of-work-blockchains/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/onion-routing-in-lightning/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/eric-martindale/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/opening/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/opening/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/opening/"/></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/opening-remarks/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/opening-remarks/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/opening-remarks-state-of-blockchain-ryan-selkis/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/optimistic-vm/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/optimizing-fee-estimation-via-mempool-state/</loc></url><url><loc>https://btctranscripts.com/speakers/or-sattath/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/overview-bitcoin-core-architecture/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/overview-of-bips-necessary-for-lightning/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/overview-of-security-concerns/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/edgeplusplus/p2p-john-newbery/</loc></url><url><loc>https://btctranscripts.com/tags/p2pkh/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/p2pkh-p2wpkh-p2h-p2wsh/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/partially-signed-bitcoin-transactions-bip174/</loc></url><url><loc>https://btctranscripts.com/speakers/patricia-estevao/</loc></url><url><loc>https://btctranscripts.com/speakers/patrick-mccorry/</loc></url><url><loc>https://btctranscripts.com/speakers/patrick-murck/</loc></url><url><loc>https://btctranscripts.com/speakers/patrick-strateman/</loc></url><url><loc>https://btctranscripts.com/speakers/paul-vigna/</loc></url><url><loc>https://btctranscripts.com/speakers/pavel-prihodko/</loc></url><url><loc>https://btctranscripts.com/speakers/pavol-rusnak/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/pavol-rusnak/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/pavol-rusnak/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/payment-channel-recovery-with-seeds/</loc></url><url><loc>https://btctranscripts.com/speakers/pedro-moreno-sanchez/</loc></url><url><loc>https://btctranscripts.com/decentralized-financial-architecture-workshop/perspective/</loc></url><url><loc>https://btctranscripts.com/speakers/peter-rizun/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/petertodd-dex/</loc></url><url><loc>https://btctranscripts.com/speakers/phillip-hoenisch/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/physical-assets/</loc></url><url><loc>https://btctranscripts.com/speakers/pierre-roberge/</loc></url><url><loc>https://btctranscripts.com/speakers/pindar-wong/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/plasma-cash/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/playing-with-fire-adjusting-bitcoin-block-subsidy/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/plonk/</loc></url><url><loc>https://btctranscripts.com/tags/post-quantum/</loc></url><url><loc>https://btctranscripts.com/speakers/prakash-santhana/</loc></url><url><loc>https://btctranscripts.com/speakers/pramod-viswanath/</loc></url><url><loc>https://btctranscripts.com/speakers/prastudy-fauzi/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/present-and-future-tech-challenges-in-bitcoin/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/prism/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/prism/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/privacy-and-fungibility/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/privacy-anonymity-and-identity-group/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/privacy-concepts/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/privacy-preserving-multi-hop-locks/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/privacy-preserving-smart-contracts/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/private-information-retrieval/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/proof-of-necessary-work/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/proof-of-necessary-work/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/proof-of-stake/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/proof-of-verification-for-proof-of-work/</loc></url><url><loc>https://btctranscripts.com/tags/proof-of-stake/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/proofs-of-space-and-replication/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/protecting-yourself-and-your-business/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/provenance-groups/</loc></url><url><loc>https://btctranscripts.com/speakers/quentin-le-sceller/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/quisquis/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/r3/</loc></url><url><loc>https://btctranscripts.com/speakers/ranjit-kumaresan/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/reaching-consensus-open-blockchains/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/rebalancing-lightning/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/rebroadcasting/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/redesigning-bitcoin-fee-market/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/relay-network/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/reproducible-builds/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/reproducible-lightning-benchmark/</loc></url><url><loc>https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/research-and-development-goals/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/reworking-bitcoin-core-p2p-code-for-robustness-and-event-driven/</loc></url><url><loc>https://btctranscripts.com/speakers/riccardo-casatta/</loc></url><url><loc>https://btctranscripts.com/speakers/richard-myers/</loc></url><url><loc>https://btctranscripts.com/speakers/robert-schwinker/</loc></url><url><loc>https://btctranscripts.com/speakers/rodrigo-buenaventura/</loc></url><url><loc>https://btctranscripts.com/speakers/roman-snitko/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/roman-snitko/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/roman-snitko/"/></url><url><loc>https://btctranscripts.com/speakers/ron-rivest/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/rootstock/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-1/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-2/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/royalties/</loc></url><url><loc>https://btctranscripts.com/speakers/ryan-selkis/</loc></url><url><loc>https://btctranscripts.com/misc/safecurves-choosing-safe-curves-for-elliptic-curve-cryptography-2014/</loc></url><url><loc>https://btctranscripts.com/speakers/saifedean-ammous/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/saifedean-ammous/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/saifedean-ammous/"/></url><url><loc>https://btctranscripts.com/speakers/sandra-ro/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/peter-todd-scalability/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/scalable-rsa-modulus-generation/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/scaling-debate-is-a-proxy-battle-over-centralization/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/scaling-oblivious-read-write/</loc></url><url><loc>https://btctranscripts.com/speakers/scott-manuel/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/scriptless-ecdsa/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/scriptless-lotteries/</loc></url><url><loc>https://btctranscripts.com/grincon/2019/scriptless-scripts-with-mimblewimble/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/scripts-general-and-simple/</loc></url><url><loc>https://btctranscripts.com/speakers/sean-neville/</loc></url><url><loc>https://btctranscripts.com/speakers/sebasti%C3%A1n-reca/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/secure-fountain-architecture/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/security-and-usability/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/security-assumptions/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/security-attacks-decentralized-mining-pools/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/security-of-diminishing-block-subsidy/</loc></url><url><loc>https://btctranscripts.com/tags/segregated-witness/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/segregated-witness-and-its-impact-on-scalability/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/segwit-lessons-learned/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/self-reproducing-coins-as-universal-turing-machine/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/self-sovereign-identity-ideology-and-architecture/</loc></url><url><loc>https://btctranscripts.com/breaking-bitcoin/2019/selfish-mining/</loc></url><url><loc>https://btctranscripts.com/speakers/sergej-kotliar/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/sergej-kotliar/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sergej-kotliar/"/></url><url><loc>https://btctranscripts.com/speakers/sergio-lerner/</loc></url><url><loc>https://btctranscripts.com/speakers/shafi-goldwasser/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/shamir-secret-sharing/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/sharding-the-blockchain/</loc></url><url><loc>https://btctranscripts.com/speakers/shayan-eskandari/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/siacoin/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/matt-corallo-sidechains/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/sidechains/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/sidechains-and-federation-models/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/sighash-noinput/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/signet/</loc></url><url><loc>https://btctranscripts.com/speakers/simon-peffers/</loc></url><url><loc>https://btctranscripts.com/speakers/slava-zhigulin/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/smart-contract-bug-hunting/</loc></url><url><loc>https://btctranscripts.com/w3-blockchain-workshop-2016/smart-signatures/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/snarks/</loc></url><url><loc>https://btctranscripts.com/simons-institute/snarks-and-their-practical-applications/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/solving-data-availability-attacks-using-coded-merkle-trees/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/solving-the-blockchain-trilemma/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/some-questions-for-bitcoiners/</loc></url><url><loc>https://btctranscripts.com/speakers/soumya-basu/</loc></url><url><loc>https://btctranscripts.com/dallas-bitcoin-symposium/sound-money/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/spork-probabilistic-bitcoin-soft-forks/</loc></url><url><loc>https://btctranscripts.com/speakers/sreeram-kannan/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/stark-dex/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/stark-for-developers/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/state-channels/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/state-of-blockchain/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/state-of-cryptography/</loc></url><url><loc>https://btctranscripts.com/bit-block-boom/2019/state-of-multisig/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/statechains/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/statechains/</loc></url><url><loc>https://btctranscripts.com/speakers/stefan-dziembowski/</loc></url><url><loc>https://btctranscripts.com/speakers/stefano-lande/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/andrew-miller/</loc></url><url><loc>https://btctranscripts.com/speakers/stephanie-hurder/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/streamlet/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/stroem-payment-channels/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/survey-of-progress-in-zero-knowledge-proofs-towards-trustless-snarks/</loc></url><url><loc>https://btctranscripts.com/speakers/swanand-kadhe/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/swashbuckling-safety-training/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/sybilquorum/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/systematizing-knowledge/</loc></url><url><loc>https://btctranscripts.com/speakers/taariq-lewis/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/taproot/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tokyo-2018/edgedevplusplus/taproot-and-graftroot/</loc></url><url><loc>https://btctranscripts.com/bit-block-boom/2019/taproot-schnorr-soft-fork/</loc></url><url><loc>https://btctranscripts.com/texas-bitcoin-conference-2014/</loc></url><url><loc>https://btctranscripts.com/dallas-bitcoin-symposium/texas-energy-market/</loc></url><url><loc>https://btctranscripts.com/speakers/thang-n.-dinh/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/the-b-foundation/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-b-foundation/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-b-foundation/"/></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/the-bitcoin-standard/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-bitcoin-standard/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-bitcoin-standard/"/></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/"/></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/"/></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-lightning/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-lightning/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-lightning/"/></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/the-reserve-currency-fallacy/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-reserve-currency-fallacy/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-reserve-currency-fallacy/"/></url><url><loc>https://btctranscripts.com/bit-block-boom/2019/there-can-only-be-one/</loc></url><url><loc>https://btctranscripts.com/speakers/thomas-eizinger/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/threshold-scriptless-scripts/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/arvind-narayanan/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/threshold-signatures/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/thundercore/</loc></url><url><loc>https://btctranscripts.com/speakers/tim-roughgarden/</loc></url><url><loc>https://btctranscripts.com/tags/timestamping/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/timestamping/</loc></url><url><loc>https://btctranscripts.com/simons-institute/todo/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/token-journal/</loc></url><url><loc>https://btctranscripts.com/speakers/tone-vays/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/tone-vays/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/tone-vays/"/></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/topics/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/trading-panel/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/trading-panel/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/trading-panel/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/transaction-fee-estimation/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/transparent-dishonesty/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2020/transparent-snarks-from-dark-compilers/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/trust-and-blockchain-marketplaces/</loc></url><url><loc>https://btctranscripts.com/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/"/></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/tumblebit/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/txprobe/</loc></url><url><loc>https://btctranscripts.com/speakers/udi-wertheimer/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/milan-2016/unlinkable-outsourced-channel-monitoring/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/upgrading-capital-markets-for-digital-asset-trading/</loc></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/urkel-trees/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/using-the-chain-for-what-chains-are-good-for/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2019/utreexo/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/validation-cost-metric/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/montreal-2015/validation-costs/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/valueshuffle-mixing-confidential-transactions/</loc></url><url><loc>https://btctranscripts.com/speakers/vasily-kharin/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/visa-chain/</loc></url><url><loc>https://btctranscripts.com/speakers/vitalik-buterin/</loc></url><url><loc>https://btctranscripts.com/speakers/vivek-bagaria/</loc></url><url><loc>https://btctranscripts.com/speakers/vlad-zamfir/</loc></url><url><loc>https://btctranscripts.com/speakers/vortex/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/vortex/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/vortex/"/></url><url><loc>https://btctranscripts.com/stanford-blockchain-conference/2019/vulnerability-detection/</loc></url><url><loc>https://btctranscripts.com/speakers/warren-togami/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/stanford-2017/weak-signal-radio-communications-for-bitcoin-network-resilience/</loc></url><url><loc>https://btctranscripts.com/rebooting-web-of-trust/2019-prague/weak-signals/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/welcome/</loc></url><url><loc>https://btctranscripts.com/speakers/wendy-seltzer/</loc></url><url><loc>https://btctranscripts.com/speakers/whalepanda/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/whalepanda/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/whalepanda/"/></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/pindar-wong/</loc></url><url><loc>https://btctranscripts.com/coindesk-consensus-2016/why-bitcoin-still-matters/</loc></url><url><loc>https://btctranscripts.com/magicalcryptoconference/2019/why-block-sizes-should-not-be-too-big/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/why-miners-will-not-voluntarily-individually-produce-smaller-blocks/</loc></url><url><loc>https://btctranscripts.com/speakers/william-mougayar/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/work-in-progress/</loc></url><url><loc>https://btctranscripts.com/speakers/yonatan-sompolinsky/</loc></url><url><loc>https://btctranscripts.com/speakers/yorke-rhodes/</loc></url><url><loc>https://btctranscripts.com/speakers/yurii-rashkovskii/</loc><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/yurii-rashkovskii/"/><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/yurii-rashkovskii/"/></url><url><loc>https://btctranscripts.com/speakers/yuta-takanashi/</loc></url><url><loc>https://btctranscripts.com/speakers/yuval-kogman/</loc></url><url><loc>https://btctranscripts.com/simons-institute/zero-knowledge-probabilistic-proof-systems/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/hong-kong-2015/zero-knowledge-proofs-for-bitcoin-scalability-and-beyond/</loc></url><url><loc>https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/zerocash-and-zero-knowledge-succint-arguments-of-knowledge-libsnark/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/zerolink-sudoku/</loc></url><url><loc>https://btctranscripts.com/speakers/zeta-avarikioti/</loc></url><url><loc>https://btctranscripts.com/cryptoeconomic-systems/2019/zksharks/</loc></url><url><loc>https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/zkvm/</loc></url></urlset> \ No newline at end of file diff --git a/es/sitemap.xml b/es/sitemap.xml index ad3f0f8f65..2ec28ff705 100644 --- a/es/sitemap.xml +++ b/es/sitemap.xml @@ -1 +1 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml"><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/"/></url><url><loc>https://btctranscripts.com/es/tags/bitcoin-core/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/bitcoin-core/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/bitcoin-core/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/bitcoin-core-dev-tech/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/"/></url><url><loc>https://btctranscripts.com/es/categories/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/categories/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/"/></url><url><loc>https://btctranscripts.com/es/categories/core-dev-tech/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/core-dev-tech/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/core-dev-tech/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/core-dev-tech/"/></url><url><loc>https://btctranscripts.com/es/tags/p2p/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/p2p/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/p2p/"/></url><url><loc>https://btctranscripts.com/es/tags/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/"/></url><url><loc>https://btctranscripts.com/es/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/"/></url><url><loc>https://btctranscripts.com/es/speakers/aaron-van-wirdum/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/aaron-van-wirdum/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/aaron-van-wirdum/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-magazine/2021-04-23-taproot-activation-update/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/2021-04-23-taproot-activation-update/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/2021-04-23-taproot-activation-update/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-magazine/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/"/></url><url><loc>https://btctranscripts.com/es/categories/podcast/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/podcast/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/podcast/"/></url><url><loc>https://btctranscripts.com/es/speakers/sjors-provoost/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sjors-provoost/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/sjors-provoost/"/></url><url><loc>https://btctranscripts.com/es/speakers/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/speakers/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/"/></url><url><loc>https://btctranscripts.com/es/tags/taproot/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/taproot/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/taproot/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/</loc><lastmod>2021-03-12T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/</loc><lastmod>2021-02-26T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-design/</loc><lastmod>2020-08-20T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-design/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-design/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-design/2020-08-20-bitcoin-core-gui/</loc><lastmod>2020-08-20T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-design/2020-08-20-bitcoin-core-gui/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-design/2020-08-20-bitcoin-core-gui/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/</loc><lastmod>2020-08-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/"/></url><url><loc>https://btctranscripts.com/es/speakers/eric-lombrozo/</loc><lastmod>2020-08-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/eric-lombrozo/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/eric-lombrozo/"/></url><url><loc>https://btctranscripts.com/es/speakers/luke-dashjr/</loc><lastmod>2020-08-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/luke-dashjr/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/luke-dashjr/"/></url><url><loc>https://btctranscripts.com/es/tags/soft-fork/</loc><lastmod>2020-08-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/soft-fork/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/soft-fork/"/></url><url><loc>https://btctranscripts.com/es/speakers/andreas-antonopoulos/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/andreas-antonopoulos/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/andreas-antonopoulos/"/></url><url><loc>https://btctranscripts.com/es/andreas-antonopoulos/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/"/></url><url><loc>https://btctranscripts.com/es/tags/cartera/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/"/></url><url><loc>https://btctranscripts.com/es/tags/seguridad/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/austin-bitcoin-developers/</loc><lastmod>2020-02-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/"/></url><url><loc>https://btctranscripts.com/es/categories/reuni%C3%B3n/</loc><lastmod>2020-02-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/</loc><lastmod>2020-02-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/advancing-bitcoin/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2020/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/"/></url><url><loc>https://btctranscripts.com/es/speakers/andrew-poelstra/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/andrew-poelstra/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/andrew-poelstra/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/andrew-poelstra/"/></url><url><loc>https://btctranscripts.com/es/speakers/fabian-jahr/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/fabian-jahr/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/fabian-jahr/"/></url><url><loc>https://btctranscripts.com/es/speakers/kalle-alm/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/kalle-alm/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/kalle-alm/"/></url><url><loc>https://btctranscripts.com/es/tags/miniscript/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/miniscript/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/miniscript/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/miniscript/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/"/></url><url><loc>https://btctranscripts.com/es/categories/taller/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/"/></url><url><loc>https://btctranscripts.com/es/tags/testing/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/testing/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/testing/"/></url><url><loc>https://btctranscripts.com/es/speakers/andrew-chow/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/andrew-chow/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/andrew-chow/"/></url><url><loc>https://btctranscripts.com/es/speakers/antoine-riard/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/antoine-riard/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/antoine-riard/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/"/></url><url><loc>https://btctranscripts.com/es/categories/conferencia/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/tags/lightning/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/lightning/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/lightning/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/lightning/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/lightning/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/"/></url><url><loc>https://btctranscripts.com/es/tags/schnorr/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/schnorr/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/schnorr/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/schnorr/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/"/></url><url><loc>https://btctranscripts.com/es/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/</loc><lastmod>2020-01-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/"/></url><url><loc>https://btctranscripts.com/es/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/</loc><lastmod>2019-11-19T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/"/></url><url><loc>https://btctranscripts.com/es/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/</loc><lastmod>2019-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2019/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2019/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2019/"/></url><url><loc>https://btctranscripts.com/es/tags/cartera-hardware/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/"/></url><url><loc>https://btctranscripts.com/es/speakers/rodolfo-novak/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/rodolfo-novak/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/rodolfo-novak/"/></url><url><loc>https://btctranscripts.com/es/tags/hardware-wallet/</loc><lastmod>2019-08-22T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/hardware-wallet/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/hardware-wallet/"/></url><url><loc>https://btctranscripts.com/es/tags/investigaci%C3%B3n/</loc><lastmod>2019-08-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/tags/multisig/</loc><lastmod>2019-08-22T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/multisig/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/multisig/"/></url><url><loc>https://btctranscripts.com/es/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/</loc><lastmod>2019-08-22T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/"/></url><url><loc>https://btctranscripts.com/es/tags/wallet/</loc><lastmod>2019-08-22T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/wallet/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/wallet/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/wallet/"/></url><url><loc>https://btctranscripts.com/es/speakers/0xb10c/</loc><lastmod>2019-08-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/tags/history/</loc><lastmod>2019-08-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/misc/</loc><lastmod>2019-08-04T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/misc/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/misc/"/></url><url><loc>https://btctranscripts.com/es/misc/2019-08-04-incomplete_history/</loc><lastmod>2019-08-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/austin-bitcoin-developers/2019-06-29-hardware-wallets/</loc><lastmod>2019-06-29T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-06-29-hardware-wallets/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-06-29-hardware-wallets/"/></url><url><loc>https://btctranscripts.com/es/speakers/stepan-snigirev/</loc><lastmod>2019-06-29T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/stepan-snigirev/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/stepan-snigirev/"/></url><url><loc>https://btctranscripts.com/es/chaincode-labs/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/chaincode-labs/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/chaincode-labs/"/></url><url><loc>https://btctranscripts.com/es/speakers/christian-decker/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/christian-decker/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/christian-decker/"/></url><url><loc>https://btctranscripts.com/es/tags/eltoo/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/eltoo/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/eltoo/"/></url><url><loc>https://btctranscripts.com/es/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/"/></url><url><loc>https://btctranscripts.com/es/chaincode-labs/chaincode-residency/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/chaincode-labs/chaincode-residency/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/chaincode-labs/chaincode-residency/"/></url><url><loc>https://btctranscripts.com/es/categories/residency/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/residency/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/residency/"/></url><url><loc>https://btctranscripts.com/es/tags/cryptography/</loc><lastmod>2019-06-17T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/cryptography/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/cryptography/"/></url><url><loc>https://btctranscripts.com/es/speakers/john-newbery/</loc><lastmod>2019-06-17T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/john-newbery/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/john-newbery/"/></url><url><loc>https://btctranscripts.com/es/tags/security/</loc><lastmod>2019-06-17T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/security/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/security/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/security/"/></url><url><loc>https://btctranscripts.com/es/chaincode-labs/chaincode-residency/2019-06-17-newbery-security-models/</loc><lastmod>2019-06-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/speakers/jonas-nick/</loc><lastmod>2019-06-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/jonas-nick/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/jonas-nick/"/></url><url><loc>https://btctranscripts.com/es/lets-talk-bitcoin-podcast/</loc><lastmod>2019-06-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lets-talk-bitcoin-podcast/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/lets-talk-bitcoin-podcast/"/></url><url><loc>https://btctranscripts.com/es/speakers/pieter-wuille/</loc><lastmod>2019-06-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/pieter-wuille/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/pieter-wuille/"/></url><url><loc>https://btctranscripts.com/es/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/</loc><lastmod>2019-06-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/</loc><lastmod>2019-06-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/</loc><lastmod>2019-06-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/"/></url><url><loc>https://btctranscripts.com/es/speakers/jeremy-rubin/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/jeremy-rubin/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/jeremy-rubin/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/jeremy-rubin/"/></url><url><loc>https://btctranscripts.com/es/speakers/olaoluwa-osuntokun/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/olaoluwa-osuntokun/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/olaoluwa-osuntokun/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/"/></url><url><loc>https://btctranscripts.com/es/tags/soft-forks/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/</loc><lastmod>2019-06-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/"/></url><url><loc>https://btctranscripts.com/es/tags/capa-2/</loc><lastmod>2019-05-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/</loc><lastmod>2019-05-27T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/"/></url><url><loc>https://btctranscripts.com/es/speakers/paul-sztorc/</loc><lastmod>2019-05-27T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/paul-sztorc/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/paul-sztorc/"/></url><url><loc>https://btctranscripts.com/es/tags/sidechains/</loc><lastmod>2019-05-27T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/sidechains/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/sidechains/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2019/</loc><lastmod>2019-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2019/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2019/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/</loc><lastmod>2019-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/"/></url><url><loc>https://btctranscripts.com/es/speakers/matt-corallo/</loc><lastmod>2019-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/matt-corallo/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/matt-corallo/"/></url><url><loc>https://btctranscripts.com/es/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/</loc><lastmod>2019-02-01T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/"/></url><url><loc>https://btctranscripts.com/es/tags/validaci%C3%B3n/</loc><lastmod>2019-02-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/tags/consenso/</loc><lastmod>2018-10-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/</loc><lastmod>2018-10-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/"/></url><url><loc>https://btctranscripts.com/es/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/</loc><lastmod>2018-10-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/</loc><lastmod>2018-03-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/</loc><lastmod>2018-03-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/</loc><lastmod>2018-03-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/"/></url><url><loc>https://btctranscripts.com/es/tags/covenios/</loc><lastmod>2018-03-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/</loc><lastmod>2018-03-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/"/></url><url><loc>https://btctranscripts.com/es/tags/criptograf%C3%ADa/</loc><lastmod>2018-03-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/tags/firmas/</loc><lastmod>2018-03-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/</loc><lastmod>2018-03-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/"/></url><url><loc>https://btctranscripts.com/es/tags/ux/</loc><lastmod>2018-03-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/ux/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/ux/"/></url><url><loc>https://btctranscripts.com/es/misc/2017-09-20-ray-dillinger-if-id-known/</loc><lastmod>2017-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/speakers/ray-dillinger/</loc><lastmod>2017-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/</loc><lastmod>2017-09-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/</loc><lastmod>2017-09-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/</loc><lastmod>2017-09-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/</loc><lastmod>2017-09-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/"/></url><url><loc>https://btctranscripts.com/es/tags/privacidad/</loc><lastmod>2017-09-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/speakers/arvind-narayanan/</loc><lastmod>2017-08-29T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/arvind-narayanan/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/arvind-narayanan/"/></url><url><loc>https://btctranscripts.com/es/misc/2017-08-29-bitcoin-academic-pedigree/</loc><lastmod>2017-08-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/speakers/jeremy-clark/</loc><lastmod>2017-08-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/misc/2016-11-13-lopp-bitcoin-security-model/</loc><lastmod>2016-11-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/speakers/jameson-lopp/</loc><lastmod>2016-11-13T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/jameson-lopp/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/jameson-lopp/"/></url><url><loc>https://btctranscripts.com/es/greg-maxwell/2016-01-29-a-trip-to-the-moon/</loc><lastmod>2016-01-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/speakers/greg-maxwell/</loc><lastmod>2016-01-29T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/greg-maxwell/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/greg-maxwell/"/></url><url><loc>https://btctranscripts.com/es/greg-maxwell/</loc><lastmod>2016-01-29T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/greg-maxwell/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/greg-maxwell/"/></url><url><loc>https://btctranscripts.com/es/tags/scaling/</loc><lastmod>2016-01-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/</loc><lastmod>2014-10-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/"/></url><url><loc>https://btctranscripts.com/es/bit-block-boom/2019/accumulating-bitcoin/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bit-block-boom/2019/accumulating-bitcoin/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bit-block-boom/2019/accumulating-bitcoin/"/></url><url><loc>https://btctranscripts.com/es/speakers/alena-vranova/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/alena-vranova/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/alena-vranova/"/></url><url><loc>https://btctranscripts.com/es/speakers/alex-petrov/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/alex-petrov/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/alex-petrov/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/opening/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/opening/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/opening/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/"/></url><url><loc>https://btctranscripts.com/es/bit-block-boom/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bit-block-boom/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bit-block-boom/"/></url><url><loc>https://btctranscripts.com/es/bit-block-boom/2019/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bit-block-boom/2019/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bit-block-boom/2019/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-github/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-github/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-github/"/></url><url><loc>https://btctranscripts.com/es/speakers/bruce-fenton/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/bruce-fenton/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/bruce-fenton/"/></url><url><loc>https://btctranscripts.com/es/speakers/bryan-bishop/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/bryan-bishop/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/bryan-bishop/"/></url><url><loc>https://btctranscripts.com/es/categories/conference/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/conference/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/conference/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/conference/"/></url><url><loc>https://btctranscripts.com/es/categories/conferenciae/</loc></url><url><loc>https://btctranscripts.com/es/tags/contratos-inteligentes/</loc></url><url><loc>https://btctranscripts.com/es/tags/custodia/</loc></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-custody/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-custody/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-custody/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/the-bitcoin-standard/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-bitcoin-standard/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-bitcoin-standard/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-lightning/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-lightning/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-lightning/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-maximalism-dissected/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-maximalism-dissected/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-maximalism-dissected/"/></url><url><loc>https://btctranscripts.com/es/speakers/elizabeth-stark/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/elizabeth-stark/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/elizabeth-stark/"/></url><url><loc>https://btctranscripts.com/es/speakers/eric-voskuil/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/eric-voskuil/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/eric-voskuil/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/"/></url><url><loc>https://btctranscripts.com/es/tags/fees/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/fees/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/fees/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/fees/"/></url><url><loc>https://btctranscripts.com/es/speakers/florian-maier/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/florian-maier/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/florian-maier/"/></url><url><loc>https://btctranscripts.com/es/speakers/giacomo-zucco/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/giacomo-zucco/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/giacomo-zucco/"/></url><url><loc>https://btctranscripts.com/es/tags/halving/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/halving/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/halving/"/></url><url><loc>https://btctranscripts.com/es/tags/hashlocks/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/hashlocks/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/hashlocks/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/investing-in-bitcoin-businesses/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/investing-in-bitcoin-businesses/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/investing-in-bitcoin-businesses/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/the-reserve-currency-fallacy/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-reserve-currency-fallacy/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-reserve-currency-fallacy/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/the-b-foundation/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-b-foundation/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-b-foundation/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/"/></url><url><loc>https://btctranscripts.com/es/speakers/lawrence-nahum/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/lawrence-nahum/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/lawrence-nahum/"/></url><url><loc>https://btctranscripts.com/es/tags/libsecp256k1/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/libsecp256k1/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/libsecp256k1/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/"/></url><url><loc>https://btctranscripts.com/es/speakers/matthew-mezinskis/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/matthew-mezinskis/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/matthew-mezinskis/"/></url><url><loc>https://btctranscripts.com/es/speakers/max-keidun/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/max-keidun/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/max-keidun/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/"/></url><url><loc>https://btctranscripts.com/es/speakers/nic-carter/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/nic-carter/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/nic-carter/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/day-1-closing-panel/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/day-1-closing-panel/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/day-1-closing-panel/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/trading-panel/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/trading-panel/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/trading-panel/"/></url><url><loc>https://btctranscripts.com/es/speakers/pavol-rusnak/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/pavol-rusnak/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/pavol-rusnak/"/></url><url><loc>https://btctranscripts.com/es/speakers/peter-todd/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/peter-todd/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/peter-todd/"/></url><url><loc>https://btctranscripts.com/es/speakers/pierre-rochard/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/pierre-rochard/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/pierre-rochard/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/"/></url><url><loc>https://btctranscripts.com/es/tags/reglamento/</loc></url><url><loc>https://btctranscripts.com/es/speakers/roman-snitko/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/roman-snitko/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/roman-snitko/"/></url><url><loc>https://btctranscripts.com/es/speakers/saifedean-ammous/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/saifedean-ammous/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/saifedean-ammous/"/></url><url><loc>https://btctranscripts.com/es/tags/scalabilidad/</loc></url><url><loc>https://btctranscripts.com/es/speakers/sergej-kotliar/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sergej-kotliar/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/sergej-kotliar/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/"/></url><url><loc>https://btctranscripts.com/es/tags/timelocks/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/timelocks/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/timelocks/"/></url><url><loc>https://btctranscripts.com/es/speakers/tone-vays/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/tone-vays/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/tone-vays/"/></url><url><loc>https://btctranscripts.com/es/speakers/vortex/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/vortex/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/vortex/"/></url><url><loc>https://btctranscripts.com/es/speakers/whalepanda/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/whalepanda/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/whalepanda/"/></url><url><loc>https://btctranscripts.com/es/speakers/yurii-rashkovskii/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/yurii-rashkovskii/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/yurii-rashkovskii/"/></url></urlset> \ No newline at end of file +<?xml version="1.0" encoding="utf-8" standalone="yes"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml"><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/"/></url><url><loc>https://btctranscripts.com/es/tags/bitcoin-core/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/bitcoin-core/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/bitcoin-core/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/bitcoin-core-dev-tech/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/"/></url><url><loc>https://btctranscripts.com/es/categories/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/categories/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/"/></url><url><loc>https://btctranscripts.com/es/categories/core-dev-tech/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/core-dev-tech/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/core-dev-tech/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/core-dev-tech/"/></url><url><loc>https://btctranscripts.com/es/tags/p2p/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/p2p/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/p2p/"/></url><url><loc>https://btctranscripts.com/es/tags/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/"/></url><url><loc>https://btctranscripts.com/es/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/</loc><lastmod>2022-10-10T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/"/></url><url><loc>https://btctranscripts.com/es/speakers/aaron-van-wirdum/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/aaron-van-wirdum/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/aaron-van-wirdum/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-magazine/2021-04-23-taproot-activation-update/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/2021-04-23-taproot-activation-update/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/2021-04-23-taproot-activation-update/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-magazine/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/"/></url><url><loc>https://btctranscripts.com/es/categories/podcast/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/podcast/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/podcast/"/></url><url><loc>https://btctranscripts.com/es/speakers/sjors-provoost/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sjors-provoost/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/sjors-provoost/"/></url><url><loc>https://btctranscripts.com/es/speakers/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/speakers/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/"/></url><url><loc>https://btctranscripts.com/es/tags/taproot/</loc><lastmod>2021-04-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/taproot/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/taproot/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/taproot/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/</loc><lastmod>2021-03-12T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/</loc><lastmod>2021-02-26T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-design/</loc><lastmod>2020-08-20T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-design/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-design/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-design/2020-08-20-bitcoin-core-gui/</loc><lastmod>2020-08-20T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-design/2020-08-20-bitcoin-core-gui/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-design/2020-08-20-bitcoin-core-gui/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/</loc><lastmod>2020-08-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/"/></url><url><loc>https://btctranscripts.com/es/speakers/eric-lombrozo/</loc><lastmod>2020-08-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/eric-lombrozo/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/eric-lombrozo/"/></url><url><loc>https://btctranscripts.com/es/speakers/luke-dashjr/</loc><lastmod>2020-08-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/luke-dashjr/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/luke-dashjr/"/></url><url><loc>https://btctranscripts.com/es/tags/soft-fork/</loc><lastmod>2020-08-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/soft-fork/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/soft-fork/"/></url><url><loc>https://btctranscripts.com/es/speakers/andreas-antonopoulos/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/andreas-antonopoulos/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/andreas-antonopoulos/"/></url><url><loc>https://btctranscripts.com/es/andreas-antonopoulos/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/"/></url><url><loc>https://btctranscripts.com/es/tags/cartera/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/"/></url><url><loc>https://btctranscripts.com/es/tags/seguridad/</loc><lastmod>2020-04-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/austin-bitcoin-developers/</loc><lastmod>2020-02-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/"/></url><url><loc>https://btctranscripts.com/es/categories/reuni%C3%B3n/</loc><lastmod>2020-02-24T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/</loc><lastmod>2020-02-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/advancing-bitcoin/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2020/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/"/></url><url><loc>https://btctranscripts.com/es/speakers/andrew-poelstra/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/andrew-poelstra/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/andrew-poelstra/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/andrew-poelstra/"/></url><url><loc>https://btctranscripts.com/es/speakers/fabian-jahr/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/fabian-jahr/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/fabian-jahr/"/></url><url><loc>https://btctranscripts.com/es/speakers/kalle-alm/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/kalle-alm/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/kalle-alm/"/></url><url><loc>https://btctranscripts.com/es/tags/miniscript/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/miniscript/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/miniscript/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/miniscript/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/"/></url><url><loc>https://btctranscripts.com/es/categories/taller/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/"/></url><url><loc>https://btctranscripts.com/es/tags/testing/</loc><lastmod>2020-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/testing/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/testing/"/></url><url><loc>https://btctranscripts.com/es/speakers/andrew-chow/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/andrew-chow/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/andrew-chow/"/></url><url><loc>https://btctranscripts.com/es/speakers/antoine-riard/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/antoine-riard/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/antoine-riard/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/"/></url><url><loc>https://btctranscripts.com/es/categories/conferencia/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/tags/lightning/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/lightning/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/lightning/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/lightning/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/lightning/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/"/></url><url><loc>https://btctranscripts.com/es/tags/schnorr/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/schnorr/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/schnorr/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/schnorr/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/</loc><lastmod>2020-02-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/"/></url><url><loc>https://btctranscripts.com/es/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/</loc><lastmod>2020-01-21T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/"/></url><url><loc>https://btctranscripts.com/es/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/</loc><lastmod>2019-11-19T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/"/></url><url><loc>https://btctranscripts.com/es/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/</loc><lastmod>2019-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2019/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2019/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2019/"/></url><url><loc>https://btctranscripts.com/es/tags/cartera-hardware/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/"/></url><url><loc>https://btctranscripts.com/es/speakers/rodolfo-novak/</loc><lastmod>2019-09-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/rodolfo-novak/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/rodolfo-novak/"/></url><url><loc>https://btctranscripts.com/es/tags/hardware-wallet/</loc><lastmod>2019-08-22T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/hardware-wallet/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/hardware-wallet/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/hardware-wallet/"/></url><url><loc>https://btctranscripts.com/es/tags/investigaci%C3%B3n/</loc><lastmod>2019-08-22T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/tags/multisig/</loc><lastmod>2019-08-22T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/multisig/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/multisig/"/></url><url><loc>https://btctranscripts.com/es/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/</loc><lastmod>2019-08-22T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/"/></url><url><loc>https://btctranscripts.com/es/tags/wallet/</loc><lastmod>2019-08-22T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/wallet/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/wallet/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/wallet/"/></url><url><loc>https://btctranscripts.com/es/speakers/0xb10c/</loc><lastmod>2019-08-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/tags/history/</loc><lastmod>2019-08-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/misc/</loc><lastmod>2019-08-04T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/misc/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/misc/"/></url><url><loc>https://btctranscripts.com/es/misc/2019-08-04-incomplete_history/</loc><lastmod>2019-08-04T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/austin-bitcoin-developers/2019-06-29-hardware-wallets/</loc><lastmod>2019-06-29T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-06-29-hardware-wallets/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-06-29-hardware-wallets/"/></url><url><loc>https://btctranscripts.com/es/speakers/stepan-snigirev/</loc><lastmod>2019-06-29T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/stepan-snigirev/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/stepan-snigirev/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/stepan-snigirev/"/></url><url><loc>https://btctranscripts.com/es/chaincode-labs/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/chaincode-labs/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/chaincode-labs/"/></url><url><loc>https://btctranscripts.com/es/speakers/christian-decker/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/christian-decker/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/christian-decker/"/></url><url><loc>https://btctranscripts.com/es/tags/eltoo/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/eltoo/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/eltoo/"/></url><url><loc>https://btctranscripts.com/es/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/"/></url><url><loc>https://btctranscripts.com/es/chaincode-labs/chaincode-residency/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/chaincode-labs/chaincode-residency/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/chaincode-labs/chaincode-residency/"/></url><url><loc>https://btctranscripts.com/es/categories/residency/</loc><lastmod>2019-06-25T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/residency/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/residency/"/></url><url><loc>https://btctranscripts.com/es/tags/cryptography/</loc><lastmod>2019-06-17T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/cryptography/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/cryptography/"/></url><url><loc>https://btctranscripts.com/es/speakers/john-newbery/</loc><lastmod>2019-06-17T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/john-newbery/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/john-newbery/"/></url><url><loc>https://btctranscripts.com/es/tags/security/</loc><lastmod>2019-06-17T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/security/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/security/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/security/"/></url><url><loc>https://btctranscripts.com/es/chaincode-labs/chaincode-residency/2019-06-17-newbery-security-models/</loc><lastmod>2019-06-17T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/speakers/jonas-nick/</loc><lastmod>2019-06-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/jonas-nick/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/jonas-nick/"/></url><url><loc>https://btctranscripts.com/es/lets-talk-bitcoin-podcast/</loc><lastmod>2019-06-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lets-talk-bitcoin-podcast/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/lets-talk-bitcoin-podcast/"/></url><url><loc>https://btctranscripts.com/es/speakers/pieter-wuille/</loc><lastmod>2019-06-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/pieter-wuille/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/pieter-wuille/"/></url><url><loc>https://btctranscripts.com/es/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/</loc><lastmod>2019-06-09T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/</loc><lastmod>2019-06-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/</loc><lastmod>2019-06-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/"/></url><url><loc>https://btctranscripts.com/es/speakers/jeremy-rubin/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/jeremy-rubin/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/jeremy-rubin/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/jeremy-rubin/"/></url><url><loc>https://btctranscripts.com/es/speakers/olaoluwa-osuntokun/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/olaoluwa-osuntokun/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/olaoluwa-osuntokun/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/"/></url><url><loc>https://btctranscripts.com/es/tags/soft-forks/</loc><lastmod>2019-06-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/</loc><lastmod>2019-06-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/"/></url><url><loc>https://btctranscripts.com/es/tags/capa-2/</loc><lastmod>2019-05-27T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/</loc><lastmod>2019-05-27T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/"/></url><url><loc>https://btctranscripts.com/es/speakers/paul-sztorc/</loc><lastmod>2019-05-27T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/paul-sztorc/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/paul-sztorc/"/></url><url><loc>https://btctranscripts.com/es/tags/sidechains/</loc><lastmod>2019-05-27T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/sidechains/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/sidechains/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2019/</loc><lastmod>2019-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2019/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2019/"/></url><url><loc>https://btctranscripts.com/es/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/</loc><lastmod>2019-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/"/></url><url><loc>https://btctranscripts.com/es/speakers/matt-corallo/</loc><lastmod>2019-02-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/matt-corallo/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/matt-corallo/"/></url><url><loc>https://btctranscripts.com/es/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/</loc><lastmod>2019-02-01T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/"/></url><url><loc>https://btctranscripts.com/es/tags/validaci%C3%B3n/</loc><lastmod>2019-02-01T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/tags/consenso/</loc><lastmod>2018-10-23T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/</loc><lastmod>2018-10-23T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/"/></url><url><loc>https://btctranscripts.com/es/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/</loc><lastmod>2018-10-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/</loc><lastmod>2018-03-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/</loc><lastmod>2018-03-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/</loc><lastmod>2018-03-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/"/></url><url><loc>https://btctranscripts.com/es/tags/covenios/</loc><lastmod>2018-03-06T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/</loc><lastmod>2018-03-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/"/></url><url><loc>https://btctranscripts.com/es/tags/criptograf%C3%ADa/</loc><lastmod>2018-03-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/tags/firmas/</loc><lastmod>2018-03-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/</loc><lastmod>2018-03-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/"/></url><url><loc>https://btctranscripts.com/es/tags/ux/</loc><lastmod>2018-03-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/ux/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/ux/"/></url><url><loc>https://btctranscripts.com/es/misc/2017-09-20-ray-dillinger-if-id-known/</loc><lastmod>2017-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/speakers/ray-dillinger/</loc><lastmod>2017-09-20T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/</loc><lastmod>2017-09-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/</loc><lastmod>2017-09-07T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/</loc><lastmod>2017-09-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/</loc><lastmod>2017-09-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/"/></url><url><loc>https://btctranscripts.com/es/tags/privacidad/</loc><lastmod>2017-09-05T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/speakers/arvind-narayanan/</loc><lastmod>2017-08-29T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/arvind-narayanan/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/arvind-narayanan/"/></url><url><loc>https://btctranscripts.com/es/misc/2017-08-29-bitcoin-academic-pedigree/</loc><lastmod>2017-08-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/speakers/jeremy-clark/</loc><lastmod>2017-08-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/misc/2016-11-13-lopp-bitcoin-security-model/</loc><lastmod>2016-11-13T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/speakers/jameson-lopp/</loc><lastmod>2016-11-13T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/jameson-lopp/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/jameson-lopp/"/></url><url><loc>https://btctranscripts.com/es/greg-maxwell/2016-01-29-a-trip-to-the-moon/</loc><lastmod>2016-01-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/speakers/greg-maxwell/</loc><lastmod>2016-01-29T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/greg-maxwell/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/greg-maxwell/"/></url><url><loc>https://btctranscripts.com/es/greg-maxwell/</loc><lastmod>2016-01-29T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/greg-maxwell/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/greg-maxwell/"/></url><url><loc>https://btctranscripts.com/es/tags/scaling/</loc><lastmod>2016-01-29T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/es/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/</loc><lastmod>2014-10-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/"/></url><url><loc>https://btctranscripts.com/es/bit-block-boom/2019/accumulating-bitcoin/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bit-block-boom/2019/accumulating-bitcoin/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bit-block-boom/2019/accumulating-bitcoin/"/></url><url><loc>https://btctranscripts.com/es/speakers/alena-vranova/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/alena-vranova/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/alena-vranova/"/></url><url><loc>https://btctranscripts.com/es/speakers/alex-petrov/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/alex-petrov/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/alex-petrov/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/opening/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/opening/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/opening/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/"/></url><url><loc>https://btctranscripts.com/es/bit-block-boom/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bit-block-boom/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bit-block-boom/"/></url><url><loc>https://btctranscripts.com/es/bit-block-boom/2019/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bit-block-boom/2019/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bit-block-boom/2019/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-github/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-github/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-github/"/></url><url><loc>https://btctranscripts.com/es/speakers/bruce-fenton/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/bruce-fenton/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/bruce-fenton/"/></url><url><loc>https://btctranscripts.com/es/speakers/bryan-bishop/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/bryan-bishop/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/bryan-bishop/"/></url><url><loc>https://btctranscripts.com/es/categories/conference/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/conference/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/conference/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/conference/"/></url><url><loc>https://btctranscripts.com/es/categories/conferenciae/</loc></url><url><loc>https://btctranscripts.com/es/tags/contratos-inteligentes/</loc></url><url><loc>https://btctranscripts.com/es/tags/custodia/</loc></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-custody/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-custody/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-custody/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/the-bitcoin-standard/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-bitcoin-standard/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-bitcoin-standard/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-lightning/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-lightning/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-lightning/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-maximalism-dissected/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-maximalism-dissected/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-maximalism-dissected/"/></url><url><loc>https://btctranscripts.com/es/speakers/elizabeth-stark/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/elizabeth-stark/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/elizabeth-stark/"/></url><url><loc>https://btctranscripts.com/es/speakers/eric-voskuil/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/eric-voskuil/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/eric-voskuil/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/"/></url><url><loc>https://btctranscripts.com/es/tags/fees/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/fees/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/fees/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/fees/"/></url><url><loc>https://btctranscripts.com/es/speakers/florian-maier/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/florian-maier/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/florian-maier/"/></url><url><loc>https://btctranscripts.com/es/speakers/giacomo-zucco/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/giacomo-zucco/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/giacomo-zucco/"/></url><url><loc>https://btctranscripts.com/es/tags/halving/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/halving/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/halving/"/></url><url><loc>https://btctranscripts.com/es/tags/hashlocks/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/hashlocks/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/hashlocks/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/investing-in-bitcoin-businesses/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/investing-in-bitcoin-businesses/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/investing-in-bitcoin-businesses/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/the-reserve-currency-fallacy/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-reserve-currency-fallacy/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-reserve-currency-fallacy/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/the-b-foundation/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/the-b-foundation/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/the-b-foundation/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/"/></url><url><loc>https://btctranscripts.com/es/speakers/lawrence-nahum/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/lawrence-nahum/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/lawrence-nahum/"/></url><url><loc>https://btctranscripts.com/es/tags/libsecp256k1/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/libsecp256k1/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/libsecp256k1/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/"/></url><url><loc>https://btctranscripts.com/es/speakers/matthew-mezinskis/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/matthew-mezinskis/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/matthew-mezinskis/"/></url><url><loc>https://btctranscripts.com/es/speakers/max-keidun/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/max-keidun/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/max-keidun/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/"/></url><url><loc>https://btctranscripts.com/es/speakers/nic-carter/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/nic-carter/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/nic-carter/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/day-1-closing-panel/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/day-1-closing-panel/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/day-1-closing-panel/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/trading-panel/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/trading-panel/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/trading-panel/"/></url><url><loc>https://btctranscripts.com/es/speakers/pavol-rusnak/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/pavol-rusnak/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/pavol-rusnak/"/></url><url><loc>https://btctranscripts.com/es/speakers/peter-todd/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/peter-todd/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/peter-todd/"/></url><url><loc>https://btctranscripts.com/es/speakers/pierre-rochard/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/pierre-rochard/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/pierre-rochard/"/></url><url><loc>https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/"/></url><url><loc>https://btctranscripts.com/es/tags/reglamento/</loc></url><url><loc>https://btctranscripts.com/es/speakers/roman-snitko/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/roman-snitko/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/roman-snitko/"/></url><url><loc>https://btctranscripts.com/es/speakers/saifedean-ammous/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/saifedean-ammous/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/saifedean-ammous/"/></url><url><loc>https://btctranscripts.com/es/tags/scalabilidad/</loc></url><url><loc>https://btctranscripts.com/es/speakers/sergej-kotliar/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sergej-kotliar/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/sergej-kotliar/"/></url><url><loc>https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/"/></url><url><loc>https://btctranscripts.com/es/tags/timelocks/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/timelocks/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/timelocks/"/></url><url><loc>https://btctranscripts.com/es/speakers/tone-vays/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/tone-vays/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/tone-vays/"/></url><url><loc>https://btctranscripts.com/es/speakers/vortex/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/vortex/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/vortex/"/></url><url><loc>https://btctranscripts.com/es/speakers/whalepanda/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/whalepanda/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/whalepanda/"/></url><url><loc>https://btctranscripts.com/es/speakers/yurii-rashkovskii/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/yurii-rashkovskii/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/yurii-rashkovskii/"/></url></urlset> \ No newline at end of file diff --git a/es/speakers/stepan-snigirev/index.html b/es/speakers/stepan-snigirev/index.html index d702e39544..f9bb3d80a9 100644 --- a/es/speakers/stepan-snigirev/index.html +++ b/es/speakers/stepan-snigirev/index.html @@ -1,5 +1,5 @@ <!doctype html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><link rel=alternate type=application/rss+xml href=https://btctranscripts.com/es/speakers/stepan-snigirev/index.xml title="Transcripciones de ₿itcoin"><link rel=canonical href=https://btctranscripts.com/es/speakers/stepan-snigirev/><title>Stepan Snigirev | Transcripciones de ₿itcoin</title><link href=https://btctranscripts.com/css/fontawesome.min.css rel=stylesheet><link rel=stylesheet href=https://btctranscripts.com/css/ace.min.css><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://btctranscripts.com/images/btctranscripts.png"><meta name=twitter:title content="Stepan Snigirev"><meta name=twitter:description content="A treasure trove of ₿itcoin transcripts (mostly recorded by @kanzure)"></head><body><nav class="navbar navbar-expand-lg navbar-dark bg-primary shadow sticky-top" id=navbarMain><div class=container><div><a class=navbar-brand href=/es>Transcripciones de ₿itcoin</a></div><div class="collapse navbar-collapse" id=navbarMainCollapse><ul class="navbar-nav ml-auto"><li class=nav-item><a class=nav-link href=/en>en</a></li><li class=nav-item><a class=nav-link href=/pt>pt</a></li><li class=nav-item><a class=nav-link href=/zh>zh</a></li><li class=nav-item><a class=nav-link href=https://github.com/bitcointranscripts/bitcointranscripts target=_blank><i class='fab fa-github'></i></a></li></ul></div></div></nav><div class=container-fluid><div class=row><div class="docs-sidenav order-0 col-12 col-md-3 col-lg-2 col-xl-2 position-sticky border-right"><nav class="navbar navbar-expand-md navbar-light pl-0"><button class="navbar-toggler navbar-toggler-right collapsed" type=button data-toggle=collapse data-target=#sidenav-left-collapse aria-controls=sidenav-left-collapse aria-expanded=false aria-label="Toggle navigation"> -<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/es/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/advancing-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/2019/><h6>Advancing Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/advancing-bitcoin/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/2020/><h6>Advancing Bitcoin 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/andreas-antonopoulos/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/andreas-antonopoulos/><h6>Andreas Antonopoulos</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/austin-bitcoin-developers/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/austin-bitcoin-developers/><h6>Austin Bitcoin Developers</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/baltic-honeybadger/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/><h6>Baltic Honeybadger</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/baltic-honeybadger/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/2018/><h6>Baltic Honeybadger 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/baltic-honeybadger/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/2019/><h6>Baltic Honeybadger 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bit-block-boom/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bit-block-boom/><h6>Bit Block Boom</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/bit-block-boom/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bit-block-boom/2019/><h6>Bit Block Boom 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/bitcoin-core-dev-tech/2017-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2017-09/><h6>Bitcoin Core Dev Tech 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2018-03/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2018-03/><h6>Bitcoin Core Dev Tech 2018 (Mar)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2019-06/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2019-06/><h6>Bitcoin Core Dev Tech 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2022-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2022-10/><h6>Bitcoin Core Dev Tech 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bitcoin-design/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-design/><h6>Bitcoin Design</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-magazine/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-magazine/><h6>Bitcoin Magazine</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/chaincode-labs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/chaincode-labs/><h6>Chaincode Labs</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/chaincode-labs/chaincode-residency/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/chaincode-labs/chaincode-residency/><h6>Residencia de Chaincode</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/greg-maxwell/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/greg-maxwell/><h6>Greg Maxwell</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/lets-talk-bitcoin-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/lets-talk-bitcoin-podcast/><h6>Lets Talk Bitcoin Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/misc/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/misc/><h6>Misc</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Stepan Snigirev</h1><ul><li><a href=/es/austin-bitcoin-developers/2019-06-29-hardware-wallets/>Hardware Wallets</a></li></ul><h4></h4><ul><li><a href=/speakers/stepan-snigirev/>en: Stepan Snigirev</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> +<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/es/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/advancing-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/2019/><h6>Advancing Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/advancing-bitcoin/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/2020/><h6>Advancing Bitcoin 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/andreas-antonopoulos/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/andreas-antonopoulos/><h6>Andreas Antonopoulos</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/austin-bitcoin-developers/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/austin-bitcoin-developers/><h6>Austin Bitcoin Developers</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/baltic-honeybadger/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/><h6>Baltic Honeybadger</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/baltic-honeybadger/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/2018/><h6>Baltic Honeybadger 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/baltic-honeybadger/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/2019/><h6>Baltic Honeybadger 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bit-block-boom/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bit-block-boom/><h6>Bit Block Boom</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/bit-block-boom/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bit-block-boom/2019/><h6>Bit Block Boom 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/bitcoin-core-dev-tech/2017-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2017-09/><h6>Bitcoin Core Dev Tech 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2018-03/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2018-03/><h6>Bitcoin Core Dev Tech 2018 (Mar)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2019-06/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2019-06/><h6>Bitcoin Core Dev Tech 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2022-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2022-10/><h6>Bitcoin Core Dev Tech 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bitcoin-design/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-design/><h6>Bitcoin Design</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-magazine/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-magazine/><h6>Bitcoin Magazine</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/chaincode-labs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/chaincode-labs/><h6>Chaincode Labs</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/chaincode-labs/chaincode-residency/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/chaincode-labs/chaincode-residency/><h6>Residencia de Chaincode</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/greg-maxwell/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/greg-maxwell/><h6>Greg Maxwell</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/lets-talk-bitcoin-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/lets-talk-bitcoin-podcast/><h6>Lets Talk Bitcoin Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/misc/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/misc/><h6>Misc</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Stepan Snigirev</h1><ul><li><a href=/es/austin-bitcoin-developers/2019-06-29-hardware-wallets/>Hardware Wallets</a></li></ul><h4></h4><ul><li><a href=/speakers/stepan-snigirev/>en: Stepan Snigirev</a></li><li><a href=/zh/speakers/stepan-snigirev/>zh: Stepan Snigirev</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> <script src=https://btctranscripts.com/lib/popper.min.js></script> <script src=https://btctranscripts.com/js/bootstrap.min.js></script> <script type=text/javascript src=/plugins/lunr.min.js></script> diff --git a/es/tags/hardware-wallet/index.html b/es/tags/hardware-wallet/index.html index 43f36a6102..73f2adc518 100644 --- a/es/tags/hardware-wallet/index.html +++ b/es/tags/hardware-wallet/index.html @@ -1,5 +1,5 @@ <!doctype html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><link rel=alternate type=application/rss+xml href=https://btctranscripts.com/es/tags/hardware-wallet/index.xml title="Transcripciones de ₿itcoin"><link rel=canonical href=https://btctranscripts.com/es/tags/hardware-wallet/><title>hardware wallet | Transcripciones de ₿itcoin</title><link href=https://btctranscripts.com/css/fontawesome.min.css rel=stylesheet><link rel=stylesheet href=https://btctranscripts.com/css/ace.min.css><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://btctranscripts.com/images/btctranscripts.png"><meta name=twitter:title content="hardware wallet"><meta name=twitter:description content="A treasure trove of ₿itcoin transcripts (mostly recorded by @kanzure)"></head><body><nav class="navbar navbar-expand-lg navbar-dark bg-primary shadow sticky-top" id=navbarMain><div class=container><div><a class=navbar-brand href=/es>Transcripciones de ₿itcoin</a></div><div class="collapse navbar-collapse" id=navbarMainCollapse><ul class="navbar-nav ml-auto"><li class=nav-item><a class=nav-link href=/en>en</a></li><li class=nav-item><a class=nav-link href=/pt>pt</a></li><li class=nav-item><a class=nav-link href=/zh>zh</a></li><li class=nav-item><a class=nav-link href=https://github.com/bitcointranscripts/bitcointranscripts target=_blank><i class='fab fa-github'></i></a></li></ul></div></div></nav><div class=container-fluid><div class=row><div class="docs-sidenav order-0 col-12 col-md-3 col-lg-2 col-xl-2 position-sticky border-right"><nav class="navbar navbar-expand-md navbar-light pl-0"><button class="navbar-toggler navbar-toggler-right collapsed" type=button data-toggle=collapse data-target=#sidenav-left-collapse aria-controls=sidenav-left-collapse aria-expanded=false aria-label="Toggle navigation"> -<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/es/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/advancing-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/2019/><h6>Advancing Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/advancing-bitcoin/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/2020/><h6>Advancing Bitcoin 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/andreas-antonopoulos/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/andreas-antonopoulos/><h6>Andreas Antonopoulos</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/austin-bitcoin-developers/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/austin-bitcoin-developers/><h6>Austin Bitcoin Developers</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/baltic-honeybadger/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/><h6>Baltic Honeybadger</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/baltic-honeybadger/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/2018/><h6>Baltic Honeybadger 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/baltic-honeybadger/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/2019/><h6>Baltic Honeybadger 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bit-block-boom/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bit-block-boom/><h6>Bit Block Boom</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/bit-block-boom/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bit-block-boom/2019/><h6>Bit Block Boom 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/bitcoin-core-dev-tech/2017-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2017-09/><h6>Bitcoin Core Dev Tech 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2018-03/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2018-03/><h6>Bitcoin Core Dev Tech 2018 (Mar)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2019-06/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2019-06/><h6>Bitcoin Core Dev Tech 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2022-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2022-10/><h6>Bitcoin Core Dev Tech 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bitcoin-design/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-design/><h6>Bitcoin Design</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-magazine/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-magazine/><h6>Bitcoin Magazine</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/chaincode-labs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/chaincode-labs/><h6>Chaincode Labs</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/chaincode-labs/chaincode-residency/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/chaincode-labs/chaincode-residency/><h6>Residencia de Chaincode</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/greg-maxwell/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/greg-maxwell/><h6>Greg Maxwell</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/lets-talk-bitcoin-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/lets-talk-bitcoin-podcast/><h6>Lets Talk Bitcoin Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/misc/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/misc/><h6>Misc</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Hardware Wallet</h1><ul><li><a href=/es/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/>Seminario Socrático 2</a></li><li><a href=/es/austin-bitcoin-developers/2019-06-29-hardware-wallets/>Hardware Wallets</a></li></ul><h4></h4><ul><li><a href=/tags/hardware-wallet/>en: hardware wallet</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> +<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/es/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/advancing-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/2019/><h6>Advancing Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/advancing-bitcoin/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/2020/><h6>Advancing Bitcoin 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/andreas-antonopoulos/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/andreas-antonopoulos/><h6>Andreas Antonopoulos</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/austin-bitcoin-developers/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/austin-bitcoin-developers/><h6>Austin Bitcoin Developers</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/baltic-honeybadger/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/><h6>Baltic Honeybadger</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/baltic-honeybadger/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/2018/><h6>Baltic Honeybadger 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/baltic-honeybadger/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/2019/><h6>Baltic Honeybadger 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bit-block-boom/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bit-block-boom/><h6>Bit Block Boom</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/bit-block-boom/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bit-block-boom/2019/><h6>Bit Block Boom 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/bitcoin-core-dev-tech/2017-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2017-09/><h6>Bitcoin Core Dev Tech 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2018-03/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2018-03/><h6>Bitcoin Core Dev Tech 2018 (Mar)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2019-06/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2019-06/><h6>Bitcoin Core Dev Tech 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2022-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2022-10/><h6>Bitcoin Core Dev Tech 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bitcoin-design/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-design/><h6>Bitcoin Design</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-magazine/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-magazine/><h6>Bitcoin Magazine</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/chaincode-labs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/chaincode-labs/><h6>Chaincode Labs</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/chaincode-labs/chaincode-residency/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/chaincode-labs/chaincode-residency/><h6>Residencia de Chaincode</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/greg-maxwell/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/greg-maxwell/><h6>Greg Maxwell</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/lets-talk-bitcoin-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/lets-talk-bitcoin-podcast/><h6>Lets Talk Bitcoin Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/misc/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/misc/><h6>Misc</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Hardware Wallet</h1><ul><li><a href=/es/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/>Seminario Socrático 2</a></li><li><a href=/es/austin-bitcoin-developers/2019-06-29-hardware-wallets/>Hardware Wallets</a></li></ul><h4></h4><ul><li><a href=/tags/hardware-wallet/>en: hardware wallet</a></li><li><a href=/zh/tags/hardware-wallet/>zh: hardware wallet</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> <script src=https://btctranscripts.com/lib/popper.min.js></script> <script src=https://btctranscripts.com/js/bootstrap.min.js></script> <script type=text/javascript src=/plugins/lunr.min.js></script> diff --git a/es/tags/taproot/index.html b/es/tags/taproot/index.html index 54729adff0..1c6316be49 100644 --- a/es/tags/taproot/index.html +++ b/es/tags/taproot/index.html @@ -1,5 +1,5 @@ <!doctype html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><link rel=alternate type=application/rss+xml href=https://btctranscripts.com/es/tags/taproot/index.xml title="Transcripciones de ₿itcoin"><link rel=canonical href=https://btctranscripts.com/es/tags/taproot/><title>taproot | Transcripciones de ₿itcoin</title><link href=https://btctranscripts.com/css/fontawesome.min.css rel=stylesheet><link rel=stylesheet href=https://btctranscripts.com/css/ace.min.css><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://btctranscripts.com/images/btctranscripts.png"><meta name=twitter:title content="taproot"><meta name=twitter:description content="A treasure trove of ₿itcoin transcripts (mostly recorded by @kanzure)"></head><body><nav class="navbar navbar-expand-lg navbar-dark bg-primary shadow sticky-top" id=navbarMain><div class=container><div><a class=navbar-brand href=/es>Transcripciones de ₿itcoin</a></div><div class="collapse navbar-collapse" id=navbarMainCollapse><ul class="navbar-nav ml-auto"><li class=nav-item><a class=nav-link href=/en>en</a></li><li class=nav-item><a class=nav-link href=/pt>pt</a></li><li class=nav-item><a class=nav-link href=/zh>zh</a></li><li class=nav-item><a class=nav-link href=https://github.com/bitcointranscripts/bitcointranscripts target=_blank><i class='fab fa-github'></i></a></li></ul></div></div></nav><div class=container-fluid><div class=row><div class="docs-sidenav order-0 col-12 col-md-3 col-lg-2 col-xl-2 position-sticky border-right"><nav class="navbar navbar-expand-md navbar-light pl-0"><button class="navbar-toggler navbar-toggler-right collapsed" type=button data-toggle=collapse data-target=#sidenav-left-collapse aria-controls=sidenav-left-collapse aria-expanded=false aria-label="Toggle navigation"> -<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/es/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/advancing-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/2019/><h6>Advancing Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/advancing-bitcoin/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/2020/><h6>Advancing Bitcoin 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/andreas-antonopoulos/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/andreas-antonopoulos/><h6>Andreas Antonopoulos</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/austin-bitcoin-developers/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/austin-bitcoin-developers/><h6>Austin Bitcoin Developers</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/baltic-honeybadger/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/><h6>Baltic Honeybadger</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/baltic-honeybadger/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/2018/><h6>Baltic Honeybadger 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/baltic-honeybadger/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/2019/><h6>Baltic Honeybadger 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bit-block-boom/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bit-block-boom/><h6>Bit Block Boom</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/bit-block-boom/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bit-block-boom/2019/><h6>Bit Block Boom 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/bitcoin-core-dev-tech/2017-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2017-09/><h6>Bitcoin Core Dev Tech 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2018-03/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2018-03/><h6>Bitcoin Core Dev Tech 2018 (Mar)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2019-06/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2019-06/><h6>Bitcoin Core Dev Tech 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2022-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2022-10/><h6>Bitcoin Core Dev Tech 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bitcoin-design/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-design/><h6>Bitcoin Design</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-magazine/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-magazine/><h6>Bitcoin Magazine</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/chaincode-labs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/chaincode-labs/><h6>Chaincode Labs</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/chaincode-labs/chaincode-residency/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/chaincode-labs/chaincode-residency/><h6>Residencia de Chaincode</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/greg-maxwell/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/greg-maxwell/><h6>Greg Maxwell</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/lets-talk-bitcoin-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/lets-talk-bitcoin-podcast/><h6>Lets Talk Bitcoin Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/misc/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/misc/><h6>Misc</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Taproot</h1><ul><li><a href=/es/bitcoin-magazine/2021-04-23-taproot-activation-update/>Actualización de la activación de Taproot</a></li><li><a href=/es/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/>Taproot Activación con Speedy Trial</a></li><li><a href=/es/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/>Activación de Taproot y LOT=true vs LOT=false</a></li><li><a href=/es/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/>Activación de Taproot</a></li><li><a href=/es/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/>Seminario Socrático 6</a></li><li><a href=/es/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/>Taller Signet</a></li><li><a href=/es/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/>Taproot Lightning</a></li><li><a href=/es/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/>Seminario Socrático 3</a></li><li><a href=/es/chaincode-labs/chaincode-residency/2019-06-17-newbery-security-models/>Security Models</a></li><li><a href=/es/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/>The Tools and The Work</a></li><li><a href=/es/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/>Árboles de sintaxis abstracta merkleizados - MAST</a></li><li><a href=/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/>Taproot, Graftroot, Etc (2018-03-06)</a></li></ul><h4></h4><ul><li><a href=/tags/taproot/>en: taproot</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> +<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/es/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/advancing-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/2019/><h6>Advancing Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/advancing-bitcoin/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/advancing-bitcoin/2020/><h6>Advancing Bitcoin 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/andreas-antonopoulos/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/andreas-antonopoulos/><h6>Andreas Antonopoulos</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/austin-bitcoin-developers/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/austin-bitcoin-developers/><h6>Austin Bitcoin Developers</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/baltic-honeybadger/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/><h6>Baltic Honeybadger</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/baltic-honeybadger/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/2018/><h6>Baltic Honeybadger 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/baltic-honeybadger/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/baltic-honeybadger/2019/><h6>Baltic Honeybadger 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bit-block-boom/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bit-block-boom/><h6>Bit Block Boom</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/bit-block-boom/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bit-block-boom/2019/><h6>Bit Block Boom 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/bitcoin-core-dev-tech/2017-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2017-09/><h6>Bitcoin Core Dev Tech 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2018-03/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2018-03/><h6>Bitcoin Core Dev Tech 2018 (Mar)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2019-06/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2019-06/><h6>Bitcoin Core Dev Tech 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-core-dev-tech/2022-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-core-dev-tech/2022-10/><h6>Bitcoin Core Dev Tech 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/bitcoin-design/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-design/><h6>Bitcoin Design</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/bitcoin-magazine/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/bitcoin-magazine/><h6>Bitcoin Magazine</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/chaincode-labs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/chaincode-labs/><h6>Chaincode Labs</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/es/chaincode-labs/chaincode-residency/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/chaincode-labs/chaincode-residency/><h6>Residencia de Chaincode</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/es/greg-maxwell/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/greg-maxwell/><h6>Greg Maxwell</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/lets-talk-bitcoin-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/lets-talk-bitcoin-podcast/><h6>Lets Talk Bitcoin Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/es/misc/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/es/misc/><h6>Misc</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Taproot</h1><ul><li><a href=/es/bitcoin-magazine/2021-04-23-taproot-activation-update/>Actualización de la activación de Taproot</a></li><li><a href=/es/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/>Taproot Activación con Speedy Trial</a></li><li><a href=/es/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/>Activación de Taproot y LOT=true vs LOT=false</a></li><li><a href=/es/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/>Activación de Taproot</a></li><li><a href=/es/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/>Seminario Socrático 6</a></li><li><a href=/es/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/>Taller Signet</a></li><li><a href=/es/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/>Taproot Lightning</a></li><li><a href=/es/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/>Seminario Socrático 3</a></li><li><a href=/es/chaincode-labs/chaincode-residency/2019-06-17-newbery-security-models/>Security Models</a></li><li><a href=/es/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/>The Tools and The Work</a></li><li><a href=/es/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/>Árboles de sintaxis abstracta merkleizados - MAST</a></li><li><a href=/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/>Taproot, Graftroot, Etc (2018-03-06)</a></li></ul><h4></h4><ul><li><a href=/tags/taproot/>en: taproot</a></li><li><a href=/zh/tags/taproot/>zh: taproot</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> <script src=https://btctranscripts.com/lib/popper.min.js></script> <script src=https://btctranscripts.com/js/bootstrap.min.js></script> <script type=text/javascript src=/plugins/lunr.min.js></script> diff --git a/speakers/stepan-snigirev/index.html b/speakers/stepan-snigirev/index.html index cb0f0bc678..120e945c4f 100644 --- a/speakers/stepan-snigirev/index.html +++ b/speakers/stepan-snigirev/index.html @@ -1,5 +1,5 @@ <!doctype html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><link rel=alternate type=application/rss+xml href=https://btctranscripts.com/speakers/stepan-snigirev/index.xml title="₿itcoin Transcripts"><link rel=canonical href=https://btctranscripts.com/speakers/stepan-snigirev/><title>Stepan Snigirev | ₿itcoin Transcripts</title><link href=https://btctranscripts.com/css/fontawesome.min.css rel=stylesheet><link rel=stylesheet href=https://btctranscripts.com/css/ace.min.css><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://btctranscripts.com/images/btctranscripts.png"><meta name=twitter:title content="Stepan Snigirev"><meta name=twitter:description content="A treasure trove of ₿itcoin transcripts (mostly recorded by @kanzure)"></head><body><nav class="navbar navbar-expand-lg navbar-dark bg-primary shadow sticky-top" id=navbarMain><div class=container><div><a class=navbar-brand href=/>₿itcoin Transcripts</a></div><div class="collapse navbar-collapse" id=navbarMainCollapse><ul class="navbar-nav ml-auto"><li class=nav-item><a class=nav-link href=/es>es</a></li><li class=nav-item><a class=nav-link href=/pt>pt</a></li><li class=nav-item><a class=nav-link href=/zh>zh</a></li><li class=nav-item><a class=nav-link href=https://github.com/bitcointranscripts/bitcointranscripts target=_blank><i class='fab fa-github'></i></a></li></ul></div></div></nav><div class=container-fluid><div class=row><div class="docs-sidenav order-0 col-12 col-md-3 col-lg-2 col-xl-2 position-sticky border-right"><nav class="navbar navbar-expand-md navbar-light pl-0"><button class="navbar-toggler navbar-toggler-right collapsed" type=button data-toggle=collapse data-target=#sidenav-left-collapse aria-controls=sidenav-left-collapse aria-expanded=false aria-label="Toggle navigation"> -<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/adopting-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/adopting-bitcoin/><h6>Adopting Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/adopting-bitcoin/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/adopting-bitcoin/2021/><h6>Adopting Bitcoin 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/advancing-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2019/><h6>Advancing Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/advancing-bitcoin/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2020/><h6>Advancing Bitcoin 2020</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/advancing-bitcoin/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/andreas-antonopoulos/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/andreas-antonopoulos/><h6>Andreas Antonopoulos</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/austin-bitcoin-developers/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/austin-bitcoin-developers/><h6>Austin Bitcoin Developers</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/baltic-honeybadger/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/><h6>Baltic Honeybadger</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/baltic-honeybadger/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/2018/><h6>Baltic Honeybadger 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/baltic-honeybadger/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/2019/><h6>Baltic Honeybadger 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bit-block-boom/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bit-block-boom/><h6>Bit Block Boom</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bit-block-boom/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bit-block-boom/2019/><h6>Bit Block Boom 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bitcoin-core-dev-tech/2015-02/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2015-02/><h6>Bitcoin Core Dev Tech 2015</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2017-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2017-09/><h6>Bitcoin Core Dev Tech 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2018-03/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2018-03/><h6>Bitcoin Core Dev Tech 2018 (Mar)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2018-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2018-10/><h6>Bitcoin Core Dev Tech 2018 (Oct)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2019-06/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2019-06/><h6>Bitcoin Core Dev Tech 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2022-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2022-10/><h6>Bitcoin Core Dev Tech 2022</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2023-04/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2023-04/><h6>Bitcoin Core Dev Tech 2023 (Apr)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2023-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2023-09/><h6>Bitcoin Core Dev Tech 2023 (Sept)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoin-design/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-design/><h6>Bitcoin Design</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-magazine/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-magazine/><h6>Bitcoin Magazine</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoinplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinplusplus/><h6>Bitcoin++</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bitcoinplusplus/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinplusplus/2022/><h6>Bitcoin++ 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoinology/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinology/><h6>Bitcoinology</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoinops/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinops/><h6>Bitcoinops</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcointranscripts/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcointranscripts/><h6>Bitcointranscripts</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/blockchain-protocol-analysis-security-engineering/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/><h6>Blockchain Protocol Analysis Security Eng</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/blockchain-protocol-analysis-security-engineering/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/2017/><h6>Blockchain Protocol Analysis Security Engineering 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/blockchain-protocol-analysis-security-engineering/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/2018/><h6>Blockchain Protocol Analysis Security Engineering 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/blockstream-webinars/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockstream-webinars/><h6>Blockstream Webinars</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/boltathon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/boltathon/><h6>Boltathon</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/breaking-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/><h6>Breaking Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/breaking-bitcoin/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/2017/><h6>Breaking Bitcoin 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/breaking-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/2019/><h6>Breaking Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/building-on-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/building-on-bitcoin/><h6>Building On Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/building-on-bitcoin/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/building-on-bitcoin/2018/><h6>Building On Bitcoin 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/c-lightning/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/c-lightning/><h6>c-lightning</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/chaincode-labs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/><h6>Chaincode Labs</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/chaincode-labs/chaincode-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/chaincode-podcast/><h6>Chaincode Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/chaincode-labs/chaincode-residency/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/chaincode-residency/><h6>Chaincode Residency</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/chicago-bitdevs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chicago-bitdevs/><h6>Chicago Bitdevs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/coindesk-consensus-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coindesk-consensus-2016/><h6>Coindesk Consensus</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/coordination-of-decentralized-finance-workshop/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coordination-of-decentralized-finance-workshop/><h6>Coordination of Decentralized Finance</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/coordination-of-decentralized-finance-workshop/2020-stanford/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coordination-of-decentralized-finance-workshop/2020-stanford/><h6>2020 Stanford</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/cppcon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/><h6>CPPcon</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/cppcon/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/2017/><h6>CPPcon 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/cppcon/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/2020/><h6>CPPcon 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/cryptoeconomic-systems/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cryptoeconomic-systems/><h6>Cryptoeconomic Systems</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/cryptoeconomic-systems/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cryptoeconomic-systems/2019/><h6>Cryptoeconomic Systems 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/dallas-bitcoin-symposium/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/dallas-bitcoin-symposium/><h6>Dallas Bitcoin Symposium</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/decentralized-financial-architecture-workshop/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/decentralized-financial-architecture-workshop/><h6>Decentralized Financial Architecture Workshop</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-developers-miners-meeting-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-developers-miners-meeting-2016/><h6>Developers-Miners Meeting</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/greg-maxwell/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/greg-maxwell/><h6>Greg Maxwell</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/grincon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/grincon/><h6>Grincon</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/grincon/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/grincon/2019/><h6>Grincon 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/honey-badger-diaries/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/honey-badger-diaries/><h6>Honey Badger Diaries</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/iacr/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/iacr/><h6>IACR Crypto</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/la-bitdevs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/la-bitdevs/><h6>LA Bitdevs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/layer2-summit/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/layer2-summit/><h6>Layer2 Summit</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/layer2-summit/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/layer2-summit/2018/><h6>Layer2 Summit 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/lets-talk-bitcoin-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lets-talk-bitcoin-podcast/><h6>Lets Talk Bitcoin Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/lightning-conference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-conference/><h6>Lightning Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/lightning-conference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-conference/2019/><h6>Lightning Conference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/lightning-specification/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-specification/><h6>Lightning Specification</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/london-bitcoin-devs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/london-bitcoin-devs/><h6>London Bitcoin Devs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/magicalcryptoconference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/magicalcryptoconference/><h6>Magicalcryptoconference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/magicalcryptoconference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/magicalcryptoconference/2019/><h6>Magicalcryptoconference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/misc/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/misc/><h6>Misc</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/><h6>MIT Bitcoin Expo</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2015/><h6>Mit Bitcoin Expo 2015</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2016/><h6>Mit Bitcoin Expo 2016</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2017/><h6>Mit Bitcoin Expo 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2018/><h6>Mit Bitcoin Expo 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2019/><h6>Mit Bitcoin Expo 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2020/><h6>Mit Bitcoin Expo 2020</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2021/><h6>Mit Bitcoin Expo 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/munich-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/munich-meetup/><h6>Munich Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/noded-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/noded-podcast/><h6>Noded Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/realworldcrypto/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/><h6>Realworldcrypto</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/realworldcrypto/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/2018/><h6>Realworldcrypto 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/realworldcrypto/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/2021/><h6>Realworldcrypto 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/rebooting-web-of-trust/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/rebooting-web-of-trust/><h6>Rebooting Web Of Trust</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/rebooting-web-of-trust/2019-prague/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/rebooting-web-of-trust/2019-prague/><h6>2019 Prague</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/ruben-somsen/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/ruben-somsen/><h6>Ruben Somsen</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/satoshi-roundtable/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/satoshi-roundtable/><h6>Satoshi Roundtable</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/satoshi-roundtable/sr-004/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/satoshi-roundtable/sr-004/><h6>Sr 004</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/hong-kong-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/hong-kong-2015/><h6>Hong Kong (2015)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/milan-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/milan-2016/><h6>Milan (2016)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/montreal-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/montreal-2015/><h6>Montreal (2015)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/stanford-2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/stanford-2017/><h6>Stanford (2017)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/stanford-2017/edgeplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/stanford-2017/edgeplusplus/><h6>Edgeplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/tel-aviv-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tel-aviv-2019/><h6>Tel Aviv (2019)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/><h6>Edgedevplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/tokyo-2018/edgedevplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tokyo-2018/edgedevplusplus/><h6>Edgedevplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></li><li data-nav-id=/sf-bitcoin-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/sf-bitcoin-meetup/><h6>SF Bitcoin Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/simons-institute/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/simons-institute/><h6>Simons Institute</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/stanford-blockchain-conference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/><h6>Stanford Blockchain</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/stanford-blockchain-conference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/2019/><h6>Stanford Blockchain Conference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/stanford-blockchain-conference/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/2020/><h6>Stanford Blockchain Conference 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/stephan-livera-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stephan-livera-podcast/><h6>Stephan Livera Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/sydney-bitcoin-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/sydney-bitcoin-meetup/><h6>Sydney Bitcoin Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/texas-bitcoin-conference-2014/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/texas-bitcoin-conference-2014/><h6>Texas Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tftc-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tftc-podcast/><h6>TFTC Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/verifiable-delay-functions/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/verifiable-delay-functions/><h6>Verifiable Delay Functions</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/verifiable-delay-functions/vdf-day-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/verifiable-delay-functions/vdf-day-2019/><h6>Vdf Day 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/vr-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/vr-bitcoin/><h6>VR Bitcoin</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/w3-blockchain-workshop-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/w3-blockchain-workshop-2016/><h6>W3 Blockchain Workshop</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/wasabi-research-club/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/wasabi-research-club/><h6>Wasabi Research Club</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/what-bitcoin-did-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/what-bitcoin-did-podcast/><h6>What Bitcoin Did Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Stepan Snigirev</h1><ul><li><a href=/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/>Taproot on hardware wallets</a></li><li><a href=/stephan-livera-podcast/2020-08-28-stepan-snigirev-and-ben-kaufman/>Specter Desktop Bitcoin Multi Sig</a></li><li><a href=/austin-bitcoin-developers/2019-06-29-hardware-wallets/>Hardware Wallets</a></li><li><a href=/london-bitcoin-devs/2019-05-01-stepan-snigirev-hardware-wallet-attacks/>Hardware wallet attacks</a></li><li><a href=/breaking-bitcoin/2019/future-of-hardware-wallets/>Future Of Hardware Wallets</a></li><li><a href=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/hardware-wallet-design-best-practices/>Hardware Wallet Design Best Practices</a></li></ul><h4></h4><ul><li><a href=/es/speakers/stepan-snigirev/>es: Stepan Snigirev</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> +<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/adopting-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/adopting-bitcoin/><h6>Adopting Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/adopting-bitcoin/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/adopting-bitcoin/2021/><h6>Adopting Bitcoin 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/advancing-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2019/><h6>Advancing Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/advancing-bitcoin/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2020/><h6>Advancing Bitcoin 2020</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/advancing-bitcoin/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/andreas-antonopoulos/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/andreas-antonopoulos/><h6>Andreas Antonopoulos</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/austin-bitcoin-developers/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/austin-bitcoin-developers/><h6>Austin Bitcoin Developers</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/baltic-honeybadger/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/><h6>Baltic Honeybadger</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/baltic-honeybadger/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/2018/><h6>Baltic Honeybadger 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/baltic-honeybadger/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/2019/><h6>Baltic Honeybadger 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bit-block-boom/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bit-block-boom/><h6>Bit Block Boom</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bit-block-boom/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bit-block-boom/2019/><h6>Bit Block Boom 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bitcoin-core-dev-tech/2015-02/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2015-02/><h6>Bitcoin Core Dev Tech 2015</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2017-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2017-09/><h6>Bitcoin Core Dev Tech 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2018-03/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2018-03/><h6>Bitcoin Core Dev Tech 2018 (Mar)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2018-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2018-10/><h6>Bitcoin Core Dev Tech 2018 (Oct)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2019-06/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2019-06/><h6>Bitcoin Core Dev Tech 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2022-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2022-10/><h6>Bitcoin Core Dev Tech 2022</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2023-04/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2023-04/><h6>Bitcoin Core Dev Tech 2023 (Apr)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2023-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2023-09/><h6>Bitcoin Core Dev Tech 2023 (Sept)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoin-design/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-design/><h6>Bitcoin Design</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-magazine/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-magazine/><h6>Bitcoin Magazine</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoinplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinplusplus/><h6>Bitcoin++</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bitcoinplusplus/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinplusplus/2022/><h6>Bitcoin++ 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoinology/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinology/><h6>Bitcoinology</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoinops/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinops/><h6>Bitcoinops</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcointranscripts/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcointranscripts/><h6>Bitcointranscripts</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/blockchain-protocol-analysis-security-engineering/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/><h6>Blockchain Protocol Analysis Security Eng</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/blockchain-protocol-analysis-security-engineering/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/2017/><h6>Blockchain Protocol Analysis Security Engineering 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/blockchain-protocol-analysis-security-engineering/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/2018/><h6>Blockchain Protocol Analysis Security Engineering 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/blockstream-webinars/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockstream-webinars/><h6>Blockstream Webinars</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/boltathon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/boltathon/><h6>Boltathon</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/breaking-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/><h6>Breaking Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/breaking-bitcoin/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/2017/><h6>Breaking Bitcoin 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/breaking-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/2019/><h6>Breaking Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/building-on-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/building-on-bitcoin/><h6>Building On Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/building-on-bitcoin/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/building-on-bitcoin/2018/><h6>Building On Bitcoin 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/c-lightning/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/c-lightning/><h6>c-lightning</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/chaincode-labs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/><h6>Chaincode Labs</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/chaincode-labs/chaincode-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/chaincode-podcast/><h6>Chaincode Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/chaincode-labs/chaincode-residency/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/chaincode-residency/><h6>Chaincode Residency</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/chicago-bitdevs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chicago-bitdevs/><h6>Chicago Bitdevs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/coindesk-consensus-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coindesk-consensus-2016/><h6>Coindesk Consensus</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/coordination-of-decentralized-finance-workshop/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coordination-of-decentralized-finance-workshop/><h6>Coordination of Decentralized Finance</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/coordination-of-decentralized-finance-workshop/2020-stanford/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coordination-of-decentralized-finance-workshop/2020-stanford/><h6>2020 Stanford</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/cppcon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/><h6>CPPcon</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/cppcon/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/2017/><h6>CPPcon 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/cppcon/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/2020/><h6>CPPcon 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/cryptoeconomic-systems/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cryptoeconomic-systems/><h6>Cryptoeconomic Systems</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/cryptoeconomic-systems/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cryptoeconomic-systems/2019/><h6>Cryptoeconomic Systems 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/dallas-bitcoin-symposium/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/dallas-bitcoin-symposium/><h6>Dallas Bitcoin Symposium</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/decentralized-financial-architecture-workshop/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/decentralized-financial-architecture-workshop/><h6>Decentralized Financial Architecture Workshop</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-developers-miners-meeting-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-developers-miners-meeting-2016/><h6>Developers-Miners Meeting</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/greg-maxwell/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/greg-maxwell/><h6>Greg Maxwell</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/grincon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/grincon/><h6>Grincon</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/grincon/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/grincon/2019/><h6>Grincon 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/honey-badger-diaries/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/honey-badger-diaries/><h6>Honey Badger Diaries</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/iacr/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/iacr/><h6>IACR Crypto</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/la-bitdevs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/la-bitdevs/><h6>LA Bitdevs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/layer2-summit/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/layer2-summit/><h6>Layer2 Summit</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/layer2-summit/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/layer2-summit/2018/><h6>Layer2 Summit 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/lets-talk-bitcoin-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lets-talk-bitcoin-podcast/><h6>Lets Talk Bitcoin Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/lightning-conference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-conference/><h6>Lightning Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/lightning-conference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-conference/2019/><h6>Lightning Conference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/lightning-specification/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-specification/><h6>Lightning Specification</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/london-bitcoin-devs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/london-bitcoin-devs/><h6>London Bitcoin Devs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/magicalcryptoconference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/magicalcryptoconference/><h6>Magicalcryptoconference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/magicalcryptoconference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/magicalcryptoconference/2019/><h6>Magicalcryptoconference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/misc/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/misc/><h6>Misc</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/><h6>MIT Bitcoin Expo</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2015/><h6>Mit Bitcoin Expo 2015</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2016/><h6>Mit Bitcoin Expo 2016</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2017/><h6>Mit Bitcoin Expo 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2018/><h6>Mit Bitcoin Expo 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2019/><h6>Mit Bitcoin Expo 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2020/><h6>Mit Bitcoin Expo 2020</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2021/><h6>Mit Bitcoin Expo 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/munich-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/munich-meetup/><h6>Munich Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/noded-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/noded-podcast/><h6>Noded Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/realworldcrypto/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/><h6>Realworldcrypto</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/realworldcrypto/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/2018/><h6>Realworldcrypto 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/realworldcrypto/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/2021/><h6>Realworldcrypto 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/rebooting-web-of-trust/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/rebooting-web-of-trust/><h6>Rebooting Web Of Trust</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/rebooting-web-of-trust/2019-prague/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/rebooting-web-of-trust/2019-prague/><h6>2019 Prague</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/ruben-somsen/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/ruben-somsen/><h6>Ruben Somsen</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/satoshi-roundtable/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/satoshi-roundtable/><h6>Satoshi Roundtable</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/satoshi-roundtable/sr-004/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/satoshi-roundtable/sr-004/><h6>Sr 004</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/hong-kong-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/hong-kong-2015/><h6>Hong Kong (2015)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/milan-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/milan-2016/><h6>Milan (2016)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/montreal-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/montreal-2015/><h6>Montreal (2015)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/stanford-2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/stanford-2017/><h6>Stanford (2017)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/stanford-2017/edgeplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/stanford-2017/edgeplusplus/><h6>Edgeplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/tel-aviv-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tel-aviv-2019/><h6>Tel Aviv (2019)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/><h6>Edgedevplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/tokyo-2018/edgedevplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tokyo-2018/edgedevplusplus/><h6>Edgedevplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></li><li data-nav-id=/sf-bitcoin-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/sf-bitcoin-meetup/><h6>SF Bitcoin Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/simons-institute/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/simons-institute/><h6>Simons Institute</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/stanford-blockchain-conference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/><h6>Stanford Blockchain</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/stanford-blockchain-conference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/2019/><h6>Stanford Blockchain Conference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/stanford-blockchain-conference/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/2020/><h6>Stanford Blockchain Conference 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/stephan-livera-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stephan-livera-podcast/><h6>Stephan Livera Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/sydney-bitcoin-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/sydney-bitcoin-meetup/><h6>Sydney Bitcoin Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/texas-bitcoin-conference-2014/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/texas-bitcoin-conference-2014/><h6>Texas Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tftc-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tftc-podcast/><h6>TFTC Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/verifiable-delay-functions/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/verifiable-delay-functions/><h6>Verifiable Delay Functions</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/verifiable-delay-functions/vdf-day-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/verifiable-delay-functions/vdf-day-2019/><h6>Vdf Day 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/vr-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/vr-bitcoin/><h6>VR Bitcoin</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/w3-blockchain-workshop-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/w3-blockchain-workshop-2016/><h6>W3 Blockchain Workshop</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/wasabi-research-club/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/wasabi-research-club/><h6>Wasabi Research Club</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/what-bitcoin-did-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/what-bitcoin-did-podcast/><h6>What Bitcoin Did Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Stepan Snigirev</h1><ul><li><a href=/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/>Taproot on hardware wallets</a></li><li><a href=/stephan-livera-podcast/2020-08-28-stepan-snigirev-and-ben-kaufman/>Specter Desktop Bitcoin Multi Sig</a></li><li><a href=/austin-bitcoin-developers/2019-06-29-hardware-wallets/>Hardware Wallets</a></li><li><a href=/london-bitcoin-devs/2019-05-01-stepan-snigirev-hardware-wallet-attacks/>Hardware wallet attacks</a></li><li><a href=/breaking-bitcoin/2019/future-of-hardware-wallets/>Future Of Hardware Wallets</a></li><li><a href=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/hardware-wallet-design-best-practices/>Hardware Wallet Design Best Practices</a></li></ul><h4></h4><ul><li><a href=/es/speakers/stepan-snigirev/>es: Stepan Snigirev</a></li><li><a href=/zh/speakers/stepan-snigirev/>zh: Stepan Snigirev</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> <script src=https://btctranscripts.com/lib/popper.min.js></script> <script src=https://btctranscripts.com/js/bootstrap.min.js></script> <script type=text/javascript src=/plugins/lunr.min.js></script> diff --git a/tags/hardware-wallet/index.html b/tags/hardware-wallet/index.html index e20c41722d..36172ba117 100644 --- a/tags/hardware-wallet/index.html +++ b/tags/hardware-wallet/index.html @@ -1,5 +1,5 @@ <!doctype html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><link rel=alternate type=application/rss+xml href=https://btctranscripts.com/tags/hardware-wallet/index.xml title="₿itcoin Transcripts"><link rel=canonical href=https://btctranscripts.com/tags/hardware-wallet/><title>hardware wallet | ₿itcoin Transcripts</title><link href=https://btctranscripts.com/css/fontawesome.min.css rel=stylesheet><link rel=stylesheet href=https://btctranscripts.com/css/ace.min.css><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://btctranscripts.com/images/btctranscripts.png"><meta name=twitter:title content="hardware wallet"><meta name=twitter:description content="A treasure trove of ₿itcoin transcripts (mostly recorded by @kanzure)"></head><body><nav class="navbar navbar-expand-lg navbar-dark bg-primary shadow sticky-top" id=navbarMain><div class=container><div><a class=navbar-brand href=/>₿itcoin Transcripts</a></div><div class="collapse navbar-collapse" id=navbarMainCollapse><ul class="navbar-nav ml-auto"><li class=nav-item><a class=nav-link href=/es>es</a></li><li class=nav-item><a class=nav-link href=/pt>pt</a></li><li class=nav-item><a class=nav-link href=/zh>zh</a></li><li class=nav-item><a class=nav-link href=https://github.com/bitcointranscripts/bitcointranscripts target=_blank><i class='fab fa-github'></i></a></li></ul></div></div></nav><div class=container-fluid><div class=row><div class="docs-sidenav order-0 col-12 col-md-3 col-lg-2 col-xl-2 position-sticky border-right"><nav class="navbar navbar-expand-md navbar-light pl-0"><button class="navbar-toggler navbar-toggler-right collapsed" type=button data-toggle=collapse data-target=#sidenav-left-collapse aria-controls=sidenav-left-collapse aria-expanded=false aria-label="Toggle navigation"> -<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/adopting-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/adopting-bitcoin/><h6>Adopting Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/adopting-bitcoin/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/adopting-bitcoin/2021/><h6>Adopting Bitcoin 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/advancing-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2019/><h6>Advancing Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/advancing-bitcoin/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2020/><h6>Advancing Bitcoin 2020</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/advancing-bitcoin/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/andreas-antonopoulos/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/andreas-antonopoulos/><h6>Andreas Antonopoulos</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/austin-bitcoin-developers/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/austin-bitcoin-developers/><h6>Austin Bitcoin Developers</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/baltic-honeybadger/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/><h6>Baltic Honeybadger</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/baltic-honeybadger/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/2018/><h6>Baltic Honeybadger 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/baltic-honeybadger/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/2019/><h6>Baltic Honeybadger 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bit-block-boom/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bit-block-boom/><h6>Bit Block Boom</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bit-block-boom/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bit-block-boom/2019/><h6>Bit Block Boom 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bitcoin-core-dev-tech/2015-02/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2015-02/><h6>Bitcoin Core Dev Tech 2015</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2017-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2017-09/><h6>Bitcoin Core Dev Tech 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2018-03/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2018-03/><h6>Bitcoin Core Dev Tech 2018 (Mar)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2018-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2018-10/><h6>Bitcoin Core Dev Tech 2018 (Oct)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2019-06/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2019-06/><h6>Bitcoin Core Dev Tech 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2022-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2022-10/><h6>Bitcoin Core Dev Tech 2022</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2023-04/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2023-04/><h6>Bitcoin Core Dev Tech 2023 (Apr)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2023-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2023-09/><h6>Bitcoin Core Dev Tech 2023 (Sept)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoin-design/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-design/><h6>Bitcoin Design</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-magazine/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-magazine/><h6>Bitcoin Magazine</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoinplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinplusplus/><h6>Bitcoin++</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bitcoinplusplus/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinplusplus/2022/><h6>Bitcoin++ 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoinology/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinology/><h6>Bitcoinology</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoinops/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinops/><h6>Bitcoinops</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcointranscripts/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcointranscripts/><h6>Bitcointranscripts</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/blockchain-protocol-analysis-security-engineering/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/><h6>Blockchain Protocol Analysis Security Eng</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/blockchain-protocol-analysis-security-engineering/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/2017/><h6>Blockchain Protocol Analysis Security Engineering 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/blockchain-protocol-analysis-security-engineering/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/2018/><h6>Blockchain Protocol Analysis Security Engineering 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/blockstream-webinars/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockstream-webinars/><h6>Blockstream Webinars</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/boltathon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/boltathon/><h6>Boltathon</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/breaking-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/><h6>Breaking Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/breaking-bitcoin/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/2017/><h6>Breaking Bitcoin 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/breaking-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/2019/><h6>Breaking Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/building-on-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/building-on-bitcoin/><h6>Building On Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/building-on-bitcoin/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/building-on-bitcoin/2018/><h6>Building On Bitcoin 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/c-lightning/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/c-lightning/><h6>c-lightning</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/chaincode-labs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/><h6>Chaincode Labs</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/chaincode-labs/chaincode-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/chaincode-podcast/><h6>Chaincode Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/chaincode-labs/chaincode-residency/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/chaincode-residency/><h6>Chaincode Residency</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/chicago-bitdevs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chicago-bitdevs/><h6>Chicago Bitdevs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/coindesk-consensus-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coindesk-consensus-2016/><h6>Coindesk Consensus</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/coordination-of-decentralized-finance-workshop/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coordination-of-decentralized-finance-workshop/><h6>Coordination of Decentralized Finance</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/coordination-of-decentralized-finance-workshop/2020-stanford/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coordination-of-decentralized-finance-workshop/2020-stanford/><h6>2020 Stanford</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/cppcon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/><h6>CPPcon</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/cppcon/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/2017/><h6>CPPcon 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/cppcon/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/2020/><h6>CPPcon 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/cryptoeconomic-systems/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cryptoeconomic-systems/><h6>Cryptoeconomic Systems</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/cryptoeconomic-systems/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cryptoeconomic-systems/2019/><h6>Cryptoeconomic Systems 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/dallas-bitcoin-symposium/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/dallas-bitcoin-symposium/><h6>Dallas Bitcoin Symposium</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/decentralized-financial-architecture-workshop/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/decentralized-financial-architecture-workshop/><h6>Decentralized Financial Architecture Workshop</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-developers-miners-meeting-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-developers-miners-meeting-2016/><h6>Developers-Miners Meeting</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/greg-maxwell/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/greg-maxwell/><h6>Greg Maxwell</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/grincon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/grincon/><h6>Grincon</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/grincon/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/grincon/2019/><h6>Grincon 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/honey-badger-diaries/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/honey-badger-diaries/><h6>Honey Badger Diaries</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/iacr/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/iacr/><h6>IACR Crypto</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/la-bitdevs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/la-bitdevs/><h6>LA Bitdevs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/layer2-summit/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/layer2-summit/><h6>Layer2 Summit</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/layer2-summit/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/layer2-summit/2018/><h6>Layer2 Summit 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/lets-talk-bitcoin-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lets-talk-bitcoin-podcast/><h6>Lets Talk Bitcoin Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/lightning-conference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-conference/><h6>Lightning Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/lightning-conference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-conference/2019/><h6>Lightning Conference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/lightning-specification/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-specification/><h6>Lightning Specification</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/london-bitcoin-devs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/london-bitcoin-devs/><h6>London Bitcoin Devs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/magicalcryptoconference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/magicalcryptoconference/><h6>Magicalcryptoconference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/magicalcryptoconference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/magicalcryptoconference/2019/><h6>Magicalcryptoconference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/misc/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/misc/><h6>Misc</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/><h6>MIT Bitcoin Expo</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2015/><h6>Mit Bitcoin Expo 2015</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2016/><h6>Mit Bitcoin Expo 2016</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2017/><h6>Mit Bitcoin Expo 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2018/><h6>Mit Bitcoin Expo 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2019/><h6>Mit Bitcoin Expo 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2020/><h6>Mit Bitcoin Expo 2020</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2021/><h6>Mit Bitcoin Expo 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/munich-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/munich-meetup/><h6>Munich Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/noded-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/noded-podcast/><h6>Noded Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/realworldcrypto/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/><h6>Realworldcrypto</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/realworldcrypto/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/2018/><h6>Realworldcrypto 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/realworldcrypto/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/2021/><h6>Realworldcrypto 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/rebooting-web-of-trust/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/rebooting-web-of-trust/><h6>Rebooting Web Of Trust</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/rebooting-web-of-trust/2019-prague/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/rebooting-web-of-trust/2019-prague/><h6>2019 Prague</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/ruben-somsen/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/ruben-somsen/><h6>Ruben Somsen</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/satoshi-roundtable/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/satoshi-roundtable/><h6>Satoshi Roundtable</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/satoshi-roundtable/sr-004/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/satoshi-roundtable/sr-004/><h6>Sr 004</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/hong-kong-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/hong-kong-2015/><h6>Hong Kong (2015)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/milan-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/milan-2016/><h6>Milan (2016)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/montreal-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/montreal-2015/><h6>Montreal (2015)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/stanford-2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/stanford-2017/><h6>Stanford (2017)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/stanford-2017/edgeplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/stanford-2017/edgeplusplus/><h6>Edgeplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/tel-aviv-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tel-aviv-2019/><h6>Tel Aviv (2019)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/><h6>Edgedevplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/tokyo-2018/edgedevplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tokyo-2018/edgedevplusplus/><h6>Edgedevplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></li><li data-nav-id=/sf-bitcoin-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/sf-bitcoin-meetup/><h6>SF Bitcoin Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/simons-institute/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/simons-institute/><h6>Simons Institute</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/stanford-blockchain-conference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/><h6>Stanford Blockchain</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/stanford-blockchain-conference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/2019/><h6>Stanford Blockchain Conference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/stanford-blockchain-conference/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/2020/><h6>Stanford Blockchain Conference 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/stephan-livera-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stephan-livera-podcast/><h6>Stephan Livera Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/sydney-bitcoin-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/sydney-bitcoin-meetup/><h6>Sydney Bitcoin Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/texas-bitcoin-conference-2014/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/texas-bitcoin-conference-2014/><h6>Texas Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tftc-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tftc-podcast/><h6>TFTC Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/verifiable-delay-functions/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/verifiable-delay-functions/><h6>Verifiable Delay Functions</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/verifiable-delay-functions/vdf-day-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/verifiable-delay-functions/vdf-day-2019/><h6>Vdf Day 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/vr-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/vr-bitcoin/><h6>VR Bitcoin</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/w3-blockchain-workshop-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/w3-blockchain-workshop-2016/><h6>W3 Blockchain Workshop</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/wasabi-research-club/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/wasabi-research-club/><h6>Wasabi Research Club</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/what-bitcoin-did-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/what-bitcoin-did-podcast/><h6>What Bitcoin Did Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Hardware Wallet</h1><ul><li><a href=/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/>Taproot on hardware wallets</a></li><li><a href=/greg-maxwell/2020-11-05-greg-maxwell-yubikey-security/>Yubikey Security</a></li><li><a href=/greg-maxwell/2020-11-01-greg-maxwell-hardware-wallets-altcoins/>Hardware Wallets Altcoins</a></li><li><a href=/london-bitcoin-devs/2020-02-05-andrew-chow-hardware-wallets/>Hardware Wallets</a></li><li><a href=/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/>Coldcard Mk3</a></li><li><a href=/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/>Socratic Seminar 2</a></li><li><a href=/austin-bitcoin-developers/2019-06-29-hardware-wallets/>Hardware Wallets</a></li><li><a href=/bitcoin-core-dev-tech/2019-06/2019-06-07-hardware-wallets/>Hardware Wallets</a></li><li><a href=/london-bitcoin-devs/2019-05-01-stepan-snigirev-hardware-wallet-attacks/>Hardware wallet attacks</a></li><li><a href=/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/>Hardware Wallet Security</a></li><li><a href=/london-bitcoin-devs/2018-09-19-sjors-provoost-core-hardware-wallet/>Bitcoin Core and hardware wallets</a></li><li><a href=/breaking-bitcoin/2017/breaking-hardware-wallets/>Breaking Hardware Wallets</a></li><li><a href=/breaking-bitcoin/2019/extracting-seeds-from-hardware-wallets/>Extracting Seeds From Hardware Wallets</a></li><li><a href=/breaking-bitcoin/2019/future-of-hardware-wallets/>Future Of Hardware Wallets</a></li><li><a href=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/hardware-wallet-design-best-practices/>Hardware Wallet Design Best Practices</a></li><li><a href=/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/>The Future Of Bitcoin Wallets</a></li></ul><h4></h4><ul><li><a href=/es/tags/hardware-wallet/>es: hardware wallet</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> +<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/adopting-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/adopting-bitcoin/><h6>Adopting Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/adopting-bitcoin/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/adopting-bitcoin/2021/><h6>Adopting Bitcoin 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/advancing-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2019/><h6>Advancing Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/advancing-bitcoin/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2020/><h6>Advancing Bitcoin 2020</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/advancing-bitcoin/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/andreas-antonopoulos/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/andreas-antonopoulos/><h6>Andreas Antonopoulos</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/austin-bitcoin-developers/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/austin-bitcoin-developers/><h6>Austin Bitcoin Developers</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/baltic-honeybadger/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/><h6>Baltic Honeybadger</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/baltic-honeybadger/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/2018/><h6>Baltic Honeybadger 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/baltic-honeybadger/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/2019/><h6>Baltic Honeybadger 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bit-block-boom/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bit-block-boom/><h6>Bit Block Boom</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bit-block-boom/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bit-block-boom/2019/><h6>Bit Block Boom 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bitcoin-core-dev-tech/2015-02/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2015-02/><h6>Bitcoin Core Dev Tech 2015</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2017-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2017-09/><h6>Bitcoin Core Dev Tech 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2018-03/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2018-03/><h6>Bitcoin Core Dev Tech 2018 (Mar)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2018-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2018-10/><h6>Bitcoin Core Dev Tech 2018 (Oct)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2019-06/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2019-06/><h6>Bitcoin Core Dev Tech 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2022-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2022-10/><h6>Bitcoin Core Dev Tech 2022</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2023-04/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2023-04/><h6>Bitcoin Core Dev Tech 2023 (Apr)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2023-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2023-09/><h6>Bitcoin Core Dev Tech 2023 (Sept)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoin-design/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-design/><h6>Bitcoin Design</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-magazine/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-magazine/><h6>Bitcoin Magazine</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoinplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinplusplus/><h6>Bitcoin++</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bitcoinplusplus/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinplusplus/2022/><h6>Bitcoin++ 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoinology/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinology/><h6>Bitcoinology</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoinops/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinops/><h6>Bitcoinops</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcointranscripts/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcointranscripts/><h6>Bitcointranscripts</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/blockchain-protocol-analysis-security-engineering/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/><h6>Blockchain Protocol Analysis Security Eng</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/blockchain-protocol-analysis-security-engineering/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/2017/><h6>Blockchain Protocol Analysis Security Engineering 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/blockchain-protocol-analysis-security-engineering/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/2018/><h6>Blockchain Protocol Analysis Security Engineering 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/blockstream-webinars/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockstream-webinars/><h6>Blockstream Webinars</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/boltathon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/boltathon/><h6>Boltathon</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/breaking-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/><h6>Breaking Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/breaking-bitcoin/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/2017/><h6>Breaking Bitcoin 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/breaking-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/2019/><h6>Breaking Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/building-on-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/building-on-bitcoin/><h6>Building On Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/building-on-bitcoin/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/building-on-bitcoin/2018/><h6>Building On Bitcoin 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/c-lightning/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/c-lightning/><h6>c-lightning</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/chaincode-labs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/><h6>Chaincode Labs</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/chaincode-labs/chaincode-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/chaincode-podcast/><h6>Chaincode Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/chaincode-labs/chaincode-residency/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/chaincode-residency/><h6>Chaincode Residency</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/chicago-bitdevs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chicago-bitdevs/><h6>Chicago Bitdevs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/coindesk-consensus-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coindesk-consensus-2016/><h6>Coindesk Consensus</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/coordination-of-decentralized-finance-workshop/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coordination-of-decentralized-finance-workshop/><h6>Coordination of Decentralized Finance</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/coordination-of-decentralized-finance-workshop/2020-stanford/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coordination-of-decentralized-finance-workshop/2020-stanford/><h6>2020 Stanford</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/cppcon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/><h6>CPPcon</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/cppcon/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/2017/><h6>CPPcon 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/cppcon/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/2020/><h6>CPPcon 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/cryptoeconomic-systems/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cryptoeconomic-systems/><h6>Cryptoeconomic Systems</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/cryptoeconomic-systems/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cryptoeconomic-systems/2019/><h6>Cryptoeconomic Systems 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/dallas-bitcoin-symposium/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/dallas-bitcoin-symposium/><h6>Dallas Bitcoin Symposium</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/decentralized-financial-architecture-workshop/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/decentralized-financial-architecture-workshop/><h6>Decentralized Financial Architecture Workshop</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-developers-miners-meeting-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-developers-miners-meeting-2016/><h6>Developers-Miners Meeting</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/greg-maxwell/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/greg-maxwell/><h6>Greg Maxwell</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/grincon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/grincon/><h6>Grincon</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/grincon/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/grincon/2019/><h6>Grincon 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/honey-badger-diaries/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/honey-badger-diaries/><h6>Honey Badger Diaries</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/iacr/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/iacr/><h6>IACR Crypto</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/la-bitdevs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/la-bitdevs/><h6>LA Bitdevs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/layer2-summit/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/layer2-summit/><h6>Layer2 Summit</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/layer2-summit/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/layer2-summit/2018/><h6>Layer2 Summit 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/lets-talk-bitcoin-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lets-talk-bitcoin-podcast/><h6>Lets Talk Bitcoin Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/lightning-conference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-conference/><h6>Lightning Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/lightning-conference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-conference/2019/><h6>Lightning Conference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/lightning-specification/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-specification/><h6>Lightning Specification</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/london-bitcoin-devs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/london-bitcoin-devs/><h6>London Bitcoin Devs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/magicalcryptoconference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/magicalcryptoconference/><h6>Magicalcryptoconference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/magicalcryptoconference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/magicalcryptoconference/2019/><h6>Magicalcryptoconference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/misc/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/misc/><h6>Misc</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/><h6>MIT Bitcoin Expo</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2015/><h6>Mit Bitcoin Expo 2015</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2016/><h6>Mit Bitcoin Expo 2016</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2017/><h6>Mit Bitcoin Expo 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2018/><h6>Mit Bitcoin Expo 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2019/><h6>Mit Bitcoin Expo 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2020/><h6>Mit Bitcoin Expo 2020</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2021/><h6>Mit Bitcoin Expo 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/munich-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/munich-meetup/><h6>Munich Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/noded-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/noded-podcast/><h6>Noded Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/realworldcrypto/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/><h6>Realworldcrypto</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/realworldcrypto/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/2018/><h6>Realworldcrypto 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/realworldcrypto/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/2021/><h6>Realworldcrypto 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/rebooting-web-of-trust/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/rebooting-web-of-trust/><h6>Rebooting Web Of Trust</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/rebooting-web-of-trust/2019-prague/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/rebooting-web-of-trust/2019-prague/><h6>2019 Prague</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/ruben-somsen/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/ruben-somsen/><h6>Ruben Somsen</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/satoshi-roundtable/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/satoshi-roundtable/><h6>Satoshi Roundtable</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/satoshi-roundtable/sr-004/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/satoshi-roundtable/sr-004/><h6>Sr 004</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/hong-kong-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/hong-kong-2015/><h6>Hong Kong (2015)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/milan-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/milan-2016/><h6>Milan (2016)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/montreal-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/montreal-2015/><h6>Montreal (2015)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/stanford-2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/stanford-2017/><h6>Stanford (2017)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/stanford-2017/edgeplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/stanford-2017/edgeplusplus/><h6>Edgeplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/tel-aviv-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tel-aviv-2019/><h6>Tel Aviv (2019)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/><h6>Edgedevplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/tokyo-2018/edgedevplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tokyo-2018/edgedevplusplus/><h6>Edgedevplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></li><li data-nav-id=/sf-bitcoin-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/sf-bitcoin-meetup/><h6>SF Bitcoin Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/simons-institute/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/simons-institute/><h6>Simons Institute</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/stanford-blockchain-conference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/><h6>Stanford Blockchain</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/stanford-blockchain-conference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/2019/><h6>Stanford Blockchain Conference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/stanford-blockchain-conference/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/2020/><h6>Stanford Blockchain Conference 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/stephan-livera-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stephan-livera-podcast/><h6>Stephan Livera Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/sydney-bitcoin-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/sydney-bitcoin-meetup/><h6>Sydney Bitcoin Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/texas-bitcoin-conference-2014/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/texas-bitcoin-conference-2014/><h6>Texas Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tftc-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tftc-podcast/><h6>TFTC Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/verifiable-delay-functions/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/verifiable-delay-functions/><h6>Verifiable Delay Functions</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/verifiable-delay-functions/vdf-day-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/verifiable-delay-functions/vdf-day-2019/><h6>Vdf Day 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/vr-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/vr-bitcoin/><h6>VR Bitcoin</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/w3-blockchain-workshop-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/w3-blockchain-workshop-2016/><h6>W3 Blockchain Workshop</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/wasabi-research-club/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/wasabi-research-club/><h6>Wasabi Research Club</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/what-bitcoin-did-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/what-bitcoin-did-podcast/><h6>What Bitcoin Did Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Hardware Wallet</h1><ul><li><a href=/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/>Taproot on hardware wallets</a></li><li><a href=/greg-maxwell/2020-11-05-greg-maxwell-yubikey-security/>Yubikey Security</a></li><li><a href=/greg-maxwell/2020-11-01-greg-maxwell-hardware-wallets-altcoins/>Hardware Wallets Altcoins</a></li><li><a href=/london-bitcoin-devs/2020-02-05-andrew-chow-hardware-wallets/>Hardware Wallets</a></li><li><a href=/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/>Coldcard Mk3</a></li><li><a href=/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/>Socratic Seminar 2</a></li><li><a href=/austin-bitcoin-developers/2019-06-29-hardware-wallets/>Hardware Wallets</a></li><li><a href=/bitcoin-core-dev-tech/2019-06/2019-06-07-hardware-wallets/>Hardware Wallets</a></li><li><a href=/london-bitcoin-devs/2019-05-01-stepan-snigirev-hardware-wallet-attacks/>Hardware wallet attacks</a></li><li><a href=/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/>Hardware Wallet Security</a></li><li><a href=/london-bitcoin-devs/2018-09-19-sjors-provoost-core-hardware-wallet/>Bitcoin Core and hardware wallets</a></li><li><a href=/breaking-bitcoin/2017/breaking-hardware-wallets/>Breaking Hardware Wallets</a></li><li><a href=/breaking-bitcoin/2019/extracting-seeds-from-hardware-wallets/>Extracting Seeds From Hardware Wallets</a></li><li><a href=/breaking-bitcoin/2019/future-of-hardware-wallets/>Future Of Hardware Wallets</a></li><li><a href=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/hardware-wallet-design-best-practices/>Hardware Wallet Design Best Practices</a></li><li><a href=/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/>The Future Of Bitcoin Wallets</a></li></ul><h4></h4><ul><li><a href=/es/tags/hardware-wallet/>es: hardware wallet</a></li><li><a href=/zh/tags/hardware-wallet/>zh: hardware wallet</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> <script src=https://btctranscripts.com/lib/popper.min.js></script> <script src=https://btctranscripts.com/js/bootstrap.min.js></script> <script type=text/javascript src=/plugins/lunr.min.js></script> diff --git a/tags/taproot/index.html b/tags/taproot/index.html index 5a45e26482..a3078d6d52 100644 --- a/tags/taproot/index.html +++ b/tags/taproot/index.html @@ -1,5 +1,5 @@ <!doctype html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><link rel=alternate type=application/rss+xml href=https://btctranscripts.com/tags/taproot/index.xml title="₿itcoin Transcripts"><link rel=canonical href=https://btctranscripts.com/tags/taproot/><title>taproot | ₿itcoin Transcripts</title><link href=https://btctranscripts.com/css/fontawesome.min.css rel=stylesheet><link rel=stylesheet href=https://btctranscripts.com/css/ace.min.css><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://btctranscripts.com/images/btctranscripts.png"><meta name=twitter:title content="taproot"><meta name=twitter:description content="A treasure trove of ₿itcoin transcripts (mostly recorded by @kanzure)"></head><body><nav class="navbar navbar-expand-lg navbar-dark bg-primary shadow sticky-top" id=navbarMain><div class=container><div><a class=navbar-brand href=/>₿itcoin Transcripts</a></div><div class="collapse navbar-collapse" id=navbarMainCollapse><ul class="navbar-nav ml-auto"><li class=nav-item><a class=nav-link href=/es>es</a></li><li class=nav-item><a class=nav-link href=/pt>pt</a></li><li class=nav-item><a class=nav-link href=/zh>zh</a></li><li class=nav-item><a class=nav-link href=https://github.com/bitcointranscripts/bitcointranscripts target=_blank><i class='fab fa-github'></i></a></li></ul></div></div></nav><div class=container-fluid><div class=row><div class="docs-sidenav order-0 col-12 col-md-3 col-lg-2 col-xl-2 position-sticky border-right"><nav class="navbar navbar-expand-md navbar-light pl-0"><button class="navbar-toggler navbar-toggler-right collapsed" type=button data-toggle=collapse data-target=#sidenav-left-collapse aria-controls=sidenav-left-collapse aria-expanded=false aria-label="Toggle navigation"> -<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/adopting-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/adopting-bitcoin/><h6>Adopting Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/adopting-bitcoin/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/adopting-bitcoin/2021/><h6>Adopting Bitcoin 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/advancing-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2019/><h6>Advancing Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/advancing-bitcoin/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2020/><h6>Advancing Bitcoin 2020</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/advancing-bitcoin/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/andreas-antonopoulos/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/andreas-antonopoulos/><h6>Andreas Antonopoulos</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/austin-bitcoin-developers/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/austin-bitcoin-developers/><h6>Austin Bitcoin Developers</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/baltic-honeybadger/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/><h6>Baltic Honeybadger</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/baltic-honeybadger/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/2018/><h6>Baltic Honeybadger 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/baltic-honeybadger/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/2019/><h6>Baltic Honeybadger 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bit-block-boom/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bit-block-boom/><h6>Bit Block Boom</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bit-block-boom/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bit-block-boom/2019/><h6>Bit Block Boom 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bitcoin-core-dev-tech/2015-02/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2015-02/><h6>Bitcoin Core Dev Tech 2015</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2017-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2017-09/><h6>Bitcoin Core Dev Tech 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2018-03/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2018-03/><h6>Bitcoin Core Dev Tech 2018 (Mar)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2018-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2018-10/><h6>Bitcoin Core Dev Tech 2018 (Oct)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2019-06/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2019-06/><h6>Bitcoin Core Dev Tech 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2022-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2022-10/><h6>Bitcoin Core Dev Tech 2022</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2023-04/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2023-04/><h6>Bitcoin Core Dev Tech 2023 (Apr)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2023-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2023-09/><h6>Bitcoin Core Dev Tech 2023 (Sept)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoin-design/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-design/><h6>Bitcoin Design</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-magazine/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-magazine/><h6>Bitcoin Magazine</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoinplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinplusplus/><h6>Bitcoin++</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bitcoinplusplus/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinplusplus/2022/><h6>Bitcoin++ 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoinology/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinology/><h6>Bitcoinology</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoinops/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinops/><h6>Bitcoinops</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcointranscripts/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcointranscripts/><h6>Bitcointranscripts</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/blockchain-protocol-analysis-security-engineering/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/><h6>Blockchain Protocol Analysis Security Eng</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/blockchain-protocol-analysis-security-engineering/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/2017/><h6>Blockchain Protocol Analysis Security Engineering 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/blockchain-protocol-analysis-security-engineering/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/2018/><h6>Blockchain Protocol Analysis Security Engineering 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/blockstream-webinars/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockstream-webinars/><h6>Blockstream Webinars</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/boltathon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/boltathon/><h6>Boltathon</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/breaking-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/><h6>Breaking Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/breaking-bitcoin/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/2017/><h6>Breaking Bitcoin 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/breaking-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/2019/><h6>Breaking Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/building-on-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/building-on-bitcoin/><h6>Building On Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/building-on-bitcoin/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/building-on-bitcoin/2018/><h6>Building On Bitcoin 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/c-lightning/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/c-lightning/><h6>c-lightning</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/chaincode-labs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/><h6>Chaincode Labs</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/chaincode-labs/chaincode-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/chaincode-podcast/><h6>Chaincode Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/chaincode-labs/chaincode-residency/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/chaincode-residency/><h6>Chaincode Residency</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/chicago-bitdevs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chicago-bitdevs/><h6>Chicago Bitdevs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/coindesk-consensus-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coindesk-consensus-2016/><h6>Coindesk Consensus</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/coordination-of-decentralized-finance-workshop/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coordination-of-decentralized-finance-workshop/><h6>Coordination of Decentralized Finance</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/coordination-of-decentralized-finance-workshop/2020-stanford/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coordination-of-decentralized-finance-workshop/2020-stanford/><h6>2020 Stanford</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/cppcon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/><h6>CPPcon</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/cppcon/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/2017/><h6>CPPcon 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/cppcon/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/2020/><h6>CPPcon 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/cryptoeconomic-systems/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cryptoeconomic-systems/><h6>Cryptoeconomic Systems</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/cryptoeconomic-systems/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cryptoeconomic-systems/2019/><h6>Cryptoeconomic Systems 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/dallas-bitcoin-symposium/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/dallas-bitcoin-symposium/><h6>Dallas Bitcoin Symposium</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/decentralized-financial-architecture-workshop/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/decentralized-financial-architecture-workshop/><h6>Decentralized Financial Architecture Workshop</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-developers-miners-meeting-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-developers-miners-meeting-2016/><h6>Developers-Miners Meeting</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/greg-maxwell/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/greg-maxwell/><h6>Greg Maxwell</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/grincon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/grincon/><h6>Grincon</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/grincon/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/grincon/2019/><h6>Grincon 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/honey-badger-diaries/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/honey-badger-diaries/><h6>Honey Badger Diaries</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/iacr/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/iacr/><h6>IACR Crypto</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/la-bitdevs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/la-bitdevs/><h6>LA Bitdevs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/layer2-summit/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/layer2-summit/><h6>Layer2 Summit</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/layer2-summit/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/layer2-summit/2018/><h6>Layer2 Summit 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/lets-talk-bitcoin-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lets-talk-bitcoin-podcast/><h6>Lets Talk Bitcoin Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/lightning-conference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-conference/><h6>Lightning Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/lightning-conference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-conference/2019/><h6>Lightning Conference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/lightning-specification/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-specification/><h6>Lightning Specification</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/london-bitcoin-devs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/london-bitcoin-devs/><h6>London Bitcoin Devs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/magicalcryptoconference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/magicalcryptoconference/><h6>Magicalcryptoconference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/magicalcryptoconference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/magicalcryptoconference/2019/><h6>Magicalcryptoconference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/misc/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/misc/><h6>Misc</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/><h6>MIT Bitcoin Expo</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2015/><h6>Mit Bitcoin Expo 2015</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2016/><h6>Mit Bitcoin Expo 2016</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2017/><h6>Mit Bitcoin Expo 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2018/><h6>Mit Bitcoin Expo 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2019/><h6>Mit Bitcoin Expo 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2020/><h6>Mit Bitcoin Expo 2020</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2021/><h6>Mit Bitcoin Expo 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/munich-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/munich-meetup/><h6>Munich Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/noded-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/noded-podcast/><h6>Noded Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/realworldcrypto/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/><h6>Realworldcrypto</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/realworldcrypto/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/2018/><h6>Realworldcrypto 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/realworldcrypto/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/2021/><h6>Realworldcrypto 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/rebooting-web-of-trust/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/rebooting-web-of-trust/><h6>Rebooting Web Of Trust</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/rebooting-web-of-trust/2019-prague/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/rebooting-web-of-trust/2019-prague/><h6>2019 Prague</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/ruben-somsen/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/ruben-somsen/><h6>Ruben Somsen</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/satoshi-roundtable/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/satoshi-roundtable/><h6>Satoshi Roundtable</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/satoshi-roundtable/sr-004/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/satoshi-roundtable/sr-004/><h6>Sr 004</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/hong-kong-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/hong-kong-2015/><h6>Hong Kong (2015)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/milan-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/milan-2016/><h6>Milan (2016)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/montreal-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/montreal-2015/><h6>Montreal (2015)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/stanford-2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/stanford-2017/><h6>Stanford (2017)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/stanford-2017/edgeplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/stanford-2017/edgeplusplus/><h6>Edgeplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/tel-aviv-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tel-aviv-2019/><h6>Tel Aviv (2019)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/><h6>Edgedevplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/tokyo-2018/edgedevplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tokyo-2018/edgedevplusplus/><h6>Edgedevplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></li><li data-nav-id=/sf-bitcoin-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/sf-bitcoin-meetup/><h6>SF Bitcoin Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/simons-institute/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/simons-institute/><h6>Simons Institute</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/stanford-blockchain-conference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/><h6>Stanford Blockchain</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/stanford-blockchain-conference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/2019/><h6>Stanford Blockchain Conference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/stanford-blockchain-conference/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/2020/><h6>Stanford Blockchain Conference 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/stephan-livera-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stephan-livera-podcast/><h6>Stephan Livera Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/sydney-bitcoin-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/sydney-bitcoin-meetup/><h6>Sydney Bitcoin Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/texas-bitcoin-conference-2014/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/texas-bitcoin-conference-2014/><h6>Texas Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tftc-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tftc-podcast/><h6>TFTC Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/verifiable-delay-functions/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/verifiable-delay-functions/><h6>Verifiable Delay Functions</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/verifiable-delay-functions/vdf-day-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/verifiable-delay-functions/vdf-day-2019/><h6>Vdf Day 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/vr-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/vr-bitcoin/><h6>VR Bitcoin</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/w3-blockchain-workshop-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/w3-blockchain-workshop-2016/><h6>W3 Blockchain Workshop</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/wasabi-research-club/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/wasabi-research-club/><h6>Wasabi Research Club</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/what-bitcoin-did-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/what-bitcoin-did-podcast/><h6>What Bitcoin Did Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Taproot</h1><ul><li><a href=/advancing-bitcoin/2022/2022-03-03-jimmy-song-taproot-multisig/>Taproot multisig</a></li><li><a href=/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/>Taproot on hardware wallets</a></li><li><a href=/advancing-bitcoin/2022/2022-03-03-michael-folkson-taproot-update/>Taproot update</a></li><li><a href=/iacr/2021-08-16-jonas-nick-musig2/>MuSig2</a></li><li><a href=/london-bitcoin-devs/2021-07-20-socratic-seminar-taproot-rollout/>Socratic Seminar - Taproot rollout</a></li><li><a href=/bitcoin-magazine/2021-04-23-taproot-activation-update/>Taproot Activation Update</a></li><li><a href=/stephan-livera-podcast/2021-03-17-luke-dashjr-taproot-activation/>Taproot Activation</a></li><li><a href=/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/>Taproot Activation with Speedy Trial</a></li><li><a href=/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/>Taproot activation and LOT=true vs LOT=false</a></li><li><a href=/sydney-bitcoin-meetup/2021-02-23-socratic-seminar/>Sydney Socratic Seminar</a></li><li><a href=/realworldcrypto/2021/2021-01-12-tim-ruffing-musig2/>MuSig2</a></li><li><a href=/stephan-livera-podcast/2020-10-27-jonas-nick-tim-ruffing-musig2/>MuSig, MuSig-DN and MuSig2</a></li><li><a href=/london-bitcoin-devs/2020-08-19-socratic-seminar-signet/>Socratic Seminar - Signet</a></li><li><a href=/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/>Taproot Activation</a></li><li><a href=/london-bitcoin-devs/2020-07-21-socratic-seminar-bip-taproot/>Socratic Seminar - BIP Taproot</a></li><li><a href=/greg-maxwell/2020-07-20-greg-maxwell-taproot-pace/>Taproot Pace</a></li><li><a href=/london-bitcoin-devs/2020-06-17-tim-ruffing-schnorr-multisig/>Schnorr and Multisig</a></li><li><a href=/mit-bitcoin-expo/mit-bitcoin-expo-2020/2020-03-07-andrew-poelstra-taproot/>Taproot</a></li><li><a href=/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/>Socratic Seminar 6</a></li><li><a href=/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/>Signet Workshop</a></li><li><a href=/advancing-bitcoin/2020/2020-02-06-kalle-alm-signet-integration/>Signet Integration</a></li><li><a href=/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/>Taproot Lightning</a></li><li><a href=/stephan-livera-podcast/2019-12-27-aj-towns-schnorr-taproot/>Schnorr and Taproot</a></li><li><a href=/sf-bitcoin-meetup/2019-12-16-bip-taproot-bip-tapscript/>BIP Taproot and BIP Tapscript</a></li><li><a href=/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/>Socratic Seminar 3</a></li><li><a href=/bitcoinops/2019-09-27-schnorr-taproot-workshop/>Schnorr and Taproot workshop</a></li><li><a href=/chaincode-labs/chaincode-residency/2019-08-22-james-chiang-taproot-policy/>Taproot Policy</a></li><li><a href=/tftc-podcast/2019-06-18-andrew-poelstra-tftc/>Tales from the Crypt with Andrew Poelstra</a></li><li><a href=/chaincode-labs/chaincode-residency/2019-06-17-john-newbery-security-models/>Security Models</a></li><li><a href=/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/>The Tools and The Work</a></li><li><a href=/breaking-bitcoin/2019/secure-protocols-bip-taproot/>Secure Protocols Bip Taproot</a></li><li><a href=/bitcoin-core-dev-tech/2019-06/2019-06-06-taproot/>Taproot</a></li><li><a href=/sf-bitcoin-meetup/2019-02-04-threshold-signatures-and-accountability/>Threshold Signatures And Accountability</a></li><li><a href=/misc/2019-01-05-unchained-capital-socratic-seminar/>Unchained Capital Socratic Seminar</a></li><li><a href=/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/>Merkleized Abstract Syntax Trees - MAST</a></li><li><a href=/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/>Taproot, Graftroot, Etc</a></li><li><a href=/magicalcryptoconference/2019/bitcoin-protocol-development-panel/>Bitcoin Protocol Development Panel</a></li><li><a href=/scalingbitcoin/tokyo-2018/bitcoin-script/>Bitcoin Script</a></li><li><a href=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/blockchain-design-patterns/>Blockchain Design Patterns</a></li><li><a href=/magicalcryptoconference/2019/future-of-privacy-coins/>Future Of Privacy Coins</a></li><li><a href=/mit-bitcoin-expo/mit-bitcoin-expo-2018/improving-bitcoin-smart-contract-efficiency/>Improving Bitcoin Smart Contract Efficiency</a></li><li><a href=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/taproot/>Taproot</a></li><li><a href=/scalingbitcoin/tokyo-2018/edgedevplusplus/taproot-and-graftroot/>Taproot and Graftroot</a></li></ul><h4></h4><ul><li><a href=/es/tags/taproot/>es: taproot</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> +<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/adopting-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/adopting-bitcoin/><h6>Adopting Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/adopting-bitcoin/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/adopting-bitcoin/2021/><h6>Adopting Bitcoin 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/advancing-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2019/><h6>Advancing Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/advancing-bitcoin/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2020/><h6>Advancing Bitcoin 2020</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/advancing-bitcoin/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/andreas-antonopoulos/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/andreas-antonopoulos/><h6>Andreas Antonopoulos</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/austin-bitcoin-developers/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/austin-bitcoin-developers/><h6>Austin Bitcoin Developers</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/baltic-honeybadger/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/><h6>Baltic Honeybadger</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/baltic-honeybadger/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/2018/><h6>Baltic Honeybadger 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/baltic-honeybadger/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/baltic-honeybadger/2019/><h6>Baltic Honeybadger 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bit-block-boom/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bit-block-boom/><h6>Bit Block Boom</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bit-block-boom/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bit-block-boom/2019/><h6>Bit Block Boom 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bitcoin-core-dev-tech/2015-02/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2015-02/><h6>Bitcoin Core Dev Tech 2015</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2017-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2017-09/><h6>Bitcoin Core Dev Tech 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2018-03/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2018-03/><h6>Bitcoin Core Dev Tech 2018 (Mar)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2018-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2018-10/><h6>Bitcoin Core Dev Tech 2018 (Oct)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2019-06/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2019-06/><h6>Bitcoin Core Dev Tech 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2022-10/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2022-10/><h6>Bitcoin Core Dev Tech 2022</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2023-04/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2023-04/><h6>Bitcoin Core Dev Tech 2023 (Apr)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-core-dev-tech/2023-09/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-core-dev-tech/2023-09/><h6>Bitcoin Core Dev Tech 2023 (Sept)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoin-design/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-design/><h6>Bitcoin Design</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-magazine/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-magazine/><h6>Bitcoin Magazine</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoinplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinplusplus/><h6>Bitcoin++</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/bitcoinplusplus/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinplusplus/2022/><h6>Bitcoin++ 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/bitcoinology/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinology/><h6>Bitcoinology</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoinops/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoinops/><h6>Bitcoinops</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcointranscripts/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcointranscripts/><h6>Bitcointranscripts</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/blockchain-protocol-analysis-security-engineering/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/><h6>Blockchain Protocol Analysis Security Eng</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/blockchain-protocol-analysis-security-engineering/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/2017/><h6>Blockchain Protocol Analysis Security Engineering 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/blockchain-protocol-analysis-security-engineering/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockchain-protocol-analysis-security-engineering/2018/><h6>Blockchain Protocol Analysis Security Engineering 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/blockstream-webinars/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/blockstream-webinars/><h6>Blockstream Webinars</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/boltathon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/boltathon/><h6>Boltathon</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/breaking-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/><h6>Breaking Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/breaking-bitcoin/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/2017/><h6>Breaking Bitcoin 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/breaking-bitcoin/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/breaking-bitcoin/2019/><h6>Breaking Bitcoin 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/building-on-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/building-on-bitcoin/><h6>Building On Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/building-on-bitcoin/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/building-on-bitcoin/2018/><h6>Building On Bitcoin 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/c-lightning/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/c-lightning/><h6>c-lightning</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/chaincode-labs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/><h6>Chaincode Labs</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/chaincode-labs/chaincode-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/chaincode-podcast/><h6>Chaincode Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/chaincode-labs/chaincode-residency/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chaincode-labs/chaincode-residency/><h6>Chaincode Residency</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/chicago-bitdevs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/chicago-bitdevs/><h6>Chicago Bitdevs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/coindesk-consensus-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coindesk-consensus-2016/><h6>Coindesk Consensus</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/coordination-of-decentralized-finance-workshop/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coordination-of-decentralized-finance-workshop/><h6>Coordination of Decentralized Finance</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/coordination-of-decentralized-finance-workshop/2020-stanford/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/coordination-of-decentralized-finance-workshop/2020-stanford/><h6>2020 Stanford</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/cppcon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/><h6>CPPcon</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/cppcon/2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/2017/><h6>CPPcon 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/cppcon/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cppcon/2020/><h6>CPPcon 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/cryptoeconomic-systems/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cryptoeconomic-systems/><h6>Cryptoeconomic Systems</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/cryptoeconomic-systems/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/cryptoeconomic-systems/2019/><h6>Cryptoeconomic Systems 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/dallas-bitcoin-symposium/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/dallas-bitcoin-symposium/><h6>Dallas Bitcoin Symposium</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/decentralized-financial-architecture-workshop/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/decentralized-financial-architecture-workshop/><h6>Decentralized Financial Architecture Workshop</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/bitcoin-developers-miners-meeting-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/bitcoin-developers-miners-meeting-2016/><h6>Developers-Miners Meeting</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/greg-maxwell/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/greg-maxwell/><h6>Greg Maxwell</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/grincon/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/grincon/><h6>Grincon</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/grincon/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/grincon/2019/><h6>Grincon 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/honey-badger-diaries/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/honey-badger-diaries/><h6>Honey Badger Diaries</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/iacr/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/iacr/><h6>IACR Crypto</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/la-bitdevs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/la-bitdevs/><h6>LA Bitdevs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/layer2-summit/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/layer2-summit/><h6>Layer2 Summit</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/layer2-summit/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/layer2-summit/2018/><h6>Layer2 Summit 2018</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/lets-talk-bitcoin-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lets-talk-bitcoin-podcast/><h6>Lets Talk Bitcoin Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/lightning-conference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-conference/><h6>Lightning Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/lightning-conference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-conference/2019/><h6>Lightning Conference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/lightning-specification/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/lightning-specification/><h6>Lightning Specification</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/london-bitcoin-devs/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/london-bitcoin-devs/><h6>London Bitcoin Devs</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/magicalcryptoconference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/magicalcryptoconference/><h6>Magicalcryptoconference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/magicalcryptoconference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/magicalcryptoconference/2019/><h6>Magicalcryptoconference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/misc/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/misc/><h6>Misc</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/><h6>MIT Bitcoin Expo</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2015/><h6>Mit Bitcoin Expo 2015</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2016/><h6>Mit Bitcoin Expo 2016</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2017/><h6>Mit Bitcoin Expo 2017</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2018/><h6>Mit Bitcoin Expo 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2019/><h6>Mit Bitcoin Expo 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2020/><h6>Mit Bitcoin Expo 2020</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/mit-bitcoin-expo/mit-bitcoin-expo-2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/mit-bitcoin-expo/mit-bitcoin-expo-2021/><h6>Mit Bitcoin Expo 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/munich-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/munich-meetup/><h6>Munich Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/noded-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/noded-podcast/><h6>Noded Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/realworldcrypto/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/><h6>Realworldcrypto</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/realworldcrypto/2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/2018/><h6>Realworldcrypto 2018</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/realworldcrypto/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/realworldcrypto/2021/><h6>Realworldcrypto 2021</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/rebooting-web-of-trust/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/rebooting-web-of-trust/><h6>Rebooting Web Of Trust</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/rebooting-web-of-trust/2019-prague/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/rebooting-web-of-trust/2019-prague/><h6>2019 Prague</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/ruben-somsen/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/ruben-somsen/><h6>Ruben Somsen</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/satoshi-roundtable/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/satoshi-roundtable/><h6>Satoshi Roundtable</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/satoshi-roundtable/sr-004/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/satoshi-roundtable/sr-004/><h6>Sr 004</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/hong-kong-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/hong-kong-2015/><h6>Hong Kong (2015)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/milan-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/milan-2016/><h6>Milan (2016)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/montreal-2015/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/montreal-2015/><h6>Montreal (2015)</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/scalingbitcoin/stanford-2017/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/stanford-2017/><h6>Stanford (2017)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/stanford-2017/edgeplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/stanford-2017/edgeplusplus/><h6>Edgeplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/tel-aviv-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tel-aviv-2019/><h6>Tel Aviv (2019)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/><h6>Edgedevplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/scalingbitcoin/tokyo-2018/edgedevplusplus/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/scalingbitcoin/tokyo-2018/edgedevplusplus/><h6>Edgedevplusplus</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></li><li data-nav-id=/sf-bitcoin-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/sf-bitcoin-meetup/><h6>SF Bitcoin Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/simons-institute/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/simons-institute/><h6>Simons Institute</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/stanford-blockchain-conference/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/><h6>Stanford Blockchain</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/stanford-blockchain-conference/2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/2019/><h6>Stanford Blockchain Conference 2019</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/stanford-blockchain-conference/2020/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stanford-blockchain-conference/2020/><h6>Stanford Blockchain Conference 2020</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/stephan-livera-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/stephan-livera-podcast/><h6>Stephan Livera Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/sydney-bitcoin-meetup/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/sydney-bitcoin-meetup/><h6>Sydney Bitcoin Meetup</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/texas-bitcoin-conference-2014/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/texas-bitcoin-conference-2014/><h6>Texas Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/tftc-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/tftc-podcast/><h6>TFTC Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/verifiable-delay-functions/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/verifiable-delay-functions/><h6>Verifiable Delay Functions</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/verifiable-delay-functions/vdf-day-2019/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/verifiable-delay-functions/vdf-day-2019/><h6>Vdf Day 2019</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/vr-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/vr-bitcoin/><h6>VR Bitcoin</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/w3-blockchain-workshop-2016/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/w3-blockchain-workshop-2016/><h6>W3 Blockchain Workshop</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/wasabi-research-club/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/wasabi-research-club/><h6>Wasabi Research Club</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/what-bitcoin-did-podcast/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/what-bitcoin-did-podcast/><h6>What Bitcoin Did Podcast</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Taproot</h1><ul><li><a href=/advancing-bitcoin/2022/2022-03-03-jimmy-song-taproot-multisig/>Taproot multisig</a></li><li><a href=/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/>Taproot on hardware wallets</a></li><li><a href=/advancing-bitcoin/2022/2022-03-03-michael-folkson-taproot-update/>Taproot update</a></li><li><a href=/iacr/2021-08-16-jonas-nick-musig2/>MuSig2</a></li><li><a href=/london-bitcoin-devs/2021-07-20-socratic-seminar-taproot-rollout/>Socratic Seminar - Taproot rollout</a></li><li><a href=/bitcoin-magazine/2021-04-23-taproot-activation-update/>Taproot Activation Update</a></li><li><a href=/stephan-livera-podcast/2021-03-17-luke-dashjr-taproot-activation/>Taproot Activation</a></li><li><a href=/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/>Taproot Activation with Speedy Trial</a></li><li><a href=/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/>Taproot activation and LOT=true vs LOT=false</a></li><li><a href=/sydney-bitcoin-meetup/2021-02-23-socratic-seminar/>Sydney Socratic Seminar</a></li><li><a href=/realworldcrypto/2021/2021-01-12-tim-ruffing-musig2/>MuSig2</a></li><li><a href=/stephan-livera-podcast/2020-10-27-jonas-nick-tim-ruffing-musig2/>MuSig, MuSig-DN and MuSig2</a></li><li><a href=/london-bitcoin-devs/2020-08-19-socratic-seminar-signet/>Socratic Seminar - Signet</a></li><li><a href=/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/>Taproot Activation</a></li><li><a href=/london-bitcoin-devs/2020-07-21-socratic-seminar-bip-taproot/>Socratic Seminar - BIP Taproot</a></li><li><a href=/greg-maxwell/2020-07-20-greg-maxwell-taproot-pace/>Taproot Pace</a></li><li><a href=/london-bitcoin-devs/2020-06-17-tim-ruffing-schnorr-multisig/>Schnorr and Multisig</a></li><li><a href=/mit-bitcoin-expo/mit-bitcoin-expo-2020/2020-03-07-andrew-poelstra-taproot/>Taproot</a></li><li><a href=/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/>Socratic Seminar 6</a></li><li><a href=/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/>Signet Workshop</a></li><li><a href=/advancing-bitcoin/2020/2020-02-06-kalle-alm-signet-integration/>Signet Integration</a></li><li><a href=/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/>Taproot Lightning</a></li><li><a href=/stephan-livera-podcast/2019-12-27-aj-towns-schnorr-taproot/>Schnorr and Taproot</a></li><li><a href=/sf-bitcoin-meetup/2019-12-16-bip-taproot-bip-tapscript/>BIP Taproot and BIP Tapscript</a></li><li><a href=/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/>Socratic Seminar 3</a></li><li><a href=/bitcoinops/2019-09-27-schnorr-taproot-workshop/>Schnorr and Taproot workshop</a></li><li><a href=/chaincode-labs/chaincode-residency/2019-08-22-james-chiang-taproot-policy/>Taproot Policy</a></li><li><a href=/tftc-podcast/2019-06-18-andrew-poelstra-tftc/>Tales from the Crypt with Andrew Poelstra</a></li><li><a href=/chaincode-labs/chaincode-residency/2019-06-17-john-newbery-security-models/>Security Models</a></li><li><a href=/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/>The Tools and The Work</a></li><li><a href=/breaking-bitcoin/2019/secure-protocols-bip-taproot/>Secure Protocols Bip Taproot</a></li><li><a href=/bitcoin-core-dev-tech/2019-06/2019-06-06-taproot/>Taproot</a></li><li><a href=/sf-bitcoin-meetup/2019-02-04-threshold-signatures-and-accountability/>Threshold Signatures And Accountability</a></li><li><a href=/misc/2019-01-05-unchained-capital-socratic-seminar/>Unchained Capital Socratic Seminar</a></li><li><a href=/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/>Merkleized Abstract Syntax Trees - MAST</a></li><li><a href=/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/>Taproot, Graftroot, Etc</a></li><li><a href=/magicalcryptoconference/2019/bitcoin-protocol-development-panel/>Bitcoin Protocol Development Panel</a></li><li><a href=/scalingbitcoin/tokyo-2018/bitcoin-script/>Bitcoin Script</a></li><li><a href=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/blockchain-design-patterns/>Blockchain Design Patterns</a></li><li><a href=/magicalcryptoconference/2019/future-of-privacy-coins/>Future Of Privacy Coins</a></li><li><a href=/mit-bitcoin-expo/mit-bitcoin-expo-2018/improving-bitcoin-smart-contract-efficiency/>Improving Bitcoin Smart Contract Efficiency</a></li><li><a href=/scalingbitcoin/tel-aviv-2019/edgedevplusplus/taproot/>Taproot</a></li><li><a href=/scalingbitcoin/tokyo-2018/edgedevplusplus/taproot-and-graftroot/>Taproot and Graftroot</a></li></ul><h4></h4><ul><li><a href=/es/tags/taproot/>es: taproot</a></li><li><a href=/zh/tags/taproot/>zh: taproot</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> <script src=https://btctranscripts.com/lib/popper.min.js></script> <script src=https://btctranscripts.com/js/bootstrap.min.js></script> <script type=text/javascript src=/plugins/lunr.min.js></script> diff --git a/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/index.html b/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/index.html new file mode 100644 index 0000000000..0ab00e154f --- /dev/null +++ b/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/index.html @@ -0,0 +1,40 @@ +<!doctype html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><link rel=canonical href=https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/><title>Taproot on hardware wallets | ₿itcoin 记录稿</title><link href=https://btctranscripts.com/css/fontawesome.min.css rel=stylesheet><link rel=stylesheet href=https://btctranscripts.com/css/ace.min.css><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://btctranscripts.com/images/btctranscripts.png"><meta name=twitter:title content="Stepan Snigirev - Taproot on hardware wallets"><meta name=twitter:description content="开场(Jeff Gallas) 我非常高兴地宣布我们今天的第一位演讲者,来自 Specter 的 Stepan Snigirev,他是 Specter Solutions 的 CTO,有 3 年的开发比特币软件钱包(soft wallets)和硬件签名器(hard wallets)的经历。欢迎 Stepan。 +概述(Stepan Snigirev) 我今天的演讲主题是 “在硬件签名器上支持 Taproot”。我们刚刚激活了 Taproot,非常棒,是在去年 11 月激活的。一些软件钱包已经开始集成了,而且甚至一些硬件签名器也开始集成了。现在大部分人用的都是单调的 “单密钥、单签名” 方案。我想讲讲我们可以用 Taproot 做什么。我觉得应该大家都知道了,所以我会讲快一点,然后我会讨论为什么在硬件签名器中集成 Taproot 是非常困难的、难点在哪里。如果我们无法在硬件钱包中集成,我们还有什么办法? +通过隐藏实现隐私 Taproot 非常出色。首先是它给了用户隐私性。在你观察区块链的时候,如果你看到一个单签名和单公钥的 taproot 地址,它里面可能实际上是一个公钥和一个脚本树。然后,这个公钥自身也可能凝结了一组公钥,而这棵脚本树可能非常高,是许许多多脚本的复杂集合。在里面你可以放置任意类型的时间锁,然后备份平时不会用到的私钥、仅在紧急情况下才启用它们。这意味着,所有复杂的花费条件,在链上看起来都是一样的。这是非常棒的事。甚至放在脚本中的公钥也可以代表着一组公钥,这就像是无限阶的密钥聚合。非常酷。 +Miniscript(更安全的明文备份) 我个人会使用它的第一个理由是,它支持更好的明文备份。为什么现在没有人使用 Miniscript 或者复杂的比特币脚本?首先是因为比特币脚本复杂而不容易编写(在 Miniscript 出现之前)。其次是所有人都不使用它。这是一个鸡生蛋还是蛋生鸡的问题:每个人(90%)都使用单签名脚本,10% 的人使用多签名脚本,只有 0.3% 的人使用定制化的脚本。如果你使用一些定制化的脚本,你就暴露在了这 0.3% 里面。所有的链分析公司都知道,要是使用这样的脚本,那很有可能是同一个人。这样的隐私性非常糟,这就是障碍之一。 +花费条件:or(HW, and(backup, timelock)) +描述符:tr(HW, {and_v(v:pk(backup), older(timelock))}) +Tapscript:<backup> OP_CHECKSIGVERIFY <timelock> OP_CHECKSEQUENCEVERIFY +(译者注:这段花费条件的意思是:一个硬件签名器随时可以花费这笔钱;同时,时间锁过期后,后备私钥也可以花费这笔钱。) +我个人会使用,我非常害怕把明文的钱包复原词(recovery phrases,应指种子词)放在我家里。如果有人得到了它,那我的钱就全部丢了。我个人的做法是使用一个不备份的硬件钱包,然后设置一个备用脚本,这个备用脚本带有时间锁,加上复原词就可以花费我的钱。然后,如果我遇到了什么意外,或者我的硬件钱包坏了,那么等待一段时间(也许半年)我就能拿回我的钱。但是,如果我的复原词被盗了,他们是没法立即偷走我的钱的(只要硬件钱包还在我手上的话)。我有足够多的时间,将资金迁移到一个新的装置上。但是,想想硬件签名器和 Miniscript 实现,现在还没有一个东西真正支持这个功能。太糟糕了。但实际上这并不是很难。在我给我们的硬件签名器集成 Miniscript 的时候,基本上我只花了一周的时间。我只要坐下来就可以开始开发了,因为它的说明真的写得非常好。Miniscript 有两个元素,其中一个你可以忽略,另一个是,如果你有一段可读的 policy 表达式,你就可以把它转成钱包的描述符。这有点复杂,但你不需要在硬件签名器里完成操作。第二部分是将钱包的描述符编译成实际的比特币脚本。这基本上只是把这些记号替换成比特币脚本的操作码,然后把派生出来的密钥放在正确的位置上。非常简单。然后硬件签名器就可以确定哪个输出是找零,并验证找零输出是从相同的描述符中派生出来的。这就行了。我想提一句,Ledger 团体最近做了很多工作来升级他们的比特币应用。他们在设计的时候就采用了 Miniscript 方法。虽然现在仅支持多签名功能,但很容易就能升级到支持定制化的 Miniscript,所以我很期待。至于硬件签名器,我不知道他们的计划。但至少会有两种硬件签名器将支持 Miniscript。"></head><body><nav class="navbar navbar-expand-lg navbar-dark bg-primary shadow sticky-top" id=navbarMain><div class=container><div><a class=navbar-brand href=/zh>₿itcoin 记录稿</a></div><div class="collapse navbar-collapse" id=navbarMainCollapse><ul class="navbar-nav ml-auto"><li class=nav-item><a class=nav-link href=/en>en</a></li><li class=nav-item><a class=nav-link href=/es>es</a></li><li class=nav-item><a class=nav-link href=/pt>pt</a></li><li class=nav-item><a class=nav-link href=https://github.com/bitcointranscripts/bitcointranscripts target=_blank><i class='fab fa-github'></i></a></li></ul></div></div></nav><div class=container-fluid><div class=row><div class="docs-sidenav order-0 col-12 col-md-3 col-lg-2 col-xl-2 position-sticky border-right"><nav class="navbar navbar-expand-md navbar-light pl-0"><button class="navbar-toggler navbar-toggler-right collapsed" type=button data-toggle=collapse data-target=#sidenav-left-collapse aria-controls=sidenav-left-collapse aria-expanded=false aria-label="Toggle navigation"> +<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/zh/advancing-bitcoin/ class="nav-item my-1 parent haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/advancing-bitcoin/2022/ class="nav-item my-1 parent haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc><nav id=TableOfContents><ul><li><ul><li><a href=#开场jeff-gallas>开场(Jeff Gallas)</a></li><li><a href=#概述stepan-snigirev>概述(Stepan Snigirev)</a></li><li><a href=#通过隐藏实现隐私>通过隐藏实现隐私</a></li><li><a href=#miniscript更安全的明文备份>Miniscript(更安全的明文备份)</a></li><li><a href=#交互式多签名的-xpub>交互式多签名的 xpub</a></li><li><a href=#taproot-的难点交互式多签名领域>Taproot 的难点:交互式多签名领域</a></li><li><a href=#taproot-的难点为多签名派生-nonce>Taproot 的难点:为多签名派生 nonce</a></li><li><a href=#taproot-的难点打破随机数生成器等待坏的-rng-输出>Taproot 的难点:打破随机数生成器(等待坏的 RNG 输出)</a></li><li><a href=#taproot-的难点打破随机数生成器影响-rng-操作>Taproot 的难点:打破随机数生成器(影响 RNG 操作)</a></li><li><a href=#taproot-的难点交互式多签名领域总结>Taproot 的难点:交互式多签名领域总结</a></li><li><a href=#交互式多签名方案比较>交互式多签名方案比较</a></li><li><a href=#taproot现在可以用在哪里>Taproot:现在可以用在哪里?</a></li><li><a href=#问答>问答</a></li></ul></li></ul></nav></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><a href=/>Home</a> +< <a href=/zh/tabconf/>TABConf</a> +< <a href=/zh/advancing-bitcoin/>Advancing Bitcoin</a> +< <a href=/zh/advancing-bitcoin/2022/>Advancing Bitcoin 2022</a> +< <a href=/zh/lightning-hack-day/>Lightning Hack Day</a> +< <a href=/zh/bitcoin-core-dev-tech/>Bitcoin Core Dev Tech</a> +< <a href=/zh/scalingbitcoin/>Scaling Bitcoin Conference</a> +< Taproot on hardware wallets<h1>Taproot on hardware wallets</h1><p>演讲者: +<a href=/zh/speakers/stepan-snigirev>Stepan Snigirev</a></p><p><i>日期: March 3, 2022</i></p><p><i>记录者: Michael Folkson</i></p><p>标签: +<a href=/zh/tags/schnorr>Schnorr</a>, <a href=/zh/tags/taproot>Taproot</a>, <a href=/zh/tags/hardware-wallet>Hardware wallet</a></p><p>类别: +<a href=/zh/categories/conference>Conference</a></p><p>Media: +<a href='https://www.youtube.com/watch?v=8uM-v1pSFgs'>https://www.youtube.com/watch?v=8uM-v1pSFgs</a></p><h2 id=开场jeff-gallas>开场(Jeff Gallas)</h2><p>我非常高兴地宣布我们今天的第一位演讲者,来自 Specter 的 Stepan Snigirev,他是 Specter Solutions 的 CTO,有 3 年的开发比特币软件钱包(soft wallets)和硬件签名器(hard wallets)的经历。欢迎 Stepan。</p><h2 id=概述stepan-snigirev>概述(Stepan Snigirev)</h2><p>我今天的演讲主题是 “在硬件签名器上支持 Taproot”。我们刚刚激活了 Taproot,非常棒,是在去年 11 月激活的。一些软件钱包已经开始集成了,而且甚至一些硬件签名器也开始集成了。现在大部分人用的都是单调的 “单密钥、单签名” 方案。我想讲讲我们可以用 Taproot 做什么。我觉得应该大家都知道了,所以我会讲快一点,然后我会讨论为什么在硬件签名器中集成 Taproot 是非常困难的、难点在哪里。如果我们无法在硬件钱包中集成,我们还有什么办法?</p><h2 id=通过隐藏实现隐私>通过隐藏实现隐私</h2><p>Taproot 非常出色。首先是它给了用户隐私性。在你观察区块链的时候,如果你看到一个单签名和单公钥的 taproot 地址,它里面可能实际上是一个公钥和一个脚本树。然后,这个公钥自身也可能凝结了一组公钥,而这棵脚本树可能非常高,是许许多多脚本的复杂集合。在里面你可以放置任意类型的时间锁,然后备份平时不会用到的私钥、仅在紧急情况下才启用它们。这意味着,所有复杂的花费条件,在链上看起来都是一样的。这是非常棒的事。甚至放在脚本中的公钥也可以代表着一组公钥,这就像是无限阶的密钥聚合。非常酷。</p><h2 id=miniscript更安全的明文备份>Miniscript(更安全的明文备份)</h2><p>我个人会使用它的第一个理由是,它支持更好的明文备份。为什么现在没有人使用 Miniscript 或者复杂的比特币脚本?首先是因为比特币脚本复杂而不容易编写(在 Miniscript 出现之前)。其次是所有人都不使用它。这是一个鸡生蛋还是蛋生鸡的问题:每个人(90%)都使用单签名脚本,10% 的人使用多签名脚本,只有 0.3% 的人使用定制化的脚本。如果你使用一些定制化的脚本,你就暴露在了这 0.3% 里面。所有的链分析公司都知道,要是使用这样的脚本,那很有可能是同一个人。这样的隐私性非常糟,这就是障碍之一。</p><p>花费条件:<code>or(HW, and(backup, timelock))</code></p><p>描述符:<code>tr(HW, {and_v(v:pk(backup), older(timelock))})</code></p><p>Tapscript:<code><backup> OP_CHECKSIGVERIFY <timelock> OP_CHECKSEQUENCEVERIFY</code></p><p>(译者注:这段花费条件的意思是:一个硬件签名器随时可以花费这笔钱;同时,时间锁过期后,后备私钥也可以花费这笔钱。)</p><p>我个人会使用,我非常害怕把明文的钱包复原词(recovery phrases,应指种子词)放在我家里。如果有人得到了它,那我的钱就全部丢了。我个人的做法是使用一个不备份的硬件钱包,然后设置一个备用脚本,这个备用脚本带有时间锁,加上复原词就可以花费我的钱。然后,如果我遇到了什么意外,或者我的硬件钱包坏了,那么等待一段时间(也许半年)我就能拿回我的钱。但是,如果我的复原词被盗了,他们是没法立即偷走我的钱的(只要硬件钱包还在我手上的话)。我有足够多的时间,将资金迁移到一个新的装置上。但是,想想硬件签名器和 Miniscript 实现,现在还没有一个东西真正支持这个功能。太糟糕了。但实际上这并不是很难。在我给我们的硬件签名器集成 Miniscript 的时候,基本上我只花了一周的时间。我只要坐下来就可以开始开发了,因为它的说明真的写得非常好。Miniscript 有两个元素,其中一个你可以忽略,另一个是,如果你有一段可读的 policy 表达式,你就可以把它转成钱包的描述符。这有点复杂,但你不需要在硬件签名器里完成操作。第二部分是将钱包的描述符编译成实际的比特币脚本。这基本上只是把这些记号替换成比特币脚本的操作码,然后把派生出来的密钥放在正确的位置上。非常简单。然后硬件签名器就可以确定哪个输出是找零,并验证找零输出是从相同的描述符中派生出来的。这就行了。我想提一句,Ledger 团体最近做了很多<a href=https://blog.ledger.com/miniscript-is-coming/>工作</a>来升级他们的比特币应用。他们在设计的时候就采用了 Miniscript 方法。虽然现在仅支持多签名功能,但很容易就能升级到支持定制化的 Miniscript,所以我很期待。至于硬件签名器,我不知道他们的计划。但至少会有两种硬件签名器将支持 Miniscript。</p><h2 id=交互式多签名的-xpub>交互式多签名的 xpub</h2><pre tabindex=0><code>xpub = {c, P} + +{c, P} = {h1(c, P, i) , P + h2(c, P, i)} +</code></pre><p>另一个应用场景是,假定你开了一家合伙的托管公司。你的客户可以在自己的多签名装置中使用你的公钥。举个例子,他们可以制作 2-of-3 的多签名装置,其中 2 个密钥由自己控制,但还有 1 个密钥是你们公司的。你不想让这个密钥出现单点故障,所以你虽然给出了一个公钥,但你不希望它只是一个公钥。你有一个办法:交互式的多签名。也就是将多个公钥聚合成一个公钥。遵循了特定的签名流程,你就只需向用户给出一个 xpub(公钥)。这是兼容 BIP32 以及 xpub 的派生方法的。它只是用一个基于哈希值的标量来调整你的公钥而已。你只需要提前把多个公钥组合起来就好。在你构造这个 xpub 时,你要取得 “链码(chaincode,用在 BIP32 密钥派生中的数据)”,然后运行 XOR 运算,将这个公钥与一个常规的 MuSig 或你用的其它协议的公钥结合起来;在你需要派生一个新的子私钥时,只需这个聚合链码以及公钥,就可以派生出下一个公钥。你能够使用多个设备执行交互式签名,来生成所需的正确签名。这是非常棒的应用。</p><h2 id=taproot-的难点交互式多签名领域>Taproot 的难点:交互式多签名领域</h2><p>但是,就像我说的,你需要依赖这种交互式的多签名流程。如果你读过论文,你可以数一数,建立交互式的多签名有多少种方法。就我所知,至少 5 种:MuSig、MuSig2、FROST、MuSig-DN、GKMN21 。这意味着,每一种方法都有自己的取舍。每一种都有自己的安全边界。我想在整体上介绍一下它们,并讲讲实现它们的难处在哪里。我应该先帮大家回顾一下 Schnorr 签名。</p><blockquote><p>Schnorr 签名:</p><p>选取 nonce <code>r</code>, <code>R = rG</code></p><p><code>sig(签名) = {R, d.hash(P, R, m) + r} x G = P. hash(P, R, m) + R</code></p><p>聚合签名:</p><p>P = sum of a_k P_k</p><p>R = sum of R_k = sum of r_k.G</p><pre tabindex=0><code>sig_k = {R, a_k.d_k . hash(P, R, m) + r_k} +sig = {R, d.hash(P, R, m) + r} + xG + P.hash(P, R, m) + R +</code></pre><p>(译者注:此处的记号有一些混乱。但下文的介绍是清楚的。)</p></blockquote><p>如果你要签名,那么你先要选出一个随机的 nonce;你将这个 nonce 的公钥点跟签名公钥和待签名消息一起哈希,然后与你的签名私钥相乘,最后加上这个随机 nonce 值,以在签名中隐藏你的私钥,这样就没有人能计算出你的私钥。然后,验证者只需要得到你的签名,将它与生成器点相乘,就可以验证等式是否成立。如果你要在此基础上建立多签名,流程也是一样的,但会遇到一些问题。</p><p>第一个问题是放在哈希函数中的 nonce 值,每个联合签名人都要生成自己的 nonce 值。第一个要求是,他们要相互通信,告知他人自己要使用什么 nonce 值。只有每个人都得到聚合的 nonce 值之后,才能各自生成碎片签名。然后,举个例子,软件钱包可以将它们(所有碎片签名)加在一起,就得到了最终的签名。这个方案还不算是非常复杂,你只需要额外的一轮通信,来沟通 nonce。</p><p>那为什么会有这么多论文呢?先说 MuSig,它可能是人们提出的第一篇论文。它实现了 n-of-n 条件下的密钥聚合。要么是 2-of-2,要么是 3-of-3、5-of-5,你不能做 2-of-3 或者 3-of-5。它需要 3 轮通信。第一轮是选择 nonce 值(<code>R_i = r_i.G</code>),你哈希它(<code>hash(R_i)</code>)并把它发送给其他人。这是在承诺 nonce 值,就像在说:“这是我所用的 nonce 值的哈希值,我先放出来,我待会就会使用它所对应的 nonce 值,我不能再换用别的 nonce 值。”然后,人们发送 nonce 值本身(<code>R_i</code>),从而得到所有联合签名人的 nonce 值,并生成聚合 nonce 值(<code>R = sum of R_i</code>)。三轮通信很可怕,假设你有三个分散在不同地方的硬件签名器,那么,你需要跑 3 趟。而且,在此期间,每一个签名器都要保存状态,需要记得所有的承诺,等等。但当前的硬件签名器并不是这样工作的。这些签名器的设计目标是成为无状态的东西,不希望有交互。</p><pre tabindex=0><code>R’_i = r’_i x G, R’’_i = r’’_i x G +R’_i, R’’_i +R = sum of (R’_i + b_i.R’’_i) +sig_i +</code></pre><p>然后是 MuSig2,是 MuSig2 的升级版,移除了第一轮承诺通信,但是,你就不是只生成一个 nonce 值了,你生成了两个。然后,你将这个 nonce 值跟其他人分享,并将它与某个基于哈希值的系数相乘。我不想讲太多细节,但这样一来,它的安全假设就多加了一条。如果你要让它变得更安全,你要生成 4 个 nonce 值。这跟一些麻烦的密码学有关,比如分叉引理(Foring Lemma)、时间机器什么的。如果你想搞清楚细节,我建议你读读论文。基本上,通过生成一个额外的 nonce 值来制作安全性,你就可以减少一轮通信。两轮已经好很多了。你可以提前生成 nonce 值。你可以从每一个硬件签名器中生成 100 个 nonce 值,然后在你需要的时候使用。然后你只需要为每个签名器跑一趟就行了。再说一遍,它也需要签名器保存状态。硬件签名器需要知道自己所生成的 nonce 值,并验证没有重复使用相同的 nonce 。如果你用了相同的 nonce ,那你的私钥会被人计算出来。</p><p>最后是 FROST。FROST 很有趣,因为它并不集中在 nonce 生成上,它瞄准的是密钥的聚合。你可以实现 2-of-3、3-of-5 的聚合密钥。这里的想法是使用 Shamir 的可验证私钥分割方案(verifiable secret sharing scheme)。如果你想实现 2-of-3,假定你有 3 个私钥,并且这 3 个私钥在同一条线上(on the same line),那你只需要其中 2 个,就可以派生出这个 结合私钥/公钥,以及签名。这三个点中的任意两个,都可以帮助你重新构造最终的签名。这意味着,唯一的问题在于,如何确保我们随机生成的私钥最终会在同一条线上。而 FROST 论文的主要想法就是如何在多个签名者之间沟通,使得他们最终会在同一条线上。这是一个交互式的方案,但非常好,因为在第一次交互式启动之后,你就可以将它抛在脑后,只需要 2 轮通信就可以了。但是,再说一遍,这 3 种方案都要求 nonce 值不能复用。这意味着,为了生成新的 nonce 值,要么你需要一个计数器,要么需要一个随机数生成器(RNG)。这两种东西在硬件签名器中都是问题,因为我可以黑了计数器,也可以劫持随机数生成器。我给你们看看怎么做到。</p><p>优点:非常简单就能实现,2 轮通信,接近于不需要交互。</p><p>缺点:重度依赖于 RNG 或者计数器,需要保存状态。</p><h2 id=taproot-的难点为多签名派生-nonce>Taproot 的难点:为多签名派生 nonce</h2><p>第一种想法是使用计数器。也就是一个只增不减、永不重置的数字;永远不会使用相同的数值,你将这个数值与你的私钥一起运行哈希函数,就可以得到 nonce 值。</p><p>递增型计数器:<code>counter ++ ; r = hash(d, counter)</code></p><p>每次你使用的时候,就增加一下计数器的值。理论上它是很好用的。但在现实中有许多攻击,比如 Fraunhofer Institute 解锁了一个微控制器,然后发动了<a href=https://www.aisec.fraunhofer.de/en/FirmwareProtection.html>攻击</a>。他们将一束激光照射进控制器,要么计数器会归零,要么激光照到正确的位置,它会减一次,从而导致相同的 nonce 值被再一次使用。这里的问题是,签名中的 nonce 值会进入区块链,而且你的联合签名人也会知道,软件钱包也会知道。这意味着,要是 nonce 值没有足够的熵,或者被重复使用,他们就可以从签名中计算出你的私钥。至于随机数生成器,DEF Con 上有一个非常棒的<a href="https://www.youtube.com/watch?v=Zuqw0-jZh9Y">演讲</a>,用 45 分钟讲了随机数生成器的问题。这意味着,即使你使用了一个有证书(闭源的)随机数生成器,它一般来说也是不够用的。这个演讲大部分的内容都关于作为一个开发者,你可能会怎样搞砸随机数生成器。甚至还没讲到随机数生成器被黑的问题。</p><h2 id=taproot-的难点打破随机数生成器等待坏的-rng-输出>Taproot 的难点:打破随机数生成器(等待坏的 RNG 输出)</h2><p>所以,你能怎么搞砸随机数生成器呢?首先,你无法控制随机数生成器会面临的环境。索尼的 Playstation 2 就被黑了,因为索尼重复使用了相同的 nonce,导致私钥被泄露,然后你就可以拿这个索尼私钥在家里自制 Playstation 2 了。Yubikey,当他们想要通过认证流程时,他们确实通过了,但搞砸了随机数生成器的初始化。只需要 3 个签名,就可以计算出他们的私钥。就像我在这个<a href="https://www.youtube.com/watch?v=Zuqw0-jZh9Y">演讲</a>中说的,有人分析了来自两家微控制器的随机数生成器的输出。他们说,有时候,你会意外得到一堆全是 0 的 nonce,这就完蛋了。有时候,它会多次给你相同的数值,如果你请求随机数过于频繁的话。它就是不能生成一个新的随机数。还有一些时候,RNG 会出错,因为电压故障或者一些神秘的原因(比如太阳烤热了微控制器)。另外说一句,这样的事情在计数器上也可能发生。要是这发生在你的使用了计数器的硬件签名器上,你就真的遇到很大一件事了。这就是搬起石头砸自己的脚。</p><h2 id=taproot-的难点打破随机数生成器影响-rng-操作>Taproot 的难点:打破随机数生成器(影响 RNG 操作)</h2><p>我们再假设有人就想砸你的脚。那你会如何中招呢?这是最常见的随机数生成器架构,一个环形震荡器(ring oscillator)。基本上,它使用了标准的 “非” 门,这是很容易用半导体实现的。非门的作用是将 0 变成 1,将 1 变成 0 。你将 3 个非门连接在一起,这样你会得到一些时延。然后,你又将第三个非门的输出当成第一个非门的输入。这就成了一个荒谬的逻辑电路,它会不断在 0 和 1 之间跳来跳去,而切换的时机将高度依赖于环境、制造缺陷、半导体的杂质,等等。所以它基本上会给你一个完全无法预测的输出。为了得到更加随机的输出,你可以把一堆这样的振荡器放在一起,运行 XOR 操作。现在,你回忆一下你在高中或者初中上过的物理课,如果你把多个钟摆放在一根杆子上,会怎么样?不会怎么样,因为它是一根杆子,这些钟摆都会以自己的频率摆动,但是如果把它们放在一根绳子上呢?绳子会让能量在这些钟摆间传递。所以一段时间之后,这些钟摆会同步 —— 摆动的频率变得相同。你在 YouTube 上搜索一下视频吧,看看是怎么回事。问题来了,如果你将多个振荡器放在一起,那么最终它们会同步,然后你的随机输出就将不再随机。在得到了认证的、设计良好的 RNG 中,会有一些应对措施来检查输出是否良好。但是,如果你只是把自己的微控制器放在 PCB 板上,而且设计很差,有一个路径可以通过所有这些控制器,那会怎么样?它会把这种耦合重新带回来。有一种攻击是盗取你的设备、拆解它、在里面放一些电线,也是一样的道理 —— 引入耦合。然后你就完蛋了。</p><p>另一种随机数生成也不是完美的。如果你使用的是一个依赖于温度的东西,那我们可以把它冻起来。你还可以调低随机数生成器的电压,然后它就会输出更多的 0,输出更少的 1,或者产生一些奇怪的东西。这些奇怪的东西也是低熵的。没有足够的熵,你的 nonce 就会被暴力破解,然后你就完了。还有各种各样的错误注入,我可以拿一个电磁表,迫使这些振荡器或者说随机数生成器都失灵。所以随机数生成器是糟糕的,至少不完美。</p><h2 id=taproot-的难点交互式多签名领域总结>Taproot 的难点:交互式多签名领域总结</h2><p>有没有一种解决方案呢?可以看到有 5 篇论文。在第二列中,有两篇论文不需要随机数生成器。他们使用确定性的 nonce,而且不止是确定性的,还是可验证的确定性 nonce。这意味着,你的硬件签名器可以生成 nonce 值并向他人证明它是使用某一种算法确定性地生成出来的。<a href=https://eprint.iacr.org/2020/1057.pdf>MuSig-DN</a> 是使用了确定性 nonce 的 MuSig。<a href=https://eprint.iacr.org/2021/1055.pdf>GKMN21</a>(Garillot、Kondi、Mohassel、Nikolaenko)来自 Facebook,他们确实出版了这篇论文,而且写得非常好。看起来有一个非常棒的解决方案。唯一的问题是,生成这些证据(证明你得 nonce 是确定性得)是非常复杂的。比如在 MuSig-DN 的基准测试中,如果你在一个英特尔的 i7 、频率为 3Ghz 的核心计算器上运行(这是家用计算机的配置),它需要 1 秒来生成证据。考虑到硬件签名器一般只有 100 MHz,而且是 32 位的,不是 64 位的,你可能要乘以 100。</p><h2 id=交互式多签名方案比较>交互式多签名方案比较</h2><p>这里作一个比较。前面三种方案(MuSig、MuSgi2 和 FROST)依赖于 RNG,所以我们先不管基准测试,它肯定更快。但后面的两种(MuSig-DN,GKMN21),MuSig-DN 在微控制器上可能需要 100 秒。如果你有一笔 5 个输入的交易,你可能需要等待 10 分钟,这就不舒服了。而且内存要求也很高。我认为可以优化,但依然需要微控制器有 10 MB 的内存。现在的签名器一般来说是 100 KB,左右吧。也许在高端设备上可以有 MB 级别的内存。比如 Keystone 是基于 Android 系统的,它有大量的内存,但他们在安全芯片(security element)上运行的安全代码也不是非常高效。证据的大小还行,1KB 。我喜欢 QR 码,所以我不喜欢通过 QR 码来传输 1KB,那会很复杂,但还好。最后,第二篇论文(GKMN21)使用了零知识证明,所以它会快很多,而且在微控制器上也可以运行。内存要求我不确定,但我认为也要用到几 MB。证据的体积是 1MB。相当于一整个比特币区块的大小。但你不需要广播它,只需要在签名人之间传播。</p><p>这就是我对所有的多签名方案的总结。每一种都有特定的取舍。我会说,如果你使用了多个硬件签名器,而且不想让它们在同一时间连接同一台电脑,比如它们是分开保管的,那么别用交互式多签名方案。使用常规的多签名就好,知道我们得到更合理的 MuSig 实现。但是,确实有一些用途,是非常有用的。</p><h2 id=taproot现在可以用在哪里>Taproot:现在可以用在哪里?</h2><p>比如说闪电网络,它有完全不同的安全模型,你的私钥一直是触网的。无论如何你都需要保存状态。所以使用 MuSig 并不会增加你的攻击界面。所以用在闪电通道中就很好。原子化互换,可以在热钱包中完成,所以情况也非常类似。也没问题。然后是服务端是签名者之一的情况。比如 Blockstream Green 钱包,使用 2-of-2 或者 1-of-2 加上时间锁的装置。使用 Taproot 也完全是一种优化。Muun 钱包使用 2-of-2 多签名,Square 也在使用服务端做一件跟移动钱包和安全私钥管理相关的有趣的事。都是非常好的应用场景。最后是我最喜欢的东西,我的梦想、我的激情、我的宝贝。我梦想了 3 年了,一直没有时间去实现。一个 paranoid HSM(硬件安全模块),将多个芯片组合在一个设备上,使用完全开源的 RISC-V PGA 板,使用基于 NDA 的安全芯片(比如英飞凌的),还有一些其它的基于 RAM 的微控制器。每一个芯片都有一个私钥,每一个都必须签名才能得到一个完整的签名。然后,如果攻击者希望黑掉这个东西,他们需要黑掉 3 种不同的微控制器。这非常非常棒,尤其是对 HSM 企业用户来说。企业也可以将 HSM 放在一个法拉第笼(Faraday cage)中,并使用一根导线,来检测所有篡改的尝试,等等。这非常酷。我觉得 Taproot 真是太令人惊讶了。我们可以翘首等待它的演化,太棒了。</p><h2 id=问答>问答</h2><p>问:闪电钱包现在就可以用到 Taproot 多签名了吗?</p><p>答:现在应该连规范都还没有,所以应该也还没有软件实现。c-lightning 应该在往这个方向开发,但最好问问 Christian Decker,他也在这里。应该还在编写规范的阶段。但总的来说,它意味着,你的开启通道和共同关闭通道的操作,在链上都只会表现为一个单签名以及单公钥。仅在单方面关闭通道的时候,才会暴露你的 Taptree 上有一个时间锁。</p><p>问:你认为上面的合作式多签名方案中,哪一种能得到主流采用?我们现在的情况很尴尬,已经有 14 种标准了,我们需要制定一个最终的标准,结果是出现了 15 种标准。</p><p>答:我不知道哪一种是每个人都会用的。我个人喜欢 MuSig,可能还有它跟 FROST 的某种结合,因为它实现了门限签名。从我的理解来说,FROST 会有交叉输入集成(cross input integration)的问题,Sanket 已经提到了。坦白说我也不知道。我认为从 MuSig 开始理解这个领域是对的,因为它可能也是第一种被采用的。最好问问开发 libsecp256k1 的人。我没有一个确定的答案。</p><p>问:哪一种硬件签名器允许你自己为 nonce 提供熵吗?如果没有,为什么没有呢?</p><p>答:在 Taproot 以前,比特币社区讨论硬件签名器时,讨论的是选择 nonce 攻击(chosen nonce attacks)、侧信道攻击(side channel)的验证和缓解,这些会在硬件签名器被劫持时导致你的私钥泄露。我知道两种硬件签名器在签名种实现了额外熵的混合,是 <a href=https://medium.com/blockstream/anti-exfil-stopping-key-exfiltration-589f02facc2e>Jade</a> 和 Bitbox 。就我所知,迄今为止没有别人做了这个。但这对 MuSig 的第一步来说非常重要。我认为,我们可以为 MuSig 复用相同的规范和协议。只要其它硬件钱包开始了,当他们开始实现 MuSig 的时候,他们就需要这个 API 来混合额外的熵。</p><p>问:你提到了 RISC-V。你认为是否有某种定制化指令,可以让这些变得非常快吗?基本上你必须在软件实现种计算所有东西。</p><p>答:在 FPGA 上的 RISC-V 吗?我推进你看看来自 Bunnie 的 <a href="https://www.bunniestudios.com/blog/?p=5921">Precursor</a> 项目,供记者使用的安全通讯设备以及别的东西正在众筹。现在他们正在制造。他们非常了解硬件,他们使用 FPGA,并在 FPGA 上使用 RISC-V 核心,所以你可以看看。他们也有一套操作系统,以及一些安全操作。理论上来说他们也是完全开源的。我们可以做的就是把他们做的一切都拿过来然后为我们所用。我认为开源的 RISC-V 核心发展得非常快,而且更接近量产状态了。在这个设置中,比如说,你并不需要真正到达可量产状态,因为你的安全性还依赖于其它芯片。有一些 FPGA 制造商位于中国,我不知道你信不信得过。它们非常便宜,而且可以在最小实现上运行 RISC-V。总的来说,有了 FPGA,你想要运行 RISC-V 并获得良好的速度,你需要支付一些溢价,因为 FPGA 更贵。可能几百美元吧。</p><h4></h4><ul><li><a href=/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/>en: Taproot on hardware wallets</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> +<script src=https://btctranscripts.com/lib/popper.min.js></script> +<script src=https://btctranscripts.com/js/bootstrap.min.js></script> +<script type=text/javascript src=/plugins/lunr.min.js></script> +<script type=text/javascript src=/plugins/auto-complete.js></script> +<link href=/plugins/auto-complete.css rel=stylesheet><script type=text/javascript>var baseurl="https://btctranscripts.com//zh"</script><script type=text/javascript src=/plugins/search.js></script> +<script type=text/javascript src=https://btctranscripts.com/js/custom.js></script> +<script type=text/javascript src=/plugins/clipboard.js></script> +<script>new ClipboardJS(".btn")</script></body></html> \ No newline at end of file diff --git a/zh/advancing-bitcoin/2022/index.html b/zh/advancing-bitcoin/2022/index.html index b070c21f2c..64ed9c2cf1 100644 --- a/zh/advancing-bitcoin/2022/index.html +++ b/zh/advancing-bitcoin/2022/index.html @@ -1,6 +1,7 @@ <!doctype html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><link rel=alternate type=application/rss+xml href=https://btctranscripts.com/zh/advancing-bitcoin/2022/index.xml title="₿itcoin 记录稿"><link rel=canonical href=https://btctranscripts.com/zh/advancing-bitcoin/2022/><title>Advancing Bitcoin 2022 | ₿itcoin 记录稿</title><link href=https://btctranscripts.com/css/fontawesome.min.css rel=stylesheet><link rel=stylesheet href=https://btctranscripts.com/css/ace.min.css><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://btctranscripts.com/images/btctranscripts.png"><meta name=twitter:title content="Advancing Bitcoin 2022"><meta name=twitter:description content="A treasure trove of ₿itcoin transcripts (mostly recorded by @kanzure)"></head><body><nav class="navbar navbar-expand-lg navbar-dark bg-primary shadow sticky-top" id=navbarMain><div class=container><div><a class=navbar-brand href=/zh>₿itcoin 记录稿</a></div><div class="collapse navbar-collapse" id=navbarMainCollapse><ul class="navbar-nav ml-auto"><li class=nav-item><a class=nav-link href=/en>en</a></li><li class=nav-item><a class=nav-link href=/es>es</a></li><li class=nav-item><a class=nav-link href=/pt>pt</a></li><li class=nav-item><a class=nav-link href=https://github.com/bitcointranscripts/bitcointranscripts target=_blank><i class='fab fa-github'></i></a></li></ul></div></div></nav><div class=container-fluid><div class=row><div class="docs-sidenav order-0 col-12 col-md-3 col-lg-2 col-xl-2 position-sticky border-right"><nav class="navbar navbar-expand-md navbar-light pl-0"><button class="navbar-toggler navbar-toggler-right collapsed" type=button data-toggle=collapse data-target=#sidenav-left-collapse aria-controls=sidenav-left-collapse aria-expanded=false aria-label="Toggle navigation"> <span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/zh/advancing-bitcoin/ class="nav-item my-1 parent haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/advancing-bitcoin/2022/ class="nav-item my-1 active haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc><nav id=TableOfContents></nav></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Advancing Bitcoin 2022</h1><ul class=docs-children><li class="h6 child-links py-1"><a href=/zh/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/>Sanket Kanjalkar - -Miniscript</a></li></ul><h4></h4><ul><li><a href=/advancing-bitcoin/2022/>en: Advancing Bitcoin 2022</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> +Miniscript</a></li><li class="h6 child-links py-1"><a href=/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/>Stepan Snigirev - +Taproot on hardware wallets</a></li></ul><h4></h4><ul><li><a href=/advancing-bitcoin/2022/>en: Advancing Bitcoin 2022</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> <script src=https://btctranscripts.com/lib/popper.min.js></script> <script src=https://btctranscripts.com/js/bootstrap.min.js></script> <script type=text/javascript src=/plugins/lunr.min.js></script> diff --git a/zh/advancing-bitcoin/2022/index.xml b/zh/advancing-bitcoin/2022/index.xml index d365161624..65eaffb47e 100644 --- a/zh/advancing-bitcoin/2022/index.xml +++ b/zh/advancing-bitcoin/2022/index.xml @@ -5,4 +5,12 @@ Andrew Poelstra 论 Miniscript:https://btctranscripts.com/london-bitcoin-devs/ 比特币 Script 当前的问题 为了介绍开发 Miniscript 的动机,我要先讲讲当前的比特币 Script 语言的问题。从非常抽象的层面来说,在中本聪设计比特币时,“不,我不要给某一个人支付,我要给这个人可以使用的一个基于脚本的程序支付” 的想法可谓石破天惊。 (译者注:“脚本(script)” 和 “Script” 两者时常混用,但仔细区分的话,前者指的是比特币 UTXO 的一个部分,用于为 UTXO 设置花费条件;而 Script 指的是一种特定的编写的脚本的方式 —— 直接使用实际需要执行的指令来编写脚本。) 今天的比特币 Script 给大家一个关于脚本的概念,脚本就是一些可以执行的指令(可以运行的程序),由网络中的所有参与者各自运行、检查某一笔交易是不是有效的。但从原理上说,其设计有一些问题。首先,它很难分析。我知道我们很多的比特币人都正确地宣传了其表达能力有限的事实,但就是这样有限的表达能力,我们也不知道如何分析脚本。除非我们部署像 Miniscript 这样的东西(这是一种更为通用、可组合的框架),不然比特币就还是给某个人支付而已。它很难用,而且几乎所有的工具都难用 —— 从 xpub 钱包到多签名。当我们说多签名的时候,我们还要跟一个复杂的词语联系起来,真遗憾。概念上来说,它其实不那么复杂。而且,在 Miniscript 中你拥有所有的定制化工具。比如你要使用 3-of-5 多签名,你想改变其中的某一些东西,那么你需要一个比特币专家来帮你分析你的改动。这是一个来自 BOLT 3(闪电网络 HTLC 规范之一)的例子。 -OP_IF # 用于惩罚交易 &lt;revocationpubkey&gt; OP_ELSE `to_self_delay` # 自主决定的时间锁长度 OP_CHECKSEQUENCEVERIFY OP_DROP &lt;local_delayedpubkey&gt; OP_ENDIF OP_CHECKSIG 我们后面会讲解这个例子,这是一份原样复制的脚本,你很难看出来它想干什么。专家可以看懂这段脚本想干什么,但分辨起来并不容易。</description></item></channel></rss> \ No newline at end of file +OP_IF # 用于惩罚交易 &lt;revocationpubkey&gt; OP_ELSE `to_self_delay` # 自主决定的时间锁长度 OP_CHECKSEQUENCEVERIFY OP_DROP &lt;local_delayedpubkey&gt; OP_ENDIF OP_CHECKSIG 我们后面会讲解这个例子,这是一份原样复制的脚本,你很难看出来它想干什么。专家可以看懂这段脚本想干什么,但分辨起来并不容易。</description></item><item><title>Taproot on hardware wallets</title><link>https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/</link><pubDate>Thu, 03 Mar 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/</guid><description>开场(Jeff Gallas) 我非常高兴地宣布我们今天的第一位演讲者,来自 Specter 的 Stepan Snigirev,他是 Specter Solutions 的 CTO,有 3 年的开发比特币软件钱包(soft wallets)和硬件签名器(hard wallets)的经历。欢迎 Stepan。 +概述(Stepan Snigirev) 我今天的演讲主题是 “在硬件签名器上支持 Taproot”。我们刚刚激活了 Taproot,非常棒,是在去年 11 月激活的。一些软件钱包已经开始集成了,而且甚至一些硬件签名器也开始集成了。现在大部分人用的都是单调的 “单密钥、单签名” 方案。我想讲讲我们可以用 Taproot 做什么。我觉得应该大家都知道了,所以我会讲快一点,然后我会讨论为什么在硬件签名器中集成 Taproot 是非常困难的、难点在哪里。如果我们无法在硬件钱包中集成,我们还有什么办法? +通过隐藏实现隐私 Taproot 非常出色。首先是它给了用户隐私性。在你观察区块链的时候,如果你看到一个单签名和单公钥的 taproot 地址,它里面可能实际上是一个公钥和一个脚本树。然后,这个公钥自身也可能凝结了一组公钥,而这棵脚本树可能非常高,是许许多多脚本的复杂集合。在里面你可以放置任意类型的时间锁,然后备份平时不会用到的私钥、仅在紧急情况下才启用它们。这意味着,所有复杂的花费条件,在链上看起来都是一样的。这是非常棒的事。甚至放在脚本中的公钥也可以代表着一组公钥,这就像是无限阶的密钥聚合。非常酷。 +Miniscript(更安全的明文备份) 我个人会使用它的第一个理由是,它支持更好的明文备份。为什么现在没有人使用 Miniscript 或者复杂的比特币脚本?首先是因为比特币脚本复杂而不容易编写(在 Miniscript 出现之前)。其次是所有人都不使用它。这是一个鸡生蛋还是蛋生鸡的问题:每个人(90%)都使用单签名脚本,10% 的人使用多签名脚本,只有 0.3% 的人使用定制化的脚本。如果你使用一些定制化的脚本,你就暴露在了这 0.3% 里面。所有的链分析公司都知道,要是使用这样的脚本,那很有可能是同一个人。这样的隐私性非常糟,这就是障碍之一。 +花费条件:or(HW, and(backup, timelock)) +描述符:tr(HW, {and_v(v:pk(backup), older(timelock))}) +Tapscript:&lt;backup&gt; OP_CHECKSIGVERIFY &lt;timelock&gt; OP_CHECKSEQUENCEVERIFY +(译者注:这段花费条件的意思是:一个硬件签名器随时可以花费这笔钱;同时,时间锁过期后,后备私钥也可以花费这笔钱。) +我个人会使用,我非常害怕把明文的钱包复原词(recovery phrases,应指种子词)放在我家里。如果有人得到了它,那我的钱就全部丢了。我个人的做法是使用一个不备份的硬件钱包,然后设置一个备用脚本,这个备用脚本带有时间锁,加上复原词就可以花费我的钱。然后,如果我遇到了什么意外,或者我的硬件钱包坏了,那么等待一段时间(也许半年)我就能拿回我的钱。但是,如果我的复原词被盗了,他们是没法立即偷走我的钱的(只要硬件钱包还在我手上的话)。我有足够多的时间,将资金迁移到一个新的装置上。但是,想想硬件签名器和 Miniscript 实现,现在还没有一个东西真正支持这个功能。太糟糕了。但实际上这并不是很难。在我给我们的硬件签名器集成 Miniscript 的时候,基本上我只花了一周的时间。我只要坐下来就可以开始开发了,因为它的说明真的写得非常好。Miniscript 有两个元素,其中一个你可以忽略,另一个是,如果你有一段可读的 policy 表达式,你就可以把它转成钱包的描述符。这有点复杂,但你不需要在硬件签名器里完成操作。第二部分是将钱包的描述符编译成实际的比特币脚本。这基本上只是把这些记号替换成比特币脚本的操作码,然后把派生出来的密钥放在正确的位置上。非常简单。然后硬件签名器就可以确定哪个输出是找零,并验证找零输出是从相同的描述符中派生出来的。这就行了。我想提一句,Ledger 团体最近做了很多工作来升级他们的比特币应用。他们在设计的时候就采用了 Miniscript 方法。虽然现在仅支持多签名功能,但很容易就能升级到支持定制化的 Miniscript,所以我很期待。至于硬件签名器,我不知道他们的计划。但至少会有两种硬件签名器将支持 Miniscript。</description></item></channel></rss> \ No newline at end of file diff --git a/zh/categories/conference/index.html b/zh/categories/conference/index.html index ec6ff51430..1cfe14841b 100644 --- a/zh/categories/conference/index.html +++ b/zh/categories/conference/index.html @@ -1,5 +1,5 @@ <!doctype html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><link rel=alternate type=application/rss+xml href=https://btctranscripts.com/zh/categories/conference/index.xml title="₿itcoin 记录稿"><link rel=canonical href=https://btctranscripts.com/zh/categories/conference/><title>conference | ₿itcoin 记录稿</title><link href=https://btctranscripts.com/css/fontawesome.min.css rel=stylesheet><link rel=stylesheet href=https://btctranscripts.com/css/ace.min.css><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://btctranscripts.com/images/btctranscripts.png"><meta name=twitter:title content="conference"><meta name=twitter:description content="A treasure trove of ₿itcoin transcripts (mostly recorded by @kanzure)"></head><body><nav class="navbar navbar-expand-lg navbar-dark bg-primary shadow sticky-top" id=navbarMain><div class=container><div><a class=navbar-brand href=/zh>₿itcoin 记录稿</a></div><div class="collapse navbar-collapse" id=navbarMainCollapse><ul class="navbar-nav ml-auto"><li class=nav-item><a class=nav-link href=/en>en</a></li><li class=nav-item><a class=nav-link href=/es>es</a></li><li class=nav-item><a class=nav-link href=/pt>pt</a></li><li class=nav-item><a class=nav-link href=https://github.com/bitcointranscripts/bitcointranscripts target=_blank><i class='fab fa-github'></i></a></li></ul></div></div></nav><div class=container-fluid><div class=row><div class="docs-sidenav order-0 col-12 col-md-3 col-lg-2 col-xl-2 position-sticky border-right"><nav class="navbar navbar-expand-md navbar-light pl-0"><button class="navbar-toggler navbar-toggler-right collapsed" type=button data-toggle=collapse data-target=#sidenav-left-collapse aria-controls=sidenav-left-collapse aria-expanded=false aria-label="Toggle navigation"> -<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/zh/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/advancing-bitcoin/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Conference</h1><ul><li><a href=/zh/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/>Miniscript</a></li><li><a href=/zh/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/>Miniscript</a></li><li><a href=/zh/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/>Covenants</a></li><li><a href=/zh/scalingbitcoin/tokyo-2018/accumulators/>Accumulators</a></li></ul><h4></h4><ul><li><a href=/categories/conference/>en: conference</a></li><li><a href=/es/categories/conference/>es: conference</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> +<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/zh/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/advancing-bitcoin/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Conference</h1><ul><li><a href=/zh/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/>Miniscript</a></li><li><a href=/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/>Taproot on hardware wallets</a></li><li><a href=/zh/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/>Miniscript</a></li><li><a href=/zh/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/>Covenants</a></li><li><a href=/zh/scalingbitcoin/tokyo-2018/accumulators/>Accumulators</a></li></ul><h4></h4><ul><li><a href=/categories/conference/>en: conference</a></li><li><a href=/es/categories/conference/>es: conference</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> <script src=https://btctranscripts.com/lib/popper.min.js></script> <script src=https://btctranscripts.com/js/bootstrap.min.js></script> <script type=text/javascript src=/plugins/lunr.min.js></script> diff --git a/zh/categories/conference/index.xml b/zh/categories/conference/index.xml index b9124b9a41..bbd0cde2b8 100644 --- a/zh/categories/conference/index.xml +++ b/zh/categories/conference/index.xml @@ -5,7 +5,15 @@ Andrew Poelstra 论 Miniscript:https://btctranscripts.com/london-bitcoin-devs/ 比特币 Script 当前的问题 为了介绍开发 Miniscript 的动机,我要先讲讲当前的比特币 Script 语言的问题。从非常抽象的层面来说,在中本聪设计比特币时,“不,我不要给某一个人支付,我要给这个人可以使用的一个基于脚本的程序支付” 的想法可谓石破天惊。 (译者注:“脚本(script)” 和 “Script” 两者时常混用,但仔细区分的话,前者指的是比特币 UTXO 的一个部分,用于为 UTXO 设置花费条件;而 Script 指的是一种特定的编写的脚本的方式 —— 直接使用实际需要执行的指令来编写脚本。) 今天的比特币 Script 给大家一个关于脚本的概念,脚本就是一些可以执行的指令(可以运行的程序),由网络中的所有参与者各自运行、检查某一笔交易是不是有效的。但从原理上说,其设计有一些问题。首先,它很难分析。我知道我们很多的比特币人都正确地宣传了其表达能力有限的事实,但就是这样有限的表达能力,我们也不知道如何分析脚本。除非我们部署像 Miniscript 这样的东西(这是一种更为通用、可组合的框架),不然比特币就还是给某个人支付而已。它很难用,而且几乎所有的工具都难用 —— 从 xpub 钱包到多签名。当我们说多签名的时候,我们还要跟一个复杂的词语联系起来,真遗憾。概念上来说,它其实不那么复杂。而且,在 Miniscript 中你拥有所有的定制化工具。比如你要使用 3-of-5 多签名,你想改变其中的某一些东西,那么你需要一个比特币专家来帮你分析你的改动。这是一个来自 BOLT 3(闪电网络 HTLC 规范之一)的例子。 -OP_IF # 用于惩罚交易 &lt;revocationpubkey&gt; OP_ELSE `to_self_delay` # 自主决定的时间锁长度 OP_CHECKSEQUENCEVERIFY OP_DROP &lt;local_delayedpubkey&gt; OP_ENDIF OP_CHECKSIG 我们后面会讲解这个例子,这是一份原样复制的脚本,你很难看出来它想干什么。专家可以看懂这段脚本想干什么,但分辨起来并不容易。</description></item><item><title>Miniscript</title><link>https://btctranscripts.com/zh/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/</link><pubDate>Sat, 06 Nov 2021 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/</guid><description>主题:Miniscript:资金保管,可计算,可组合 +OP_IF # 用于惩罚交易 &lt;revocationpubkey&gt; OP_ELSE `to_self_delay` # 自主决定的时间锁长度 OP_CHECKSEQUENCEVERIFY OP_DROP &lt;local_delayedpubkey&gt; OP_ENDIF OP_CHECKSIG 我们后面会讲解这个例子,这是一份原样复制的脚本,你很难看出来它想干什么。专家可以看懂这段脚本想干什么,但分辨起来并不容易。</description></item><item><title>Taproot on hardware wallets</title><link>https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/</link><pubDate>Thu, 03 Mar 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/</guid><description>开场(Jeff Gallas) 我非常高兴地宣布我们今天的第一位演讲者,来自 Specter 的 Stepan Snigirev,他是 Specter Solutions 的 CTO,有 3 年的开发比特币软件钱包(soft wallets)和硬件签名器(hard wallets)的经历。欢迎 Stepan。 +概述(Stepan Snigirev) 我今天的演讲主题是 “在硬件签名器上支持 Taproot”。我们刚刚激活了 Taproot,非常棒,是在去年 11 月激活的。一些软件钱包已经开始集成了,而且甚至一些硬件签名器也开始集成了。现在大部分人用的都是单调的 “单密钥、单签名” 方案。我想讲讲我们可以用 Taproot 做什么。我觉得应该大家都知道了,所以我会讲快一点,然后我会讨论为什么在硬件签名器中集成 Taproot 是非常困难的、难点在哪里。如果我们无法在硬件钱包中集成,我们还有什么办法? +通过隐藏实现隐私 Taproot 非常出色。首先是它给了用户隐私性。在你观察区块链的时候,如果你看到一个单签名和单公钥的 taproot 地址,它里面可能实际上是一个公钥和一个脚本树。然后,这个公钥自身也可能凝结了一组公钥,而这棵脚本树可能非常高,是许许多多脚本的复杂集合。在里面你可以放置任意类型的时间锁,然后备份平时不会用到的私钥、仅在紧急情况下才启用它们。这意味着,所有复杂的花费条件,在链上看起来都是一样的。这是非常棒的事。甚至放在脚本中的公钥也可以代表着一组公钥,这就像是无限阶的密钥聚合。非常酷。 +Miniscript(更安全的明文备份) 我个人会使用它的第一个理由是,它支持更好的明文备份。为什么现在没有人使用 Miniscript 或者复杂的比特币脚本?首先是因为比特币脚本复杂而不容易编写(在 Miniscript 出现之前)。其次是所有人都不使用它。这是一个鸡生蛋还是蛋生鸡的问题:每个人(90%)都使用单签名脚本,10% 的人使用多签名脚本,只有 0.3% 的人使用定制化的脚本。如果你使用一些定制化的脚本,你就暴露在了这 0.3% 里面。所有的链分析公司都知道,要是使用这样的脚本,那很有可能是同一个人。这样的隐私性非常糟,这就是障碍之一。 +花费条件:or(HW, and(backup, timelock)) +描述符:tr(HW, {and_v(v:pk(backup), older(timelock))}) +Tapscript:&lt;backup&gt; OP_CHECKSIGVERIFY &lt;timelock&gt; OP_CHECKSEQUENCEVERIFY +(译者注:这段花费条件的意思是:一个硬件签名器随时可以花费这笔钱;同时,时间锁过期后,后备私钥也可以花费这笔钱。) +我个人会使用,我非常害怕把明文的钱包复原词(recovery phrases,应指种子词)放在我家里。如果有人得到了它,那我的钱就全部丢了。我个人的做法是使用一个不备份的硬件钱包,然后设置一个备用脚本,这个备用脚本带有时间锁,加上复原词就可以花费我的钱。然后,如果我遇到了什么意外,或者我的硬件钱包坏了,那么等待一段时间(也许半年)我就能拿回我的钱。但是,如果我的复原词被盗了,他们是没法立即偷走我的钱的(只要硬件钱包还在我手上的话)。我有足够多的时间,将资金迁移到一个新的装置上。但是,想想硬件签名器和 Miniscript 实现,现在还没有一个东西真正支持这个功能。太糟糕了。但实际上这并不是很难。在我给我们的硬件签名器集成 Miniscript 的时候,基本上我只花了一周的时间。我只要坐下来就可以开始开发了,因为它的说明真的写得非常好。Miniscript 有两个元素,其中一个你可以忽略,另一个是,如果你有一段可读的 policy 表达式,你就可以把它转成钱包的描述符。这有点复杂,但你不需要在硬件签名器里完成操作。第二部分是将钱包的描述符编译成实际的比特币脚本。这基本上只是把这些记号替换成比特币脚本的操作码,然后把派生出来的密钥放在正确的位置上。非常简单。然后硬件签名器就可以确定哪个输出是找零,并验证找零输出是从相同的描述符中派生出来的。这就行了。我想提一句,Ledger 团体最近做了很多工作来升级他们的比特币应用。他们在设计的时候就采用了 Miniscript 方法。虽然现在仅支持多签名功能,但很容易就能升级到支持定制化的 Miniscript,所以我很期待。至于硬件签名器,我不知道他们的计划。但至少会有两种硬件签名器将支持 Miniscript。</description></item><item><title>Miniscript</title><link>https://btctranscripts.com/zh/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/</link><pubDate>Sat, 06 Nov 2021 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/</guid><description>主题:Miniscript:资金保管,可计算,可组合 场合:TABConf (The Atlanta Bitcoin Conference) 幻灯片:https://download.wpsoftware.net/bitcoin/wizardry/2021-11-tabconf/slides.pdf 引言 我准备讲讲 Miniscript。有些东西我之前就讲过,只不过讲述的方式更偏技术,侧重于讲解 Bitcoin Script 语言的困境、Miniscript 是什么、如何使用 Miniscript,等等。今天我准备从真正尝试使用比特币的人的角度谈谈 Miniscript,看看它是怎么解决这个行业中的一些我认为极为关键的问题的 —— 资金保管(custody)、密钥跟踪,等等。 diff --git a/zh/index.json b/zh/index.json index b71922d638..932ebdc86c 100644 --- a/zh/index.json +++ b/zh/index.json @@ -1 +1 @@ -[{"uri":"/zh/scalingbitcoin/tokyo-2018/","title":"Tokyo (2018)","content":" Benedikt Bünz, Benjamin Fisch, Dan Boneh - Accumulators "},{"uri":"/zh/speakers/bob-mcelrath/","title":"Bob McElrath","content":""},{"uri":"/zh/tabconf/2022/2022-10-15-braidpool/","title":"Braidpool","content":"引言 今天我准备讲讲 Braidpool,这是一种去中心化的矿池协议。希望在座有人参加了今天早些时候的矿业圆桌,尤其是关于 p2pool 的。Braidpool 是 p2pool 的后继者。很久以前我做过一次关于有向无环图(DAG)区块链的演讲。\nBraidpool Braidpool 是一个去中心化的矿池提议,它使用了一个合并挖矿的 DAG 以及类中本聪的共识协议来跟踪矿工的贡献(shares)。这是我能够想象的最直接的在 DAG 上应用中本聪共识的想法。它保证了所有的矿工都会通过这个合并挖矿的另类区块链得到支付。它使用一套矿工的参与机制和一个很大的多签名机制(使用 FROST、ROAST 或者 MuSig2)来签名 coinbase 支付(或者说结算交易)。我们使用大规模多签名的能力,让这一切成为了可能。它会通过一个 “UTXO 集” 来跟踪矿池对矿工的欠款,这个 UTXO 实际上是一组交易(未花费的哈希化支付输出,Unspent Hasher Payment Output)。它瞄准的是参与者之间的恒定方差。每个矿工都有不同的挖矿难度,但我们希望为所有的矿工实现相同的出块率。它还允 …"},{"uri":"/zh/categories/","title":"Categories","content":""},{"uri":"/zh/categories/core-dev-tech/","title":"core-dev-tech","content":""},{"uri":"/zh/tags/fees/","title":"fees","content":""},{"uri":"/zh/speakers/mark-erhardt/","title":"Mark Erhardt","content":""},{"uri":"/zh/tags/mining/","title":"mining","content":""},{"uri":"/zh/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/","title":"Misconceptions about segwit vbytes","content":"度量交易的重量:见证数据的折扣 你应该已经从别人那里听到了,我的演讲会有更多个互动。我可能不会讲完我准备的所有内容。如果你在听的过程中有所疑惑,欢迎举手,这样我们就可以立即解决问题。我准备带各位了解一下非隔离见证交易和隔离见证交易的序列化。希望演讲结束之后,你可以理解交易的重量(weight) 是如何计算的,以及见证数据的折扣是如何适用的。最后,我们应该会看看一些不同的输出类型。\n隔离见证以前 在隔离见证激活之前,一笔交易是这样的:它将至少有一个输入和一个输出。这笔交易有一个 P2PKH 输入,但有 4 个输出,一个是封装的隔离见证输入,一个是传统输入。到目前为止,没什么大不了的。估计你也看过这种类型的交易。\n交易的序列化 打开引擎盖,我们来看得仔细些。如果你序列化一笔交易,或者观看一笔交易的序列化形式,就像 yogh.io 给不同数据染色一样,你可以看到,所有的数据都编码成十六进制的字符串,而且这些字符串是使用不同的函数来处理的。\n我们首先会看到交易的元数据。每一笔交易都有一个 “交易头”,包含一个 4 字节的版本字段字段、输入容器(告诉你这笔交易有多少个输入)和输出容器(告诉你这笔 …"},{"uri":"/zh/tags/p2pool/","title":"p2pool","content":""},{"uri":"/zh/tags/pools/","title":"pools","content":""},{"uri":"/zh/tags/privacy/","title":"privacy","content":""},{"uri":"/zh/speakers/ruben-somsen/","title":"Ruben Somsen","content":""},{"uri":"/zh/tags/segwit/","title":"segwit","content":""},{"uri":"/zh/tabconf/2022/2022-10-15-silent-payments/","title":"Silent Payments and Alternatives","content":"引言 我希望谈谈 “静默支付”,以及让你可以非交互地给他人支付的多种构造。在比特币的世界里,有许多常见的支付方式,发起支付是稀松平常的事。我们当前拥有的另类选择是,你可以生成一个地址然后放到你的 Twitter 介绍里,然后所有人都可以直接给你支付了,但这就没有隐私。所以,要么你需要在接收支付时跟发送者互动,要么你可以持续复用相同的地址,但要接受隐私性上的牺牲。\n本演讲准备探究一下我们如何可以既做到非交互性,又能保留隐私性,也就是其他人无法在链上看到所有给我们的支付、知晓所有支付给同一个地址的资金。\n出于这个目的,人们已经提出了很多协议了,但也有一些新出现的协议。我会展示其中的可能性。\n给出一个 xpub 公钥 有一些方案我称之为 “准-交互式的解决方案”,意思是它们做不到无需交互,但交互量已经尽可能小了。其中一种非常基础的方案是,在你想给某人支付时,对方不是给你一个地址,而是给你一个新的 xpub 公钥,或者一个你可以从中生成许多地址的公钥。这样,你就不必在每次想要给这人支付时都请求一个新地址,只需最开始的一次交互就可以了(收款的地址你可以自己生成出来)。现在没有人会这样做,但我认为 …"},{"uri":"/zh/speakers/","title":"Speakers","content":""},{"uri":"/zh/tabconf/","title":"TABConf","content":" TABConf 2021 TABConf 2022 "},{"uri":"/zh/tabconf/2022/","title":"TABConf 2022","content":" Bob McElrath - Braidpool Mark Erhardt - Misconceptions about segwit vbytes Tim Ruffing - ROAST - Robust asynchronous Schnorr threshold signatures Ruben Somsen - Silent Payments and Alternatives "},{"uri":"/zh/tags/","title":"Tags","content":""},{"uri":"/zh/","title":"₿itcoin 记录稿","content":""},{"uri":"/zh/tags/frost/","title":"FROST","content":""},{"uri":"/zh/tabconf/2022/2022-10-14-roast/","title":"ROAST - Robust asynchronous Schnorr threshold signatures","content":"论文:https://ia.cr/2022/550\n幻灯片:https://slides.com/real-or-random/roast-tabconf22/\n哈咯各位,我叫 Tim,在 Blockstream 工作。本次演讲的内容是我跟几位合作者联合工作的成果。\n比特币中的 Schnorr 签名 最近,我们已经在比特币中支持了 Schnorr 签名,由 taproot 软分叉激活的 BIP340 引入。我们希望引入 Schnorr 签名并倾向于使用它而不是 ECDSA,有三大理由:一,Schnorr 签名的安全性有明确的证明,可以给理论工作者更强的信心;二,Schnorr 签名效率更高;三,最主要是,在 Schnorr 上我们可以更容易构造更高级的签名协议。\n想象 比特币已经支持 Shnorr 签名的验证。一旦我们把验证能力做进了协议,我们就可以在此基础上开发许多东西并应用在链上。举个例子,你可以开发门限签名,还可以实现像 MuSig 和 MuSig2 这样的多签名协议。只要一个签名看起来是一个 Schnorr 签名,你就可以把它放到链上,是可以兼容的。为了支持 Schnorr 签 …"},{"uri":"/zh/tags/schnorr/","title":"schnorr","content":""},{"uri":"/zh/speakers/tim-ruffing/","title":"Tim Ruffing","content":""},{"uri":"/zh/advancing-bitcoin/","title":"Advancing Bitcoin","content":" Advancing Bitcoin 2022 "},{"uri":"/zh/advancing-bitcoin/2022/","title":"Advancing Bitcoin 2022","content":" Sanket Kanjalkar - Miniscript "},{"uri":"/zh/categories/conference/","title":"conference","content":""},{"uri":"/zh/tags/miniscript/","title":"miniscript","content":""},{"uri":"/zh/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/","title":"Miniscript","content":"题目:Miniscript:可组合、可分析、更智能的比特币脚本\nAndrew Poelstra 论 Miniscript:https://btctranscripts.com/london-bitcoin-devs/2020-02-04-andrew-poelstra-miniscript/\n开场(Jeff Gallas) 下一个演讲者是 Sanket。他在 Blockstream 工作,主要开发 Simplicity 和 Miniscript。Miniscript 也是他今天演讲的主题。欢迎 Sanket !\n引言(Sanket Kanjalkar) 各位早上好!今天我想聊聊 Miniscript,这是 Pieter Wuille、Andrew Poelstra 和我的一项工作,也汇集了来自许多比特币人的想法。从 2019 年夏天以来,它一直在变化。但现在,它已经到了一个非常稳定的状态,可以分享出来、让更多人部署了。我的演讲题目是:“Miniscript:可组合、可分析、更智能的比特币脚本”。这是一个简单的背景介绍,如果你对哪一些内容有兴趣,欢迎在演讲结束后联系我,我们可以聊聊。\n比 …"},{"uri":"/zh/speakers/sanket-kanjalkar/","title":"Sanket Kanjalkar","content":""},{"uri":"/zh/tags/script/","title":"script","content":""},{"uri":"/zh/speakers/andrew-poelstra/","title":"Andrew Poelstra","content":""},{"uri":"/zh/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/","title":"Miniscript","content":"主题:Miniscript:资金保管,可计算,可组合\n场合:TABConf (The Atlanta Bitcoin Conference)\n幻灯片:https://download.wpsoftware.net/bitcoin/wizardry/2021-11-tabconf/slides.pdf\n引言 我准备讲讲 Miniscript。有些东西我之前就讲过,只不过讲述的方式更偏技术,侧重于讲解 Bitcoin Script 语言的困境、Miniscript 是什么、如何使用 Miniscript,等等。今天我准备从真正尝试使用比特币的人的角度谈谈 Miniscript,看看它是怎么解决这个行业中的一些我认为极为关键的问题的 —— 资金保管(custody)、密钥跟踪,等等。\n在开始之前,我要先介绍一下本次演讲的结构。我准备花几页幻灯片稍微讲一讲比特币的脚本(bitcoin script)。比特币脚本是比特币内置的一个系统,用来定义资金的花费条件。一般来说,在普通的比特币钱包中,它使用的脚本的意思是 “为了移动这笔资金,交易需要提供某个公钥的签名”。这种脚本只是包在你的公钥上的薄薄的 …"},{"uri":"/zh/tabconf/2021/","title":"TABConf 2021","content":" Jeremy Rubin, Andrew Poelstra - Covenants Andrew Poelstra - Miniscript "},{"uri":"/zh/tags/wallet/","title":"wallet","content":""},{"uri":"/zh/tags/covenants/","title":"covenants","content":""},{"uri":"/zh/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/","title":"Covenants","content":"主题:Covenants\n场合:TABConf (The Atlanta Bitcoin Conference)\n视频:互联网上无视频放出。\n根据 “苏格拉底村” 规则,(除了演讲者之外)所有与会者都使用了假名;音频也不会公开,以保护提问者的匿名。\n限制条款的概念 Shaun Apps(SA):我先做个开场吧。Andrew 和 Jeremy 都会来。然后我们就以问答的形式开展,最后再回答观众的提问。这就是本场演讲的形式。\nSA:言归正传,限制条款(covenant)。这个术语有宗教和法律方面的历史语境。大多数人理解的可能是物权法范畴内的概念,比如使用限制条款来约束土地的用途。但是,你们有多少人知道它在比特币领域内的意思?好的,看来很多人都听过。所以,基本上,限制条款给予了比特币脚本内省的能力,例如你可以通过预先定义的约束来限制一个输出的花费方式。我不太清楚限制条款的概念可以追溯到多久远以前。但是这一篇影响力很大的 BitcoinTalk 论坛帖子,作者是 Greg Maxwell,就介绍了限制条款的概念,并提出了一些假想的案例。举个例子,一种 Smashcoin 限制条款,在花费由此种 …"},{"uri":"/zh/speakers/jeremy-rubin/","title":"Jeremy Rubin","content":""},{"uri":"/zh/tags/c-lightning/","title":"c-lightning","content":""},{"uri":"/zh/categories/hackathon/","title":"hackathon","content":""},{"uri":"/zh/tags/lightning/","title":"lightning","content":""},{"uri":"/zh/lightning-hack-day/","title":"Lightning Hack Day","content":" Sergi Delgado Segura - Watchtowers and BOLT 13 "},{"uri":"/zh/speakers/sergi-delgado-segura/","title":"Sergi Delgado Segura","content":""},{"uri":"/zh/lightning-hack-day/2020-05-24-sergi-delgado-watchtowers/","title":"Watchtowers and BOLT 13","content":"位置:Potzblitz(线上参与)\n演示文档:https://srgi.me/resources/slides/Potzblitz!2020-Watchtowers.pdf\n“中本聪之眼” 代码:https://github.com/talaia-labs/python-teos\nBOLT 13 草案:https://github.com/sr-gi/bolt13/blob/master/13-watchtowers.md\nc-lightning 瞭望塔插件:https://github.com/talaia-labs/python-teos/tree/master/watchtower-plugin\nc-lightning 瞭望塔钩子讨论:\nhttps://github.com/ElementsProject/lightning/pull/3601\nhttps://github.com/ElementsProject/lightning/pull/3645\nhttps://github.com/ElementsProject/lightning/pull/3659 …"},{"uri":"/zh/tags/accumulators/","title":"accumulators","content":""},{"uri":"/zh/bitcoin-core-dev-tech/","title":"Bitcoin Core Dev Tech","content":" Tadge Dryja - Utxo Accumulators And Utreexo "},{"uri":"/zh/speakers/tadge-dryja/","title":"Tadge Dryja","content":""},{"uri":"/zh/bitcoin-core-dev-tech/2018-10-08-utxo-accumulators-and-utreexo/","title":"Utxo Accumulators And Utreexo","content":"UTXO 累加器、UTXO 承诺与 Utreexo\nhttps://twitter.com/kanzure/status/1049112390413897728\n要是你听过 Benedikt 在两天以前的演讲,你应该能听出来,我们的演讲是有关联的。我们使用了不同的技术构造,但基本的目标是一样的。基本的想法就是 —— 我记得 Cory 在几个月前就在邮件组中讲到了 —— 不在 leveldb 数据库中存储所有的 UTXO,而是存储每一个 UTXO 的哈希值,仅此就可以将数据的体积减少一半;然后,你只需从输入的哈希值就能创建出它,这需要再多 10 字节左右。再然后,你也不必存储每一个 UTXO 的哈希值,你只需存储这些哈希值的一些压缩后的表达形式,然后用证据来传递它们。\n在 Benedikt 的演讲中,这样的表达形式是基于 RSA 的累加器,或者可能是 “类群” 这种还完全没有得到验证的东西。我不了解。我在开发的是基于哈希值的累加器。虽说不同的累加器有不同的特性和操作,但一般来说,累加器的基本组成是:可以制作累加器的某种生成器;可以为累加器添加元素的 “添加” 操作,以及一种证明函数。生成 …"},{"uri":"/zh/scalingbitcoin/tokyo-2018/accumulators/","title":"Accumulators","content":"一种马上可用且可扩展的默克尔树替代品\nhttps://twitter.com/kanzure/status/1048454406755168257\n开场白 哈咯。声音测试。没问题。\n我今天准备讲讲 UTXO 的累加器(accumulators)。前面的两场演讲给本演讲做了很好的铺垫。本演讲涉及的工作是我和 Ben Fisch(他今天也在这里)和 Dan Boneh 的联合成果。我还希望给 Stanford Blockchain Conference(曾用名 BPASE)打个广告,这个会将在 2019 年 1 月在斯坦福召开。无论你是否要去演讲,你都应该去看看。\nUTXO UTXO 集的膨胀是一个日益严重的问题。今天上午我们已经听过了关于 UTXO 集合中的粉尘(译者注:指面额过于微小,因此无法单独花费的 UTXO)。我们已经有大约 6000 万个 UTXO。这里面的问题,我们在前几场演讲中已经听过了:区块链在存储 UTXO 上是非常低效的结构,如果我要下载一个旧区块,那么我需要知道当前区块与该旧区块之间的所有区块头。如果我想下载一笔旧交易并检查这笔交易是否已经花掉了,并且我只知道最新的 …"},{"uri":"/zh/speakers/benedikt-b%C3%BCnz/","title":"Benedikt Bünz","content":""},{"uri":"/zh/speakers/benjamin-fisch/","title":"Benjamin Fisch","content":""},{"uri":"/zh/speakers/dan-boneh/","title":"Dan Boneh","content":""},{"uri":"/zh/tags/merkle-trees/","title":"merkle trees","content":""},{"uri":"/zh/scalingbitcoin/","title":"Scaling Bitcoin Conference","content":" Tokyo (2018) "}] \ No newline at end of file +[{"uri":"/zh/scalingbitcoin/tokyo-2018/","title":"Tokyo (2018)","content":" Benedikt Bünz, Benjamin Fisch, Dan Boneh - Accumulators "},{"uri":"/zh/speakers/bob-mcelrath/","title":"Bob McElrath","content":""},{"uri":"/zh/tabconf/2022/2022-10-15-braidpool/","title":"Braidpool","content":"引言 今天我准备讲讲 Braidpool,这是一种去中心化的矿池协议。希望在座有人参加了今天早些时候的矿业圆桌,尤其是关于 p2pool 的。Braidpool 是 p2pool 的后继者。很久以前我做过一次关于有向无环图(DAG)区块链的演讲。\nBraidpool Braidpool 是一个去中心化的矿池提议,它使用了一个合并挖矿的 DAG 以及类中本聪的共识协议来跟踪矿工的贡献(shares)。这是我能够想象的最直接的在 DAG 上应用中本聪共识的想法。它保证了所有的矿工都会通过这个合并挖矿的另类区块链得到支付。它使用一套矿工的参与机制和一个很大的多签名机制(使用 FROST、ROAST 或者 MuSig2)来签名 coinbase 支付(或者说结算交易)。我们使用大规模多签名的能力,让这一切成为了可能。它会通过一个 “UTXO 集” 来跟踪矿池对矿工的欠款,这个 UTXO 实际上是一组交易(未花费的哈希化支付输出,Unspent Hasher Payment Output)。它瞄准的是参与者之间的恒定方差。每个矿工都有不同的挖矿难度,但我们希望为所有的矿工实现相同的出块率。它还允 …"},{"uri":"/zh/categories/","title":"Categories","content":""},{"uri":"/zh/categories/core-dev-tech/","title":"core-dev-tech","content":""},{"uri":"/zh/tags/fees/","title":"fees","content":""},{"uri":"/zh/speakers/mark-erhardt/","title":"Mark Erhardt","content":""},{"uri":"/zh/tags/mining/","title":"mining","content":""},{"uri":"/zh/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/","title":"Misconceptions about segwit vbytes","content":"度量交易的重量:见证数据的折扣 你应该已经从别人那里听到了,我的演讲会有更多个互动。我可能不会讲完我准备的所有内容。如果你在听的过程中有所疑惑,欢迎举手,这样我们就可以立即解决问题。我准备带各位了解一下非隔离见证交易和隔离见证交易的序列化。希望演讲结束之后,你可以理解交易的重量(weight) 是如何计算的,以及见证数据的折扣是如何适用的。最后,我们应该会看看一些不同的输出类型。\n隔离见证以前 在隔离见证激活之前,一笔交易是这样的:它将至少有一个输入和一个输出。这笔交易有一个 P2PKH 输入,但有 4 个输出,一个是封装的隔离见证输入,一个是传统输入。到目前为止,没什么大不了的。估计你也看过这种类型的交易。\n交易的序列化 打开引擎盖,我们来看得仔细些。如果你序列化一笔交易,或者观看一笔交易的序列化形式,就像 yogh.io 给不同数据染色一样,你可以看到,所有的数据都编码成十六进制的字符串,而且这些字符串是使用不同的函数来处理的。\n我们首先会看到交易的元数据。每一笔交易都有一个 “交易头”,包含一个 4 字节的版本字段字段、输入容器(告诉你这笔交易有多少个输入)和输出容器(告诉你这笔 …"},{"uri":"/zh/tags/p2pool/","title":"p2pool","content":""},{"uri":"/zh/tags/pools/","title":"pools","content":""},{"uri":"/zh/tags/privacy/","title":"privacy","content":""},{"uri":"/zh/speakers/ruben-somsen/","title":"Ruben Somsen","content":""},{"uri":"/zh/tags/segwit/","title":"segwit","content":""},{"uri":"/zh/tabconf/2022/2022-10-15-silent-payments/","title":"Silent Payments and Alternatives","content":"引言 我希望谈谈 “静默支付”,以及让你可以非交互地给他人支付的多种构造。在比特币的世界里,有许多常见的支付方式,发起支付是稀松平常的事。我们当前拥有的另类选择是,你可以生成一个地址然后放到你的 Twitter 介绍里,然后所有人都可以直接给你支付了,但这就没有隐私。所以,要么你需要在接收支付时跟发送者互动,要么你可以持续复用相同的地址,但要接受隐私性上的牺牲。\n本演讲准备探究一下我们如何可以既做到非交互性,又能保留隐私性,也就是其他人无法在链上看到所有给我们的支付、知晓所有支付给同一个地址的资金。\n出于这个目的,人们已经提出了很多协议了,但也有一些新出现的协议。我会展示其中的可能性。\n给出一个 xpub 公钥 有一些方案我称之为 “准-交互式的解决方案”,意思是它们做不到无需交互,但交互量已经尽可能小了。其中一种非常基础的方案是,在你想给某人支付时,对方不是给你一个地址,而是给你一个新的 xpub 公钥,或者一个你可以从中生成许多地址的公钥。这样,你就不必在每次想要给这人支付时都请求一个新地址,只需最开始的一次交互就可以了(收款的地址你可以自己生成出来)。现在没有人会这样做,但我认为 …"},{"uri":"/zh/speakers/","title":"Speakers","content":""},{"uri":"/zh/tabconf/","title":"TABConf","content":" TABConf 2021 TABConf 2022 "},{"uri":"/zh/tabconf/2022/","title":"TABConf 2022","content":" Bob McElrath - Braidpool Mark Erhardt - Misconceptions about segwit vbytes Tim Ruffing - ROAST - Robust asynchronous Schnorr threshold signatures Ruben Somsen - Silent Payments and Alternatives "},{"uri":"/zh/tags/","title":"Tags","content":""},{"uri":"/zh/","title":"₿itcoin 记录稿","content":""},{"uri":"/zh/tags/frost/","title":"FROST","content":""},{"uri":"/zh/tabconf/2022/2022-10-14-roast/","title":"ROAST - Robust asynchronous Schnorr threshold signatures","content":"论文:https://ia.cr/2022/550\n幻灯片:https://slides.com/real-or-random/roast-tabconf22/\n哈咯各位,我叫 Tim,在 Blockstream 工作。本次演讲的内容是我跟几位合作者联合工作的成果。\n比特币中的 Schnorr 签名 最近,我们已经在比特币中支持了 Schnorr 签名,由 taproot 软分叉激活的 BIP340 引入。我们希望引入 Schnorr 签名并倾向于使用它而不是 ECDSA,有三大理由:一,Schnorr 签名的安全性有明确的证明,可以给理论工作者更强的信心;二,Schnorr 签名效率更高;三,最主要是,在 Schnorr 上我们可以更容易构造更高级的签名协议。\n想象 比特币已经支持 Shnorr 签名的验证。一旦我们把验证能力做进了协议,我们就可以在此基础上开发许多东西并应用在链上。举个例子,你可以开发门限签名,还可以实现像 MuSig 和 MuSig2 这样的多签名协议。只要一个签名看起来是一个 Schnorr 签名,你就可以把它放到链上,是可以兼容的。为了支持 Schnorr 签 …"},{"uri":"/zh/tags/schnorr/","title":"schnorr","content":""},{"uri":"/zh/speakers/tim-ruffing/","title":"Tim Ruffing","content":""},{"uri":"/zh/advancing-bitcoin/","title":"Advancing Bitcoin","content":" Advancing Bitcoin 2022 "},{"uri":"/zh/advancing-bitcoin/2022/","title":"Advancing Bitcoin 2022","content":" Sanket Kanjalkar - Miniscript Stepan Snigirev - Taproot on hardware wallets "},{"uri":"/zh/categories/conference/","title":"conference","content":""},{"uri":"/zh/tags/hardware-wallet/","title":"hardware wallet","content":""},{"uri":"/zh/tags/miniscript/","title":"miniscript","content":""},{"uri":"/zh/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/","title":"Miniscript","content":"题目:Miniscript:可组合、可分析、更智能的比特币脚本\nAndrew Poelstra 论 Miniscript:https://btctranscripts.com/london-bitcoin-devs/2020-02-04-andrew-poelstra-miniscript/\n开场(Jeff Gallas) 下一个演讲者是 Sanket。他在 Blockstream 工作,主要开发 Simplicity 和 Miniscript。Miniscript 也是他今天演讲的主题。欢迎 Sanket !\n引言(Sanket Kanjalkar) 各位早上好!今天我想聊聊 Miniscript,这是 Pieter Wuille、Andrew Poelstra 和我的一项工作,也汇集了来自许多比特币人的想法。从 2019 年夏天以来,它一直在变化。但现在,它已经到了一个非常稳定的状态,可以分享出来、让更多人部署了。我的演讲题目是:“Miniscript:可组合、可分析、更智能的比特币脚本”。这是一个简单的背景介绍,如果你对哪一些内容有兴趣,欢迎在演讲结束后联系我,我们可以聊聊。\n比 …"},{"uri":"/zh/speakers/sanket-kanjalkar/","title":"Sanket Kanjalkar","content":""},{"uri":"/zh/tags/script/","title":"script","content":""},{"uri":"/zh/speakers/stepan-snigirev/","title":"Stepan Snigirev","content":""},{"uri":"/zh/tags/taproot/","title":"taproot","content":""},{"uri":"/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/","title":"Taproot on hardware wallets","content":"开场(Jeff Gallas) 我非常高兴地宣布我们今天的第一位演讲者,来自 Specter 的 Stepan Snigirev,他是 Specter Solutions 的 CTO,有 3 年的开发比特币软件钱包(soft wallets)和硬件签名器(hard wallets)的经历。欢迎 Stepan。\n概述(Stepan Snigirev) 我今天的演讲主题是 “在硬件签名器上支持 Taproot”。我们刚刚激活了 Taproot,非常棒,是在去年 11 月激活的。一些软件钱包已经开始集成了,而且甚至一些硬件签名器也开始集成了。现在大部分人用的都是单调的 “单密钥、单签名” 方案。我想讲讲我们可以用 Taproot 做什么。我觉得应该大家都知道了,所以我会讲快一点,然后我会讨论为什么在硬件签名器中集成 Taproot 是非常困难的、难点在哪里。如果我们无法在硬件钱包中集成,我们还有什么办法?\n通过隐藏实现隐私 Taproot 非常出色。首先是它给了用户隐私性。在你观察区块链的时候,如果你看到一个单签名和单公钥的 taproot 地址,它里面可能实际上是一个公钥和一个脚本树。然 …"},{"uri":"/zh/speakers/andrew-poelstra/","title":"Andrew Poelstra","content":""},{"uri":"/zh/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/","title":"Miniscript","content":"主题:Miniscript:资金保管,可计算,可组合\n场合:TABConf (The Atlanta Bitcoin Conference)\n幻灯片:https://download.wpsoftware.net/bitcoin/wizardry/2021-11-tabconf/slides.pdf\n引言 我准备讲讲 Miniscript。有些东西我之前就讲过,只不过讲述的方式更偏技术,侧重于讲解 Bitcoin Script 语言的困境、Miniscript 是什么、如何使用 Miniscript,等等。今天我准备从真正尝试使用比特币的人的角度谈谈 Miniscript,看看它是怎么解决这个行业中的一些我认为极为关键的问题的 —— 资金保管(custody)、密钥跟踪,等等。\n在开始之前,我要先介绍一下本次演讲的结构。我准备花几页幻灯片稍微讲一讲比特币的脚本(bitcoin script)。比特币脚本是比特币内置的一个系统,用来定义资金的花费条件。一般来说,在普通的比特币钱包中,它使用的脚本的意思是 “为了移动这笔资金,交易需要提供某个公钥的签名”。这种脚本只是包在你的公钥上的薄薄的 …"},{"uri":"/zh/tabconf/2021/","title":"TABConf 2021","content":" Jeremy Rubin, Andrew Poelstra - Covenants Andrew Poelstra - Miniscript "},{"uri":"/zh/tags/wallet/","title":"wallet","content":""},{"uri":"/zh/tags/covenants/","title":"covenants","content":""},{"uri":"/zh/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/","title":"Covenants","content":"主题:Covenants\n场合:TABConf (The Atlanta Bitcoin Conference)\n视频:互联网上无视频放出。\n根据 “苏格拉底村” 规则,(除了演讲者之外)所有与会者都使用了假名;音频也不会公开,以保护提问者的匿名。\n限制条款的概念 Shaun Apps(SA):我先做个开场吧。Andrew 和 Jeremy 都会来。然后我们就以问答的形式开展,最后再回答观众的提问。这就是本场演讲的形式。\nSA:言归正传,限制条款(covenant)。这个术语有宗教和法律方面的历史语境。大多数人理解的可能是物权法范畴内的概念,比如使用限制条款来约束土地的用途。但是,你们有多少人知道它在比特币领域内的意思?好的,看来很多人都听过。所以,基本上,限制条款给予了比特币脚本内省的能力,例如你可以通过预先定义的约束来限制一个输出的花费方式。我不太清楚限制条款的概念可以追溯到多久远以前。但是这一篇影响力很大的 BitcoinTalk 论坛帖子,作者是 Greg Maxwell,就介绍了限制条款的概念,并提出了一些假想的案例。举个例子,一种 Smashcoin 限制条款,在花费由此种 …"},{"uri":"/zh/speakers/jeremy-rubin/","title":"Jeremy Rubin","content":""},{"uri":"/zh/tags/c-lightning/","title":"c-lightning","content":""},{"uri":"/zh/categories/hackathon/","title":"hackathon","content":""},{"uri":"/zh/tags/lightning/","title":"lightning","content":""},{"uri":"/zh/lightning-hack-day/","title":"Lightning Hack Day","content":" Sergi Delgado Segura - Watchtowers and BOLT 13 "},{"uri":"/zh/speakers/sergi-delgado-segura/","title":"Sergi Delgado Segura","content":""},{"uri":"/zh/lightning-hack-day/2020-05-24-sergi-delgado-watchtowers/","title":"Watchtowers and BOLT 13","content":"位置:Potzblitz(线上参与)\n演示文档:https://srgi.me/resources/slides/Potzblitz!2020-Watchtowers.pdf\n“中本聪之眼” 代码:https://github.com/talaia-labs/python-teos\nBOLT 13 草案:https://github.com/sr-gi/bolt13/blob/master/13-watchtowers.md\nc-lightning 瞭望塔插件:https://github.com/talaia-labs/python-teos/tree/master/watchtower-plugin\nc-lightning 瞭望塔钩子讨论:\nhttps://github.com/ElementsProject/lightning/pull/3601\nhttps://github.com/ElementsProject/lightning/pull/3645\nhttps://github.com/ElementsProject/lightning/pull/3659 …"},{"uri":"/zh/tags/accumulators/","title":"accumulators","content":""},{"uri":"/zh/bitcoin-core-dev-tech/","title":"Bitcoin Core Dev Tech","content":" Tadge Dryja - Utxo Accumulators And Utreexo "},{"uri":"/zh/speakers/tadge-dryja/","title":"Tadge Dryja","content":""},{"uri":"/zh/bitcoin-core-dev-tech/2018-10-08-utxo-accumulators-and-utreexo/","title":"Utxo Accumulators And Utreexo","content":"UTXO 累加器、UTXO 承诺与 Utreexo\nhttps://twitter.com/kanzure/status/1049112390413897728\n要是你听过 Benedikt 在两天以前的演讲,你应该能听出来,我们的演讲是有关联的。我们使用了不同的技术构造,但基本的目标是一样的。基本的想法就是 —— 我记得 Cory 在几个月前就在邮件组中讲到了 —— 不在 leveldb 数据库中存储所有的 UTXO,而是存储每一个 UTXO 的哈希值,仅此就可以将数据的体积减少一半;然后,你只需从输入的哈希值就能创建出它,这需要再多 10 字节左右。再然后,你也不必存储每一个 UTXO 的哈希值,你只需存储这些哈希值的一些压缩后的表达形式,然后用证据来传递它们。\n在 Benedikt 的演讲中,这样的表达形式是基于 RSA 的累加器,或者可能是 “类群” 这种还完全没有得到验证的东西。我不了解。我在开发的是基于哈希值的累加器。虽说不同的累加器有不同的特性和操作,但一般来说,累加器的基本组成是:可以制作累加器的某种生成器;可以为累加器添加元素的 “添加” 操作,以及一种证明函数。生成 …"},{"uri":"/zh/scalingbitcoin/tokyo-2018/accumulators/","title":"Accumulators","content":"一种马上可用且可扩展的默克尔树替代品\nhttps://twitter.com/kanzure/status/1048454406755168257\n开场白 哈咯。声音测试。没问题。\n我今天准备讲讲 UTXO 的累加器(accumulators)。前面的两场演讲给本演讲做了很好的铺垫。本演讲涉及的工作是我和 Ben Fisch(他今天也在这里)和 Dan Boneh 的联合成果。我还希望给 Stanford Blockchain Conference(曾用名 BPASE)打个广告,这个会将在 2019 年 1 月在斯坦福召开。无论你是否要去演讲,你都应该去看看。\nUTXO UTXO 集的膨胀是一个日益严重的问题。今天上午我们已经听过了关于 UTXO 集合中的粉尘(译者注:指面额过于微小,因此无法单独花费的 UTXO)。我们已经有大约 6000 万个 UTXO。这里面的问题,我们在前几场演讲中已经听过了:区块链在存储 UTXO 上是非常低效的结构,如果我要下载一个旧区块,那么我需要知道当前区块与该旧区块之间的所有区块头。如果我想下载一笔旧交易并检查这笔交易是否已经花掉了,并且我只知道最新的 …"},{"uri":"/zh/speakers/benedikt-b%C3%BCnz/","title":"Benedikt Bünz","content":""},{"uri":"/zh/speakers/benjamin-fisch/","title":"Benjamin Fisch","content":""},{"uri":"/zh/speakers/dan-boneh/","title":"Dan Boneh","content":""},{"uri":"/zh/tags/merkle-trees/","title":"merkle trees","content":""},{"uri":"/zh/scalingbitcoin/","title":"Scaling Bitcoin Conference","content":" Tokyo (2018) "}] \ No newline at end of file diff --git a/zh/sitemap.xml b/zh/sitemap.xml index a48338e7be..03c4a63222 100644 --- a/zh/sitemap.xml +++ b/zh/sitemap.xml @@ -1 +1 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml"><url><loc>https://btctranscripts.com/zh/scalingbitcoin/tokyo-2018/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/scalingbitcoin/tokyo-2018/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/scalingbitcoin/tokyo-2018/"/></url><url><loc>https://btctranscripts.com/zh/speakers/bob-mcelrath/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/bob-mcelrath/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/bob-mcelrath/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/2022/2022-10-15-braidpool/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/2022-10-15-braidpool/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/2022-10-15-braidpool/"/></url><url><loc>https://btctranscripts.com/zh/categories/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/categories/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/"/></url><url><loc>https://btctranscripts.com/zh/categories/core-dev-tech/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/core-dev-tech/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/core-dev-tech/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/core-dev-tech/"/></url><url><loc>https://btctranscripts.com/zh/tags/fees/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/fees/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/fees/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/fees/"/></url><url><loc>https://btctranscripts.com/zh/speakers/mark-erhardt/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/mark-erhardt/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/mark-erhardt/"/></url><url><loc>https://btctranscripts.com/zh/tags/mining/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/mining/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/mining/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/"/></url><url><loc>https://btctranscripts.com/zh/tags/p2pool/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/p2pool/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/p2pool/"/></url><url><loc>https://btctranscripts.com/zh/tags/pools/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/pools/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/pools/"/></url><url><loc>https://btctranscripts.com/zh/tags/privacy/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/privacy/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/privacy/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/privacy/"/></url><url><loc>https://btctranscripts.com/zh/speakers/ruben-somsen/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/ruben-somsen/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/ruben-somsen/"/></url><url><loc>https://btctranscripts.com/zh/tags/segwit/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/segwit/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/segwit/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/2022/2022-10-15-silent-payments/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/2022-10-15-silent-payments/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/2022-10-15-silent-payments/"/></url><url><loc>https://btctranscripts.com/zh/speakers/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/speakers/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/2022/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/"/></url><url><loc>https://btctranscripts.com/zh/tags/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/"/></url><url><loc>https://btctranscripts.com/zh/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/"/></url><url><loc>https://btctranscripts.com/zh/tags/frost/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/frost/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/frost/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/2022/2022-10-14-roast/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/2022-10-14-roast/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/2022-10-14-roast/"/></url><url><loc>https://btctranscripts.com/zh/tags/schnorr/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/schnorr/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/schnorr/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/schnorr/"/></url><url><loc>https://btctranscripts.com/zh/speakers/tim-ruffing/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/tim-ruffing/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/tim-ruffing/"/></url><url><loc>https://btctranscripts.com/zh/advancing-bitcoin/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/advancing-bitcoin/"/></url><url><loc>https://btctranscripts.com/zh/advancing-bitcoin/2022/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2022/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/advancing-bitcoin/2022/"/></url><url><loc>https://btctranscripts.com/zh/categories/conference/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/conference/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/conference/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/conference/"/></url><url><loc>https://btctranscripts.com/zh/tags/miniscript/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/miniscript/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/miniscript/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/miniscript/"/></url><url><loc>https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/"/></url><url><loc>https://btctranscripts.com/zh/speakers/sanket-kanjalkar/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sanket-kanjalkar/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/sanket-kanjalkar/"/></url><url><loc>https://btctranscripts.com/zh/tags/script/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/script/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/script/"/></url><url><loc>https://btctranscripts.com/zh/speakers/andrew-poelstra/</loc><lastmod>2021-11-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/andrew-poelstra/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/andrew-poelstra/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/andrew-poelstra/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/</loc><lastmod>2021-11-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/2021/</loc><lastmod>2021-11-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2021/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2021/"/></url><url><loc>https://btctranscripts.com/zh/tags/wallet/</loc><lastmod>2021-11-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/wallet/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/wallet/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/wallet/"/></url><url><loc>https://btctranscripts.com/zh/tags/covenants/</loc><lastmod>2021-11-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/covenants/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/covenants/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/</loc><lastmod>2021-11-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/"/></url><url><loc>https://btctranscripts.com/zh/speakers/jeremy-rubin/</loc><lastmod>2021-11-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/jeremy-rubin/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/jeremy-rubin/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/jeremy-rubin/"/></url><url><loc>https://btctranscripts.com/zh/tags/c-lightning/</loc><lastmod>2020-05-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/c-lightning/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/c-lightning/"/></url><url><loc>https://btctranscripts.com/zh/categories/hackathon/</loc><lastmod>2020-05-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/hackathon/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/categories/hackathon/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/hackathon/"/></url><url><loc>https://btctranscripts.com/zh/tags/lightning/</loc><lastmod>2020-05-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/lightning/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/lightning/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/lightning/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/lightning/"/></url><url><loc>https://btctranscripts.com/zh/lightning-hack-day/</loc><lastmod>2020-05-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lightning-hack-day/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/lightning-hack-day/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/lightning-hack-day/"/></url><url><loc>https://btctranscripts.com/zh/speakers/sergi-delgado-segura/</loc><lastmod>2020-05-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sergi-delgado-segura/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/sergi-delgado-segura/"/></url><url><loc>https://btctranscripts.com/zh/lightning-hack-day/2020-05-24-sergi-delgado-watchtowers/</loc><lastmod>2020-05-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lightning-hack-day/2020-05-24-sergi-delgado-watchtowers/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/lightning-hack-day/2020-05-24-sergi-delgado-watchtowers/"/></url><url><loc>https://btctranscripts.com/zh/tags/accumulators/</loc><lastmod>2018-10-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/accumulators/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/accumulators/"/></url><url><loc>https://btctranscripts.com/zh/bitcoin-core-dev-tech/</loc><lastmod>2018-10-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/bitcoin-core-dev-tech/"/></url><url><loc>https://btctranscripts.com/zh/speakers/tadge-dryja/</loc><lastmod>2018-10-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/tadge-dryja/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/tadge-dryja/"/></url><url><loc>https://btctranscripts.com/zh/bitcoin-core-dev-tech/2018-10-08-utxo-accumulators-and-utreexo/</loc><lastmod>2018-10-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/zh/scalingbitcoin/tokyo-2018/accumulators/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/scalingbitcoin/tokyo-2018/accumulators/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/scalingbitcoin/tokyo-2018/accumulators/"/></url><url><loc>https://btctranscripts.com/zh/speakers/benedikt-b%C3%BCnz/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/benedikt-b%C3%BCnz/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/benedikt-b%C3%BCnz/"/></url><url><loc>https://btctranscripts.com/zh/speakers/benjamin-fisch/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/benjamin-fisch/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/benjamin-fisch/"/></url><url><loc>https://btctranscripts.com/zh/speakers/dan-boneh/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/dan-boneh/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/dan-boneh/"/></url><url><loc>https://btctranscripts.com/zh/tags/merkle-trees/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/merkle-trees/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/merkle-trees/"/></url><url><loc>https://btctranscripts.com/zh/scalingbitcoin/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/scalingbitcoin/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/scalingbitcoin/"/></url></urlset> \ No newline at end of file +<?xml version="1.0" encoding="utf-8" standalone="yes"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml"><url><loc>https://btctranscripts.com/zh/scalingbitcoin/tokyo-2018/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/scalingbitcoin/tokyo-2018/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/scalingbitcoin/tokyo-2018/"/></url><url><loc>https://btctranscripts.com/zh/speakers/bob-mcelrath/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/bob-mcelrath/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/bob-mcelrath/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/2022/2022-10-15-braidpool/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/2022-10-15-braidpool/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/2022-10-15-braidpool/"/></url><url><loc>https://btctranscripts.com/zh/categories/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/categories/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/"/></url><url><loc>https://btctranscripts.com/zh/categories/core-dev-tech/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/core-dev-tech/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/core-dev-tech/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/core-dev-tech/"/></url><url><loc>https://btctranscripts.com/zh/tags/fees/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/fees/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/fees/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/fees/"/></url><url><loc>https://btctranscripts.com/zh/speakers/mark-erhardt/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/mark-erhardt/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/mark-erhardt/"/></url><url><loc>https://btctranscripts.com/zh/tags/mining/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/mining/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/mining/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/"/></url><url><loc>https://btctranscripts.com/zh/tags/p2pool/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/p2pool/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/p2pool/"/></url><url><loc>https://btctranscripts.com/zh/tags/pools/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/pools/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/pools/"/></url><url><loc>https://btctranscripts.com/zh/tags/privacy/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/privacy/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/privacy/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/privacy/"/></url><url><loc>https://btctranscripts.com/zh/speakers/ruben-somsen/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/ruben-somsen/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/ruben-somsen/"/></url><url><loc>https://btctranscripts.com/zh/tags/segwit/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/segwit/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/segwit/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/2022/2022-10-15-silent-payments/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/2022-10-15-silent-payments/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/2022-10-15-silent-payments/"/></url><url><loc>https://btctranscripts.com/zh/speakers/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/speakers/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/2022/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/"/></url><url><loc>https://btctranscripts.com/zh/tags/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/"/></url><url><loc>https://btctranscripts.com/zh/</loc><lastmod>2022-10-15T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/"/></url><url><loc>https://btctranscripts.com/zh/tags/frost/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/frost/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/frost/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/2022/2022-10-14-roast/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2022/2022-10-14-roast/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2022/2022-10-14-roast/"/></url><url><loc>https://btctranscripts.com/zh/tags/schnorr/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/schnorr/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/schnorr/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/schnorr/"/></url><url><loc>https://btctranscripts.com/zh/speakers/tim-ruffing/</loc><lastmod>2022-10-14T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/tim-ruffing/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/tim-ruffing/"/></url><url><loc>https://btctranscripts.com/zh/advancing-bitcoin/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/advancing-bitcoin/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/advancing-bitcoin/"/></url><url><loc>https://btctranscripts.com/zh/advancing-bitcoin/2022/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2022/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/advancing-bitcoin/2022/"/></url><url><loc>https://btctranscripts.com/zh/categories/conference/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/conference/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/categories/conference/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/conference/"/></url><url><loc>https://btctranscripts.com/zh/tags/hardware-wallet/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/hardware-wallet/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/hardware-wallet/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/hardware-wallet/"/></url><url><loc>https://btctranscripts.com/zh/tags/miniscript/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/miniscript/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/miniscript/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/miniscript/"/></url><url><loc>https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/"/></url><url><loc>https://btctranscripts.com/zh/speakers/sanket-kanjalkar/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sanket-kanjalkar/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/sanket-kanjalkar/"/></url><url><loc>https://btctranscripts.com/zh/tags/script/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/script/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/script/"/></url><url><loc>https://btctranscripts.com/zh/speakers/stepan-snigirev/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/stepan-snigirev/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/stepan-snigirev/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/stepan-snigirev/"/></url><url><loc>https://btctranscripts.com/zh/tags/taproot/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/taproot/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/taproot/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/taproot/"/></url><url><loc>https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/</loc><lastmod>2022-03-03T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/"/></url><url><loc>https://btctranscripts.com/zh/speakers/andrew-poelstra/</loc><lastmod>2021-11-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/andrew-poelstra/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/andrew-poelstra/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/andrew-poelstra/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/</loc><lastmod>2021-11-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/2021/</loc><lastmod>2021-11-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2021/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2021/"/></url><url><loc>https://btctranscripts.com/zh/tags/wallet/</loc><lastmod>2021-11-06T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/wallet/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/wallet/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/wallet/"/></url><url><loc>https://btctranscripts.com/zh/tags/covenants/</loc><lastmod>2021-11-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/covenants/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/covenants/"/></url><url><loc>https://btctranscripts.com/zh/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/</loc><lastmod>2021-11-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/"/></url><url><loc>https://btctranscripts.com/zh/speakers/jeremy-rubin/</loc><lastmod>2021-11-05T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/jeremy-rubin/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/speakers/jeremy-rubin/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/jeremy-rubin/"/></url><url><loc>https://btctranscripts.com/zh/tags/c-lightning/</loc><lastmod>2020-05-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/c-lightning/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/c-lightning/"/></url><url><loc>https://btctranscripts.com/zh/categories/hackathon/</loc><lastmod>2020-05-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/categories/hackathon/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/categories/hackathon/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/categories/hackathon/"/></url><url><loc>https://btctranscripts.com/zh/tags/lightning/</loc><lastmod>2020-05-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/lightning/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/tags/lightning/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/tags/lightning/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/lightning/"/></url><url><loc>https://btctranscripts.com/zh/lightning-hack-day/</loc><lastmod>2020-05-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lightning-hack-day/"/><xhtml:link rel="alternate" hreflang="pt" href="https://btctranscripts.com/pt/lightning-hack-day/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/lightning-hack-day/"/></url><url><loc>https://btctranscripts.com/zh/speakers/sergi-delgado-segura/</loc><lastmod>2020-05-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/sergi-delgado-segura/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/sergi-delgado-segura/"/></url><url><loc>https://btctranscripts.com/zh/lightning-hack-day/2020-05-24-sergi-delgado-watchtowers/</loc><lastmod>2020-05-24T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/lightning-hack-day/2020-05-24-sergi-delgado-watchtowers/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/lightning-hack-day/2020-05-24-sergi-delgado-watchtowers/"/></url><url><loc>https://btctranscripts.com/zh/tags/accumulators/</loc><lastmod>2018-10-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/accumulators/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/accumulators/"/></url><url><loc>https://btctranscripts.com/zh/bitcoin-core-dev-tech/</loc><lastmod>2018-10-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/bitcoin-core-dev-tech/"/><xhtml:link rel="alternate" hreflang="es" href="https://btctranscripts.com/es/bitcoin-core-dev-tech/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/bitcoin-core-dev-tech/"/></url><url><loc>https://btctranscripts.com/zh/speakers/tadge-dryja/</loc><lastmod>2018-10-08T00:00:00+00:00</lastmod><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/tadge-dryja/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/tadge-dryja/"/></url><url><loc>https://btctranscripts.com/zh/bitcoin-core-dev-tech/2018-10-08-utxo-accumulators-and-utreexo/</loc><lastmod>2018-10-08T00:00:00+00:00</lastmod></url><url><loc>https://btctranscripts.com/zh/scalingbitcoin/tokyo-2018/accumulators/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/scalingbitcoin/tokyo-2018/accumulators/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/scalingbitcoin/tokyo-2018/accumulators/"/></url><url><loc>https://btctranscripts.com/zh/speakers/benedikt-b%C3%BCnz/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/benedikt-b%C3%BCnz/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/benedikt-b%C3%BCnz/"/></url><url><loc>https://btctranscripts.com/zh/speakers/benjamin-fisch/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/benjamin-fisch/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/benjamin-fisch/"/></url><url><loc>https://btctranscripts.com/zh/speakers/dan-boneh/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/speakers/dan-boneh/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/speakers/dan-boneh/"/></url><url><loc>https://btctranscripts.com/zh/tags/merkle-trees/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/tags/merkle-trees/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/tags/merkle-trees/"/></url><url><loc>https://btctranscripts.com/zh/scalingbitcoin/</loc><xhtml:link rel="alternate" hreflang="en" href="https://btctranscripts.com/scalingbitcoin/"/><xhtml:link rel="alternate" hreflang="zh" href="https://btctranscripts.com/zh/scalingbitcoin/"/></url></urlset> \ No newline at end of file diff --git a/zh/speakers/index.html b/zh/speakers/index.html index 581b83eee3..c532b1a6e5 100644 --- a/zh/speakers/index.html +++ b/zh/speakers/index.html @@ -1,5 +1,5 @@ <!doctype html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><link rel=alternate type=application/rss+xml href=https://btctranscripts.com/zh/speakers/index.xml title="₿itcoin 记录稿"><link rel=canonical href=https://btctranscripts.com/zh/speakers/><title>Speakers | ₿itcoin 记录稿</title><link href=https://btctranscripts.com/css/fontawesome.min.css rel=stylesheet><link rel=stylesheet href=https://btctranscripts.com/css/ace.min.css><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://btctranscripts.com/images/btctranscripts.png"><meta name=twitter:title content="Speakers"><meta name=twitter:description content="A treasure trove of ₿itcoin transcripts (mostly recorded by @kanzure)"></head><body><nav class="navbar navbar-expand-lg navbar-dark bg-primary shadow sticky-top" id=navbarMain><div class=container><div><a class=navbar-brand href=/zh>₿itcoin 记录稿</a></div><div class="collapse navbar-collapse" id=navbarMainCollapse><ul class="navbar-nav ml-auto"><li class=nav-item><a class=nav-link href=/en>en</a></li><li class=nav-item><a class=nav-link href=/es>es</a></li><li class=nav-item><a class=nav-link href=/pt>pt</a></li><li class=nav-item><a class=nav-link href=https://github.com/bitcointranscripts/bitcointranscripts target=_blank><i class='fab fa-github'></i></a></li></ul></div></div></nav><div class=container-fluid><div class=row><div class="docs-sidenav order-0 col-12 col-md-3 col-lg-2 col-xl-2 position-sticky border-right"><nav class="navbar navbar-expand-md navbar-light pl-0"><button class="navbar-toggler navbar-toggler-right collapsed" type=button data-toggle=collapse data-target=#sidenav-left-collapse aria-controls=sidenav-left-collapse aria-expanded=false aria-label="Toggle navigation"> -<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/zh/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/advancing-bitcoin/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>演讲者</h1><ul><li><a href=/zh/speakers/bob-mcelrath/>Bob McElrath</a></li><li><a href=/zh/speakers/mark-erhardt/>Mark Erhardt</a></li><li><a href=/zh/speakers/ruben-somsen/>Ruben Somsen</a></li><li><a href=/zh/speakers/tim-ruffing/>Tim Ruffing</a></li><li><a href=/zh/speakers/sanket-kanjalkar/>Sanket Kanjalkar</a></li><li><a href=/zh/speakers/andrew-poelstra/>Andrew Poelstra</a></li><li><a href=/zh/speakers/jeremy-rubin/>Jeremy Rubin</a></li><li><a href=/zh/speakers/sergi-delgado-segura/>Sergi Delgado Segura</a></li><li><a href=/zh/speakers/tadge-dryja/>Tadge Dryja</a></li><li><a href=/zh/speakers/benedikt-b%C3%BCnz/>Benedikt Bünz</a></li><li><a href=/zh/speakers/benjamin-fisch/>Benjamin Fisch</a></li><li><a href=/zh/speakers/dan-boneh/>Dan Boneh</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> +<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/zh/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/advancing-bitcoin/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>演讲者</h1><ul><li><a href=/zh/speakers/bob-mcelrath/>Bob McElrath</a></li><li><a href=/zh/speakers/mark-erhardt/>Mark Erhardt</a></li><li><a href=/zh/speakers/ruben-somsen/>Ruben Somsen</a></li><li><a href=/zh/speakers/tim-ruffing/>Tim Ruffing</a></li><li><a href=/zh/speakers/sanket-kanjalkar/>Sanket Kanjalkar</a></li><li><a href=/zh/speakers/stepan-snigirev/>Stepan Snigirev</a></li><li><a href=/zh/speakers/andrew-poelstra/>Andrew Poelstra</a></li><li><a href=/zh/speakers/jeremy-rubin/>Jeremy Rubin</a></li><li><a href=/zh/speakers/sergi-delgado-segura/>Sergi Delgado Segura</a></li><li><a href=/zh/speakers/tadge-dryja/>Tadge Dryja</a></li><li><a href=/zh/speakers/benedikt-b%C3%BCnz/>Benedikt Bünz</a></li><li><a href=/zh/speakers/benjamin-fisch/>Benjamin Fisch</a></li><li><a href=/zh/speakers/dan-boneh/>Dan Boneh</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> <script src=https://btctranscripts.com/lib/popper.min.js></script> <script src=https://btctranscripts.com/js/bootstrap.min.js></script> <script type=text/javascript src=/plugins/lunr.min.js></script> diff --git a/zh/speakers/index.xml b/zh/speakers/index.xml index 0cb63b51e6..d3cd058fe5 100644 --- a/zh/speakers/index.xml +++ b/zh/speakers/index.xml @@ -1 +1 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Speakers on ₿itcoin 记录稿</title><link>https://btctranscripts.com/zh/speakers/</link><description>Recent content in Speakers on ₿itcoin 记录稿</description><generator>Hugo -- gohugo.io</generator><language>zh</language><lastBuildDate>Sat, 15 Oct 2022 00:00:00 +0000</lastBuildDate><atom:link href="https://btctranscripts.com/zh/speakers/index.xml" rel="self" type="application/rss+xml"/><item><title>Bob McElrath</title><link>https://btctranscripts.com/zh/speakers/bob-mcelrath/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/bob-mcelrath/</guid><description/></item><item><title>Mark Erhardt</title><link>https://btctranscripts.com/zh/speakers/mark-erhardt/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/mark-erhardt/</guid><description/></item><item><title>Ruben Somsen</title><link>https://btctranscripts.com/zh/speakers/ruben-somsen/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/ruben-somsen/</guid><description/></item><item><title>Tim Ruffing</title><link>https://btctranscripts.com/zh/speakers/tim-ruffing/</link><pubDate>Fri, 14 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/tim-ruffing/</guid><description/></item><item><title>Sanket Kanjalkar</title><link>https://btctranscripts.com/zh/speakers/sanket-kanjalkar/</link><pubDate>Thu, 03 Mar 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/sanket-kanjalkar/</guid><description/></item><item><title>Andrew Poelstra</title><link>https://btctranscripts.com/zh/speakers/andrew-poelstra/</link><pubDate>Sat, 06 Nov 2021 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/andrew-poelstra/</guid><description/></item><item><title>Jeremy Rubin</title><link>https://btctranscripts.com/zh/speakers/jeremy-rubin/</link><pubDate>Fri, 05 Nov 2021 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/jeremy-rubin/</guid><description/></item><item><title>Sergi Delgado Segura</title><link>https://btctranscripts.com/zh/speakers/sergi-delgado-segura/</link><pubDate>Sun, 24 May 2020 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/sergi-delgado-segura/</guid><description/></item><item><title>Tadge Dryja</title><link>https://btctranscripts.com/zh/speakers/tadge-dryja/</link><pubDate>Mon, 08 Oct 2018 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/tadge-dryja/</guid><description/></item><item><title>Benedikt Bünz</title><link>https://btctranscripts.com/zh/speakers/benedikt-b%C3%BCnz/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/benedikt-b%C3%BCnz/</guid><description/></item><item><title>Benjamin Fisch</title><link>https://btctranscripts.com/zh/speakers/benjamin-fisch/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/benjamin-fisch/</guid><description/></item><item><title>Dan Boneh</title><link>https://btctranscripts.com/zh/speakers/dan-boneh/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/dan-boneh/</guid><description/></item></channel></rss> \ No newline at end of file +<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Speakers on ₿itcoin 记录稿</title><link>https://btctranscripts.com/zh/speakers/</link><description>Recent content in Speakers on ₿itcoin 记录稿</description><generator>Hugo -- gohugo.io</generator><language>zh</language><lastBuildDate>Sat, 15 Oct 2022 00:00:00 +0000</lastBuildDate><atom:link href="https://btctranscripts.com/zh/speakers/index.xml" rel="self" type="application/rss+xml"/><item><title>Bob McElrath</title><link>https://btctranscripts.com/zh/speakers/bob-mcelrath/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/bob-mcelrath/</guid><description/></item><item><title>Mark Erhardt</title><link>https://btctranscripts.com/zh/speakers/mark-erhardt/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/mark-erhardt/</guid><description/></item><item><title>Ruben Somsen</title><link>https://btctranscripts.com/zh/speakers/ruben-somsen/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/ruben-somsen/</guid><description/></item><item><title>Tim Ruffing</title><link>https://btctranscripts.com/zh/speakers/tim-ruffing/</link><pubDate>Fri, 14 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/tim-ruffing/</guid><description/></item><item><title>Sanket Kanjalkar</title><link>https://btctranscripts.com/zh/speakers/sanket-kanjalkar/</link><pubDate>Thu, 03 Mar 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/sanket-kanjalkar/</guid><description/></item><item><title>Stepan Snigirev</title><link>https://btctranscripts.com/zh/speakers/stepan-snigirev/</link><pubDate>Thu, 03 Mar 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/stepan-snigirev/</guid><description/></item><item><title>Andrew Poelstra</title><link>https://btctranscripts.com/zh/speakers/andrew-poelstra/</link><pubDate>Sat, 06 Nov 2021 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/andrew-poelstra/</guid><description/></item><item><title>Jeremy Rubin</title><link>https://btctranscripts.com/zh/speakers/jeremy-rubin/</link><pubDate>Fri, 05 Nov 2021 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/jeremy-rubin/</guid><description/></item><item><title>Sergi Delgado Segura</title><link>https://btctranscripts.com/zh/speakers/sergi-delgado-segura/</link><pubDate>Sun, 24 May 2020 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/sergi-delgado-segura/</guid><description/></item><item><title>Tadge Dryja</title><link>https://btctranscripts.com/zh/speakers/tadge-dryja/</link><pubDate>Mon, 08 Oct 2018 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/tadge-dryja/</guid><description/></item><item><title>Benedikt Bünz</title><link>https://btctranscripts.com/zh/speakers/benedikt-b%C3%BCnz/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/benedikt-b%C3%BCnz/</guid><description/></item><item><title>Benjamin Fisch</title><link>https://btctranscripts.com/zh/speakers/benjamin-fisch/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/benjamin-fisch/</guid><description/></item><item><title>Dan Boneh</title><link>https://btctranscripts.com/zh/speakers/dan-boneh/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/speakers/dan-boneh/</guid><description/></item></channel></rss> \ No newline at end of file diff --git a/zh/speakers/stepan-snigirev/index.html b/zh/speakers/stepan-snigirev/index.html new file mode 100644 index 0000000000..440daaaf01 --- /dev/null +++ b/zh/speakers/stepan-snigirev/index.html @@ -0,0 +1,10 @@ +<!doctype html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><link rel=alternate type=application/rss+xml href=https://btctranscripts.com/zh/speakers/stepan-snigirev/index.xml title="₿itcoin 记录稿"><link rel=canonical href=https://btctranscripts.com/zh/speakers/stepan-snigirev/><title>Stepan Snigirev | ₿itcoin 记录稿</title><link href=https://btctranscripts.com/css/fontawesome.min.css rel=stylesheet><link rel=stylesheet href=https://btctranscripts.com/css/ace.min.css><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://btctranscripts.com/images/btctranscripts.png"><meta name=twitter:title content="Stepan Snigirev"><meta name=twitter:description content="A treasure trove of ₿itcoin transcripts (mostly recorded by @kanzure)"></head><body><nav class="navbar navbar-expand-lg navbar-dark bg-primary shadow sticky-top" id=navbarMain><div class=container><div><a class=navbar-brand href=/zh>₿itcoin 记录稿</a></div><div class="collapse navbar-collapse" id=navbarMainCollapse><ul class="navbar-nav ml-auto"><li class=nav-item><a class=nav-link href=/en>en</a></li><li class=nav-item><a class=nav-link href=/es>es</a></li><li class=nav-item><a class=nav-link href=/pt>pt</a></li><li class=nav-item><a class=nav-link href=https://github.com/bitcointranscripts/bitcointranscripts target=_blank><i class='fab fa-github'></i></a></li></ul></div></div></nav><div class=container-fluid><div class=row><div class="docs-sidenav order-0 col-12 col-md-3 col-lg-2 col-xl-2 position-sticky border-right"><nav class="navbar navbar-expand-md navbar-light pl-0"><button class="navbar-toggler navbar-toggler-right collapsed" type=button data-toggle=collapse data-target=#sidenav-left-collapse aria-controls=sidenav-left-collapse aria-expanded=false aria-label="Toggle navigation"> +<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/zh/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/advancing-bitcoin/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Stepan Snigirev</h1><ul><li><a href=/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/>Taproot on hardware wallets</a></li></ul><h4></h4><ul><li><a href=/speakers/stepan-snigirev/>en: Stepan Snigirev</a></li><li><a href=/es/speakers/stepan-snigirev/>es: Stepan Snigirev</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> +<script src=https://btctranscripts.com/lib/popper.min.js></script> +<script src=https://btctranscripts.com/js/bootstrap.min.js></script> +<script type=text/javascript src=/plugins/lunr.min.js></script> +<script type=text/javascript src=/plugins/auto-complete.js></script> +<link href=/plugins/auto-complete.css rel=stylesheet><script type=text/javascript>var baseurl="https://btctranscripts.com//zh"</script><script type=text/javascript src=/plugins/search.js></script> +<script type=text/javascript src=https://btctranscripts.com/js/custom.js></script> +<script type=text/javascript src=/plugins/clipboard.js></script> +<script>new ClipboardJS(".btn")</script></body></html> \ No newline at end of file diff --git a/zh/speakers/stepan-snigirev/index.xml b/zh/speakers/stepan-snigirev/index.xml new file mode 100644 index 0000000000..44aa3d9808 --- /dev/null +++ b/zh/speakers/stepan-snigirev/index.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Stepan Snigirev on ₿itcoin 记录稿</title><link>https://btctranscripts.com/zh/speakers/stepan-snigirev/</link><description>Recent content in Stepan Snigirev on ₿itcoin 记录稿</description><generator>Hugo -- gohugo.io</generator><language>zh</language><lastBuildDate>Thu, 03 Mar 2022 00:00:00 +0000</lastBuildDate><atom:link href="https://btctranscripts.com/zh/speakers/stepan-snigirev/index.xml" rel="self" type="application/rss+xml"/><item><title>Taproot on hardware wallets</title><link>https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/</link><pubDate>Thu, 03 Mar 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/</guid><description>开场(Jeff Gallas) 我非常高兴地宣布我们今天的第一位演讲者,来自 Specter 的 Stepan Snigirev,他是 Specter Solutions 的 CTO,有 3 年的开发比特币软件钱包(soft wallets)和硬件签名器(hard wallets)的经历。欢迎 Stepan。 +概述(Stepan Snigirev) 我今天的演讲主题是 “在硬件签名器上支持 Taproot”。我们刚刚激活了 Taproot,非常棒,是在去年 11 月激活的。一些软件钱包已经开始集成了,而且甚至一些硬件签名器也开始集成了。现在大部分人用的都是单调的 “单密钥、单签名” 方案。我想讲讲我们可以用 Taproot 做什么。我觉得应该大家都知道了,所以我会讲快一点,然后我会讨论为什么在硬件签名器中集成 Taproot 是非常困难的、难点在哪里。如果我们无法在硬件钱包中集成,我们还有什么办法? +通过隐藏实现隐私 Taproot 非常出色。首先是它给了用户隐私性。在你观察区块链的时候,如果你看到一个单签名和单公钥的 taproot 地址,它里面可能实际上是一个公钥和一个脚本树。然后,这个公钥自身也可能凝结了一组公钥,而这棵脚本树可能非常高,是许许多多脚本的复杂集合。在里面你可以放置任意类型的时间锁,然后备份平时不会用到的私钥、仅在紧急情况下才启用它们。这意味着,所有复杂的花费条件,在链上看起来都是一样的。这是非常棒的事。甚至放在脚本中的公钥也可以代表着一组公钥,这就像是无限阶的密钥聚合。非常酷。 +Miniscript(更安全的明文备份) 我个人会使用它的第一个理由是,它支持更好的明文备份。为什么现在没有人使用 Miniscript 或者复杂的比特币脚本?首先是因为比特币脚本复杂而不容易编写(在 Miniscript 出现之前)。其次是所有人都不使用它。这是一个鸡生蛋还是蛋生鸡的问题:每个人(90%)都使用单签名脚本,10% 的人使用多签名脚本,只有 0.3% 的人使用定制化的脚本。如果你使用一些定制化的脚本,你就暴露在了这 0.3% 里面。所有的链分析公司都知道,要是使用这样的脚本,那很有可能是同一个人。这样的隐私性非常糟,这就是障碍之一。 +花费条件:or(HW, and(backup, timelock)) +描述符:tr(HW, {and_v(v:pk(backup), older(timelock))}) +Tapscript:&lt;backup&gt; OP_CHECKSIGVERIFY &lt;timelock&gt; OP_CHECKSEQUENCEVERIFY +(译者注:这段花费条件的意思是:一个硬件签名器随时可以花费这笔钱;同时,时间锁过期后,后备私钥也可以花费这笔钱。) +我个人会使用,我非常害怕把明文的钱包复原词(recovery phrases,应指种子词)放在我家里。如果有人得到了它,那我的钱就全部丢了。我个人的做法是使用一个不备份的硬件钱包,然后设置一个备用脚本,这个备用脚本带有时间锁,加上复原词就可以花费我的钱。然后,如果我遇到了什么意外,或者我的硬件钱包坏了,那么等待一段时间(也许半年)我就能拿回我的钱。但是,如果我的复原词被盗了,他们是没法立即偷走我的钱的(只要硬件钱包还在我手上的话)。我有足够多的时间,将资金迁移到一个新的装置上。但是,想想硬件签名器和 Miniscript 实现,现在还没有一个东西真正支持这个功能。太糟糕了。但实际上这并不是很难。在我给我们的硬件签名器集成 Miniscript 的时候,基本上我只花了一周的时间。我只要坐下来就可以开始开发了,因为它的说明真的写得非常好。Miniscript 有两个元素,其中一个你可以忽略,另一个是,如果你有一段可读的 policy 表达式,你就可以把它转成钱包的描述符。这有点复杂,但你不需要在硬件签名器里完成操作。第二部分是将钱包的描述符编译成实际的比特币脚本。这基本上只是把这些记号替换成比特币脚本的操作码,然后把派生出来的密钥放在正确的位置上。非常简单。然后硬件签名器就可以确定哪个输出是找零,并验证找零输出是从相同的描述符中派生出来的。这就行了。我想提一句,Ledger 团体最近做了很多工作来升级他们的比特币应用。他们在设计的时候就采用了 Miniscript 方法。虽然现在仅支持多签名功能,但很容易就能升级到支持定制化的 Miniscript,所以我很期待。至于硬件签名器,我不知道他们的计划。但至少会有两种硬件签名器将支持 Miniscript。</description></item></channel></rss> \ No newline at end of file diff --git a/zh/tags/hardware-wallet/index.html b/zh/tags/hardware-wallet/index.html new file mode 100644 index 0000000000..aaecb50c32 --- /dev/null +++ b/zh/tags/hardware-wallet/index.html @@ -0,0 +1,10 @@ +<!doctype html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><link rel=alternate type=application/rss+xml href=https://btctranscripts.com/zh/tags/hardware-wallet/index.xml title="₿itcoin 记录稿"><link rel=canonical href=https://btctranscripts.com/zh/tags/hardware-wallet/><title>hardware wallet | ₿itcoin 记录稿</title><link href=https://btctranscripts.com/css/fontawesome.min.css rel=stylesheet><link rel=stylesheet href=https://btctranscripts.com/css/ace.min.css><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://btctranscripts.com/images/btctranscripts.png"><meta name=twitter:title content="hardware wallet"><meta name=twitter:description content="A treasure trove of ₿itcoin transcripts (mostly recorded by @kanzure)"></head><body><nav class="navbar navbar-expand-lg navbar-dark bg-primary shadow sticky-top" id=navbarMain><div class=container><div><a class=navbar-brand href=/zh>₿itcoin 记录稿</a></div><div class="collapse navbar-collapse" id=navbarMainCollapse><ul class="navbar-nav ml-auto"><li class=nav-item><a class=nav-link href=/en>en</a></li><li class=nav-item><a class=nav-link href=/es>es</a></li><li class=nav-item><a class=nav-link href=/pt>pt</a></li><li class=nav-item><a class=nav-link href=https://github.com/bitcointranscripts/bitcointranscripts target=_blank><i class='fab fa-github'></i></a></li></ul></div></div></nav><div class=container-fluid><div class=row><div class="docs-sidenav order-0 col-12 col-md-3 col-lg-2 col-xl-2 position-sticky border-right"><nav class="navbar navbar-expand-md navbar-light pl-0"><button class="navbar-toggler navbar-toggler-right collapsed" type=button data-toggle=collapse data-target=#sidenav-left-collapse aria-controls=sidenav-left-collapse aria-expanded=false aria-label="Toggle navigation"> +<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/zh/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/advancing-bitcoin/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Hardware Wallet</h1><ul><li><a href=/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/>Taproot on hardware wallets</a></li></ul><h4></h4><ul><li><a href=/tags/hardware-wallet/>en: hardware wallet</a></li><li><a href=/es/tags/hardware-wallet/>es: hardware wallet</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> +<script src=https://btctranscripts.com/lib/popper.min.js></script> +<script src=https://btctranscripts.com/js/bootstrap.min.js></script> +<script type=text/javascript src=/plugins/lunr.min.js></script> +<script type=text/javascript src=/plugins/auto-complete.js></script> +<link href=/plugins/auto-complete.css rel=stylesheet><script type=text/javascript>var baseurl="https://btctranscripts.com//zh"</script><script type=text/javascript src=/plugins/search.js></script> +<script type=text/javascript src=https://btctranscripts.com/js/custom.js></script> +<script type=text/javascript src=/plugins/clipboard.js></script> +<script>new ClipboardJS(".btn")</script></body></html> \ No newline at end of file diff --git a/zh/tags/hardware-wallet/index.xml b/zh/tags/hardware-wallet/index.xml new file mode 100644 index 0000000000..b280a2afb6 --- /dev/null +++ b/zh/tags/hardware-wallet/index.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>hardware wallet on ₿itcoin 记录稿</title><link>https://btctranscripts.com/zh/tags/hardware-wallet/</link><description>Recent content in hardware wallet on ₿itcoin 记录稿</description><generator>Hugo -- gohugo.io</generator><language>zh</language><lastBuildDate>Thu, 03 Mar 2022 00:00:00 +0000</lastBuildDate><atom:link href="https://btctranscripts.com/zh/tags/hardware-wallet/index.xml" rel="self" type="application/rss+xml"/><item><title>Taproot on hardware wallets</title><link>https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/</link><pubDate>Thu, 03 Mar 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/</guid><description>开场(Jeff Gallas) 我非常高兴地宣布我们今天的第一位演讲者,来自 Specter 的 Stepan Snigirev,他是 Specter Solutions 的 CTO,有 3 年的开发比特币软件钱包(soft wallets)和硬件签名器(hard wallets)的经历。欢迎 Stepan。 +概述(Stepan Snigirev) 我今天的演讲主题是 “在硬件签名器上支持 Taproot”。我们刚刚激活了 Taproot,非常棒,是在去年 11 月激活的。一些软件钱包已经开始集成了,而且甚至一些硬件签名器也开始集成了。现在大部分人用的都是单调的 “单密钥、单签名” 方案。我想讲讲我们可以用 Taproot 做什么。我觉得应该大家都知道了,所以我会讲快一点,然后我会讨论为什么在硬件签名器中集成 Taproot 是非常困难的、难点在哪里。如果我们无法在硬件钱包中集成,我们还有什么办法? +通过隐藏实现隐私 Taproot 非常出色。首先是它给了用户隐私性。在你观察区块链的时候,如果你看到一个单签名和单公钥的 taproot 地址,它里面可能实际上是一个公钥和一个脚本树。然后,这个公钥自身也可能凝结了一组公钥,而这棵脚本树可能非常高,是许许多多脚本的复杂集合。在里面你可以放置任意类型的时间锁,然后备份平时不会用到的私钥、仅在紧急情况下才启用它们。这意味着,所有复杂的花费条件,在链上看起来都是一样的。这是非常棒的事。甚至放在脚本中的公钥也可以代表着一组公钥,这就像是无限阶的密钥聚合。非常酷。 +Miniscript(更安全的明文备份) 我个人会使用它的第一个理由是,它支持更好的明文备份。为什么现在没有人使用 Miniscript 或者复杂的比特币脚本?首先是因为比特币脚本复杂而不容易编写(在 Miniscript 出现之前)。其次是所有人都不使用它。这是一个鸡生蛋还是蛋生鸡的问题:每个人(90%)都使用单签名脚本,10% 的人使用多签名脚本,只有 0.3% 的人使用定制化的脚本。如果你使用一些定制化的脚本,你就暴露在了这 0.3% 里面。所有的链分析公司都知道,要是使用这样的脚本,那很有可能是同一个人。这样的隐私性非常糟,这就是障碍之一。 +花费条件:or(HW, and(backup, timelock)) +描述符:tr(HW, {and_v(v:pk(backup), older(timelock))}) +Tapscript:&lt;backup&gt; OP_CHECKSIGVERIFY &lt;timelock&gt; OP_CHECKSEQUENCEVERIFY +(译者注:这段花费条件的意思是:一个硬件签名器随时可以花费这笔钱;同时,时间锁过期后,后备私钥也可以花费这笔钱。) +我个人会使用,我非常害怕把明文的钱包复原词(recovery phrases,应指种子词)放在我家里。如果有人得到了它,那我的钱就全部丢了。我个人的做法是使用一个不备份的硬件钱包,然后设置一个备用脚本,这个备用脚本带有时间锁,加上复原词就可以花费我的钱。然后,如果我遇到了什么意外,或者我的硬件钱包坏了,那么等待一段时间(也许半年)我就能拿回我的钱。但是,如果我的复原词被盗了,他们是没法立即偷走我的钱的(只要硬件钱包还在我手上的话)。我有足够多的时间,将资金迁移到一个新的装置上。但是,想想硬件签名器和 Miniscript 实现,现在还没有一个东西真正支持这个功能。太糟糕了。但实际上这并不是很难。在我给我们的硬件签名器集成 Miniscript 的时候,基本上我只花了一周的时间。我只要坐下来就可以开始开发了,因为它的说明真的写得非常好。Miniscript 有两个元素,其中一个你可以忽略,另一个是,如果你有一段可读的 policy 表达式,你就可以把它转成钱包的描述符。这有点复杂,但你不需要在硬件签名器里完成操作。第二部分是将钱包的描述符编译成实际的比特币脚本。这基本上只是把这些记号替换成比特币脚本的操作码,然后把派生出来的密钥放在正确的位置上。非常简单。然后硬件签名器就可以确定哪个输出是找零,并验证找零输出是从相同的描述符中派生出来的。这就行了。我想提一句,Ledger 团体最近做了很多工作来升级他们的比特币应用。他们在设计的时候就采用了 Miniscript 方法。虽然现在仅支持多签名功能,但很容易就能升级到支持定制化的 Miniscript,所以我很期待。至于硬件签名器,我不知道他们的计划。但至少会有两种硬件签名器将支持 Miniscript。</description></item></channel></rss> \ No newline at end of file diff --git a/zh/tags/index.html b/zh/tags/index.html index 6496763fb9..4bff1c2311 100644 --- a/zh/tags/index.html +++ b/zh/tags/index.html @@ -1,5 +1,5 @@ <!doctype html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><link rel=alternate type=application/rss+xml href=https://btctranscripts.com/zh/tags/index.xml title="₿itcoin 记录稿"><link rel=canonical href=https://btctranscripts.com/zh/tags/><title>Tags | ₿itcoin 记录稿</title><link href=https://btctranscripts.com/css/fontawesome.min.css rel=stylesheet><link rel=stylesheet href=https://btctranscripts.com/css/ace.min.css><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://btctranscripts.com/images/btctranscripts.png"><meta name=twitter:title content="Tags"><meta name=twitter:description content="A treasure trove of ₿itcoin transcripts (mostly recorded by @kanzure)"></head><body><nav class="navbar navbar-expand-lg navbar-dark bg-primary shadow sticky-top" id=navbarMain><div class=container><div><a class=navbar-brand href=/zh>₿itcoin 记录稿</a></div><div class="collapse navbar-collapse" id=navbarMainCollapse><ul class="navbar-nav ml-auto"><li class=nav-item><a class=nav-link href=/en>en</a></li><li class=nav-item><a class=nav-link href=/es>es</a></li><li class=nav-item><a class=nav-link href=/pt>pt</a></li><li class=nav-item><a class=nav-link href=https://github.com/bitcointranscripts/bitcointranscripts target=_blank><i class='fab fa-github'></i></a></li></ul></div></div></nav><div class=container-fluid><div class=row><div class="docs-sidenav order-0 col-12 col-md-3 col-lg-2 col-xl-2 position-sticky border-right"><nav class="navbar navbar-expand-md navbar-light pl-0"><button class="navbar-toggler navbar-toggler-right collapsed" type=button data-toggle=collapse data-target=#sidenav-left-collapse aria-controls=sidenav-left-collapse aria-expanded=false aria-label="Toggle navigation"> -<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/zh/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/advancing-bitcoin/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>标签</h1><ul><li><a href=/zh/tags/fees/>Fees</a></li><li><a href=/zh/tags/mining/>Mining</a></li><li><a href=/zh/tags/p2pool/>P2pool</a></li><li><a href=/zh/tags/pools/>Pools</a></li><li><a href=/zh/tags/privacy/>Privacy</a></li><li><a href=/zh/tags/segwit/>Segwit</a></li><li><a href=/zh/tags/frost/>FROST</a></li><li><a href=/zh/tags/schnorr/>Schnorr</a></li><li><a href=/zh/tags/miniscript/>Miniscript</a></li><li><a href=/zh/tags/script/>Script</a></li><li><a href=/zh/tags/wallet/>Wallet</a></li><li><a href=/zh/tags/covenants/>Covenants</a></li><li><a href=/zh/tags/c-lightning/>C-Lightning</a></li><li><a href=/zh/tags/lightning/>Lightning</a></li><li><a href=/zh/tags/accumulators/>Accumulators</a></li><li><a href=/zh/tags/merkle-trees/>Merkle Trees</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> +<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/zh/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/advancing-bitcoin/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>标签</h1><ul><li><a href=/zh/tags/fees/>Fees</a></li><li><a href=/zh/tags/mining/>Mining</a></li><li><a href=/zh/tags/p2pool/>P2pool</a></li><li><a href=/zh/tags/pools/>Pools</a></li><li><a href=/zh/tags/privacy/>Privacy</a></li><li><a href=/zh/tags/segwit/>Segwit</a></li><li><a href=/zh/tags/frost/>FROST</a></li><li><a href=/zh/tags/schnorr/>Schnorr</a></li><li><a href=/zh/tags/hardware-wallet/>Hardware Wallet</a></li><li><a href=/zh/tags/miniscript/>Miniscript</a></li><li><a href=/zh/tags/script/>Script</a></li><li><a href=/zh/tags/taproot/>Taproot</a></li><li><a href=/zh/tags/wallet/>Wallet</a></li><li><a href=/zh/tags/covenants/>Covenants</a></li><li><a href=/zh/tags/c-lightning/>C-Lightning</a></li><li><a href=/zh/tags/lightning/>Lightning</a></li><li><a href=/zh/tags/accumulators/>Accumulators</a></li><li><a href=/zh/tags/merkle-trees/>Merkle Trees</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> <script src=https://btctranscripts.com/lib/popper.min.js></script> <script src=https://btctranscripts.com/js/bootstrap.min.js></script> <script type=text/javascript src=/plugins/lunr.min.js></script> diff --git a/zh/tags/index.xml b/zh/tags/index.xml index 8a9ee4f33f..5ea352eb3f 100644 --- a/zh/tags/index.xml +++ b/zh/tags/index.xml @@ -1 +1 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Tags on ₿itcoin 记录稿</title><link>https://btctranscripts.com/zh/tags/</link><description>Recent content in Tags on ₿itcoin 记录稿</description><generator>Hugo -- gohugo.io</generator><language>zh</language><lastBuildDate>Sat, 15 Oct 2022 00:00:00 +0000</lastBuildDate><atom:link href="https://btctranscripts.com/zh/tags/index.xml" rel="self" type="application/rss+xml"/><item><title>fees</title><link>https://btctranscripts.com/zh/tags/fees/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/fees/</guid><description/></item><item><title>mining</title><link>https://btctranscripts.com/zh/tags/mining/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/mining/</guid><description/></item><item><title>p2pool</title><link>https://btctranscripts.com/zh/tags/p2pool/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/p2pool/</guid><description/></item><item><title>pools</title><link>https://btctranscripts.com/zh/tags/pools/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/pools/</guid><description/></item><item><title>privacy</title><link>https://btctranscripts.com/zh/tags/privacy/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/privacy/</guid><description/></item><item><title>segwit</title><link>https://btctranscripts.com/zh/tags/segwit/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/segwit/</guid><description/></item><item><title>FROST</title><link>https://btctranscripts.com/zh/tags/frost/</link><pubDate>Fri, 14 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/frost/</guid><description/></item><item><title>schnorr</title><link>https://btctranscripts.com/zh/tags/schnorr/</link><pubDate>Fri, 14 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/schnorr/</guid><description/></item><item><title>miniscript</title><link>https://btctranscripts.com/zh/tags/miniscript/</link><pubDate>Thu, 03 Mar 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/miniscript/</guid><description/></item><item><title>script</title><link>https://btctranscripts.com/zh/tags/script/</link><pubDate>Thu, 03 Mar 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/script/</guid><description/></item><item><title>wallet</title><link>https://btctranscripts.com/zh/tags/wallet/</link><pubDate>Sat, 06 Nov 2021 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/wallet/</guid><description/></item><item><title>covenants</title><link>https://btctranscripts.com/zh/tags/covenants/</link><pubDate>Fri, 05 Nov 2021 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/covenants/</guid><description/></item><item><title>c-lightning</title><link>https://btctranscripts.com/zh/tags/c-lightning/</link><pubDate>Sun, 24 May 2020 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/c-lightning/</guid><description/></item><item><title>lightning</title><link>https://btctranscripts.com/zh/tags/lightning/</link><pubDate>Sun, 24 May 2020 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/lightning/</guid><description/></item><item><title>accumulators</title><link>https://btctranscripts.com/zh/tags/accumulators/</link><pubDate>Mon, 08 Oct 2018 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/accumulators/</guid><description/></item><item><title>merkle trees</title><link>https://btctranscripts.com/zh/tags/merkle-trees/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/merkle-trees/</guid><description/></item></channel></rss> \ No newline at end of file +<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Tags on ₿itcoin 记录稿</title><link>https://btctranscripts.com/zh/tags/</link><description>Recent content in Tags on ₿itcoin 记录稿</description><generator>Hugo -- gohugo.io</generator><language>zh</language><lastBuildDate>Sat, 15 Oct 2022 00:00:00 +0000</lastBuildDate><atom:link href="https://btctranscripts.com/zh/tags/index.xml" rel="self" type="application/rss+xml"/><item><title>fees</title><link>https://btctranscripts.com/zh/tags/fees/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/fees/</guid><description/></item><item><title>mining</title><link>https://btctranscripts.com/zh/tags/mining/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/mining/</guid><description/></item><item><title>p2pool</title><link>https://btctranscripts.com/zh/tags/p2pool/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/p2pool/</guid><description/></item><item><title>pools</title><link>https://btctranscripts.com/zh/tags/pools/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/pools/</guid><description/></item><item><title>privacy</title><link>https://btctranscripts.com/zh/tags/privacy/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/privacy/</guid><description/></item><item><title>segwit</title><link>https://btctranscripts.com/zh/tags/segwit/</link><pubDate>Sat, 15 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/segwit/</guid><description/></item><item><title>FROST</title><link>https://btctranscripts.com/zh/tags/frost/</link><pubDate>Fri, 14 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/frost/</guid><description/></item><item><title>schnorr</title><link>https://btctranscripts.com/zh/tags/schnorr/</link><pubDate>Fri, 14 Oct 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/schnorr/</guid><description/></item><item><title>hardware wallet</title><link>https://btctranscripts.com/zh/tags/hardware-wallet/</link><pubDate>Thu, 03 Mar 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/hardware-wallet/</guid><description/></item><item><title>miniscript</title><link>https://btctranscripts.com/zh/tags/miniscript/</link><pubDate>Thu, 03 Mar 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/miniscript/</guid><description/></item><item><title>script</title><link>https://btctranscripts.com/zh/tags/script/</link><pubDate>Thu, 03 Mar 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/script/</guid><description/></item><item><title>taproot</title><link>https://btctranscripts.com/zh/tags/taproot/</link><pubDate>Thu, 03 Mar 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/taproot/</guid><description/></item><item><title>wallet</title><link>https://btctranscripts.com/zh/tags/wallet/</link><pubDate>Sat, 06 Nov 2021 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/wallet/</guid><description/></item><item><title>covenants</title><link>https://btctranscripts.com/zh/tags/covenants/</link><pubDate>Fri, 05 Nov 2021 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/covenants/</guid><description/></item><item><title>c-lightning</title><link>https://btctranscripts.com/zh/tags/c-lightning/</link><pubDate>Sun, 24 May 2020 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/c-lightning/</guid><description/></item><item><title>lightning</title><link>https://btctranscripts.com/zh/tags/lightning/</link><pubDate>Sun, 24 May 2020 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/lightning/</guid><description/></item><item><title>accumulators</title><link>https://btctranscripts.com/zh/tags/accumulators/</link><pubDate>Mon, 08 Oct 2018 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/accumulators/</guid><description/></item><item><title>merkle trees</title><link>https://btctranscripts.com/zh/tags/merkle-trees/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/tags/merkle-trees/</guid><description/></item></channel></rss> \ No newline at end of file diff --git a/zh/tags/schnorr/index.html b/zh/tags/schnorr/index.html index 5483c8ec6a..a9b76483c9 100644 --- a/zh/tags/schnorr/index.html +++ b/zh/tags/schnorr/index.html @@ -1,5 +1,5 @@ <!doctype html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><link rel=alternate type=application/rss+xml href=https://btctranscripts.com/zh/tags/schnorr/index.xml title="₿itcoin 记录稿"><link rel=canonical href=https://btctranscripts.com/zh/tags/schnorr/><title>schnorr | ₿itcoin 记录稿</title><link href=https://btctranscripts.com/css/fontawesome.min.css rel=stylesheet><link rel=stylesheet href=https://btctranscripts.com/css/ace.min.css><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://btctranscripts.com/images/btctranscripts.png"><meta name=twitter:title content="schnorr"><meta name=twitter:description content="A treasure trove of ₿itcoin transcripts (mostly recorded by @kanzure)"></head><body><nav class="navbar navbar-expand-lg navbar-dark bg-primary shadow sticky-top" id=navbarMain><div class=container><div><a class=navbar-brand href=/zh>₿itcoin 记录稿</a></div><div class="collapse navbar-collapse" id=navbarMainCollapse><ul class="navbar-nav ml-auto"><li class=nav-item><a class=nav-link href=/en>en</a></li><li class=nav-item><a class=nav-link href=/es>es</a></li><li class=nav-item><a class=nav-link href=/pt>pt</a></li><li class=nav-item><a class=nav-link href=https://github.com/bitcointranscripts/bitcointranscripts target=_blank><i class='fab fa-github'></i></a></li></ul></div></div></nav><div class=container-fluid><div class=row><div class="docs-sidenav order-0 col-12 col-md-3 col-lg-2 col-xl-2 position-sticky border-right"><nav class="navbar navbar-expand-md navbar-light pl-0"><button class="navbar-toggler navbar-toggler-right collapsed" type=button data-toggle=collapse data-target=#sidenav-left-collapse aria-controls=sidenav-left-collapse aria-expanded=false aria-label="Toggle navigation"> -<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/zh/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/advancing-bitcoin/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Schnorr</h1><ul><li><a href=/zh/tabconf/2022/2022-10-14-roast/>ROAST - Robust asynchronous Schnorr threshold signatures</a></li></ul><h4></h4><ul><li><a href=/tags/schnorr/>en: schnorr</a></li><li><a href=/es/tags/schnorr/>es: schnorr</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> +<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/zh/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/advancing-bitcoin/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Schnorr</h1><ul><li><a href=/zh/tabconf/2022/2022-10-14-roast/>ROAST - Robust asynchronous Schnorr threshold signatures</a></li><li><a href=/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/>Taproot on hardware wallets</a></li></ul><h4></h4><ul><li><a href=/tags/schnorr/>en: schnorr</a></li><li><a href=/es/tags/schnorr/>es: schnorr</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> <script src=https://btctranscripts.com/lib/popper.min.js></script> <script src=https://btctranscripts.com/js/bootstrap.min.js></script> <script type=text/javascript src=/plugins/lunr.min.js></script> diff --git a/zh/tags/schnorr/index.xml b/zh/tags/schnorr/index.xml index ddf3473ad3..b888142272 100644 --- a/zh/tags/schnorr/index.xml +++ b/zh/tags/schnorr/index.xml @@ -5,4 +5,12 @@ 想象 比特币已经支持 Shnorr 签名的验证。一旦我们把验证能力做进了协议,我们就可以在此基础上开发许多东西并应用在链上。举个例子,你可以开发门限签名,还可以实现像 MuSig 和 MuSig2 这样的多签名协议。只要一个签名看起来是一个 Schnorr 签名,你就可以把它放到链上,是可以兼容的。为了支持 Schnorr 签名,我们必须更改共识层。但是,一旦有了 Schnorr 签名,我们就不再需要为使用更高级的签名协议而改造共识层,这是个好事情,因为改变共识层更难。 此外,有了这些协议,假设你在链上看到了一个 Schnorr 签名,你并不能知道它是否使用了门限签名协议或者多签名协议。这也提供了紧凑性,无论在构造签名的过程中发生了什么,最终发送到链上的都只有 32 字节。这也很好,因为区块空间是稀缺的。 门限签名 可能你在之前听说过 “multisig(多签名)” 这个词。“Multisig” 这个词更多用在比特币工程社区中,而 “门限签名” 更多用在学术社区中。假定我们有一个 “t-of-n” 的门限签名设置,这意味着 n 个签名者共有一个公钥,并且至少要 t 个签名人在线,才能签发一条消息。作为一种特殊情况,的确有一种 n-of-n 的情况,需要所有签名者都在场,这在学术文献中称为 “多签名”。但在这里,我们的用词会灵活一点,然后我们就讨论 t-of-n 的情形。 -不可伪造性是最主要的安全特性,也就是说 t 个签名人应该可以创建一个签名,但如果到场的不足 t 个人,就不应能够创建出签名,即使 (t-1) 个恶意签名人彼此串通,也无法生成有效的签名。另一个重要特性是健壮性(robustness):要是 t 个签名人真的想创建一个签名,就一定能做到。这是一种抗 Dod 特性,即使 (t-1) (译者注:原文如此,疑应为 “(n - t)”)希望阻止签名,这 t 个签名人也能生成签名。这就是我们希望实现的几个主要特性。</description></item></channel></rss> \ No newline at end of file +不可伪造性是最主要的安全特性,也就是说 t 个签名人应该可以创建一个签名,但如果到场的不足 t 个人,就不应能够创建出签名,即使 (t-1) 个恶意签名人彼此串通,也无法生成有效的签名。另一个重要特性是健壮性(robustness):要是 t 个签名人真的想创建一个签名,就一定能做到。这是一种抗 Dod 特性,即使 (t-1) (译者注:原文如此,疑应为 “(n - t)”)希望阻止签名,这 t 个签名人也能生成签名。这就是我们希望实现的几个主要特性。</description></item><item><title>Taproot on hardware wallets</title><link>https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/</link><pubDate>Thu, 03 Mar 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/</guid><description>开场(Jeff Gallas) 我非常高兴地宣布我们今天的第一位演讲者,来自 Specter 的 Stepan Snigirev,他是 Specter Solutions 的 CTO,有 3 年的开发比特币软件钱包(soft wallets)和硬件签名器(hard wallets)的经历。欢迎 Stepan。 +概述(Stepan Snigirev) 我今天的演讲主题是 “在硬件签名器上支持 Taproot”。我们刚刚激活了 Taproot,非常棒,是在去年 11 月激活的。一些软件钱包已经开始集成了,而且甚至一些硬件签名器也开始集成了。现在大部分人用的都是单调的 “单密钥、单签名” 方案。我想讲讲我们可以用 Taproot 做什么。我觉得应该大家都知道了,所以我会讲快一点,然后我会讨论为什么在硬件签名器中集成 Taproot 是非常困难的、难点在哪里。如果我们无法在硬件钱包中集成,我们还有什么办法? +通过隐藏实现隐私 Taproot 非常出色。首先是它给了用户隐私性。在你观察区块链的时候,如果你看到一个单签名和单公钥的 taproot 地址,它里面可能实际上是一个公钥和一个脚本树。然后,这个公钥自身也可能凝结了一组公钥,而这棵脚本树可能非常高,是许许多多脚本的复杂集合。在里面你可以放置任意类型的时间锁,然后备份平时不会用到的私钥、仅在紧急情况下才启用它们。这意味着,所有复杂的花费条件,在链上看起来都是一样的。这是非常棒的事。甚至放在脚本中的公钥也可以代表着一组公钥,这就像是无限阶的密钥聚合。非常酷。 +Miniscript(更安全的明文备份) 我个人会使用它的第一个理由是,它支持更好的明文备份。为什么现在没有人使用 Miniscript 或者复杂的比特币脚本?首先是因为比特币脚本复杂而不容易编写(在 Miniscript 出现之前)。其次是所有人都不使用它。这是一个鸡生蛋还是蛋生鸡的问题:每个人(90%)都使用单签名脚本,10% 的人使用多签名脚本,只有 0.3% 的人使用定制化的脚本。如果你使用一些定制化的脚本,你就暴露在了这 0.3% 里面。所有的链分析公司都知道,要是使用这样的脚本,那很有可能是同一个人。这样的隐私性非常糟,这就是障碍之一。 +花费条件:or(HW, and(backup, timelock)) +描述符:tr(HW, {and_v(v:pk(backup), older(timelock))}) +Tapscript:&lt;backup&gt; OP_CHECKSIGVERIFY &lt;timelock&gt; OP_CHECKSEQUENCEVERIFY +(译者注:这段花费条件的意思是:一个硬件签名器随时可以花费这笔钱;同时,时间锁过期后,后备私钥也可以花费这笔钱。) +我个人会使用,我非常害怕把明文的钱包复原词(recovery phrases,应指种子词)放在我家里。如果有人得到了它,那我的钱就全部丢了。我个人的做法是使用一个不备份的硬件钱包,然后设置一个备用脚本,这个备用脚本带有时间锁,加上复原词就可以花费我的钱。然后,如果我遇到了什么意外,或者我的硬件钱包坏了,那么等待一段时间(也许半年)我就能拿回我的钱。但是,如果我的复原词被盗了,他们是没法立即偷走我的钱的(只要硬件钱包还在我手上的话)。我有足够多的时间,将资金迁移到一个新的装置上。但是,想想硬件签名器和 Miniscript 实现,现在还没有一个东西真正支持这个功能。太糟糕了。但实际上这并不是很难。在我给我们的硬件签名器集成 Miniscript 的时候,基本上我只花了一周的时间。我只要坐下来就可以开始开发了,因为它的说明真的写得非常好。Miniscript 有两个元素,其中一个你可以忽略,另一个是,如果你有一段可读的 policy 表达式,你就可以把它转成钱包的描述符。这有点复杂,但你不需要在硬件签名器里完成操作。第二部分是将钱包的描述符编译成实际的比特币脚本。这基本上只是把这些记号替换成比特币脚本的操作码,然后把派生出来的密钥放在正确的位置上。非常简单。然后硬件签名器就可以确定哪个输出是找零,并验证找零输出是从相同的描述符中派生出来的。这就行了。我想提一句,Ledger 团体最近做了很多工作来升级他们的比特币应用。他们在设计的时候就采用了 Miniscript 方法。虽然现在仅支持多签名功能,但很容易就能升级到支持定制化的 Miniscript,所以我很期待。至于硬件签名器,我不知道他们的计划。但至少会有两种硬件签名器将支持 Miniscript。</description></item></channel></rss> \ No newline at end of file diff --git a/zh/tags/taproot/index.html b/zh/tags/taproot/index.html new file mode 100644 index 0000000000..7d178a4bff --- /dev/null +++ b/zh/tags/taproot/index.html @@ -0,0 +1,10 @@ +<!doctype html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><link rel=alternate type=application/rss+xml href=https://btctranscripts.com/zh/tags/taproot/index.xml title="₿itcoin 记录稿"><link rel=canonical href=https://btctranscripts.com/zh/tags/taproot/><title>taproot | ₿itcoin 记录稿</title><link href=https://btctranscripts.com/css/fontawesome.min.css rel=stylesheet><link rel=stylesheet href=https://btctranscripts.com/css/ace.min.css><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://btctranscripts.com/images/btctranscripts.png"><meta name=twitter:title content="taproot"><meta name=twitter:description content="A treasure trove of ₿itcoin transcripts (mostly recorded by @kanzure)"></head><body><nav class="navbar navbar-expand-lg navbar-dark bg-primary shadow sticky-top" id=navbarMain><div class=container><div><a class=navbar-brand href=/zh>₿itcoin 记录稿</a></div><div class="collapse navbar-collapse" id=navbarMainCollapse><ul class="navbar-nav ml-auto"><li class=nav-item><a class=nav-link href=/en>en</a></li><li class=nav-item><a class=nav-link href=/es>es</a></li><li class=nav-item><a class=nav-link href=/pt>pt</a></li><li class=nav-item><a class=nav-link href=https://github.com/bitcointranscripts/bitcointranscripts target=_blank><i class='fab fa-github'></i></a></li></ul></div></div></nav><div class=container-fluid><div class=row><div class="docs-sidenav order-0 col-12 col-md-3 col-lg-2 col-xl-2 position-sticky border-right"><nav class="navbar navbar-expand-md navbar-light pl-0"><button class="navbar-toggler navbar-toggler-right collapsed" type=button data-toggle=collapse data-target=#sidenav-left-collapse aria-controls=sidenav-left-collapse aria-expanded=false aria-label="Toggle navigation"> +<span class=navbar-toggler-icon></span></button><div class="collapse navbar-collapse align-items-start flex-column" id=sidenav-left-collapse><form class="form-inline my-2 my-lg-0 searchbox"><input class="form-control mr-sm-2 w-100" data-search-input id=search-by type=text placeholder='Search (press "/")'></form><ul class="navbar-nav flex-column pt-3"><li data-nav-id=/zh/advancing-bitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/><h6>Advancing Bitcoin</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/advancing-bitcoin/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/advancing-bitcoin/2022/><h6>Advancing Bitcoin 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/bitcoin-core-dev-tech/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/bitcoin-core-dev-tech/><h6>Bitcoin Core Dev Tech</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/lightning-hack-day/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/lightning-hack-day/><h6>Lightning Hack Day</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/scalingbitcoin/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/><h6>Scaling Bitcoin Conference</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/scalingbitcoin/tokyo-2018/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/scalingbitcoin/tokyo-2018/><h6>Tokyo (2018)</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li><li data-nav-id=/zh/tabconf/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/><h6>TABConf</h6></a><ul class="list-unstyled ml-2"><li data-nav-id=/zh/tabconf/2021/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2021/><h6>TABConf 2021</h6></a><ul class="list-unstyled ml-2"></ul></li><li data-nav-id=/zh/tabconf/2022/ class="nav-item my-1 haschildren"><a class="nav-link p-0" href=/zh/tabconf/2022/><h6>TABConf 2022</h6></a><ul class="list-unstyled ml-2"></ul></li></ul></li></ul></div></nav></div><div class="docs-toc large order-lg-2 order-md-0 order-xs-1 col-12 col-lg-2 col-xl-2 position-sticky"><div class=docs-toc></div></div><div class="main col-12 order-1 col-md-9 col-lg-10 col-xl-8 py-3"><h1>Taproot</h1><ul><li><a href=/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/>Taproot on hardware wallets</a></li></ul><h4></h4><ul><li><a href=/tags/taproot/>en: taproot</a></li><li><a href=/es/tags/taproot/>es: taproot</a></li></ul><div class=row></div></div></div></div><script src=https://btctranscripts.com/lib/jquery.min.js></script> +<script src=https://btctranscripts.com/lib/popper.min.js></script> +<script src=https://btctranscripts.com/js/bootstrap.min.js></script> +<script type=text/javascript src=/plugins/lunr.min.js></script> +<script type=text/javascript src=/plugins/auto-complete.js></script> +<link href=/plugins/auto-complete.css rel=stylesheet><script type=text/javascript>var baseurl="https://btctranscripts.com//zh"</script><script type=text/javascript src=/plugins/search.js></script> +<script type=text/javascript src=https://btctranscripts.com/js/custom.js></script> +<script type=text/javascript src=/plugins/clipboard.js></script> +<script>new ClipboardJS(".btn")</script></body></html> \ No newline at end of file diff --git a/zh/tags/taproot/index.xml b/zh/tags/taproot/index.xml new file mode 100644 index 0000000000..d21add048c --- /dev/null +++ b/zh/tags/taproot/index.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>taproot on ₿itcoin 记录稿</title><link>https://btctranscripts.com/zh/tags/taproot/</link><description>Recent content in taproot on ₿itcoin 记录稿</description><generator>Hugo -- gohugo.io</generator><language>zh</language><lastBuildDate>Thu, 03 Mar 2022 00:00:00 +0000</lastBuildDate><atom:link href="https://btctranscripts.com/zh/tags/taproot/index.xml" rel="self" type="application/rss+xml"/><item><title>Taproot on hardware wallets</title><link>https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/</link><pubDate>Thu, 03 Mar 2022 00:00:00 +0000</pubDate><guid>https://btctranscripts.com/zh/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/</guid><description>开场(Jeff Gallas) 我非常高兴地宣布我们今天的第一位演讲者,来自 Specter 的 Stepan Snigirev,他是 Specter Solutions 的 CTO,有 3 年的开发比特币软件钱包(soft wallets)和硬件签名器(hard wallets)的经历。欢迎 Stepan。 +概述(Stepan Snigirev) 我今天的演讲主题是 “在硬件签名器上支持 Taproot”。我们刚刚激活了 Taproot,非常棒,是在去年 11 月激活的。一些软件钱包已经开始集成了,而且甚至一些硬件签名器也开始集成了。现在大部分人用的都是单调的 “单密钥、单签名” 方案。我想讲讲我们可以用 Taproot 做什么。我觉得应该大家都知道了,所以我会讲快一点,然后我会讨论为什么在硬件签名器中集成 Taproot 是非常困难的、难点在哪里。如果我们无法在硬件钱包中集成,我们还有什么办法? +通过隐藏实现隐私 Taproot 非常出色。首先是它给了用户隐私性。在你观察区块链的时候,如果你看到一个单签名和单公钥的 taproot 地址,它里面可能实际上是一个公钥和一个脚本树。然后,这个公钥自身也可能凝结了一组公钥,而这棵脚本树可能非常高,是许许多多脚本的复杂集合。在里面你可以放置任意类型的时间锁,然后备份平时不会用到的私钥、仅在紧急情况下才启用它们。这意味着,所有复杂的花费条件,在链上看起来都是一样的。这是非常棒的事。甚至放在脚本中的公钥也可以代表着一组公钥,这就像是无限阶的密钥聚合。非常酷。 +Miniscript(更安全的明文备份) 我个人会使用它的第一个理由是,它支持更好的明文备份。为什么现在没有人使用 Miniscript 或者复杂的比特币脚本?首先是因为比特币脚本复杂而不容易编写(在 Miniscript 出现之前)。其次是所有人都不使用它。这是一个鸡生蛋还是蛋生鸡的问题:每个人(90%)都使用单签名脚本,10% 的人使用多签名脚本,只有 0.3% 的人使用定制化的脚本。如果你使用一些定制化的脚本,你就暴露在了这 0.3% 里面。所有的链分析公司都知道,要是使用这样的脚本,那很有可能是同一个人。这样的隐私性非常糟,这就是障碍之一。 +花费条件:or(HW, and(backup, timelock)) +描述符:tr(HW, {and_v(v:pk(backup), older(timelock))}) +Tapscript:&lt;backup&gt; OP_CHECKSIGVERIFY &lt;timelock&gt; OP_CHECKSEQUENCEVERIFY +(译者注:这段花费条件的意思是:一个硬件签名器随时可以花费这笔钱;同时,时间锁过期后,后备私钥也可以花费这笔钱。) +我个人会使用,我非常害怕把明文的钱包复原词(recovery phrases,应指种子词)放在我家里。如果有人得到了它,那我的钱就全部丢了。我个人的做法是使用一个不备份的硬件钱包,然后设置一个备用脚本,这个备用脚本带有时间锁,加上复原词就可以花费我的钱。然后,如果我遇到了什么意外,或者我的硬件钱包坏了,那么等待一段时间(也许半年)我就能拿回我的钱。但是,如果我的复原词被盗了,他们是没法立即偷走我的钱的(只要硬件钱包还在我手上的话)。我有足够多的时间,将资金迁移到一个新的装置上。但是,想想硬件签名器和 Miniscript 实现,现在还没有一个东西真正支持这个功能。太糟糕了。但实际上这并不是很难。在我给我们的硬件签名器集成 Miniscript 的时候,基本上我只花了一周的时间。我只要坐下来就可以开始开发了,因为它的说明真的写得非常好。Miniscript 有两个元素,其中一个你可以忽略,另一个是,如果你有一段可读的 policy 表达式,你就可以把它转成钱包的描述符。这有点复杂,但你不需要在硬件签名器里完成操作。第二部分是将钱包的描述符编译成实际的比特币脚本。这基本上只是把这些记号替换成比特币脚本的操作码,然后把派生出来的密钥放在正确的位置上。非常简单。然后硬件签名器就可以确定哪个输出是找零,并验证找零输出是从相同的描述符中派生出来的。这就行了。我想提一句,Ledger 团体最近做了很多工作来升级他们的比特币应用。他们在设计的时候就采用了 Miniscript 方法。虽然现在仅支持多签名功能,但很容易就能升级到支持定制化的 Miniscript,所以我很期待。至于硬件签名器,我不知道他们的计划。但至少会有两种硬件签名器将支持 Miniscript。</description></item></channel></rss> \ No newline at end of file