From b3e24edf6dc4d6fe8b9c2f87322dc82c658de6d9 Mon Sep 17 00:00:00 2001 From: adamjonas Date: Mon, 14 Oct 2024 16:39:38 +0000 Subject: [PATCH] deploy: c95da9dadcb0311b0e470948925c0e83cfa26444 --- .../2019-06/2019-06-07-signet/index.html | 2 +- en/sitemap.xml | 2 +- .../2019-06/2019-06-07-signet/index.html | 30 +++++++++++++++++++ es/bitcoin-core-dev-tech/2019-06/index.html | 2 +- es/bitcoin-core-dev-tech/2019-06/index.xml | 4 ++- es/categories/core-dev-tech/index.html | 2 +- es/categories/core-dev-tech/index.xml | 4 ++- es/directories.json | 2 +- es/index.json | 2 +- es/sitemap.xml | 2 +- es/status.json | 2 +- es/tags/signet/index.html | 2 +- es/tags/signet/index.xml | 4 ++- status.json | 2 +- 14 files changed, 49 insertions(+), 13 deletions(-) create mode 100644 es/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/index.html diff --git a/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/index.html b/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/index.html index ae8cc43b29..d2a96ba616 100644 --- a/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/index.html +++ b/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/index.html @@ -9,4 +9,4 @@ < Bitcoin Core Dev Tech 2019 < Signet

Signet

Date: June 7, 2019

Transcript By: Bryan Bishop

Tags: Signet

Category: -Core dev tech

https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2019-March/016734.html

https://twitter.com/kanzure/status/1136980462524608512

Introduction

I am going to talk a little bit about signet. Does anyone not know what signet is? The idea is to have a signature of the block or the previous block. The idea is that testnet is horribly broken for testing things, especially testing things for long-term. You have large reorgs on testnet. What about testnet with a less broken difficulty adjustment? Testnet is for miner testing really. One of the goals is that you want predictable unreliability and not world-shattering unreliability. Signet would be like a new series of networks. Anyone can spin up a signet; it’s a public network but only people with the private key can create blocks. Anyone can create blocks but it would be invalid if you look at the coinbase. You could fool SPV clients I guess. You could have a taproot signet and spin that up, or a Schnorr signet, or whatever you want to do.

Q&A

Q: It still does proof-of-work?

A: The blockheader is still valid, yes. It still does proof-of-work. People are lazy and they want to support this in their software, but they don’t want to go in and hack around their consensus validation software. Instead, they can keep this as is. How to store and download headers also stays the same, you don’t want to change those things.

Q: Is this regtest proof-of-work?

A: It’s like difficulty 1.

Q: Then you could be easily be fooled by header changes?

A: Yes, you can. This is for testing, so you shouldn’t be connected to random nodes.

Implementations do not need to implement the signature check and it works with all existing software. You have a coinbase output that has a signature saying my consensus is configured and you configure what the scriptpubkey is for that in the scriptsig. Instead of signing the transaction you sign the block. The changes are not very big at all. It’s the same as transaction signing. There’s a new signer that takes a hash and you create a signature. The hash is the blockhash.

Q: Is your goal for people to spin up random signets, or for there to be a global one?

A: One idea is to have a reliable signet that people can use for testing. This permanent signet would have a web interface and we could ask it to double spend you or something and then it would double spend your address. All of this is outside of the proposal, this is just a tool that does it. It’s double spending as a service (DSaaS).

You have a circular dependency- it can’t be the blockhash. The best way would be to remove the witness commitment manually. In segwit, they set it to 0000 in the merkle… But you probably don’t want to do that here because you still want to sign your coinbase. You could do something like, compute the would-be blockhash if that commitment was removed, and then that’s what you sign. Zeroed out or removed, either way.

You could sign the previous block instead of the current block. You sign everything except the signature itself of course, and probably the nonce in the header. The thing with this is that you are going to have to create a signature every time, because you are going to do PoW and do one signature per nonce. So you don’t sign the nonce. You could do the signature, and then still roll the nonce. With difficulty 1, you’re only going to do one on average anyway. It’s going to be mainnet difficulty 1.

Regtest vs signet

Regtest is bad, because anyone can go and make a billion blocks. You have to get the headers and then the block and then check the signature.

What’s so bad about having the signature in the header? Everyone would have to change their consensus code to be able to parse and validate this. It would be easier if they don’t have to modify any software to use this. It could either be out of the box, or they make changes for signet. There’s little motivation to add signature verification to different tools when this is not used in production for anything. It’s literally only to test new protocols, or to test your exchange integration to be sure that you’re handling reorgs properly- but you could use regtest for that case.

You can run bitcoind enforcing signet, and you connect to your own node. You don’t really care that you’re vulnerable to– because you’re not checking, you’re only getting blocks from your own node. The same is true for regtest, but anyone else who connects to that regtest network can blow away your blocks. You could just use regtest and only trust certain nodes, which means block relay would be from a single node running the thing.

You don’t need to protect a signet network though. On signet, you’re still connected to a node that is validating. A node that is validating on regtest will see the reorg and see that it is still valid and consensus-valid, unless you do whitelist-only for regtest, which everyone would have to setup. Regtest is context-sensitive. Signet users still need to validate signatures, you connect to bitcoind running signet. So you do have to use the signet software, but they don’t require other changes to their other software stacks if the new header format breaks something. You opt into a particular signet based on its scriptsig. It doesn’t matter what software you run internally, but you use bitcoind as an edge router.

What about having a regular header, and a separate set of signature? It’s the segwit trick. How many changes is Bitcoin Core going to accept for this signet testing-only thing? It’s super simple if it’s just “a signature in a certain place”. If you don’t like it, you don’t have to use it. Well, if it’s going to be part of Bitcoin Core then that means we’re maintaining.

regtest has no proof-of-work? No, it has proof-of-work but it’s one bit of work. You have to set it to zero. Half the time, you get it on the first try.

If your goal is to have 10 minute blocks, you don’t need to change the difficulty rules at all. You can just use the mainnet rules. And then the signer, if you have a high-profile signet somewhere, they have 10 ASICs available, they can choose a higher difficulty if they want and it will have that security. The difficulty will be exactly what the signer chooses or can produce. He can also choose minimal and it’s less secure… The signer can have a cronjob and make a minimum-difficulty block at that time. You just mine the whole time, and it gets you to some difficulty.

How are you going to do reorg on demand if the difficulty is exactly what they can do? Well, it will take 10-20 minutes to make the reorg. That’s fine. It would be nice for faster reorgs. 10 minutes is only for difficulty adjustment.

Have a chainparam serialization and make it easy to send that out. That’s the pull request that someone was thinking about– it’s a custom chain like regtest but you can change all the chainparams to whatever you want, like a custom genesis or whatever. A configure arg or command line parameter that has the file for chainparams.

Applications

It’s superior in every way to testnet, I think. The only thing testnet is useful for is mining testing and testing miner equipment. If you want really fast blocks and really fast reorgs, then use testnet.

If you are testing protocols like eltoo protocols across many different people, then regtest is way too fragile for that, and testnet is also way too fragile for that if you want to get anything productive done. But you still want to be able to do things like double spending as a service, because eltoo needs to be robust enough to be able to handle expected reorgs but not necessarily earth-shattering reorgs. Another application is that, as an exchange, I always wanted my customers to join regtest and test with my arbitrary reorgs.

We can take bip-taproot and just slap it in there. We could either just run the branch itself on signet… or the signer can enforce other consensus rules and now those consensus rules are active there. Taproot can be a soft-fork and you can just say this soft-fork is enabled on this network, sure. During the development of segwit, there were a few different test networks for segwit called segnet. Not a typo, there was segnet and now there is signet. Nobody remembers segnet except Pieter.

It’s also useful for testing wallet software. Say an exchange running a semi-private signet. It’s extremely common to visit exchanges and you look at their wallet code, and they aren’t even checking for reorgs at all. So here’s an easy way for them to check their work against reorgs. It could be very educational.

Implementation

The pull request for signet is in limbo. I am planning on going back to it. There’s an older implementation that modifies the blockheaders. I am going to replace that with something that doesn’t do that. It doesn’t seem too hard to do.

\ No newline at end of file +Core dev tech

https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2019-March/016734.html

https://twitter.com/kanzure/status/1136980462524608512

Introduction

I am going to talk a little bit about signet. Does anyone not know what signet is? The idea is to have a signature of the block or the previous block. The idea is that testnet is horribly broken for testing things, especially testing things for long-term. You have large reorgs on testnet. What about testnet with a less broken difficulty adjustment? Testnet is for miner testing really. One of the goals is that you want predictable unreliability and not world-shattering unreliability. Signet would be like a new series of networks. Anyone can spin up a signet; it’s a public network but only people with the private key can create blocks. Anyone can create blocks but it would be invalid if you look at the coinbase. You could fool SPV clients I guess. You could have a taproot signet and spin that up, or a Schnorr signet, or whatever you want to do.

Q&A

Q: It still does proof-of-work?

A: The blockheader is still valid, yes. It still does proof-of-work. People are lazy and they want to support this in their software, but they don’t want to go in and hack around their consensus validation software. Instead, they can keep this as is. How to store and download headers also stays the same, you don’t want to change those things.

Q: Is this regtest proof-of-work?

A: It’s like difficulty 1.

Q: Then you could be easily be fooled by header changes?

A: Yes, you can. This is for testing, so you shouldn’t be connected to random nodes.

Implementations do not need to implement the signature check and it works with all existing software. You have a coinbase output that has a signature saying my consensus is configured and you configure what the scriptpubkey is for that in the scriptsig. Instead of signing the transaction you sign the block. The changes are not very big at all. It’s the same as transaction signing. There’s a new signer that takes a hash and you create a signature. The hash is the blockhash.

Q: Is your goal for people to spin up random signets, or for there to be a global one?

A: One idea is to have a reliable signet that people can use for testing. This permanent signet would have a web interface and we could ask it to double spend you or something and then it would double spend your address. All of this is outside of the proposal, this is just a tool that does it. It’s double spending as a service (DSaaS).

You have a circular dependency- it can’t be the blockhash. The best way would be to remove the witness commitment manually. In segwit, they set it to 0000 in the merkle… But you probably don’t want to do that here because you still want to sign your coinbase. You could do something like, compute the would-be blockhash if that commitment was removed, and then that’s what you sign. Zeroed out or removed, either way.

You could sign the previous block instead of the current block. You sign everything except the signature itself of course, and probably the nonce in the header. The thing with this is that you are going to have to create a signature every time, because you are going to do PoW and do one signature per nonce. So you don’t sign the nonce. You could do the signature, and then still roll the nonce. With difficulty 1, you’re only going to do one on average anyway. It’s going to be mainnet difficulty 1.

Regtest vs signet

Regtest is bad, because anyone can go and make a billion blocks. You have to get the headers and then the block and then check the signature.

What’s so bad about having the signature in the header? Everyone would have to change their consensus code to be able to parse and validate this. It would be easier if they don’t have to modify any software to use this. It could either be out of the box, or they make changes for signet. There’s little motivation to add signature verification to different tools when this is not used in production for anything. It’s literally only to test new protocols, or to test your exchange integration to be sure that you’re handling reorgs properly- but you could use regtest for that case.

You can run bitcoind enforcing signet, and you connect to your own node. You don’t really care that you’re vulnerable to– because you’re not checking, you’re only getting blocks from your own node. The same is true for regtest, but anyone else who connects to that regtest network can blow away your blocks. You could just use regtest and only trust certain nodes, which means block relay would be from a single node running the thing.

You don’t need to protect a signet network though. On signet, you’re still connected to a node that is validating. A node that is validating on regtest will see the reorg and see that it is still valid and consensus-valid, unless you do whitelist-only for regtest, which everyone would have to setup. Regtest is context-sensitive. Signet users still need to validate signatures, you connect to bitcoind running signet. So you do have to use the signet software, but they don’t require other changes to their other software stacks if the new header format breaks something. You opt into a particular signet based on its scriptsig. It doesn’t matter what software you run internally, but you use bitcoind as an edge router.

What about having a regular header, and a separate set of signature? It’s the segwit trick. How many changes is Bitcoin Core going to accept for this signet testing-only thing? It’s super simple if it’s just “a signature in a certain place”. If you don’t like it, you don’t have to use it. Well, if it’s going to be part of Bitcoin Core then that means we’re maintaining.

regtest has no proof-of-work? No, it has proof-of-work but it’s one bit of work. You have to set it to zero. Half the time, you get it on the first try.

If your goal is to have 10 minute blocks, you don’t need to change the difficulty rules at all. You can just use the mainnet rules. And then the signer, if you have a high-profile signet somewhere, they have 10 ASICs available, they can choose a higher difficulty if they want and it will have that security. The difficulty will be exactly what the signer chooses or can produce. He can also choose minimal and it’s less secure… The signer can have a cronjob and make a minimum-difficulty block at that time. You just mine the whole time, and it gets you to some difficulty.

How are you going to do reorg on demand if the difficulty is exactly what they can do? Well, it will take 10-20 minutes to make the reorg. That’s fine. It would be nice for faster reorgs. 10 minutes is only for difficulty adjustment.

Have a chainparam serialization and make it easy to send that out. That’s the pull request that someone was thinking about– it’s a custom chain like regtest but you can change all the chainparams to whatever you want, like a custom genesis or whatever. A configure arg or command line parameter that has the file for chainparams.

Applications

It’s superior in every way to testnet, I think. The only thing testnet is useful for is mining testing and testing miner equipment. If you want really fast blocks and really fast reorgs, then use testnet.

If you are testing protocols like eltoo protocols across many different people, then regtest is way too fragile for that, and testnet is also way too fragile for that if you want to get anything productive done. But you still want to be able to do things like double spending as a service, because eltoo needs to be robust enough to be able to handle expected reorgs but not necessarily earth-shattering reorgs. Another application is that, as an exchange, I always wanted my customers to join regtest and test with my arbitrary reorgs.

We can take bip-taproot and just slap it in there. We could either just run the branch itself on signet… or the signer can enforce other consensus rules and now those consensus rules are active there. Taproot can be a soft-fork and you can just say this soft-fork is enabled on this network, sure. During the development of segwit, there were a few different test networks for segwit called segnet. Not a typo, there was segnet and now there is signet. Nobody remembers segnet except Pieter.

It’s also useful for testing wallet software. Say an exchange running a semi-private signet. It’s extremely common to visit exchanges and you look at their wallet code, and they aren’t even checking for reorgs at all. So here’s an easy way for them to check their work against reorgs. It could be very educational.

Implementation

The pull request for signet is in limbo. I am planning on going back to it. There’s an older implementation that modifies the blockheaders. I am going to replace that with something that doesn’t do that. It doesn’t seem too hard to do.

\ No newline at end of file diff --git a/en/sitemap.xml b/en/sitemap.xml index 824d6aa67d..c61484e16c 100644 --- a/en/sitemap.xml +++ b/en/sitemap.xml @@ -1 +1 @@ -https://btctranscripts.com/scalingbitcoin/montreal-2015/2015-09-13T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/hong-kong-2015/2015-12-07T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/2016-10-10T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/2017-11-05T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/2018-10-07T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/2019-09-12T00:00:00+00:00https://btctranscripts.com/speakers/aaron-van-wirdum/2024-08-31T00:00:00+00:00https://btctranscripts.com/speakers/ava-chow/2024-08-31T00:00:00+00:00https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/2024-08-31T00:00:00+00:00https://btctranscripts.com/bitcoin-magazine/2024-08-31T00:00:00+00:00https://btctranscripts.com/tags/bitcoin-core/2024-08-31T00:00:00+00:00https://btctranscripts.com/tags/career/2024-08-31T00:00:00+00:00https://btctranscripts.com/speakers/ishaana-misra/2024-08-31T00:00:00+00:00https://btctranscripts.com/speakers/mark-erhardt/2024-08-31T00:00:00+00:00https://btctranscripts.com/speakers/2024-08-31T00:00:00+00:00https://btctranscripts.com/tags/2024-08-31T00:00:00+00:00https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/the-state-of-bitcoin-core-development/2024-08-31T00:00:00+00:00https://btctranscripts.com/2024-08-31T00:00:00+00:00https://btctranscripts.com/speakers/craig-raw/2024-08-29T00:00:00+00:00https://btctranscripts.com/tags/cisa/2024-08-29T00:00:00+00:00https://btctranscripts.com/speakers/fabian-jahr/2024-08-29T00:00:00+00:00https://btctranscripts.com/speakers/jameson-lopp/2024-08-29T00:00:00+00:00https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/making-bitcoin-more-private-with-cisa/2024-08-29T00:00:00+00:00https://btctranscripts.com/brink/2024-07-31T00:00:00+00:00https://btctranscripts.com/brink/the-bitcoin-development-podcast/discussing-0-21-0-bitcoin-core-vulnerability-disclosures/2024-07-31T00:00:00+00:00https://btctranscripts.com/speakers/gloria-zhao/2024-07-31T00:00:00+00:00https://btctranscripts.com/speakers/niklas-g%C3%B6gge/2024-07-31T00:00:00+00:00https://btctranscripts.com/brink/the-bitcoin-development-podcast/2024-07-31T00:00:00+00:00https://btctranscripts.com/tags/lightning/2024-07-29T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-07-29T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-07-29-specification-call/2024-07-29T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-07-15-specification-call/2024-07-15T00:00:00+00:00https://btctranscripts.com/brink/the-bitcoin-development-podcast/discussing-pre-0-21-0-bitcoin-core-vulnerability-disclosures/2024-07-11T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/2024-07-07T00:00:00+00:00https://btctranscripts.com/speakers/ruben-somsen/2024-07-07T00:00:00+00:00https://btctranscripts.com/tags/silent-payments/2024-07-07T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/silent-payments-part-2/2024-07-07T00:00:00+00:00https://btctranscripts.com/speakers/sjors-provoost/2024-07-07T00:00:00+00:00https://btctranscripts.com/speakers/christian-decker/2024-06-11T00:00:00+00:00https://btctranscripts.com/bitcoin-magazine/the-politics-of-bitcoin-development/2024-06-11T00:00:00+00:00https://btctranscripts.com/tags/consensus-cleanup/2024-05-29T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/the-great-consensus-cleanup-revival/2024-05-29T00:00:00+00:00https://btctranscripts.com/tags/wallet/2024-05-29T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-05-06-specification-call/2024-05-06T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-04-22-specification-call/2024-04-22T00:00:00+00:00https://btctranscripts.com/speakers/adam-jonas/2024-04-21T00:00:00+00:00https://btctranscripts.com/categories/2024-04-21T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2024/choosing-a-career-in-bitcoin-open-source-development/2024-04-21T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/2024-04-21T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2024/2024-04-21T00:00:00+00:00https://btctranscripts.com/categories/video/2024-04-21T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/asmap/2024-04-11T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04-11T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/2024-04-11T00:00:00+00:00https://btctranscripts.com/categories/core-dev-tech/2024-04-11T00:00:00+00:00https://btctranscripts.com/tags/p2p/2024-04-11T00:00:00+00:00https://btctranscripts.com/tags/security-enhancements/2024-04-11T00:00:00+00:00https://btctranscripts.com/tags/assumeutxo/2024-04-10T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/assumeutxo-mainnet-readiness/2024-04-10T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-27-0/2024-04-10T00:00:00+00:00https://btctranscripts.com/tags/build-system/2024-04-10T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/gui-discussions/2024-04-10T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/kernel/2024-04-10T00:00:00+00:00https://btctranscripts.com/tags/signet/2024-04-10T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/signet-testnet4/2024-04-10T00:00:00+00:00https://btctranscripts.com/tags/ux/2024-04-10T00:00:00+00:00https://btctranscripts.com/tags/developer-tools/2024-04-09T00:00:00+00:00https://btctranscripts.com/tags/descriptors/2024-04-09T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/p2p-monitoring/2024-04-09T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/silent-payment-descriptors/2024-04-09T00:00:00+00:00https://btctranscripts.com/tags/coin-selection/2024-04-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/coin-selection/2024-04-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/cross-input-signature-aggregation/2024-04-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/great-consensus-cleanup/2024-04-08T00:00:00+00:00https://btctranscripts.com/tags/libsecp256k1/2024-04-08T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-04-08-specification-call/2024-04-08T00:00:00+00:00https://btctranscripts.com/tags/mining/2024-04-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/private-tx-broadcast/2024-04-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/silent-payments-libsecp/2024-04-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/stratumv2/2024-04-08T00:00:00+00:00https://btctranscripts.com/tags/stratum-v2/2024-04-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/weak-blocks/2024-04-08T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-03-25-specification-call/2024-03-25T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-03-11-specification-call/2024-03-11T00:00:00+00:00https://btctranscripts.com/bitcoinops/2024-03-07T00:00:00+00:00https://btctranscripts.com/speakers/dave-harding/2024-03-07T00:00:00+00:00https://btctranscripts.com/speakers/josibake/2024-03-07T00:00:00+00:00https://btctranscripts.com/tags/musig/2024-03-07T00:00:00+00:00https://btctranscripts.com/bitcoinops/newsletter-292-recap/2024-03-07T00:00:00+00:00https://btctranscripts.com/tags/psbt/2024-03-07T00:00:00+00:00https://btctranscripts.com/categories/podcast/2024-03-07T00:00:00+00:00https://btctranscripts.com/speakers/salvatore-ingala/2024-03-07T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-02-26-specification-call/2024-02-26T00:00:00+00:00https://btctranscripts.com/bitcoin-design/2024-02-02T00:00:00+00:00https://btctranscripts.com/speakers/christoph-ono/2024-02-02T00:00:00+00:00https://btctranscripts.com/tags/covenants/2024-02-02T00:00:00+00:00https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/covenants-part-2/2024-02-02T00:00:00+00:00https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/2024-02-02T00:00:00+00:00https://btctranscripts.com/speakers/michael-haase/2024-02-02T00:00:00+00:00https://btctranscripts.com/speakers/mogashni/2024-02-02T00:00:00+00:00https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/silent-payments/2024-01-31T00:00:00+00:00https://btctranscripts.com/speakers/yashraj/2024-01-31T00:00:00+00:00https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/covenants/2024-01-19T00:00:00+00:00https://btctranscripts.com/tags/op-checktemplateverify/2024-01-19T00:00:00+00:00https://btctranscripts.com/speakers/owen-kemeys/2024-01-19T00:00:00+00:00https://btctranscripts.com/lightning-specification/lightning-2024-01-15-specification-call/2024-01-15T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/hashcash-and-bit-gold/2024-01-03T00:00:00+00:00https://btctranscripts.com/tags/security-problems/2023-12-21T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/the-block-1-983-702-problem/2023-12-21T00:00:00+00:00https://btctranscripts.com/tags/altcoins/2023-12-09T00:00:00+00:00https://btctranscripts.com/speakers/ben-carman/2023-12-09T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/2023-12-09T00:00:00+00:00https://btctranscripts.com/tags/coinjoin/2023-12-09T00:00:00+00:00https://btctranscripts.com/categories/conference/2023-12-09T00:00:00+00:00https://btctranscripts.com/speakers/david-vorick/2023-12-09T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/onchain-privacy/monero-and-the-privacy-doom-principle/2023-12-09T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/onchain-privacy/2023-12-09T00:00:00+00:00https://btctranscripts.com/speakers/peter-todd/2023-12-09T00:00:00+00:00https://btctranscripts.com/tags/privacy-enhancements/2023-12-09T00:00:00+00:00https://btctranscripts.com/tags/privacy-problems/2023-12-09T00:00:00+00:00https://btctranscripts.com/tags/rbf/2023-12-09T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/onchain-privacy/teach-the-controversy-mempoolfullrbf/2023-12-09T00:00:00+00:00https://btctranscripts.com/tags/transaction-pinning/2023-12-09T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/onchain-privacy/vortex-zerolink-for-lightning-opens/2023-12-09T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/ocean-tides/2023-12-06T00:00:00+00:00https://btctranscripts.com/tags/pooled-mining/2023-12-06T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-26-0-and-f2pool-s-ofac-compliant-mining-policy/2023-11-23T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-11-20-specification-call/2023-11-20T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-11-06-specification-call/2023-11-06T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-10-23-specification-call/2023-10-23T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/2023-09-29T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/covenants-introspection-ctv-and-activation-impasse/2023-09-29T00:00:00+00:00https://btctranscripts.com/speakers/james-obeirne/2023-09-29T00:00:00+00:00https://btctranscripts.com/speakers/nvk/2023-09-29T00:00:00+00:00https://btctranscripts.com/speakers/rijndael/2023-09-29T00:00:00+00:00https://btctranscripts.com/tags/soft-fork-activation/2023-09-29T00:00:00+00:00https://btctranscripts.com/tags/vaults/2023-09-29T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-09-25-specification-call/2023-09-25T00:00:00+00:00https://btctranscripts.com/speakers/andrew-chow/2023-09-21T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/2023-09-21T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/cmake/2023-09-21T00:00:00+00:00https://btctranscripts.com/speakers/cory-fields/2023-09-21T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/wallet-legacy-upgrade/2023-09-21T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/signature-aggregation/2023-09-21T00:00:00+00:00https://btctranscripts.com/tags/signature-aggregation/2023-09-21T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/assumeutxo-update/2023-09-20T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/kernel-planning/2023-09-20T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/libsecp256k1-meeting/2023-09-20T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-design-goals/2023-09-20T00:00:00+00:00https://btctranscripts.com/tags/package-relay/2023-09-20T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/package-relay-planning/2023-09-20T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/privacy-metrics/2023-09-20T00:00:00+00:00https://btctranscripts.com/speakers/thecharlatan/2023-09-20T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/wallet-coin-selection/2023-09-19T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-working-session/2023-09-19T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/kernel-update/2023-09-18T00:00:00+00:00https://btctranscripts.com/speakers/jesse-posner/2023-09-08T00:00:00+00:00https://btctranscripts.com/speakers/jonas-nick/2023-09-08T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/libsec-panel/2023-09-08T00:00:00+00:00https://btctranscripts.com/speakers/lloyd-fournier/2023-09-08T00:00:00+00:00https://btctranscripts.com/tags/schnorr-signatures/2023-09-08T00:00:00+00:00https://btctranscripts.com/tags/threshold-signature/2023-09-08T00:00:00+00:00https://btctranscripts.com/speakers/tim-ruffing/2023-09-08T00:00:00+00:00https://btctranscripts.com/brink/the-bitcoin-development-podcast/code-review-and-bip324/2023-09-06T00:00:00+00:00https://btctranscripts.com/tags/generic-signmessage/2023-09-06T00:00:00+00:00https://btctranscripts.com/speakers/mike-schmidt/2023-09-06T00:00:00+00:00https://btctranscripts.com/speakers/sebastian-falbesoner/2023-09-06T00:00:00+00:00https://btctranscripts.com/tags/v2-p2p-transport/2023-09-06T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-08-28-specification-call/2023-08-28T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-08-14-specification-call/2023-08-14T00:00:00+00:00https://btctranscripts.com/chaincode-labs/2023-08-09T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/2023-08-09T00:00:00+00:00https://btctranscripts.com/tags/eltoo/2023-08-09T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/privacy-and-robustness-in-lightning/2023-08-09T00:00:00+00:00https://btctranscripts.com/speakers/rusty-russell/2023-08-09T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-07-31-specification-call/2023-07-31T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/mpcbros-vs-teamscript-debate/2023-07-30T00:00:00+00:00https://btctranscripts.com/tags/miniscript/2023-07-30T00:00:00+00:00https://btctranscripts.com/speakers/rob-hamilton/2023-07-30T00:00:00+00:00https://btctranscripts.com/tags/taproot/2023-07-30T00:00:00+00:00https://btctranscripts.com/speakers/arik-sosman/2023-07-18T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/layer-2/2023-07-18T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/layer-2/lightning-on-taproot/2023-07-18T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-07-17-specification-call/2023-07-17T00:00:00+00:00https://btctranscripts.com/tags/anchor-outputs/2023-07-15T00:00:00+00:00https://btctranscripts.com/tags/cpfp-carve-out/2023-07-15T00:00:00+00:00https://btctranscripts.com/speakers/elle-mouton/2023-07-15T00:00:00+00:00https://btctranscripts.com/speakers/oliver-gugger/2023-07-15T00:00:00+00:00https://btctranscripts.com/tags/ptlc/2023-07-15T00:00:00+00:00https://btctranscripts.com/tags/simple-taproot-channels/2023-07-15T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/simple-taproot-channels/2023-07-15T00:00:00+00:00https://btctranscripts.com/speakers/dusty-daemon/2023-07-10T00:00:00+00:00https://btctranscripts.com/tags/scalability/2023-07-10T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/scaling-to-billions-of-users/2023-07-10T00:00:00+00:00https://btctranscripts.com/tags/sidechains/2023-07-10T00:00:00+00:00https://btctranscripts.com/tags/splicing/2023-07-10T00:00:00+00:00https://btctranscripts.com/speakers/stephan-livera/2023-07-10T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2023-07-10T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/what-is-splicing/2023-07-10T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-v25/2023-06-26T00:00:00+00:00https://btctranscripts.com/tags/compact-block-filters/2023-06-26T00:00:00+00:00https://btctranscripts.com/tags/transaction-relay-policy/2023-06-26T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/layer-2/anchors-shackles-ark/2023-06-24T00:00:00+00:00https://btctranscripts.com/tags/ark/2023-06-24T00:00:00+00:00https://btctranscripts.com/speakers/burak-keceli/2023-06-24T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-06-19-specification-call/2023-06-19T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-06-05-specification-call/2023-06-05T00:00:00+00:00https://btctranscripts.com/speakers/alekos-filini/2023-05-23T00:00:00+00:00https://btctranscripts.com/speakers/daniela-brozzoni/2023-05-23T00:00:00+00:00https://btctranscripts.com/tags/hwi/2023-05-23T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/the-bitcoin-development-kit-bdk/2023-05-23T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-05-22-specification-call/2023-05-22T00:00:00+00:00https://btctranscripts.com/speakers/bastien-teinturier/2023-05-12T00:00:00+00:00https://btctranscripts.com/speakers/dusty-dettmer/2023-05-12T00:00:00+00:00https://btctranscripts.com/speakers/jeff-czyz/2023-05-12T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/lightning-privacy-splice-panel/2023-05-12T00:00:00+00:00https://btctranscripts.com/tags/offers/2023-05-12T00:00:00+00:00https://btctranscripts.com/tags/rv-routing/2023-05-12T00:00:00+00:00https://btctranscripts.com/speakers/tony-giorgio/2023-05-12T00:00:00+00:00https://btctranscripts.com/speakers/vivek/2023-05-12T00:00:00+00:00https://btctranscripts.com/speakers/greg-sanders/2023-05-11T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/op_vault-round-2-op_ctv/2023-05-11T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-05-08-specification-call/2023-05-08T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/layer-2/building-trustless-bridges/2023-04-29T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/layer-2/exploring-p2p-hashrate-markets-v2/2023-04-29T00:00:00+00:00https://btctranscripts.com/speakers/john-light/2023-04-29T00:00:00+00:00https://btctranscripts.com/speakers/nico-preti/2023-04-29T00:00:00+00:00https://btctranscripts.com/tags/statechains/2023-04-29T00:00:00+00:00https://btctranscripts.com/speakers/tadge-dryja/2023-04-29T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/layer-2/translational-bitcoin-development/2023-04-29T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-assumeutxo/2023-04-27T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-fuzzing/2023-04-27T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-libbitcoin-kernel/2023-04-26T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-meta-discussion/2023-04-26T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-asmap/2023-04-25T00:00:00+00:00https://btctranscripts.com/tags/cluster-mempool/2023-04-25T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-mempool-clustering/2023-04-25T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-package-relay-primer/2023-04-25T00:00:00+00:00https://btctranscripts.com/speakers/pieter-wuille/2023-04-25T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-refactors/2023-04-25T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-silent-payments/2023-04-25T00:00:00+00:00https://btctranscripts.com/speakers/suhas-daftuar/2023-04-25T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-04-24-specification-call/2023-04-24T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/peer-to-peer-encryption/2023-04-24T00:00:00+00:00https://btctranscripts.com/speakers/calle/2023-04-13T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/cashu-and-fedimint/2023-04-13T00:00:00+00:00https://btctranscripts.com/tags/ecash/2023-04-13T00:00:00+00:00https://btctranscripts.com/speakers/eric-sirion/2023-04-13T00:00:00+00:00https://btctranscripts.com/speakers/matt-odell/2023-04-13T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/lightning-history-and-everything-else/2023-03-22T00:00:00+00:00https://btctranscripts.com/tags/segwit/2023-03-22T00:00:00+00:00https://btctranscripts.com/tags/sighash-anyprevout/2023-03-22T00:00:00+00:00https://btctranscripts.com/tags/trimmed-htlc/2023-03-22T00:00:00+00:00https://btctranscripts.com/tags/dual-funding/2023-03-16T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/lets-talk-about-dual-funding-protocol-overview/2023-03-16T00:00:00+00:00https://btctranscripts.com/speakers/lisa-neigut/2023-03-16T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/onchain-privacy/splicing-lightnings-multiparty-future/2023-03-14T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/the-bitcoin-core-wallet/2023-03-09T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2023-03-06-greg-sanders/2023-03-06T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2023-03-02T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2022/2023-03-02T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2022/challenges-in-implementing-coinjoin-in-hardware-wallets/2023-03-02T00:00:00+00:00https://btctranscripts.com/tags/hardware-wallet/2023-03-02T00:00:00+00:00https://btctranscripts.com/speakers/pavol-rusnak/2023-03-02T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2023/2023-03-01T00:00:00+00:00https://btctranscripts.com/speakers/christian-lewe/2023-03-01T00:00:00+00:00https://btctranscripts.com/speakers/kevin-loaec/2023-03-01T00:00:00+00:00https://btctranscripts.com/tags/simplicity/2023-03-01T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2023/simplicity-going-beyond-miniscript/2023-03-01T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2023/timelock-enabled-safety-and-recovery-use-cases-for-bitcoin-users/2023-03-01T00:00:00+00:00https://btctranscripts.com/tags/timelocks/2023-03-01T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2023-02-27-craig-raw-bitcoin-multi-signature/2023-02-27T00:00:00+00:00https://btctranscripts.com/speakers/matt-corallo/2023-02-23T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2023-02-23-matt-corallo/2023-02-23T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/demystifying-and-understanding-bitcoin-core-development/2023-02-22T00:00:00+00:00https://btctranscripts.com/speakers/rodolfo-novak/2023-02-22T00:00:00+00:00https://btctranscripts.com/tags/ephemeral-anchors/2023-02-15T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/sighash-anyprevout-ephemeral-anchors-and-ln-symmetry-eltoo/2023-02-15T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-02-13-specification-call/2023-02-13T00:00:00+00:00https://btctranscripts.com/categories/meeting/2023-02-13T00:00:00+00:00https://btctranscripts.com/speakers/antoine-poinsot/2023-02-11T00:00:00+00:00https://btctranscripts.com/tags/fee-management/2023-02-11T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/op_vault-for-bitcoin-covenants-panel/2023-02-11T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/inscriptions/2023-02-08T00:00:00+00:00https://btctranscripts.com/speakers/casey-rodarmor/2023-02-02T00:00:00+00:00https://btctranscripts.com/tags/privacy/2023-02-02T00:00:00+00:00https://btctranscripts.com/speakers/sergi-delgado/2023-02-02T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/watchtowers-lightning-privacy/2023-02-02T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2023-02-02-casey-rodarmor/2023-02-02T00:00:00+00:00https://btctranscripts.com/speakers/anant-tapadia/2023-01-31T00:00:00+00:00https://btctranscripts.com/tags/scripts-addresses/2023-01-31T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/slp455-anant-tapadia-single-sig-or-multi-sig/2023-01-31T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-01-30-specification-call/2023-01-30T00:00:00+00:00https://btctranscripts.com/bitcointranscripts/2023-01-29T00:00:00+00:00https://btctranscripts.com/bitcointranscripts/stephan-livera-podcast/opvault-a-new-way-to-hodl/2023-01-29T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2023-01-23-antoine-poinsot-and-salvatore-ingala/2023-01-23T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2023-01-18-josibake/2023-01-18T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2023-01-14-james-obeirne-a-new-way-to-hodl/2023-01-14T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-v24-bug/2022-12-29T00:00:00+00:00https://btctranscripts.com/tags/adaptor-signatures/2022-12-27T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/nesting-roast-half-aggregation-adaptor-signatures/2022-12-27T00:00:00+00:00https://btctranscripts.com/tags/cryptography/2022-12-16T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/schnorr-musig-frost-and-more/2022-12-16T00:00:00+00:00https://btctranscripts.com/speakers/adam-gibson/2022-12-10T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/onchain-privacy/coinjoin-done-right-the-onchain-offchain-mix-and-anti-sybil-with-riddles/2022-12-10T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/channel-jamming-on-the-lightning-network/2022-11-23T00:00:00+00:00https://btctranscripts.com/speakers/clara-shikhelman/2022-11-23T00:00:00+00:00https://btctranscripts.com/tags/research/2022-11-23T00:00:00+00:00https://btctranscripts.com/speakers/sergei-tikhomirov/2022-11-23T00:00:00+00:00https://btctranscripts.com/tags/watchtowers/2022-11-23T00:00:00+00:00https://btctranscripts.com/speakers/dhruv/2022-11-13T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-11-13-dhruv-pieter-wuille-and-tim-ruffing/2022-11-13T00:00:00+00:00https://btctranscripts.com/adopting-bitcoin/2022-11-11T00:00:00+00:00https://btctranscripts.com/adopting-bitcoin/2022/2022-11-11T00:00:00+00:00https://btctranscripts.com/adopting-bitcoin/2022/how-to-get-started-contributing-sustainably-to-bitcoin-core/2022-11-11T00:00:00+00:00https://btctranscripts.com/speakers/jon-atack/2022-11-11T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/the-bitcoin-core-wallet-and-wrangling-bitcoin-data/2022-10-21T00:00:00+00:00https://btctranscripts.com/speakers/bob-mcelrath/2022-10-15T00:00:00+00:00https://btctranscripts.com/tabconf/2022/2022-10-15-braidpool/2022-10-15T00:00:00+00:00https://btctranscripts.com/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/2022-10-15T00:00:00+00:00https://btctranscripts.com/tabconf/2022/2022-10-15-silent-payments/2022-10-15T00:00:00+00:00https://btctranscripts.com/tabconf/2022-10-15T00:00:00+00:00https://btctranscripts.com/tabconf/2022/2022-10-15T00:00:00+00:00https://btctranscripts.com/tabconf/2022/lightning-is-broken-af-but-we-can-fix-it/2022-10-14T00:00:00+00:00https://btctranscripts.com/tabconf/2022/2022-10-14-hac-spec/2022-10-14T00:00:00+00:00https://btctranscripts.com/tabconf/2022/2022-10-14-roast/2022-10-14T00:00:00+00:00https://btctranscripts.com/tabconf/2022/weighing-transactions-the-witness-discount/2022-10-14T00:00:00+00:00https://btctranscripts.com/tabconf/2022/how-to-become-signet-rich-learn-about-bitcoin-signet-and-zebnet/2022-10-13T00:00:00+00:00https://btctranscripts.com/tags/lnd/2022-10-13T00:00:00+00:00https://btctranscripts.com/speakers/richard-safier/2022-10-13T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/2022-10-12T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-research-wishlist/2022-10-12T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-merging/2022-10-12T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-github/2022-10-11T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/2022-10-11T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-frost/2022-10-11T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-hac-spec/2022-10-11T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-package-relay/2022-10-11T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-stratum-v2/2022-10-11T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/2022-10-10T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/2022-10-10T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-v24/2022-10-07T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/lightning-updates-stratum-v2/2022-09-28T00:00:00+00:00https://btctranscripts.com/speakers/steve-lee/2022-09-28T00:00:00+00:00https://btctranscripts.com/tags/zero-conf-channels/2022-09-28T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/checking-bitcoin-balances-privately/2022-09-27T00:00:00+00:00https://btctranscripts.com/categories/club/2022-09-27T00:00:00+00:00https://btctranscripts.com/speakers/samir-menon/2022-09-27T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/2022-09-27T00:00:00+00:00https://btctranscripts.com/wasabi/2022-09-27T00:00:00+00:00https://btctranscripts.com/tags/bip32/2022-09-17T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/hd-wallets-mnemonic-codes-and-seedqr/2022-09-17T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2022-08-11T00:00:00+00:00https://btctranscripts.com/categories/meetup/2022-08-11T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2022-08-11-tim-ruffing-musig2/2022-08-11T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-08-11-gloria-zhao/2022-08-11T00:00:00+00:00https://btctranscripts.com/speakers/chelsea-komlo/2022-08-07T00:00:00+00:00https://btctranscripts.com/speakers/elizabeth-crites/2022-08-07T00:00:00+00:00https://btctranscripts.com/misc/2022-08-07-komlo-crites-frost/2022-08-07T00:00:00+00:00https://btctranscripts.com/misc/2022-08-07T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-08-02-jonas-nick-tim-ruffing/2022-08-02T00:00:00+00:00https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/fedimint/2022-07-29T00:00:00+00:00https://btctranscripts.com/speakers/justin-moon/2022-07-29T00:00:00+00:00https://btctranscripts.com/speakers/stephen-delorme/2022-07-29T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/op_return/2022-07-15T00:00:00+00:00https://btctranscripts.com/misc/2022-07-14-tim-ruffing-roast/2022-07-14T00:00:00+00:00https://btctranscripts.com/tags/htlc/2022-07-05T00:00:00+00:00https://btctranscripts.com/tags/incentives/2022-07-05T00:00:00+00:00https://btctranscripts.com/speakers/jeremy-rubin/2022-07-05T00:00:00+00:00https://btctranscripts.com/speakers/jonathan-harvey-buschel/2022-07-05T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2022/lightning-panel/2022-07-05T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2022/2022-07-05T00:00:00+00:00https://btctranscripts.com/speakers/rene-pickhardt/2022-07-05T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2022/tradeoffs-in-permissionless-systems/2022-07-05T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/silent-payments/2022-06-09T00:00:00+00:00https://btctranscripts.com/speakers/alex-myers/2022-06-07T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/2022/2022-06-07T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/2022/2022-06-07-alex-myers-minisketch-lightning-gossip/2022-06-07T00:00:00+00:00https://btctranscripts.com/speakers/0xb10c/2022-06-06T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/tracepoints-and-monitoring-the-bitcoin-network/2022-06-06T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/package-relay/2022-05-24T00:00:00+00:00https://btctranscripts.com/tags/security/2022-05-24T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/address-relay/2022-05-13T00:00:00+00:00https://btctranscripts.com/speakers/martin-zumsande/2022-05-13T00:00:00+00:00https://btctranscripts.com/speakers/andrew-poelstra/2022-05-07T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2022/bitcoin-randd-panel/2022-05-07T00:00:00+00:00https://btctranscripts.com/tags/codex32/2022-05-07T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2022/long-term-trust-and-analog-computers/2022-05-07T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/are-users-rejecting-bitcoin-forks/2022-05-07T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2022-05-05-covenants-bip119/2022-05-05T00:00:00+00:00https://btctranscripts.com/speakers/greg-maxwell/2022-05-05T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2022-05-05T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-v23/2022-04-24T00:00:00+00:00https://btctranscripts.com/speakers/carl-dong/2022-04-12T00:00:00+00:00https://btctranscripts.com/misc/2022-04-12-carl-dong-libbitcoinkernel/2022-04-12T00:00:00+00:00https://btctranscripts.com/speakers/max-hillebrand/2022-04-01T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-04-01-max-hillebrand/2022-04-01T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2022-03-29T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2022-03-29-socratic-seminar/2022-03-29T00:00:00+00:00https://btctranscripts.com/bitcoinology/2022-03-27T00:00:00+00:00https://btctranscripts.com/speakers/christian-moss/2022-03-27T00:00:00+00:00https://btctranscripts.com/bitcoinology/history-of-bitcoin-in-gaming/2022-03-27T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-03-27-rene-pickhardt/2022-03-27T00:00:00+00:00https://btctranscripts.com/bitcoinology/how-to-design-schnorr-signatures/2022-03-14T00:00:00+00:00https://btctranscripts.com/lightning-specification/2022-03-14-specification-call/2022-03-14T00:00:00+00:00https://btctranscripts.com/tags/c-lightning/2022-03-07T00:00:00+00:00https://btctranscripts.com/c-lightning/2022-03-07T00:00:00+00:00https://btctranscripts.com/c-lightning/2022-03-07-developer-call/2022-03-07T00:00:00+00:00https://btctranscripts.com/speakers/john-cantrell/2022-03-07T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-03-07-john-cantrell-sensei/2022-03-07T00:00:00+00:00https://btctranscripts.com/tags/amp/2022-03-03T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-christian-decker-greenlight/2022-03-03T00:00:00+00:00https://btctranscripts.com/speakers/jimmy-song/2022-03-03T00:00:00+00:00https://btctranscripts.com/tags/lnurl/2022-03-03T00:00:00+00:00https://btctranscripts.com/speakers/michael-folkson/2022-03-03T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/2022-03-03T00:00:00+00:00https://btctranscripts.com/speakers/sanket-kanjalkar/2022-03-03T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2022/static-invoices-in-lightning/2022-03-03T00:00:00+00:00https://btctranscripts.com/speakers/stepan-snigirev/2022-03-03T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-jimmy-song-taproot-multisig/2022-03-03T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/2022-03-03T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-michael-folkson-taproot-update/2022-03-03T00:00:00+00:00https://btctranscripts.com/tags/tapscript/2022-03-03T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2022-03-01-lightning-panel/2022-03-01T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/security-issue-burying-bitcoin-soft-forks/2022-02-25T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/lightning-privacy/2022-02-17T00:00:00+00:00https://btctranscripts.com/tags/topology/2022-02-17T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-02-15-chris-stewart/2022-02-15T00:00:00+00:00https://btctranscripts.com/speakers/chris-stewart/2022-02-15T00:00:00+00:00https://btctranscripts.com/lightning-specification/2022-02-14-specification-call/2022-02-14T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/block-building/2022-02-01T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-01-31-nvk-bitcoin-hardware-innovation/2022-01-31T00:00:00+00:00https://btctranscripts.com/lightning-specification/2022-01-31-specification-call/2022-01-31T00:00:00+00:00https://btctranscripts.com/tags/client-side-validation/2022-01-26T00:00:00+00:00https://btctranscripts.com/bitcoinology/2022-01-26-igor-korsakov-cool-ln-developments/2022-01-26T00:00:00+00:00https://btctranscripts.com/speakers/igor-korsakov/2022-01-26T00:00:00+00:00https://btctranscripts.com/c-lightning/2022-01-24-developer-call/2022-01-24T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-01-17-jeremy-rubin/2022-01-17T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-01-11-salvatore-ingala/2022-01-11T00:00:00+00:00https://btctranscripts.com/c-lightning/2022-01-10-developer-call/2022-01-10T00:00:00+00:00https://btctranscripts.com/lightning-specification/2022-01-03-specification-call/2022-01-03T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-12-17-eric-sirion/2021-12-17T00:00:00+00:00https://btctranscripts.com/bitcoinology/what-is-lightning-network/2021-12-15T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-12-13-developer-call/2021-12-13T00:00:00+00:00https://btctranscripts.com/lightning-specification/2021-12-06-specification-call/2021-12-06T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-11-29-developer-call/2021-11-29T00:00:00+00:00https://btctranscripts.com/speakers/alex-bosworth/2021-11-27T00:00:00+00:00https://btctranscripts.com/speakers/graham-krizek/2021-11-27T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-11-27-lisa-neigut-alex-bosworth-graham-krizek-and-matt-corallo/2021-11-27T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/death-to-the-mempool-long-live-the-mempool/2021-11-26T00:00:00+00:00https://btctranscripts.com/tags/cpfp/2021-11-24T00:00:00+00:00https://btctranscripts.com/speakers/john-newbery/2021-11-24T00:00:00+00:00https://btctranscripts.com/brink/the-bitcoin-development-podcast/mempool-ancestors-and-descendants/2021-11-24T00:00:00+00:00https://btctranscripts.com/lightning-specification/2021-11-22-specification-call/2021-11-22T00:00:00+00:00https://btctranscripts.com/adopting-bitcoin/2021/2021-11-17T00:00:00+00:00https://btctranscripts.com/adopting-bitcoin/2021/2021-11-17-bastien-teinturier-privacy-on-lightning/2021-11-17T00:00:00+00:00https://btctranscripts.com/adopting-bitcoin/2021/onboarding-bitcoin-and-lightning-developers/2021-11-16T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-11-16-pieter-wuille-andrew-poelstra-andrew-chow-mark-erhardt/2021-11-16T00:00:00+00:00https://btctranscripts.com/adopting-bitcoin/2021/2021-11-16-gloria-zhao-transaction-relay-policy/2021-11-16T00:00:00+00:00https://btctranscripts.com/speakers/will-clark/2021-11-16T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-11-15-developer-call/2021-11-15T00:00:00+00:00https://btctranscripts.com/speakers/nicholas-gregory/2021-11-12T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-11-12-nicholas-gregory/2021-11-12T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-was-under-attack/2021-11-11T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/miniscript/2021-11-11T00:00:00+00:00https://btctranscripts.com/brink/the-bitcoin-development-podcast/mempool-policy/2021-11-10T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-11-07-t-bast/2021-11-07T00:00:00+00:00https://btctranscripts.com/tabconf/2021/schnorr-signatures-jimmy-song/2021-11-07T00:00:00+00:00https://btctranscripts.com/tabconf/2021/2021-11-07T00:00:00+00:00https://btctranscripts.com/tabconf/2021/liquidity-advertisements-niftynei-tabconf-2021/2021-11-06T00:00:00+00:00https://btctranscripts.com/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/2021-11-06T00:00:00+00:00https://btctranscripts.com/tabconf/2021/coin-selection-algorithms/2021-11-05T00:00:00+00:00https://btctranscripts.com/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/2021-11-05T00:00:00+00:00https://btctranscripts.com/tabconf/2021/lightning-dev-kit-making-lightning-more-accessible-to-developers-matt-corallo-tabconf-2021/2021-11-05T00:00:00+00:00https://btctranscripts.com/tabconf/2021/scaling-with-lnd/2021-11-05T00:00:00+00:00https://btctranscripts.com/tabconf/2021/bitcoin-mining-firmware-and-stratum-v2-rachel-rybarczyk-tabconf-2021/2021-11-04T00:00:00+00:00https://btctranscripts.com/speakers/rachel-rybarczyk/2021-11-04T00:00:00+00:00https://btctranscripts.com/speakers/calvin-kim/2021-11-02T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2021-11-02-socratic-seminar-assumeutxo/2021-11-02T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2021-11-02-socratic-seminar/2021-11-02T00:00:00+00:00https://btctranscripts.com/tags/utreexo/2021-11-02T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-11-01-developer-call/2021-11-01T00:00:00+00:00https://btctranscripts.com/speakers/k3tan/2021-10-27T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-10-27-k3tan-networking-for-bitcoiners/2021-10-27T00:00:00+00:00https://btctranscripts.com/speakers/amiti-uttarwar/2021-10-26T00:00:00+00:00https://btctranscripts.com/tags/erlay/2021-10-26T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/the-p2p-network-2/2021-10-26T00:00:00+00:00https://btctranscripts.com/speakers/dustin-trammell/2021-10-24T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-10-24-dustin-trammell/2021-10-24T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-10-18-developer-call/2021-10-18T00:00:00+00:00https://btctranscripts.com/tags/eclipse-attacks/2021-10-18T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/the-p2p-network/2021-10-18T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-10-04-developer-call/2021-10-04T00:00:00+00:00https://btctranscripts.com/speakers/philip-glazman/2021-10-02T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-10-02-philip-glazman/2021-10-02T00:00:00+00:00https://btctranscripts.com/speakers/anthony-potdevin/2021-09-29T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-09-29-thomas-jestopher-and-anthony-potdevin/2021-09-29T00:00:00+00:00https://btctranscripts.com/speakers/thomas-jestopher/2021-09-29T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-09-20-developer-call/2021-09-20T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/the-libsecp256k1-library/2021-09-18T00:00:00+00:00https://btctranscripts.com/tags/anonymity-networks/2021-09-13T00:00:00+00:00https://btctranscripts.com/tags/bech32/2021-09-13T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-v22-explained/2021-09-13T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-09-06-developer-call/2021-09-06T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-08-24-seedsigner/2021-08-24T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-08-23-developer-call/2021-08-23T00:00:00+00:00https://btctranscripts.com/iacr/2021-08-16T00:00:00+00:00https://btctranscripts.com/iacr/2021-08-16-jonas-nick-musig2/2021-08-16T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/basis-of-lightning-technology-12/2021-08-13T00:00:00+00:00https://btctranscripts.com/tags/dlc/2021-08-10T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2021-08-10-socratic-seminar-dlcs/2021-08-10T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-08-09-developer-call/2021-08-09T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-08-09-rusty-russell/2021-08-09T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2021-07-20-socratic-seminar-taproot-rollout/2021-07-20T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-07-17-andrew-chow/2021-07-17T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-07-13-nvk-bitcoin-security/2021-07-13T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2021-07-06-socratic-seminar/2021-07-06T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2021-06-01-socratic-seminar/2021-06-01T00:00:00+00:00https://btctranscripts.com/wasabi/podcast/2021-05-30-improving-lightning/2021-05-30T00:00:00+00:00https://btctranscripts.com/wasabi/podcast/2021-05-30T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/chaincode-decoded-blockchain/2021-05-27T00:00:00+00:00https://btctranscripts.com/speakers/alejandro-de-la-torre/2021-05-24T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-05-24-alejandro-de-la-torre/2021-05-24T00:00:00+00:00https://btctranscripts.com/speakers/anthony-ronning/2021-05-21T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-05-21-anthony-ronning-bitcoin-lightning-privacy/2021-05-21T00:00:00+00:00https://btctranscripts.com/tags/cves/2021-05-21T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/replace-by-fee-bug/2021-05-21T00:00:00+00:00https://btctranscripts.com/speakers/pavel-moravec/2021-05-13T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-05-13-pavel-moravec/2021-05-13T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/2021-05-12-matt-corallo-ldk/2021-05-12T00:00:00+00:00https://btctranscripts.com/speakers/pete-rizzo/2021-04-28T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-04-28-pete-rizzo/2021-04-28T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/chaincode-decoded-mempool/2021-04-26T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/taproot-activation-update/2021-04-23T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/chaincode-decoded-bech32m/2021-04-16T00:00:00+00:00https://btctranscripts.com/tags/minisketch/2021-04-08T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/scaling-bitcoin-with-the-erlay-protocol/2021-04-08T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2021/2021-04-03-defending-against-99-attack/2021-04-03T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2021/2021-04-03T00:00:00+00:00https://btctranscripts.com/categories/hackathon/2021-03-27T00:00:00+00:00https://btctranscripts.com/lightning-hack-day/2021-03-27T00:00:00+00:00https://btctranscripts.com/lightning-hack-day/2021-03-27-alex-bosworth-lightning-routing/2021-03-27T00:00:00+00:00https://btctranscripts.com/tags/routing/2021-03-27T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/explaining-rgb-tokens/2021-03-26T00:00:00+00:00https://btctranscripts.com/blockstream-webinars/2021-03-25T00:00:00+00:00https://btctranscripts.com/blockstream-webinars/dual-funded-channels/2021-03-25T00:00:00+00:00https://btctranscripts.com/categories/workshop/2021-03-25T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-03-24-craig-raw-bitcoin-multi-sig/2021-03-24T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/discrete-log-contract-specification/2021-03-23T00:00:00+00:00https://btctranscripts.com/speakers/nadav-kohen/2021-03-23T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/explaining-segregated-witness/2021-03-18T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-03-17-luke-dashjr-taproot-activation/2021-03-17T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-03-17-luke-dashjr/2021-03-17T00:00:00+00:00https://btctranscripts.com/speakers/luke-dashjr/2021-03-17T00:00:00+00:00https://btctranscripts.com/speakers/adam-ficsor/2021-03-16T00:00:00+00:00https://btctranscripts.com/speakers/caleb-delisle/2021-03-16T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/cjdns/2021-03-16T00:00:00+00:00https://btctranscripts.com/speakers/lucas-ontivero/2021-03-16T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/taproot-activation-speedy-trial/2021-03-12T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/hardware-wallet-integration-in-bitcoin-core-and-hwi/2021-03-05T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-03-04-matt-corallo/2021-03-04T00:00:00+00:00https://btctranscripts.com/speakers/gleb-naumenko/2021-02-26T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/taproot-activation-lockinontimeout/2021-02-26T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-02-26-gleb-naumenko/2021-02-26T00:00:00+00:00https://btctranscripts.com/speakers/anthony-towns/2021-02-23T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2021-02-23-socratic-seminar/2021-02-23T00:00:00+00:00https://btctranscripts.com/munich-meetup/2021-02-21T00:00:00+00:00https://btctranscripts.com/munich-meetup/2021-02-21-daniela-brozzoni-stratumv2/2021-02-21T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/explaining-bitcoin-addresses/2021-02-19T00:00:00+00:00https://btctranscripts.com/tftc-podcast/2021-02-11T00:00:00+00:00https://btctranscripts.com/tftc-podcast/2021-02-11-matt-corallo-taproot-activation/2021-02-11T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/replace-by-fee-rbf/2021-02-05T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/compact-client-side-filtering/2021-01-29T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-v0-21/2021-01-21T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-01-21-wiz-and-simon-mempool/2021-01-21T00:00:00+00:00https://btctranscripts.com/speakers/simon/2021-01-21T00:00:00+00:00https://btctranscripts.com/speakers/wiz/2021-01-21T00:00:00+00:00https://btctranscripts.com/speakers/jonas-schnelli/2021-01-14T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-01-14-jonas-schnelli-maintaining-bitcoin-core/2021-01-14T00:00:00+00:00https://btctranscripts.com/realworldcrypto/2021/2021-01-12-tim-ruffing-musig2/2021-01-12T00:00:00+00:00https://btctranscripts.com/realworldcrypto/2021-01-12T00:00:00+00:00https://btctranscripts.com/realworldcrypto/2021/2021-01-12T00:00:00+00:00https://btctranscripts.com/tags/reproducible-builds/2020-12-18T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/why-open-source-matters-for-bitcoin/2020-12-18T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/modularizing-the-bitcoin-consensus-engine/2020-12-15T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/rsk-federated-sidechains-and-powpeg/2020-12-11T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-11-30-carl-dong-reproducible-builds/2020-11-30T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2020-11-30T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2020-11-30-socratic-seminar-20/2020-11-30T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2020-11-25-greg-maxwell-replacing-pgp/2020-11-25T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/erebus-attacks-and-how-to-stop-them-with-asmap/2020-11-19T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-eclipse-attacks-and-how-to-stop-them/2020-11-13T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-11-09-enterprise-walletsutxo-management/2020-11-09T00:00:00+00:00https://btctranscripts.com/tags/payment-batching/2020-11-09T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/open-timestamps-leveraging-bitcoin-s-security-for-all-data/2020-11-05T00:00:00+00:00https://btctranscripts.com/tags/proof-systems/2020-11-05T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2020-11-05-greg-maxwell-yubikey-security/2020-11-05T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2020-11-01-greg-maxwell-hardware-wallets-altcoins/2020-11-01T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/what-is-utreexo/2020-10-30T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-10-27-jonas-nick-tim-ruffing-musig2/2020-10-27T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2020-10-26-greg-maxwell-bitcoin-core-github/2020-10-26T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/sync-bitcoin-faster-assume-utxo/2020-10-23T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-v21-supports-tor-v3/2020-10-15T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-10-15-nadav-kohen-bitcoin-dlcs/2020-10-15T00:00:00+00:00https://btctranscripts.com/speakers/barnab%C3%A1s-b%C3%A1gyi/2020-10-09T00:00:00+00:00https://btctranscripts.com/cppcon/2020-10-09T00:00:00+00:00https://btctranscripts.com/cppcon/2020/2020-10-09T00:00:00+00:00https://btctranscripts.com/cppcon/2020/2020-10-09-barnabas-bagyi-fuzzing-class-interfaces/2020-10-09T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/accounts-for-bitcoin-easypaysy/2020-10-02T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-10-02-gloria-zhao-bitcoin-core/2020-10-02T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-09-28-michael-flaxman-security-guide/2020-09-28T00:00:00+00:00https://btctranscripts.com/speakers/michael-flaxman/2020-09-28T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/explaining-signet/2020-09-25T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-09-15-steve-lee-of-square-crypto/2020-09-15T00:00:00+00:00https://btctranscripts.com/speakers/ben-kaufman/2020-08-28T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-08-28-stepan-snigirev-and-ben-kaufman/2020-08-28T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2020-08-27-greg-maxwell-checkmultisig-bug/2020-08-27T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2020-08-25-socratic-seminar/2020-08-25T00:00:00+00:00https://btctranscripts.com/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/2020-08-20T00:00:00+00:00https://btctranscripts.com/bitcoin-design/misc/2020-08-20T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-08-19-socratic-seminar-signet/2020-08-19T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-08-13-christian-decker-lightning-topics/2020-08-13T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-08-13-christian-decker/2020-08-13T00:00:00+00:00https://btctranscripts.com/tags/multipath-payments/2020-08-13T00:00:00+00:00https://btctranscripts.com/tags/trampoline-payments/2020-08-13T00:00:00+00:00https://btctranscripts.com/chicago-bitdevs/2020-08-12T00:00:00+00:00https://btctranscripts.com/chicago-bitdevs/2020-08-12-socratic-seminar/2020-08-12T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-08-09-thomas-voegtlin-ghost43-electrum/2020-08-09T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-08-09-thomas-voegtlin-and-ghost43/2020-08-09T00:00:00+00:00https://btctranscripts.com/speakers/ghost43/2020-08-09T00:00:00+00:00https://btctranscripts.com/speakers/thomas-voegtlin/2020-08-09T00:00:00+00:00https://btctranscripts.com/speakers/eric-lombrozo/2020-08-03T00:00:00+00:00https://btctranscripts.com/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/2020-08-03T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/what-is-miniscript/2020-07-31T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-07-26-nix-bitcoin/2020-07-26T00:00:00+00:00https://btctranscripts.com/speakers/nixbitcoindev/2020-07-26T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/breaking-down-taproot-activation-options/2020-07-25T00:00:00+00:00https://btctranscripts.com/speakers/elichai-turkel/2020-07-21T00:00:00+00:00https://btctranscripts.com/tags/mast/2020-07-21T00:00:00+00:00https://btctranscripts.com/speakers/openoms/2020-07-21T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-07-21-rootzoll-and-openoms-raspiblitz/2020-07-21T00:00:00+00:00https://btctranscripts.com/speakers/rootzoll/2020-07-21T00:00:00+00:00https://btctranscripts.com/speakers/russell-oconnor/2020-07-21T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2020-07-21-socratic-seminar/2020-07-21T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-07-21-socratic-seminar-bip-taproot/2020-07-21T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2020-07-20-greg-maxwell-taproot-pace/2020-07-20T00:00:00+00:00https://btctranscripts.com/vr-bitcoin/2020-07-11-jeremy-rubin-sapio-101/2020-07-11T00:00:00+00:00https://btctranscripts.com/vr-bitcoin/2020-07-11T00:00:00+00:00https://btctranscripts.com/misc/2020-07-10-what-am-i-working-on/2020-07-10T00:00:00+00:00https://btctranscripts.com/chicago-bitdevs/2020-07-08-socratic-seminar/2020-07-08T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2020-07-05-greg-maxwell-useful-proof-of-work/2020-07-05T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-06-30-john-cantrell-bruteforcing-bitcoin-seeds/2020-06-30T00:00:00+00:00https://btctranscripts.com/tags/coinswap/2020-06-23T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2020-06-23-socratic-seminar/2020-06-23T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-06-23-socratic-seminar-coinswap/2020-06-23T00:00:00+00:00https://btctranscripts.com/lightning-hack-day/2020-06-21-rootzoll-openoms-raspiblitz/2020-06-21T00:00:00+00:00https://btctranscripts.com/la-bitdevs/2020-06-18T00:00:00+00:00https://btctranscripts.com/la-bitdevs/2020-06-18-luke-dashjr-segwit-psbt-vulnerability/2020-06-18T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-06-17-tim-ruffing-schnorr-multisig/2020-06-17T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-06-16-socratic-seminar-bip-schnorr/2020-06-16T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/2020-06-15-coinswap/2020-06-15T00:00:00+00:00https://btctranscripts.com/speakers/ergo/2020-06-09T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-06-09-ergo-unwinding-bitcoin/2020-06-09T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2020-06-08-greg-maxwell-liquid-censorship-resistance/2020-06-08T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-05-27-bitcoin-coin-selection/2020-05-27T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-05-26-kevin-loaec-antoine-poinsot-revault/2020-05-26T00:00:00+00:00https://btctranscripts.com/speakers/sergi-delgado-segura/2020-05-24T00:00:00+00:00https://btctranscripts.com/lightning-hack-day/2020-05-24-sergi-delgado-watchtowers/2020-05-24T00:00:00+00:00https://btctranscripts.com/la-bitdevs/2020-05-21-alekos-filini-magical-bitcoin/2020-05-21T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2020-05-19-socratic-seminar/2020-05-19T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-05-19-socratic-seminar-vaults/2020-05-19T00:00:00+00:00https://btctranscripts.com/vr-bitcoin/2020-05-16-oliver-gugger-lsat/2020-05-16T00:00:00+00:00https://btctranscripts.com/ruben-somsen/2020-05-11T00:00:00+00:00https://btctranscripts.com/ruben-somsen/2020-05-11-ruben-somsen-succinct-atomic-swap/2020-05-11T00:00:00+00:00https://btctranscripts.com/lightning-hack-day/2020-05-09-sergei-tikhomirov-lightning-privacy/2020-05-09T00:00:00+00:00https://btctranscripts.com/tags/payjoin/2020-05-05T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-05-05-socratic-seminar-payjoins/2020-05-05T00:00:00+00:00https://btctranscripts.com/lightning-hack-day/2020-05-03-christian-decker-lightning-backups/2020-05-03T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-04-29-kalle-rosenbaum-grokking-bitcoin/2020-04-29T00:00:00+00:00https://btctranscripts.com/speakers/kalle-rosenbaum/2020-04-29T00:00:00+00:00https://btctranscripts.com/honey-badger-diaries/2020-04-24T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-04-24-lisa-neigut-lighting-network-channel/2020-04-24T00:00:00+00:00https://btctranscripts.com/honey-badger-diaries/2020-04-24-kevin-loaec-antoine-poinsot-revault/2020-04-24T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-04-22-socratic-seminar/2020-04-22T00:00:00+00:00https://btctranscripts.com/speakers/chris-belcher/2020-04-21T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-04-21-chris-belcher/2020-04-21T00:00:00+00:00https://btctranscripts.com/speakers/joost-jager/2020-04-18T00:00:00+00:00https://btctranscripts.com/vr-bitcoin/2020-04-18-laolu-joost-oliver-lnd0.10/2020-04-18T00:00:00+00:00https://btctranscripts.com/speakers/olaoluwa-osuntokun/2020-04-18T00:00:00+00:00https://btctranscripts.com/la-bitdevs/2020-04-16-amiti-uttarwar-attacking-bitcoin-core/2020-04-16T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/anonymous-credentials/2020-04-14T00:00:00+00:00https://btctranscripts.com/tags/bls-signatures/2020-04-14T00:00:00+00:00https://btctranscripts.com/speakers/adam-back/2020-04-08T00:00:00+00:00https://btctranscripts.com/speakers/andreas-antonopoulos/2020-04-08T00:00:00+00:00https://btctranscripts.com/andreas-antonopoulos/2020-04-08T00:00:00+00:00https://btctranscripts.com/misc/2020-04-08-john-newbery-contracts-in-bitcoin/2020-04-08T00:00:00+00:00https://btctranscripts.com/blockstream-webinars/2020-04-08-adam-back-simplicity/2020-04-08T00:00:00+00:00https://btctranscripts.com/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/2020-04-08T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-04-07-gleb-naumenko-erlay/2020-04-07T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/payment-points/2020-03-30T00:00:00+00:00https://btctranscripts.com/tags/compact-block-relay/2020-03-12T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-03-12-matt-corallo-compact-blocks-fibre/2020-03-12T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2020/2020-03-07T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2020/2020-03-07-andrew-poelstra-taproot/2020-03-07T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/utxos-chaincode-decoded/2020-02-26T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2020-02-24T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/2020-02-24T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020/atomic-multi-channel-updates/2020-02-21T00:00:00+00:00https://btctranscripts.com/speakers/matteo-maffei/2020-02-21T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020-02-21T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020/2020-02-21T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020/beyond-hashrate-majority-attacks/2020-02-20T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020/competitive-equilibria-staking-lending/2020-02-20T00:00:00+00:00https://btctranscripts.com/speakers/david-tse/2020-02-20T00:00:00+00:00https://btctranscripts.com/tags/ethereum/2020-02-20T00:00:00+00:00https://btctranscripts.com/tags/proof-of-stake/2020-02-20T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020/proof-of-stake/2020-02-20T00:00:00+00:00https://btctranscripts.com/speakers/tarun-chitra/2020-02-20T00:00:00+00:00https://btctranscripts.com/speakers/vitalik-buterin/2020-02-20T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/2020-02-19T00:00:00+00:00https://btctranscripts.com/speakers/bram-cohen/2020-02-19T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/consensus-protocol-risks-and-vulnerabilities/2020-02-19T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-02-19T00:00:00+00:00https://btctranscripts.com/speakers/dan-boneh/2020-02-19T00:00:00+00:00https://btctranscripts.com/speakers/florian-tramer/2020-02-19T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020/linking-anonymous-transactions/2020-02-19T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020/welcome-remarks/2020-02-19T00:00:00+00:00https://btctranscripts.com/speakers/byron-gibson/2020-02-18T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/communication-with-regulators/2020-02-18T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/opening-remarks/2020-02-18T00:00:00+00:00https://btctranscripts.com/tags/regulation/2020-02-18T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/regulatory-pain-points/2020-02-18T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/risk-overview/2020-02-18T00:00:00+00:00https://btctranscripts.com/speakers/ryosuke-ushida/2020-02-18T00:00:00+00:00https://btctranscripts.com/speakers/shinichiro-matsuo/2020-02-18T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/stress-testing-decentralized-finance/2020-02-18T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/technological-stability/2020-02-18T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-02-16-waxwing-or-adam-gibson/2020-02-16T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/assumeutxo/2020-02-13T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/coinshuffle-plusplus-part-2/2020-02-11T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/2020-02-07T00:00:00+00:00https://btctranscripts.com/speakers/kalle-alm/2020-02-07T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/2020-02-07T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/2020-02-07T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/2020-02-06T00:00:00+00:00https://btctranscripts.com/speakers/antoine-riard/2020-02-06T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/2020-02-06T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/2020-02-06T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-kalle-alm-signet-integration/2020-02-06T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-02-05-andrew-chow-hardware-wallets/2020-02-05T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/coinshuffle-plusplus-part-1/2020-02-04T00:00:00+00:00https://btctranscripts.com/speakers/james-chiang/2020-02-04T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-02-04-andrew-poelstra-miniscript/2020-02-04T00:00:00+00:00https://btctranscripts.com/speakers/raphael/2020-02-04T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-02-04-james-chiang-trace-net/2020-02-04T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-02-11-jeremy-rubin-ctv/2020-01-30T00:00:00+00:00https://btctranscripts.com/tags/op_checktemplateverify/2020-01-30T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-01-28-pieter-wuille-part1/2020-01-28T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-01-28-pieter-wuille-part2/2020-01-28T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/2020-01-21T00:00:00+00:00https://btctranscripts.com/speakers/adam-fiscor/2020-01-20T00:00:00+00:00https://btctranscripts.com/speakers/aviv-milner/2020-01-20T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/coinshuffle/2020-01-20T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/snicker/2020-01-13T00:00:00+00:00https://btctranscripts.com/speakers/felix-maurer/2020-01-06T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/knapsack-mixing/2020-01-06T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-01-06-andreas-antonopoulos/2020-01-06T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-12-27-aj-towns-schnorr-taproot/2019-12-27T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-12-27-aj-townsschnorr-taproot-tapscript-bips/2019-12-27T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2019-12-16-bip-taproot-bip-tapscript/2019-12-16T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-12-16-rusty-russelllightning-multi-part-payments/2019-12-16T00:00:00+00:00https://btctranscripts.com/speakers/jan-%C4%8Dapek/2019-11-27T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-11-27-jan-capekstratum-v2/2019-11-27T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/2019-11-19T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-11-16-thomas-voegtlin-electrum-wallet/2019-11-16T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-11-13-jon-atack/2019-11-13T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2019-11-13-gleb-naumenko-p2p-erlay/2019-11-13T00:00:00+00:00https://btctranscripts.com/speakers/allen-piscitello/2019-11-08T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-11-08-allen-piscitellosidechains/2019-11-08T00:00:00+00:00https://btctranscripts.com/speakers/jack-mallers/2019-10-29T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-10-29-jack-mallers/2019-10-29T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-10-24-alex-bosworth-submarine-swaps/2019-10-24T00:00:00+00:00https://btctranscripts.com/lightning-conference/2019-10-20T00:00:00+00:00https://btctranscripts.com/lightning-conference/2019/2019-10-20T00:00:00+00:00https://btctranscripts.com/lightning-conference/2019/2019-10-20-nadav-kohen-payment-points/2019-10-20T00:00:00+00:00https://btctranscripts.com/lightning-conference/2019/2019-10-20-antoine-riard-rust-lightning/2019-10-20T00:00:00+00:00https://btctranscripts.com/lightning-conference/2019/2019-10-20-bastien-teinturier-trampoline-routing/2019-10-20T00:00:00+00:00https://btctranscripts.com/lightning-conference/2019/2019-10-19-rusty-russell-offers/2019-10-19T00:00:00+00:00https://btctranscripts.com/lightning-conference/2019/2019-10-19-chris-stewart-private-key-management/2019-10-19T00:00:00+00:00https://btctranscripts.com/lightning-conference/2019/lightning-payment-pathfinding-for-reliability/2019-10-18T00:00:00+00:00https://btctranscripts.com/tags/pathfinding/2019-10-18T00:00:00+00:00https://btctranscripts.com/cryptoeconomic-systems/2019-10-15T00:00:00+00:00https://btctranscripts.com/cryptoeconomic-systems/2019/2019-10-15T00:00:00+00:00https://btctranscripts.com/cryptoeconomic-systems/2019/2019-10-15-russell-oconnor-simplicity/2019-10-15T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/2019-10-14T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-10-09T00:00:00+00:00https://btctranscripts.com/tags/dandelion/2019-10-09T00:00:00+00:00https://btctranscripts.com/speakers/giulia-fanti/2019-10-09T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-10-09-giulia-fanti-p2p-privacy-attacks/2019-10-09T00:00:00+00:00https://btctranscripts.com/categories/residency/2019-10-09T00:00:00+00:00https://btctranscripts.com/speakers/bryan-bishop/2019-10-06T00:00:00+00:00https://btctranscripts.com/cryptoeconomic-systems/2019/knowledge-aggregation-and-propagation/2019-10-06T00:00:00+00:00https://btctranscripts.com/cryptoeconomic-systems/2019/threshold-schnorr-signatures/2019-10-06T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2019-10-04-majority-miner-attack/2019-10-04T00:00:00+00:00https://btctranscripts.com/bitcoinops/2019-09-27-schnorr-taproot-workshop/2019-09-27T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-09-22-bryan-bishop/2019-09-22T00:00:00+00:00https://btctranscripts.com/baltic-honeybadger/2019-09-14T00:00:00+00:00https://btctranscripts.com/baltic-honeybadger/2019/2019-09-14T00:00:00+00:00https://btctranscripts.com/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/2019-09-14T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/anonymous-atomic-locks/2019-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/atomic-multi-channel-updates/2019-09-12T00:00:00+00:00https://btctranscripts.com/speakers/georgios-konstantopoulos/2019-09-12T00:00:00+00:00https://btctranscripts.com/speakers/kanta-matsuura/2019-09-12T00:00:00+00:00https://btctranscripts.com/speakers/pedro-moreno-sanchez/2019-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/plasma-cash/2019-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/proof-of-verification-for-proof-of-work/2019-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/payment-channel-recovery-with-seeds/2019-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/2019-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/survey-of-progress-in-zero-knowledge-proofs-towards-trustless-snarks/2019-09-11T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/private-information-retrieval/2019-09-11T00:00:00+00:00https://btctranscripts.com/speakers/ben-fisch/2019-09-11T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/bip-securethebag/2019-09-11T00:00:00+00:00https://btctranscripts.com/tags/contract-protocols/2019-09-11T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/bitml/2019-09-11T00:00:00+00:00https://btctranscripts.com/tags/lightweight-client/2019-09-11T00:00:00+00:00https://btctranscripts.com/speakers/oleg-andreev/2019-09-11T00:00:00+00:00https://btctranscripts.com/speakers/stefano-lande/2019-09-11T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/zkvm/2019-09-11T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/lightning-network-layer-by-layer/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/bitcoin-core-functional-test-framework/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/blockchain-design-patterns/2019-09-10T00:00:00+00:00https://btctranscripts.com/speakers/carla-kirk-cohen/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/bosminer/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/debugging-bitcoin/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/hardware-wallet-design-best-practices/2019-09-10T00:00:00+00:00https://btctranscripts.com/speakers/james-hilliard/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/libbitcoin/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/lightning-network-sphinx-and-onion-routing/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/lightning-network-topology/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/mining-firmware-security/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/signet/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/statechains/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/accumulators/2019-09-09T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/bitcoin-data-structures/2019-09-09T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/taproot/2019-09-09T00:00:00+00:00https://btctranscripts.com/needs/2019-09-09T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/privacy-concepts/2019-09-09T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/rebroadcasting/2019-09-09T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/2019-09-09-carla-kirk-cohen-routing-problems-and-solutions/2019-09-09T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-09-09-amiti-uttarwar-transaction-rebroadcast/2019-09-09T00:00:00+00:00https://btctranscripts.com/needs/transcript/2019-09-09T00:00:00+00:00https://btctranscripts.com/speakers/udi-wertheimer/2019-09-09T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/wallet-architecture/2019-09-09T00:00:00+00:00https://btctranscripts.com/speakers/aviv-zohar/2019-09-08T00:00:00+00:00https://btctranscripts.com/decentralized-financial-architecture-workshop/custody-group/2019-09-08T00:00:00+00:00https://btctranscripts.com/decentralized-financial-architecture-workshop/2019-09-08T00:00:00+00:00https://btctranscripts.com/decentralized-financial-architecture-workshop/introduction/2019-09-08T00:00:00+00:00https://btctranscripts.com/blockstream-webinars/2019-09-04-christian-decker-c-lightning-questions/2019-09-04T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-08-22-fabian-jahr-debugging/2019-08-22T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/2019-08-22T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-08-22-james-chiang-taproot-policy/2019-08-22T00:00:00+00:00https://btctranscripts.com/dallas-bitcoin-symposium/2019-08-16T00:00:00+00:00https://btctranscripts.com/speakers/dhruv-bansal/2019-08-16T00:00:00+00:00https://btctranscripts.com/speakers/gideon-powell/2019-08-16T00:00:00+00:00https://btctranscripts.com/dallas-bitcoin-symposium/intro/2019-08-16T00:00:00+00:00https://btctranscripts.com/speakers/marty-bent/2019-08-16T00:00:00+00:00https://btctranscripts.com/speakers/michael-goldstein/2019-08-16T00:00:00+00:00https://btctranscripts.com/speakers/parker-lewis/2019-08-16T00:00:00+00:00https://btctranscripts.com/dallas-bitcoin-symposium/q-a/2019-08-16T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-08-16-elichai-turkel-schnorr-signatures/2019-08-16T00:00:00+00:00https://btctranscripts.com/speakers/tuur-demeester/2019-08-16T00:00:00+00:00https://btctranscripts.com/speakers/joe-netti/2019-08-12T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-08-12-rusty-russell-joe-netti/2019-08-12T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-08-08-michael-flaxman/2019-08-08T00:00:00+00:00https://btctranscripts.com/misc/2019-08-07-jonathan-metzman-structured-fuzzing/2019-08-07T00:00:00+00:00https://btctranscripts.com/speakers/jonathan-metzman/2019-08-07T00:00:00+00:00https://btctranscripts.com/blockstream-webinars/2019-07-31-rusty-russell-getting-started-with-c-lightning/2019-07-31T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-07-31-roy-sheinfeld-lightning-network-services/2019-07-31T00:00:00+00:00https://btctranscripts.com/speakers/roy-sheinfeld/2019-07-31T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-07-31-roy-sheinfeld-stephan-livera/2019-07-31T00:00:00+00:00https://btctranscripts.com/speakers/britt-kelly/2019-07-25T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-07-25-britt-kelly-btcpayserver-documentation/2019-07-25T00:00:00+00:00https://btctranscripts.com/tags/submarine-swaps/2019-07-03T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2019-07-03-alex-bosworth-submarine-swaps/2019-07-03T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2019-06-29-hardware-wallets/2019-06-29T00:00:00+00:00https://btctranscripts.com/tags/channel-factory/2019-06-28T00:00:00+00:00https://btctranscripts.com/tags/multiparty-channel/2019-06-28T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-28-christian-decker-multiparty-channels/2019-06-28T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-28-christian-decker-rendezvous-routing/2019-06-28T00:00:00+00:00https://btctranscripts.com/speakers/fabrice-drouin/2019-06-26T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-26-fabrice-drouin-limitations-of-lightweight-clients/2019-06-26T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-26-rene-pickhardt-path-finding-lightning-network/2019-06-26T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-26-rene-pickhardt-splicing/2019-06-26T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-26-rene-pickhardt-update-layer/2019-06-26T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-fabrice-drouin-attack-vectors-of-lightning-network/2019-06-25T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/2019-06-25T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-alex-bosworth-mpp/2019-06-25T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-onion-routing-deep-dive/2019-06-25T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-fabrice-drouin-routing-failures/2019-06-25T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-24-fabrice-drouin-base-and-transport-layers-of-lightning-network/2019-06-24T00:00:00+00:00https://btctranscripts.com/speakers/conner-fromknecht/2019-06-24T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-06-24-conner-fromknecht-stephan-livera/2019-06-24T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-24-rene-pickhardt-multihop-in-lightning/2019-06-24T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-19-john-newbery-wallet-development/2019-06-19T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-18-james-obeirne-advanced-segwit/2019-06-18T00:00:00+00:00https://btctranscripts.com/tftc-podcast/2019-06-18-andrew-poelstra-tftc/2019-06-18T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-17-john-newbery-security-models/2019-06-17T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2019-06-13T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2019/2019-06-13T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2019/2019-06-09-joost-jager-hodl-invoices/2019-06-13T00:00:00+00:00https://btctranscripts.com/tags/hold-invoices/2019-06-13T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-12-ethan-heilman-network-partitioning-attacks/2019-06-12T00:00:00+00:00https://btctranscripts.com/speakers/ethan-heilman/2019-06-12T00:00:00+00:00https://btctranscripts.com/lets-talk-bitcoin-podcast/2019-06-09T00:00:00+00:00https://btctranscripts.com/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/2019-06-09T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2019/p2p-encryption/2019-06-08T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2019/2019-06-08-mempool-analysis-simulation/2019-06-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-assumeutxo/2019-06-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-statechains/2019-06-07T00:00:00+00:00https://btctranscripts.com/tags/channel-factories/2019-06-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-hardware-wallets/2019-06-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/2019-06-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/2019-06-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/2019-06-06T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-great-consensus-cleanup/2019-06-06T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/2019-06-06T00:00:00+00:00https://btctranscripts.com/speakers/michael-ford/2019-06-06T00:00:00+00:00https://btctranscripts.com/tags/op_checksigfromstack/2019-06-06T00:00:00+00:00https://btctranscripts.com/tags/p2c/2019-06-06T00:00:00+00:00https://btctranscripts.com/tags/quantum-resistance/2019-06-06T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2019/secure-protocols-bip-taproot/2019-06-06T00:00:00+00:00https://btctranscripts.com/tags/sighash_anyprevout/2019-06-06T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-taproot/2019-06-06T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-utreexo/2019-06-06T00:00:00+00:00https://btctranscripts.com/speakers/wladimir-van-der-laan/2019-06-06T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-code-review/2019-06-05T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/2019-06-05T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/2019-05-27T00:00:00+00:00https://btctranscripts.com/speakers/paul-sztorc/2019-05-27T00:00:00+00:00https://btctranscripts.com/what-bitcoin-did-podcast/2019-05-14-adam-back-bryan-bishop-block-reorgs/2019-05-14T00:00:00+00:00https://btctranscripts.com/what-bitcoin-did-podcast/2019-05-14T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/fork-dynamics/2019-05-12T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019-05-12T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/2019-05-12T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/crypto-in-cryptocurrency/2019-05-12T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/the-state-of-bitcoin-mining/2019-05-12T00:00:00+00:00https://btctranscripts.com/speakers/alexandra-moxin/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-satellite-network/2019-05-11T00:00:00+00:00https://btctranscripts.com/speakers/brandon-goodell/2019-05-11T00:00:00+00:00https://btctranscripts.com/speakers/elizabeth-stark/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/future-of-privacy-coins/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/htc/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/intro/2019-05-11T00:00:00+00:00https://btctranscripts.com/speakers/leigh-cuen/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/lightning-payments/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/ln-present-and-future-panel/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/mcf-episode/2019-05-11T00:00:00+00:00https://btctranscripts.com/noded-podcast/2019-05-11-andrew-poelstra-miniscript/2019-05-11T00:00:00+00:00https://btctranscripts.com/noded-podcast/2019-05-11T00:00:00+00:00https://btctranscripts.com/speakers/phil-chen/2019-05-11T00:00:00+00:00https://btctranscripts.com/speakers/stacy-herbert/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/state-of-lightning-network/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/submarine-swaps/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/taxonomy-of-ln-nodes/2019-05-11T00:00:00+00:00https://btctranscripts.com/speakers/will-obeirne/2019-05-11T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2019-05-02-conner-fromknecht-lnd-0.6-beta/2019-05-02T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2019-05-01-stepan-snigirev-hardware-wallet-attacks/2019-05-01T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-04-11-james-obeirne/2019-04-11T00:00:00+00:00https://btctranscripts.com/boltathon/2019-04-06T00:00:00+00:00https://btctranscripts.com/boltathon/2019-04-06-rusty-russell-json-interface/2019-04-06T00:00:00+00:00https://btctranscripts.com/boltathon/2019-04-06-alex-bosworth-major-limitations/2019-04-06T00:00:00+00:00https://btctranscripts.com/boltathon/2019-04-06-conner-fromknecht-watchtowers/2019-04-06T00:00:00+00:00https://btctranscripts.com/speakers/daniel-lehnberg/2019-03-26T00:00:00+00:00https://btctranscripts.com/grincon/2019/lehnberg/2019-03-26T00:00:00+00:00https://btctranscripts.com/grincon/2019-03-26T00:00:00+00:00https://btctranscripts.com/grincon/2019/2019-03-26T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2019-03-15-partially-signed-bitcoin-transactions/2019-03-15T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-03-14-christian-decker-channel-factories/2019-03-14T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-03-11-chris-belcher/2019-03-11T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2019/2019-03-09T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2019/signature-scheme-security-properties/2019-03-09T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020/attacking-evm-resource-metering/2019-02-19T00:00:00+00:00https://btctranscripts.com/speakers/benjamin-livshits/2019-02-19T00:00:00+00:00https://btctranscripts.com/speakers/daniel-perez/2019-02-19T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-02-11-jack-dorsey-elizabeth-stark/2019-02-11T00:00:00+00:00https://btctranscripts.com/speakers/jack-dorsey/2019-02-11T00:00:00+00:00https://btctranscripts.com/misc/2019-02-09-mcelrath-on-chain-defense-in-depth/2019-02-09T00:00:00+00:00https://btctranscripts.com/tags/op-checksigfromstack/2019-02-09T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2019/2019-02-07T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/2019-02-07T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2019-02-05-matt-corallo-betterhash/2019-02-05T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2019-02-04-threshold-signatures-and-accountability/2019-02-04T00:00:00+00:00https://btctranscripts.com/verifiable-delay-functions/vdf-day-2019/2019-02-03T00:00:00+00:00https://btctranscripts.com/verifiable-delay-functions/2019-02-03T00:00:00+00:00https://btctranscripts.com/verifiable-delay-functions/vdf-day-2019/dan-boneh/2019-02-03T00:00:00+00:00https://btctranscripts.com/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/2019-02-01T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2019/handel-practical-multisig-aggregation/2019-02-01T00:00:00+00:00https://btctranscripts.com/speakers/nicolas-gailly/2019-02-01T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2019/2019-02-01T00:00:00+00:00https://btctranscripts.com/speakers/alberto-sonnino/2019-01-30T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2019/building-mimblewimble-and-grin/2019-01-30T00:00:00+00:00https://btctranscripts.com/speakers/prastudy-fauzi/2019-01-30T00:00:00+00:00https://btctranscripts.com/speakers/quentin-le-sceller/2019-01-30T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2019/quisquis/2019-01-30T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2019/sybilquorum/2019-01-30T00:00:00+00:00https://btctranscripts.com/grincon/2019/dan-boneh/2019-01-28T00:00:00+00:00https://btctranscripts.com/speakers/taariq-lewis/2019-01-28T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-07-21-kukks-btcpayserver-architecture/2019-01-20T00:00:00+00:00https://btctranscripts.com/speakers/kukks/2019-01-20T00:00:00+00:00https://btctranscripts.com/speakers/nicolas-dorier/2019-01-20T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-01-20-nicolas-dorier-and-btcpayserver/2019-01-20T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2019/plasma-cash/2019-01-20T00:00:00+00:00https://btctranscripts.com/speakers/istvan-andras-seres/2019-01-15T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2019/lightning-network-topological-analysis/2019-01-15T00:00:00+00:00https://btctranscripts.com/misc/2019-01-05-unchained-capital-socratic-seminar/2019-01-05T00:00:00+00:00https://btctranscripts.com/noded-podcast/2018-12-14-laolu-conner-lnd/2018-12-14T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2018-12-11-laolu-osuntokun-stephan-livera/2018-12-11T00:00:00+00:00https://btctranscripts.com/speakers/tom-kirkpatrick/2018-12-01T00:00:00+00:00https://btctranscripts.com/lightning-hack-day/2018-12-01-tom-kirkpatrick-zap-wallet/2018-12-01T00:00:00+00:00https://btctranscripts.com/lightning-hack-day/2018-10-27-pierre-rochard-excel-in-lightning/2018-10-27T00:00:00+00:00https://btctranscripts.com/speakers/pierre-rochard/2018-10-27T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-26-pierre-rochard-lightning-excel-plugin/2018-10-26T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-24-christian-decker-c-lightning-api/2018-10-24T00:00:00+00:00https://btctranscripts.com/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/2018-10-23T00:00:00+00:00https://btctranscripts.com/tags/consensus-enforcement/2018-10-23T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-elaine-ou-bootstrapping-lightning-node/2018-10-22T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-alex-bosworth-building-lightning-applications/2018-10-22T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-alex-bosworth-channel-management/2018-10-22T00:00:00+00:00https://btctranscripts.com/speakers/elaine-ou/2018-10-22T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-christian-decker-history-of-lightning/2018-10-22T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-christian-decker-lightning-bitcoin/2018-10-22T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-alex-bosworth-lightning-protocol/2018-10-22T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-10T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-10-signmessage/2018-10-10T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-09-bitcoin-optech/2018-10-09T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-09-wallet-stuff/2018-10-09T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-efficient-p2p-transaction-relay/2018-10-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/2018-10-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-utxo-accumulators-and-utreexo/2018-10-08T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/rebalancing-lightning/2018-10-07T00:00:00+00:00https://btctranscripts.com/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/2018-10-07T00:00:00+00:00https://btctranscripts.com/speakers/sebasti%C3%A1n-reca/2018-10-07T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/atomic-swaps/2018-10-07T00:00:00+00:00https://btctranscripts.com/speakers/thomas-eizinger/2018-10-07T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/accumulators/2018-10-06T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/analysis-of-dust-in-utxo-based-cryptocurrencies/2018-10-06T00:00:00+00:00https://btctranscripts.com/speakers/benedikt-b%C3%BCnz/2018-10-06T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/compact-multi-signatures-for-smaller-blockchains/2018-10-06T00:00:00+00:00https://btctranscripts.com/speakers/giulio-malavolta/2018-10-06T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/how-much-privacy-is-enough/2018-10-06T00:00:00+00:00https://btctranscripts.com/speakers/ian-miers/2018-10-06T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/fraud-proofs/2018-10-06T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/scriptless-ecdsa/2018-10-06T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/multi-hop-locks/2018-10-06T00:00:00+00:00https://btctranscripts.com/speakers/mustafa-al-bassam/2018-10-06T00:00:00+00:00https://btctranscripts.com/tags/multisignature/2018-10-06T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/abstract-thinking-about-consensus-systems/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/bitcoin-toolchain-unit-testing-and-deterministic-builds/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/cross-chain-swaps/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/sidechains-and-federation-models/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/reorgs/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/python-bitcoinlib/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/lightning-network/2018-10-05T00:00:00+00:00https://btctranscripts.com/speakers/marco-falke/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/overview-bitcoin-core-architecture/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/protecting-yourself-and-your-business/2018-10-05T00:00:00+00:00https://btctranscripts.com/speakers/warren-togami/2018-10-05T00:00:00+00:00https://btctranscripts.com/speakers/akio-nakamura/2018-10-04T00:00:00+00:00https://btctranscripts.com/speakers/anton-yemelyanov/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/blind-signatures/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/block-structure-and-headers-utxos-merkle-trees-segwit-bip141/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/bulletproofs/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/coin-selection/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/digital-signatures/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/hierarchical-deterministic-wallets/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/introduction/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/p2pkh-p2wpkh-p2h-p2wsh/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/partially-signed-bitcoin-transactions-bip174/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/scripts-general-and-simple/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/sighash-noinput/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/taproot-and-graftroot/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/wallet-security/2018-10-04T00:00:00+00:00https://btctranscripts.com/noded-podcast/jnewbery-cve-2018-17144-bug/2018-09-26T00:00:00+00:00https://btctranscripts.com/baltic-honeybadger/2018/2018-09-23T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2018-09-23-greg-maxwell-bitcoin-core-testing/2018-09-23T00:00:00+00:00https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-custody/2018-09-23T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2018-09-23-greg-maxwell-multiple-implementations/2018-09-23T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2018-09-19-sjors-provoost-core-hardware-wallet/2018-09-19T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-09-18-alex-bosworth-incentive-problems-in-the-lightning-network/2018-09-18T00:00:00+00:00https://btctranscripts.com/andreas-antonopoulos/2018-08-30-andreas-antonopoulos-home-network-security/2018-08-30T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2018-08-17-richard-bondi-bitcoin-cli-regtest/2018-08-17T00:00:00+00:00https://btctranscripts.com/speakers/richard-bondi/2018-08-17T00:00:00+00:00https://btctranscripts.com/speakers/jim-posen/2018-07-24T00:00:00+00:00https://btctranscripts.com/misc/2018-07-24-la-blockchain-jim-posen-lightning-bolt-by-bolt/2018-07-24T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2018-07-23-john-light-bitcoin-full-nodes/2018-07-23T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2018-07-09-taproot-schnorr-signatures-and-sighash-noinput-oh-my/2018-07-09T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/lightning-routing-ants-pheromones/2018-07-04T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/bitcoin-assets/2018-07-04T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/bootstrapping-lightning-network/2018-07-04T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018-07-04T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/2018-07-04T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/crypto-castles/2018-07-04T00:00:00+00:00https://btctranscripts.com/speakers/eric-voskuil/2018-07-04T00:00:00+00:00https://btctranscripts.com/speakers/giacomo-zucco/2018-07-04T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/libbitcoin/2018-07-04T00:00:00+00:00https://btctranscripts.com/speakers/ricardo-perez-marco/2018-07-04T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/anonymous-bitcoin/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/blind-signatures-and-scriptless-scripts/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/coinjoinxt/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/binary-transparency/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/current-and-future-state-of-wallets/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/dandelion/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/btcpay/2018-07-03T00:00:00+00:00https://btctranscripts.com/speakers/lawrence-nahum/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/single-use-seals/2018-07-03T00:00:00+00:00https://btctranscripts.com/speakers/thomas-kerin/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/tooling/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/working-on-scripts/2018-07-03T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2018-06-12-adam-gibson-unfairly-linear-signatures/2018-06-12T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2019/bitcoin-build-system/2018-06-08T00:00:00+00:00https://btctranscripts.com/layer2-summit/2018-05-25T00:00:00+00:00https://btctranscripts.com/layer2-summit/2018/2018-05-25T00:00:00+00:00https://btctranscripts.com/layer2-summit/2018/scriptless-scripts/2018-05-25T00:00:00+00:00https://btctranscripts.com/layer2-summit/2018/lightning-overview/2018-04-25T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2018-04-23-jeremy-rubin-bitcoin-core/2018-04-23T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2018-04-20-laolu-osuntokun-exploring-lnd0.4/2018-04-20T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/2018-03-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/2018-03-06T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/2018-03-06T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/2018-03-05T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/2018-03-05T00:00:00+00:00https://btctranscripts.com/speakers/ron-paul/2018-02-06T00:00:00+00:00https://btctranscripts.com/satoshi-roundtable/sr-004/ron-paul/2018-02-06T00:00:00+00:00https://btctranscripts.com/satoshi-roundtable/2018-02-06T00:00:00+00:00https://btctranscripts.com/satoshi-roundtable/sr-004/2018-02-06T00:00:00+00:00https://btctranscripts.com/misc/2018-02-02-andrew-poelstra-bulletproofs/2018-02-02T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018-01-31T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/2018-01-31T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/proofs-of-space/2018-01-31T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/schnorr-signatures-for-bitcoin-challenges-opportunities/2018-01-31T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/hardening-lightning/2018-01-30T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/2018-01-25-russell-oconnor-simplicity/2018-01-25T00:00:00+00:00https://btctranscripts.com/speakers/christopher-allen/2018-01-24T00:00:00+00:00https://btctranscripts.com/misc/2018-01-24-rusty-russell-future-bitcoin-tech-directions/2018-01-24T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/2018-01-24-christopher-allen-smart-signatures/2018-01-24T00:00:00+00:00https://btctranscripts.com/realworldcrypto/2018/mimblewimble-and-scriptless-scripts/2018-01-11T00:00:00+00:00https://btctranscripts.com/realworldcrypto/2018/2018-01-11T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2017-12-22-bech32-design/2017-12-22T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2017-11-27-gmaxwell-advances-in-block-propagation/2017-11-27T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/how-to-charge-lightning/2017-11-05T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/incentives-tradeoffs-transaction-selection-in-dag-based-protocols/2017-11-05T00:00:00+00:00https://btctranscripts.com/speakers/joi-ito/2017-11-05T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/joi-ito/2017-11-05T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/microchains/2017-11-05T00:00:00+00:00https://btctranscripts.com/speakers/nick-szabo/2017-11-05T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/weak-signal-radio-communications-for-bitcoin-network-resilience/2017-11-05T00:00:00+00:00https://btctranscripts.com/speakers/yonatan-sompolinsky/2017-11-05T00:00:00+00:00https://btctranscripts.com/speakers/andrew-stone/2017-11-04T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/bitcoin-script-v2.0-and-strengthened-payment-channels/2017-11-04T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/blocksci-platform/2017-11-04T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/bolt-anonymous-payment-channels-for-decentralized-currencies/2017-11-04T00:00:00+00:00https://btctranscripts.com/speakers/harry-kalodner/2017-11-04T00:00:00+00:00https://btctranscripts.com/speakers/johnson-lau/2017-11-04T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/measuring-network-maximum-sustained-transaction-throughput/2017-11-04T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/valueshuffle-mixing-confidential-transactions/2017-11-04T00:00:00+00:00https://btctranscripts.com/cppcon/2017/2017-10-11T00:00:00+00:00https://btctranscripts.com/cppcon/2017/2017-10-11-kostya-serebryany-fuzzing/2017-10-11T00:00:00+00:00https://btctranscripts.com/speakers/kostya-serebryany/2017-10-11T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/2017-09-10T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/changing-consensus-rules-without-breaking-bitcoin/2017-09-10T00:00:00+00:00https://btctranscripts.com/speakers/christopher-jeffrey/2017-09-10T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/2017-09-10-christopher-jeffrey-consensus-pitfalls/2017-09-10T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/interview-adam-back-elizabeth-stark/2017-09-10T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/solar-powered-space-pirates/2017-09-10T00:00:00+00:00https://btctranscripts.com/speakers/antoine-le-calvez/2017-09-09T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/breaking-hardware-wallets/2017-09-09T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/spam-attacks-analysis/2017-09-09T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/light-clients-during-2017-interfork-period/2017-09-09T00:00:00+00:00https://btctranscripts.com/speakers/nicolas-bacca/2017-09-09T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/socialized-costs-of-hard-forks/2017-09-09T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/banks-as-bitcoin-custodians/2017-09-09T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/2017-09-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/2017-09-06T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/2017-09-05T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2017-09-04-jonas-schnelli-bip150-bip151/2017-09-04T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2017-08-28-gmaxwell-deep-dive-bitcoin-core-v0.15/2017-08-28T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2017-07-08-bram-cohen-merkle-sets/2017-07-08T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2017-06-06-laolu-osuntokun-neutrino/2017-06-06T00:00:00+00:00https://btctranscripts.com/lets-talk-bitcoin-podcast/2017-06-04-consensus-uasf-and-forks/2017-06-04T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2017-04-28-gmaxwell-confidential-transactions/2017-04-28T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2017-04-03-andreas-antonopoulos-bitcoin-scripting/2017-04-03T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2017-03-29-new-address-type-for-segwit-addresses/2017-03-29T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/bitcoin-mining-and-trustlessness/2017-03-04T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/exchange-security/2017-03-04T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/ideal-number-of-full-bitcoin-nodes/2017-03-04T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/mimblewimble-and-scriptless-scripts/2017-03-04T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/2017-03-04T00:00:00+00:00https://btctranscripts.com/speakers/mitchell-dong/2017-03-04T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/scaling-and-utxos/2017-03-04T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/2017-02-03T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/scalable-smart-contracts-via-proofs-and-single-use-seals/2017-02-03T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/lightning-network-security-analysis/2017-02-03T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/2017-01-26-jeremy-rubin-covenants/2017-01-26T00:00:00+00:00https://btctranscripts.com/speakers/dan-robinson/2017-01-26T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/2017-01-26-dan-robinson-ivy/2017-01-26T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/2017-01-26-russell-oconnor-posts-theorem/2017-01-26T00:00:00+00:00https://btctranscripts.com/lets-talk-bitcoin-podcast/2016-12-25-christopher-jeffrey-consensus-barnacles/2016-12-25T00:00:00+00:00https://btctranscripts.com/speakers/roger-ver/2016-12-14T00:00:00+00:00https://btctranscripts.com/misc/2016-12-14-whalepool/2016-12-14T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2016-11-21-mimblewimble/2016-11-21T00:00:00+00:00https://btctranscripts.com/misc/2016-adam-back/2016-11-04T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/schnorr-signatures/2016-10-10T00:00:00+00:00https://btctranscripts.com/speakers/arthur-gervais/2016-10-09T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/bip151-peer-encryption/2016-10-09T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/covenants/2016-10-09T00:00:00+00:00https://btctranscripts.com/speakers/emin-gun-sirer/2016-10-09T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/segwit-lessons-learned/2016-10-09T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/on-the-security-and-performance-of-proof-of-work-blockchains/2016-10-09T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/client-side-validation/2016-10-09T00:00:00+00:00https://btctranscripts.com/speakers/adlai-chandrasekhar/2016-10-08T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/flare-routing-in-lightning/2016-10-08T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/fungibility-overview/2016-10-08T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/joinmarket/2016-10-08T00:00:00+00:00https://btctranscripts.com/speakers/leen-alshenibr/2016-10-08T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/lightning/2016-10-08T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/mimblewimble/2016-10-08T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/onion-routing-in-lightning/2016-10-08T00:00:00+00:00https://btctranscripts.com/speakers/pavel-prihodko/2016-10-08T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/tumblebit/2016-10-08T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2016-09-28-christopher-jeffrey-bcoin/2016-09-28T00:00:00+00:00https://btctranscripts.com/speakers/brian-deery/2016-08-07T00:00:00+00:00https://btctranscripts.com/speakers/chris-odom/2016-08-07T00:00:00+00:00https://btctranscripts.com/misc/mimblewimble-podcast/2016-08-07T00:00:00+00:00https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/dan-boneh/2016-08-01T00:00:00+00:00https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/2016-08-01T00:00:00+00:00https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/cali2016/2016-07-30T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2016-07-18-laolu-osuntokun-lightning-network/2016-07-18T00:00:00+00:00https://btctranscripts.com/w3-blockchain-workshop-2016/lightning-network/2016-06-30T00:00:00+00:00https://btctranscripts.com/w3-blockchain-workshop-2016/2016-06-30T00:00:00+00:00https://btctranscripts.com/speakers/doug-schepers/2016-06-29T00:00:00+00:00https://btctranscripts.com/w3-blockchain-workshop-2016/intro/2016-06-29T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2016-04-11-lightning-network-as-a-directed-graph-single-funded-channel-network-topology/2016-04-11T00:00:00+00:00https://btctranscripts.com/misc/adam3us-bitcoin-scaling-tradeoffs/2016-04-05T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/pindar-wong/2016-03-05T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/2016-03-05T00:00:00+00:00https://btctranscripts.com/speakers/pindar-wong/2016-03-05T00:00:00+00:00https://btctranscripts.com/speakers/joseph-poon/2015-12-07T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/hong-kong-2015/network-topologies-and-their-scalability-implications-on-decentralized-off-chain-networks/2015-12-07T00:00:00+00:00https://btctranscripts.com/tags/bandwidth-reduction/2015-12-06T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/hong-kong-2015/fungibility-and-scalability/2015-12-06T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/hong-kong-2015/invertible-bloom-lookup-tables-and-weak-block-propagation-performance/2015-12-06T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2015-11-09-gmaxwell-mining-and-block-size-etc/2015-11-09T00:00:00+00:00https://btctranscripts.com/speakers/andrew-miller/2015-09-13T00:00:00+00:00https://btctranscripts.com/categories/developer-tools/2015-09-13T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/montreal-2015/block-synchronization-time/2015-09-13T00:00:00+00:00https://btctranscripts.com/speakers/patrick-strateman/2015-09-13T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/montreal-2015/sharding-the-blockchain/2015-09-13T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/montreal-2015/systematizing-knowledge/2015-09-13T00:00:00+00:00https://btctranscripts.com/speakers/vlad-zamfir/2015-09-13T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/montreal-2015/transaction-fee-estimation/2015-09-12T00:00:00+00:00https://btctranscripts.com/speakers/miles-carlsten/2015-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/montreal-2015/overview-of-security-concerns/2015-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/montreal-2015/privacy-preserving-smart-contracts/2015-09-12T00:00:00+00:00https://btctranscripts.com/speakers/ranjit-kumaresan/2015-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/montreal-2015/security-of-diminishing-block-subsidy/2015-09-12T00:00:00+00:00https://btctranscripts.com/misc/2015-09-07-epicenter-bitcoin-adam3us-scalability/2015-09-07T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2015-08-24-pieter-wuille-key-tree-signatures/2015-08-24T00:00:00+00:00https://btctranscripts.com/speakers/daniele-micciancio/2015-07-15T00:00:00+00:00https://btctranscripts.com/simons-institute/history-of-lattice-based-cryptography/2015-07-15T00:00:00+00:00https://btctranscripts.com/simons-institute/2015-07-15T00:00:00+00:00https://btctranscripts.com/simons-institute/pairing-cryptography/2015-07-14T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2015-06-08-gmaxwell-sidechains-elements/2015-06-08T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2015-05-26-lightning-network/2015-05-26T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2015-04-29-gmaxwell-bitcoin-selection-cryptography/2015-04-29T00:00:00+00:00https://btctranscripts.com/speakers/madars-virza/2015-03-08T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/2015-03-08T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/zerocash-and-zero-knowledge-succint-arguments-of-knowledge-libsnark/2015-03-08T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2015-02-23-scaling-bitcoin-to-billions-of-transactions-per-day/2015-02-23T00:00:00+00:00https://btctranscripts.com/misc/bitcoin-sidechains-unchained-epicenter-adam3us-gmaxwell/2015-02-03T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2015-01-08-libsecp256k1-testing/2015-01-08T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2015-01-08-openssl-bug/2015-01-08T00:00:00+00:00https://btctranscripts.com/misc/nydfs-bitlicense-lawsky-update/2014-12-18T00:00:00+00:00https://btctranscripts.com/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/2014-10-08T00:00:00+00:00https://btctranscripts.com/misc/bitcoin-adam3us-fungibility-privacy/2014-02-09T00:00:00+00:00https://btctranscripts.com/style/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/a-bevy-of-block-size-proposals-bip100-bip102-and-more/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/a-flexible-limit-trading-subsidy-for-larger-blocks/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/scaling-oblivious-read-write/https://btctranscripts.com/simons-institute/a-wishlist-for-verifiable-computation/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/abstract-groups/https://btctranscripts.com/tags/accidental-confiscation/https://btctranscripts.com/tags/acc/https://btctranscripts.com/bit-block-boom/2019/accumulating-bitcoin/https://btctranscripts.com/stanford-blockchain-conference/2019/accumulators/https://btctranscripts.com/speakers/adam-ludwin/https://btctranscripts.com/tags/addr-v2/https://btctranscripts.com/speakers/aki-balogh/https://btctranscripts.com/speakers/alan-reiner/https://btctranscripts.com/speakers/alena-vranova/https://btctranscripts.com/speakers/alessandro-chiesa/https://btctranscripts.com/speakers/alex-petrov/https://btctranscripts.com/speakers/alex-zinder/https://btctranscripts.com/speakers/alexander-chepurnoy/https://btctranscripts.com/speakers/alexander-zaidelson/https://btctranscripts.com/speakers/alexei-zamyatin/https://btctranscripts.com/speakers/alicia-bendhan/https://btctranscripts.com/cryptoeconomic-systems/2019/all-about-decentralized-trust/https://btctranscripts.com/tags/altcoin/https://btctranscripts.com/scalingbitcoin/montreal-2015/alternatives-to-block-size-as-aggregate-resource-limits/https://btctranscripts.com/scalingbitcoin/montreal-2015/amiko-pay/https://btctranscripts.com/speakers/andy-ofiesh/https://btctranscripts.com/tags/annex/https://btctranscripts.com/stanford-blockchain-conference/2020/arbitrum-v2/https://btctranscripts.com/w3-blockchain-workshop-2016/archival-science/https://btctranscripts.com/speakers/ari-juels/https://btctranscripts.com/speakers/ariel-gabizon/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/armory-proof-of-payment/https://btctranscripts.com/speakers/arvind-narayanan/https://btctranscripts.com/w3-blockchain-workshop-2016/arvind-narayanan/https://btctranscripts.com/tags/asicboost/https://btctranscripts.com/stanford-blockchain-conference/2019/asics/https://btctranscripts.com/speakers/assimakis-kattis/https://btctranscripts.com/tags/async-payments/https://btctranscripts.com/scalingbitcoin/stanford-2017/atomically-trading-with-roger-gambling-on-the-success-of-a-hard-fork/https://btctranscripts.com/stanford-blockchain-conference/2019/aurora-transparent-succinct-arguments-r1cs/https://btctranscripts.com/speakers/austin-hill/https://btctranscripts.com/stanford-blockchain-conference/2019/vulnerability-detection/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/backpackers/https://btctranscripts.com/speakers/baker-marquart/https://btctranscripts.com/speakers/balaji-srinivasan/https://btctranscripts.com/speakers/barry-silbert/https://btctranscripts.com/speakers/bart-suichies/https://btctranscripts.com/speakers/ben-maurer/https://btctranscripts.com/speakers/benjamin-chan/https://btctranscripts.com/speakers/benjamin-lawsky/https://btctranscripts.com/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/bip101-block-propagation-data-from-testnet/https://btctranscripts.com/tags/bip70-payment-protocol/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/bip99-and-uncontroversial-hard-forks/https://btctranscripts.com/bit-block-boom/https://btctranscripts.com/bit-block-boom/2019/https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-block-propagation-iblt-rusty-russell/https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/https://btctranscripts.com/london-bitcoin-devs/jnewbery-bitcoin-core-v0.17/https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-developers/https://btctranscripts.com/edgedevplusplus/2017/https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-failure-modes-and-the-role-of-the-lightning-network/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-financing-and-trading/https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-load-spike-simulation/https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-maximalism-dissected/https://btctranscripts.com/stanford-blockchain-conference/2019/bitcoin-payment-economic-analysis/https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/https://btctranscripts.com/edgedevplusplus/2017/p2p-john-newbery/https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-protocol-development-panel/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-regulation-landscape/https://btctranscripts.com/scalingbitcoin/montreal-2015/relay-network/https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-security/https://btctranscripts.com/breaking-bitcoin/2019/selfish-mining/https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-without-internet/https://btctranscripts.com/bit-block-boom/2019/there-can-only-be-one/https://btctranscripts.com/tags/block-explorers/https://btctranscripts.com/stanford-blockchain-conference/2020/block-rewards/https://btctranscripts.com/tags/block-withholding/https://btctranscripts.com/coindesk-consensus-2016/blockchain-database-technology-in-a-global-context/https://btctranscripts.com/w3-blockchain-workshop-2016/blockchain-hub/https://btctranscripts.com/scalingbitcoin/montreal-2015/blockchain-testbed/https://btctranscripts.com/stanford-blockchain-conference/2020/blockchains-for-multiplayer-games/https://btctranscripts.com/stanford-blockchain-conference/2019/bloxroute/https://btctranscripts.com/speakers/bobby-cho/https://btctranscripts.com/speakers/bobby-lee/https://btctranscripts.com/stanford-blockchain-conference/2020/boomerang/https://btctranscripts.com/speakers/boyma-fahnbulleh/https://btctranscripts.com/speakers/brad-peterson/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/braiding-the-blockchain/https://btctranscripts.com/speakers/brandon-black/https://btctranscripts.com/breaking-bitcoin/2019/breaking-bitcoin-privacy/https://btctranscripts.com/scalingbitcoin/milan-2016/breaking-the-chain/https://btctranscripts.com/breaking-bitcoin/2019/breaking-wasabi/https://btctranscripts.com/speakers/brett-seyler/https://btctranscripts.com/speakers/brian-kelly/https://btctranscripts.com/speakers/brian-klein/https://btctranscripts.com/speakers/brian-n.-levine/https://btctranscripts.com/speakers/brian-okeefe/https://btctranscripts.com/stanford-blockchain-conference/2020/brick-async-state-channels/https://btctranscripts.com/speakers/bruce-fenton/https://btctranscripts.com/scalingbitcoin/milan-2016/build-scale-operate/https://btctranscripts.com/tags/build-systems/https://btctranscripts.com/stanford-blockchain-conference/2019/building-bulletproofs/https://btctranscripts.com/bit-block-boom/2019/building-vibrant-bitcoin-communities/https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/bulletproofs/https://btctranscripts.com/stanford-blockchain-conference/2019/casper/https://btctranscripts.com/speakers/cathie-yun/https://btctranscripts.com/stanford-blockchain-conference/2020/celo-ultralight-client/https://btctranscripts.com/misc/cftc-bitcoin/https://btctranscripts.com/scalingbitcoin/milan-2016/chainbreak/https://btctranscripts.com/scalingbitcoin/stanford-2017/changes-without-unanimous-consent/https://btctranscripts.com/tags/channel-announcements/https://btctranscripts.com/tags/channel-commitment-upgrades/https://btctranscripts.com/tags/channel-jamming-attacks/https://btctranscripts.com/speakers/charles-cascarilla/https://btctranscripts.com/speakers/charles-guillemet/https://btctranscripts.com/speakers/charlie-lee/https://btctranscripts.com/speakers/chris-church/https://btctranscripts.com/speakers/chris-tse/https://btctranscripts.com/w3-blockchain-workshop-2016/christopher-allen/https://btctranscripts.com/coindesk-consensus-2016/clearing-and-settlement-for-global-financial-institutions/https://btctranscripts.com/stanford-blockchain-conference/2020/clockwork-nonfrontrunning/https://btctranscripts.com/tags/cltv-expiry-delta/https://btctranscripts.com/scalingbitcoin/milan-2016/coin-selection/https://btctranscripts.com/coindesk-consensus-2016/https://btctranscripts.com/scalingbitcoin/montreal-2015/coinscope-andrew-miller/https://btctranscripts.com/speakers/come-plooy/https://btctranscripts.com/verifiable-delay-functions/vdf-day-2019/comments-and-observations-about-timelocks-ron-rivest/https://btctranscripts.com/scalingbitcoin/montreal-2015/competitive-fee-market-urgency/https://btctranscripts.com/decentralized-financial-architecture-workshop/compliance-and-confidentiality/https://btctranscripts.com/scalingbitcoin/stanford-2017/concurrency-and-privacy-with-payment-channel-networks/https://btctranscripts.com/speakers/constance-choi/https://btctranscripts.com/stanford-blockchain-conference/2019/coordinated-upgrades/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/cory-fields/https://btctranscripts.com/tags/countersign/https://btctranscripts.com/cryptoeconomic-systems/2019/cross-chain-deals-and-adversarial-commerce/https://btctranscripts.com/magicalcryptoconference/2019/cryptographic-hocus-pocus/https://btctranscripts.com/grincon/2019/cryptography-audit/https://btctranscripts.com/scalingbitcoin/stanford-2017/state-of-cryptography/https://btctranscripts.com/misc/ctv-bip-review-workshop/https://btctranscripts.com/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/https://btctranscripts.com/tags/cve-2018-17144/https://btctranscripts.com/speakers/dahlia-malkhi/https://btctranscripts.com/speakers/daniel-cline/https://btctranscripts.com/speakers/daniel-hinton/https://btctranscripts.com/speakers/daniel-j.-bernstein/https://btctranscripts.com/speakers/daniel-marquez/https://btctranscripts.com/speakers/daniel-robinson/https://btctranscripts.com/speakers/dave-levin/https://btctranscripts.com/speakers/david-bailey/https://btctranscripts.com/speakers/david-rutter/https://btctranscripts.com/speakers/david-schwartz/https://btctranscripts.com/baltic-honeybadger/2018/day-1-closing-panel/https://btctranscripts.com/scalingbitcoin/milan-2016/day-1-group-summaries/https://btctranscripts.com/scalingbitcoin/milan-2016/day-2-group-summaries/https://btctranscripts.com/w3-blockchain-workshop-2016/day-2-groups/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/day-2-opening/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/decentralization-through-game-theory/https://btctranscripts.com/stanford-blockchain-conference/2020/decentralized-oracles-tls/https://btctranscripts.com/tags/default-minimum-transaction-relay-feerates/https://btctranscripts.com/coindesk-consensus-2016/marco-santori-delaware-initiative/https://btctranscripts.com/scalingbitcoin/tokyo-2018/deploying-blockchain-at-scale-lessons-from-the-internet-deployment-in-japan/https://btctranscripts.com/building-on-bitcoin/2018/lightning-wallet-design/https://btctranscripts.com/w3-blockchain-workshop-2016/deterministic-signatures-group/https://btctranscripts.com/w3-blockchain-workshop-2016/petertodd-dex/https://btctranscripts.com/misc/discreet-log-contracts/https://btctranscripts.com/scalingbitcoin/stanford-2017/discreet-log-contracts/https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/discreet-log-contracts-oracles-loans-stablecoins-and-more/https://btctranscripts.com/speakers/duc-v.-le/https://btctranscripts.com/tags/duplicate-transactions/https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/economic-risks/https://btctranscripts.com/speakers/ed-felten/https://btctranscripts.com/speakers/edward-budd/https://btctranscripts.com/stanford-blockchain-conference/2019/threshold-signatures/https://btctranscripts.com/speakers/elaine-shi/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/elastic-block-caps/https://btctranscripts.com/speakers/eleftherios-kokoris-kogias/https://btctranscripts.com/speakers/eli-ben-sasson/https://btctranscripts.com/scalingbitcoin/milan-2016/collective-signing/https://btctranscripts.com/speakers/eran-tromer/https://btctranscripts.com/speakers/eric-martindale/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/erlay/https://btctranscripts.com/w3-blockchain-workshop-2016/ethcore/https://btctranscripts.com/stanford-blockchain-conference/2019/ethereum2/https://btctranscripts.com/cryptoeconomic-systems/2019/everything-is-broken/https://btctranscripts.com/tags/exfiltration-resistant-signing/https://btctranscripts.com/tags/expiration-floods/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/extensibility/https://btctranscripts.com/breaking-bitcoin/2019/extracting-seeds-from-hardware-wallets/https://btctranscripts.com/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/https://btctranscripts.com/misc/failures-of-secret-key-cryptography/https://btctranscripts.com/speakers/fan-zhang/https://btctranscripts.com/scalingbitcoin/milan-2016/fast-difficulty-adjustment/https://btctranscripts.com/tags/fee-estimation/https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-fabrice-drouin-fee-management/https://btctranscripts.com/scalingbitcoin/montreal-2015/peter-r/https://btctranscripts.com/tags/fee-sniping/https://btctranscripts.com/tags/fee-sourcing/https://btctranscripts.com/tags/fee-sponsorship/https://btctranscripts.com/bit-block-boom/2019/fiat-money-fiat-food/https://btctranscripts.com/stanford-blockchain-conference/2020/smart-contract-bug-hunting/https://btctranscripts.com/breaking-bitcoin/2019/defense-of-bitcoin/https://btctranscripts.com/cryptoeconomic-systems/2019/flash-boys-v2/https://btctranscripts.com/speakers/florian-maier/https://btctranscripts.com/scalingbitcoin/stanford-2017/flyclient-super-light-clients-for-cryptocurrencies/https://btctranscripts.com/stanford-blockchain-conference/2019/formal-verification/https://btctranscripts.com/scalingbitcoin/tokyo-2018/forward-blocks/https://btctranscripts.com/stanford-blockchain-conference/2020/fractal/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/fraud-proofs-petertodd/https://btctranscripts.com/tags/free-relay/https://btctranscripts.com/breaking-bitcoin/2019/fud-perceived-vs-real-bitcoin-risks/https://btctranscripts.com/cryptoeconomic-systems/2019/funding/https://btctranscripts.com/coindesk-consensus-2016/future-of-blockchains/https://btctranscripts.com/coindesk-consensus-2016/future-of-regulation/https://btctranscripts.com/scalingbitcoin/montreal-2015/future-of-spv-tech/https://btctranscripts.com/decentralized-financial-architecture-workshop/g20-discussion/https://btctranscripts.com/tags/gap-limits/https://btctranscripts.com/speakers/gavin-andresen/https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/gavinandresen/https://btctranscripts.com/speakers/georgia-avarikioti/https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/jihan-wu-google-tech-talk/https://btctranscripts.com/texas-bitcoin-conference-2014/gox/https://btctranscripts.com/scalingbitcoin/stanford-2017/graphene-set-reconciliation/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/group-updates/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/groups/https://btctranscripts.com/w3-blockchain-workshop-2016/groups-identity/https://btctranscripts.com/coindesk-consensus-2016/hackathon-intro/https://btctranscripts.com/stanford-blockchain-conference/2020/hardware-accelerated-rsa/https://btctranscripts.com/speakers/henry-de-valence/https://btctranscripts.com/dallas-bitcoin-symposium/history-and-extrapolation/https://btctranscripts.com/coindesk-consensus-2016/how-tech-companies-are-embracing-blockchain-database-technology/https://btctranscripts.com/coindesk-consensus-2016/how-to-get-bitcoin/https://btctranscripts.com/bit-block-boom/2019/how-to-meme-bitcoin-to-the-moon/https://btctranscripts.com/scalingbitcoin/montreal-2015/how-to-mine-bitcoin-profitably/https://btctranscripts.com/tags/htlc-endorsement/https://btctranscripts.com/stanford-blockchain-conference/2019/htlcs-considered-harmful/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/human-side-trust-workshop/https://btctranscripts.com/speakers/hutchins/https://btctranscripts.com/speakers/ian-lee/https://btctranscripts.com/decentralized-financial-architecture-workshop/implications/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/maaku-panel/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2018/improving-bitcoin-smart-contract-efficiency/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/in-adversarial-environments-blockchains-dont-scale/https://btctranscripts.com/tags/inbound-forwarding-fees/https://btctranscripts.com/scalingbitcoin/tokyo-2018/incentivizing-payment-channel-watchtowers/https://btctranscripts.com/coindesk-consensus-2016/internal-approaches-blockchain-database-technology-strategies/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/internet-of-value/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/intro/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/intro/https://btctranscripts.com/scalingbitcoin/milan-2016/intro/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/intro/https://btctranscripts.com/w3-blockchain-workshop-2016/wendy/https://btctranscripts.com/cryptoeconomic-systems/2019/introduction/https://btctranscripts.com/scalingbitcoin/stanford-2017/intro/https://btctranscripts.com/scalingbitcoin/tokyo-2018/introduction/https://btctranscripts.com/baltic-honeybadger/2018/investing-in-bitcoin-businesses/https://btctranscripts.com/w3-blockchain-workshop-2016/ipfs/https://btctranscripts.com/scalingbitcoin/montreal-2015/issues-impacting-block-size-proposals/https://btctranscripts.com/speakers/ittai-abraham/https://btctranscripts.com/speakers/ittay-eyal/https://btctranscripts.com/speakers/j.-christopher-giancarlo/https://btctranscripts.com/speakers/jacob-leshno/https://btctranscripts.com/speakers/james-dangelo/https://btctranscripts.com/speakers/james-gatto/https://btctranscripts.com/speakers/james-smith/https://btctranscripts.com/speakers/jarl-fransson/https://btctranscripts.com/speakers/jason-potts/https://btctranscripts.com/speakers/jason-teutsch/https://btctranscripts.com/speakers/jeff-garzik/https://btctranscripts.com/speakers/jeremy-allaire/https://btctranscripts.com/speakers/jeremy-wilson/https://btctranscripts.com/speakers/jerry-brito/https://btctranscripts.com/speakers/jerry-cuomo/https://btctranscripts.com/speakers/jihan-wu/https://btctranscripts.com/speakers/jinglan-wang/https://btctranscripts.com/speakers/joachim-breitner/https://btctranscripts.com/speakers/joachim-neu/https://btctranscripts.com/speakers/joe-gerber/https://btctranscripts.com/speakers/john-woeltz/https://btctranscripts.com/tags/joinpools/https://btctranscripts.com/speakers/jonathan-bier/https://btctranscripts.com/speakers/jonathan-tomim/https://btctranscripts.com/speakers/jorge-tim%C3%B3n/https://btctranscripts.com/speakers/joshua-lim/https://btctranscripts.com/cryptoeconomic-systems/2019/journal-review/https://btctranscripts.com/cryptoeconomic-systems/2019/journals-as-clubs/https://btctranscripts.com/speakers/jun-muai/https://btctranscripts.com/tags/jit-channels/https://btctranscripts.com/tags/jit-routing/https://btctranscripts.com/speakers/justin-camarena/https://btctranscripts.com/scalingbitcoin/milan-2016/jute-braiding/https://btctranscripts.com/speakers/juthica-chou/https://btctranscripts.com/speakers/karl-floersch/https://btctranscripts.com/speakers/katherine-wu/https://btctranscripts.com/speakers/kathleen-breitman/https://btctranscripts.com/speakers/kenji-saito/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote-gavin-andresen/https://btctranscripts.com/speakers/kim-hamilton-duffy/https://btctranscripts.com/tags/kindred-rbf/https://btctranscripts.com/speakers/kris-merkel/https://btctranscripts.com/speakers/kristov-atlas/https://btctranscripts.com/speakers/kulpreet-singh/https://btctranscripts.com/tags/large-channels/https://btctranscripts.com/speakers/lata-varghese/https://btctranscripts.com/coindesk-consensus-2016/law-enforcement-and-anonymous-transactions/https://btctranscripts.com/speakers/lawrence-h.-summers/https://btctranscripts.com/speakers/lei-yang/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/lessons-for-bitcoin-from-150-years-of-decentralization/https://btctranscripts.com/cryptoeconomic-systems/2019/libra/https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-24-fabrice-drouin-the-transfer-layer/https://btctranscripts.com/edgedevplusplus/2019/lightning-network-routing/https://btctranscripts.com/breaking-bitcoin/2019/lightning-network-security-panel/https://btctranscripts.com/stanford-blockchain-conference/2019/links/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/linq/https://btctranscripts.com/tags/liquidity-advertisements/https://btctranscripts.com/speakers/lous-parker/https://btctranscripts.com/tags/low-r-grinding/https://btctranscripts.com/stanford-blockchain-conference/2020/lower-bounds-limits-plasma/https://btctranscripts.com/speakers/mahnush-movahedi/https://btctranscripts.com/speakers/marco-santori/https://btctranscripts.com/speakers/marek-olszewski/https://btctranscripts.com/speakers/mark-erhart/https://btctranscripts.com/speakers/mark-friedenbach/https://btctranscripts.com/speakers/mark-wetjen/https://btctranscripts.com/speakers/marshall-long/https://btctranscripts.com/speakers/martin-lundfall/https://btctranscripts.com/w3-blockchain-workshop-2016/matsuo/https://btctranscripts.com/tags/matt/https://btctranscripts.com/speakers/matt-weinberg/https://btctranscripts.com/speakers/matt-weiss/https://btctranscripts.com/speakers/matthew-mezinskis/https://btctranscripts.com/speakers/maurice-herlihy/https://btctranscripts.com/speakers/max-keidun/https://btctranscripts.com/cryptoeconomic-systems/2019/mechanism-design/https://btctranscripts.com/speakers/megan-chen/https://btctranscripts.com/speakers/melanie-shapiro/https://btctranscripts.com/speakers/meltem-demirors/https://btctranscripts.com/speakers/meni-rosenfeld/https://btctranscripts.com/tags/merkle-tree-vulnerabilities/https://btctranscripts.com/decentralized-financial-architecture-workshop/metadata/https://btctranscripts.com/edgedevplusplus/2019/metadata/https://btctranscripts.com/speakers/michael-more/https://btctranscripts.com/speakers/michael-straka/https://btctranscripts.com/speakers/michael-walfish/https://btctranscripts.com/speakers/mikael-dubrovsky/https://btctranscripts.com/stanford-blockchain-conference/2019/miniscript/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2018/https://btctranscripts.com/stanford-blockchain-conference/2020/mixicles/https://btctranscripts.com/speakers/mooly-sagiv/https://btctranscripts.com/scalingbitcoin/montreal-2015/more-core-devs/https://btctranscripts.com/stanford-blockchain-conference/2020/motoko-language/https://btctranscripts.com/scalingbitcoin/tokyo-2018/multi-party-channels-in-the-utxo-model-challenges-and-opportunities/https://btctranscripts.com/speakers/nathan-wilcox/https://btctranscripts.com/cryptoeconomic-systems/2019/near-misses/https://btctranscripts.com/speakers/neha-narula/https://btctranscripts.com/breaking-bitcoin/2019/neutrino/https://btctranscripts.com/stanford-blockchain-conference/2019/thundercore/https://btctranscripts.com/speakers/nic-carter/https://btctranscripts.com/speakers/nick-spooner/https://btctranscripts.com/stanford-blockchain-conference/2020/no-incentive/https://btctranscripts.com/scalingbitcoin/montreal-2015/non-currency-applications/https://btctranscripts.com/speakers/omer-shlomovits/https://btctranscripts.com/scalingbitcoin/tokyo-2018/omniledger/https://btctranscripts.com/tags/onion-messages/https://btctranscripts.com/tags/op-cat/https://btctranscripts.com/tags/op-codeseparator/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/eric-martindale/https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/open-source-mining/https://btctranscripts.com/baltic-honeybadger/2018/opening/https://btctranscripts.com/breaking-bitcoin/2019/opening-remarks/https://btctranscripts.com/stanford-blockchain-conference/2019/opening-remarks/https://btctranscripts.com/coindesk-consensus-2016/opening-remarks-state-of-blockchain-ryan-selkis/https://btctranscripts.com/scalingbitcoin/stanford-2017/optimizing-fee-estimation-via-mempool-state/https://btctranscripts.com/speakers/or-sattath/https://btctranscripts.com/tags/out-of-band-fees/https://btctranscripts.com/tags/output-linking/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/overview-of-bips-necessary-for-lightning/https://btctranscripts.com/speakers/patricia-estevao/https://btctranscripts.com/speakers/patrick-mccorry/https://btctranscripts.com/speakers/patrick-murck/https://btctranscripts.com/speakers/paul-vigna/https://btctranscripts.com/tags/payment-probes/https://btctranscripts.com/tags/payment-secrets/https://btctranscripts.com/tags/peer-storage/https://btctranscripts.com/decentralized-financial-architecture-workshop/perspective/https://btctranscripts.com/speakers/peter-rizun/https://btctranscripts.com/w3-blockchain-workshop-2016/physical-assets/https://btctranscripts.com/speakers/pierre-roberge/https://btctranscripts.com/scalingbitcoin/tokyo-2018/playing-with-fire-adjusting-bitcoin-block-subsidy/https://btctranscripts.com/stanford-blockchain-conference/2020/plonk/https://btctranscripts.com/speakers/prakash-santhana/https://btctranscripts.com/speakers/pramod-viswanath/https://btctranscripts.com/baltic-honeybadger/2018/present-and-future-tech-challenges-in-bitcoin/https://btctranscripts.com/stanford-blockchain-conference/2020/prism/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/prism/https://btctranscripts.com/scalingbitcoin/montreal-2015/privacy-and-fungibility/https://btctranscripts.com/w3-blockchain-workshop-2016/privacy-anonymity-and-identity-group/https://btctranscripts.com/stanford-blockchain-conference/2019/privacy-preserving-multi-hop-locks/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/proof-of-necessary-work/https://btctranscripts.com/stanford-blockchain-conference/2020/proof-of-necessary-work/https://btctranscripts.com/tags/proof-of-payment/https://btctranscripts.com/tags/proof-of-reserves/https://btctranscripts.com/w3-blockchain-workshop-2016/provenance-groups/https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/research-and-development-goals/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/r3/https://btctranscripts.com/coindesk-consensus-2016/reaching-consensus-open-blockchains/https://btctranscripts.com/rebooting-web-of-trust/https://btctranscripts.com/scalingbitcoin/stanford-2017/redesigning-bitcoin-fee-market/https://btctranscripts.com/tags/redundant-overpayments/https://btctranscripts.com/tags/replacement-cycling/https://btctranscripts.com/cryptoeconomic-systems/2019/reproducible-builds/https://btctranscripts.com/scalingbitcoin/tokyo-2018/reproducible-lightning-benchmark/https://btctranscripts.com/tags/responsible-disclosures/https://btctranscripts.com/scalingbitcoin/montreal-2015/reworking-bitcoin-core-p2p-code-for-robustness-and-event-driven/https://btctranscripts.com/speakers/riccardo-casatta/https://btctranscripts.com/speakers/richard-myers/https://btctranscripts.com/speakers/robert-schwinker/https://btctranscripts.com/speakers/rodrigo-buenaventura/https://btctranscripts.com/speakers/roman-snitko/https://btctranscripts.com/speakers/ron-rivest/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/rootstock/https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-1/https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-2/https://btctranscripts.com/w3-blockchain-workshop-2016/royalties/https://btctranscripts.com/speakers/ryan-selkis/https://btctranscripts.com/misc/safecurves-choosing-safe-curves-for-elliptic-curve-cryptography-2014/https://btctranscripts.com/speakers/saifedean-ammous/https://btctranscripts.com/speakers/sandra-ro/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/peter-todd-scalability/https://btctranscripts.com/scalingbitcoin/milan-2016/timestamping/https://btctranscripts.com/stanford-blockchain-conference/2020/scalable-rsa-modulus-generation/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/scaling-debate-is-a-proxy-battle-over-centralization/https://btctranscripts.com/speakers/scott-manuel/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/scriptless-lotteries/https://btctranscripts.com/grincon/2019/scriptless-scripts-with-mimblewimble/https://btctranscripts.com/speakers/sean-neville/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/secure-fountain-architecture/https://btctranscripts.com/breaking-bitcoin/2019/security-attacks-decentralized-mining-pools/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/security-and-usability/https://btctranscripts.com/breaking-bitcoin/2019/lightning-network-routing-security/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/security-assumptions/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/segregated-witness-and-its-impact-on-scalability/https://btctranscripts.com/scalingbitcoin/tokyo-2018/self-reproducing-coins-as-universal-turing-machine/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/self-sovereign-identity-ideology-and-architecture/https://btctranscripts.com/speakers/sergej-kotliar/https://btctranscripts.com/speakers/sergio-lerner/https://btctranscripts.com/speakers/shafi-goldwasser/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/shamir-secret-sharing/https://btctranscripts.com/speakers/shayan-eskandari/https://btctranscripts.com/speakers/shehzan-maredia/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/siacoin/https://btctranscripts.com/tags/side-channels/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/matt-corallo-sidechains/https://btctranscripts.com/scalingbitcoin/milan-2016/sidechains/https://btctranscripts.com/tags/signer-delegation/https://btctranscripts.com/speakers/simon-peffers/https://btctranscripts.com/speakers/skot-9000/https://btctranscripts.com/w3-blockchain-workshop-2016/smart-signatures/https://btctranscripts.com/scalingbitcoin/montreal-2015/snarks/https://btctranscripts.com/simons-institute/snarks-and-their-practical-applications/https://btctranscripts.com/stanford-blockchain-conference/2020/solving-data-availability-attacks-using-coded-merkle-trees/https://btctranscripts.com/cryptoeconomic-systems/2019/solving-the-blockchain-trilemma/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/some-questions-for-bitcoiners/https://btctranscripts.com/speakers/soumya-basu/https://btctranscripts.com/dallas-bitcoin-symposium/sound-money/https://btctranscripts.com/tags/spontaneous-payments/https://btctranscripts.com/stanford-blockchain-conference/2019/spork-probabilistic-bitcoin-soft-forks/https://btctranscripts.com/speakers/sreeram-kannan/https://btctranscripts.com/stanford-blockchain-conference/2020/stark-for-developers/https://btctranscripts.com/stanford-blockchain-conference/2019/state-channels/https://btctranscripts.com/coindesk-consensus-2016/state-of-blockchain/https://btctranscripts.com/bit-block-boom/2019/state-of-multisig/https://btctranscripts.com/scalingbitcoin/tokyo-2018/statechains/https://btctranscripts.com/tags/stateless-invoices/https://btctranscripts.com/tags/static-channel-backups/https://btctranscripts.com/speakers/stefan-dziembowski/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/andrew-miller/https://btctranscripts.com/speakers/stephanie-hurder/https://btctranscripts.com/stanford-blockchain-conference/2020/streamlet/https://btctranscripts.com/scalingbitcoin/montreal-2015/stroem-payment-channels/https://btctranscripts.com/speakers/swanand-kadhe/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/swashbuckling-safety-training/https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/https://btctranscripts.com/bit-block-boom/2019/taproot-schnorr-soft-fork/https://btctranscripts.com/tags/testnet/https://btctranscripts.com/texas-bitcoin-conference-2014/https://btctranscripts.com/dallas-bitcoin-symposium/texas-energy-market/https://btctranscripts.com/speakers/thang-n.-dinh/https://btctranscripts.com/baltic-honeybadger/2018/the-b-foundation/https://btctranscripts.com/baltic-honeybadger/2018/the-bitcoin-standard/https://btctranscripts.com/scalingbitcoin/tokyo-2018/bitcoin-script/https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/https://btctranscripts.com/breaking-bitcoin/2019/future-of-hardware-wallets/https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-lightning/https://btctranscripts.com/scalingbitcoin/tokyo-2018/ghostdag/https://btctranscripts.com/stanford-blockchain-conference/2020/libra-blockchain-intro/https://btctranscripts.com/stanford-blockchain-conference/2020/optimistic-vm/https://btctranscripts.com/baltic-honeybadger/2018/the-reserve-currency-fallacy/https://btctranscripts.com/stanford-blockchain-conference/2019/stark-dex/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/threshold-scriptless-scripts/https://btctranscripts.com/stanford-blockchain-conference/2019/proofs-of-space-and-replication/https://btctranscripts.com/speakers/tim-roughgarden/https://btctranscripts.com/tags/time-warp/https://btctranscripts.com/simons-institute/todo/https://btctranscripts.com/cryptoeconomic-systems/2019/token-journal/https://btctranscripts.com/speakers/tone-vays/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/topics/https://btctranscripts.com/baltic-honeybadger/2018/trading-panel/https://btctranscripts.com/tags/transaction-bloom-filtering/https://btctranscripts.com/tags/transaction-origin-privacy/https://btctranscripts.com/stanford-blockchain-conference/2020/transparent-dishonesty/https://btctranscripts.com/stanford-blockchain-conference/2020/transparent-snarks-from-dark-compilers/https://btctranscripts.com/cryptoeconomic-systems/2019/trust-and-blockchain-marketplaces/https://btctranscripts.com/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/txprobe/https://btctranscripts.com/tags/unannounced-channels/https://btctranscripts.com/tags/uneconomical-outputs/https://btctranscripts.com/scalingbitcoin/milan-2016/unlinkable-outsourced-channel-monitoring/https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/unlocking-expressivity-with-op-cat/https://btctranscripts.com/coindesk-consensus-2016/upgrading-capital-markets-for-digital-asset-trading/https://btctranscripts.com/stanford-blockchain-conference/2019/urkel-trees/https://btctranscripts.com/scalingbitcoin/stanford-2017/using-the-chain-for-what-chains-are-good-for/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2019/utreexo/https://btctranscripts.com/bitcoin-design/ux-research/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/validation-cost-metric/https://btctranscripts.com/scalingbitcoin/montreal-2015/validation-costs/https://btctranscripts.com/tags/v3-transaction-relay/https://btctranscripts.com/coindesk-consensus-2016/visa-chain/https://btctranscripts.com/speakers/vivek-bagaria/https://btctranscripts.com/speakers/vortex/https://btctranscripts.com/tags/wallet-labels/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/weak-signals/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/welcome/https://btctranscripts.com/speakers/wendy-seltzer/https://btctranscripts.com/speakers/whalepanda/https://btctranscripts.com/coindesk-consensus-2016/why-bitcoin-still-matters/https://btctranscripts.com/magicalcryptoconference/2019/why-block-sizes-should-not-be-too-big/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/why-miners-will-not-voluntarily-individually-produce-smaller-blocks/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/arvind-narayanan/https://btctranscripts.com/speakers/william-mougayar/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/work-in-progress/https://btctranscripts.com/tags/x-only-public-keys/https://btctranscripts.com/speakers/yorke-rhodes/https://btctranscripts.com/speakers/yoshinori-hashimoto/https://btctranscripts.com/speakers/yurii-rashkovskii/https://btctranscripts.com/speakers/yuta-takanashi/https://btctranscripts.com/speakers/yuval-kogman/https://btctranscripts.com/simons-institute/zero-knowledge-probabilistic-proof-systems/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/zero-knowledge-proofs-for-bitcoin-scalability-and-beyond/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/zerolink-sudoku/https://btctranscripts.com/speakers/zeta-avarikioti/https://btctranscripts.com/cryptoeconomic-systems/2019/zksharks/ \ No newline at end of file +https://btctranscripts.com/scalingbitcoin/montreal-2015/2015-09-13T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/hong-kong-2015/2015-12-07T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/2016-10-10T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/2017-11-05T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/2018-10-07T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/2019-09-12T00:00:00+00:00https://btctranscripts.com/speakers/aaron-van-wirdum/2024-08-31T00:00:00+00:00https://btctranscripts.com/speakers/ava-chow/2024-08-31T00:00:00+00:00https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/2024-08-31T00:00:00+00:00https://btctranscripts.com/bitcoin-magazine/2024-08-31T00:00:00+00:00https://btctranscripts.com/tags/bitcoin-core/2024-08-31T00:00:00+00:00https://btctranscripts.com/tags/career/2024-08-31T00:00:00+00:00https://btctranscripts.com/speakers/ishaana-misra/2024-08-31T00:00:00+00:00https://btctranscripts.com/speakers/mark-erhardt/2024-08-31T00:00:00+00:00https://btctranscripts.com/speakers/2024-08-31T00:00:00+00:00https://btctranscripts.com/tags/2024-08-31T00:00:00+00:00https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/the-state-of-bitcoin-core-development/2024-08-31T00:00:00+00:00https://btctranscripts.com/2024-08-31T00:00:00+00:00https://btctranscripts.com/speakers/craig-raw/2024-08-29T00:00:00+00:00https://btctranscripts.com/tags/cisa/2024-08-29T00:00:00+00:00https://btctranscripts.com/speakers/fabian-jahr/2024-08-29T00:00:00+00:00https://btctranscripts.com/speakers/jameson-lopp/2024-08-29T00:00:00+00:00https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/making-bitcoin-more-private-with-cisa/2024-08-29T00:00:00+00:00https://btctranscripts.com/brink/2024-07-31T00:00:00+00:00https://btctranscripts.com/brink/the-bitcoin-development-podcast/discussing-0-21-0-bitcoin-core-vulnerability-disclosures/2024-07-31T00:00:00+00:00https://btctranscripts.com/speakers/gloria-zhao/2024-07-31T00:00:00+00:00https://btctranscripts.com/speakers/niklas-g%C3%B6gge/2024-07-31T00:00:00+00:00https://btctranscripts.com/brink/the-bitcoin-development-podcast/2024-07-31T00:00:00+00:00https://btctranscripts.com/tags/lightning/2024-07-29T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-07-29T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-07-29-specification-call/2024-07-29T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-07-15-specification-call/2024-07-15T00:00:00+00:00https://btctranscripts.com/brink/the-bitcoin-development-podcast/discussing-pre-0-21-0-bitcoin-core-vulnerability-disclosures/2024-07-11T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/2024-07-07T00:00:00+00:00https://btctranscripts.com/speakers/ruben-somsen/2024-07-07T00:00:00+00:00https://btctranscripts.com/tags/silent-payments/2024-07-07T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/silent-payments-part-2/2024-07-07T00:00:00+00:00https://btctranscripts.com/speakers/sjors-provoost/2024-07-07T00:00:00+00:00https://btctranscripts.com/speakers/christian-decker/2024-06-11T00:00:00+00:00https://btctranscripts.com/bitcoin-magazine/the-politics-of-bitcoin-development/2024-06-11T00:00:00+00:00https://btctranscripts.com/tags/consensus-cleanup/2024-05-29T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/the-great-consensus-cleanup-revival/2024-05-29T00:00:00+00:00https://btctranscripts.com/tags/wallet/2024-05-29T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-05-06-specification-call/2024-05-06T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-04-22-specification-call/2024-04-22T00:00:00+00:00https://btctranscripts.com/speakers/adam-jonas/2024-04-21T00:00:00+00:00https://btctranscripts.com/categories/2024-04-21T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2024/choosing-a-career-in-bitcoin-open-source-development/2024-04-21T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/2024-04-21T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2024/2024-04-21T00:00:00+00:00https://btctranscripts.com/categories/video/2024-04-21T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/asmap/2024-04-11T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04-11T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/2024-04-11T00:00:00+00:00https://btctranscripts.com/categories/core-dev-tech/2024-04-11T00:00:00+00:00https://btctranscripts.com/tags/p2p/2024-04-11T00:00:00+00:00https://btctranscripts.com/tags/security-enhancements/2024-04-11T00:00:00+00:00https://btctranscripts.com/tags/assumeutxo/2024-04-10T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/assumeutxo-mainnet-readiness/2024-04-10T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-27-0/2024-04-10T00:00:00+00:00https://btctranscripts.com/tags/build-system/2024-04-10T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/gui-discussions/2024-04-10T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/kernel/2024-04-10T00:00:00+00:00https://btctranscripts.com/tags/signet/2024-04-10T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/signet-testnet4/2024-04-10T00:00:00+00:00https://btctranscripts.com/tags/ux/2024-04-10T00:00:00+00:00https://btctranscripts.com/tags/developer-tools/2024-04-09T00:00:00+00:00https://btctranscripts.com/tags/descriptors/2024-04-09T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/p2p-monitoring/2024-04-09T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/silent-payment-descriptors/2024-04-09T00:00:00+00:00https://btctranscripts.com/tags/coin-selection/2024-04-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/coin-selection/2024-04-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/cross-input-signature-aggregation/2024-04-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/great-consensus-cleanup/2024-04-08T00:00:00+00:00https://btctranscripts.com/tags/libsecp256k1/2024-04-08T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-04-08-specification-call/2024-04-08T00:00:00+00:00https://btctranscripts.com/tags/mining/2024-04-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/private-tx-broadcast/2024-04-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/silent-payments-libsecp/2024-04-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/stratumv2/2024-04-08T00:00:00+00:00https://btctranscripts.com/tags/stratum-v2/2024-04-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/weak-blocks/2024-04-08T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-03-25-specification-call/2024-03-25T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-03-11-specification-call/2024-03-11T00:00:00+00:00https://btctranscripts.com/bitcoinops/2024-03-07T00:00:00+00:00https://btctranscripts.com/speakers/dave-harding/2024-03-07T00:00:00+00:00https://btctranscripts.com/speakers/josibake/2024-03-07T00:00:00+00:00https://btctranscripts.com/tags/musig/2024-03-07T00:00:00+00:00https://btctranscripts.com/bitcoinops/newsletter-292-recap/2024-03-07T00:00:00+00:00https://btctranscripts.com/tags/psbt/2024-03-07T00:00:00+00:00https://btctranscripts.com/categories/podcast/2024-03-07T00:00:00+00:00https://btctranscripts.com/speakers/salvatore-ingala/2024-03-07T00:00:00+00:00https://btctranscripts.com/lightning-specification/2024-02-26-specification-call/2024-02-26T00:00:00+00:00https://btctranscripts.com/bitcoin-design/2024-02-02T00:00:00+00:00https://btctranscripts.com/speakers/christoph-ono/2024-02-02T00:00:00+00:00https://btctranscripts.com/tags/covenants/2024-02-02T00:00:00+00:00https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/covenants-part-2/2024-02-02T00:00:00+00:00https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/2024-02-02T00:00:00+00:00https://btctranscripts.com/speakers/michael-haase/2024-02-02T00:00:00+00:00https://btctranscripts.com/speakers/mogashni/2024-02-02T00:00:00+00:00https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/silent-payments/2024-01-31T00:00:00+00:00https://btctranscripts.com/speakers/yashraj/2024-01-31T00:00:00+00:00https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/covenants/2024-01-19T00:00:00+00:00https://btctranscripts.com/tags/op-checktemplateverify/2024-01-19T00:00:00+00:00https://btctranscripts.com/speakers/owen-kemeys/2024-01-19T00:00:00+00:00https://btctranscripts.com/lightning-specification/lightning-2024-01-15-specification-call/2024-01-15T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/hashcash-and-bit-gold/2024-01-03T00:00:00+00:00https://btctranscripts.com/tags/security-problems/2023-12-21T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/the-block-1-983-702-problem/2023-12-21T00:00:00+00:00https://btctranscripts.com/tags/altcoins/2023-12-09T00:00:00+00:00https://btctranscripts.com/speakers/ben-carman/2023-12-09T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/2023-12-09T00:00:00+00:00https://btctranscripts.com/tags/coinjoin/2023-12-09T00:00:00+00:00https://btctranscripts.com/categories/conference/2023-12-09T00:00:00+00:00https://btctranscripts.com/speakers/david-vorick/2023-12-09T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/onchain-privacy/monero-and-the-privacy-doom-principle/2023-12-09T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/onchain-privacy/2023-12-09T00:00:00+00:00https://btctranscripts.com/speakers/peter-todd/2023-12-09T00:00:00+00:00https://btctranscripts.com/tags/privacy-enhancements/2023-12-09T00:00:00+00:00https://btctranscripts.com/tags/privacy-problems/2023-12-09T00:00:00+00:00https://btctranscripts.com/tags/rbf/2023-12-09T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/onchain-privacy/teach-the-controversy-mempoolfullrbf/2023-12-09T00:00:00+00:00https://btctranscripts.com/tags/transaction-pinning/2023-12-09T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/onchain-privacy/vortex-zerolink-for-lightning-opens/2023-12-09T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/ocean-tides/2023-12-06T00:00:00+00:00https://btctranscripts.com/tags/pooled-mining/2023-12-06T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-26-0-and-f2pool-s-ofac-compliant-mining-policy/2023-11-23T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-11-20-specification-call/2023-11-20T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-11-06-specification-call/2023-11-06T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-10-23-specification-call/2023-10-23T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/2023-09-29T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/covenants-introspection-ctv-and-activation-impasse/2023-09-29T00:00:00+00:00https://btctranscripts.com/speakers/james-obeirne/2023-09-29T00:00:00+00:00https://btctranscripts.com/speakers/nvk/2023-09-29T00:00:00+00:00https://btctranscripts.com/speakers/rijndael/2023-09-29T00:00:00+00:00https://btctranscripts.com/tags/soft-fork-activation/2023-09-29T00:00:00+00:00https://btctranscripts.com/tags/vaults/2023-09-29T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-09-25-specification-call/2023-09-25T00:00:00+00:00https://btctranscripts.com/speakers/andrew-chow/2023-09-21T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/2023-09-21T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/cmake/2023-09-21T00:00:00+00:00https://btctranscripts.com/speakers/cory-fields/2023-09-21T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/wallet-legacy-upgrade/2023-09-21T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/signature-aggregation/2023-09-21T00:00:00+00:00https://btctranscripts.com/tags/signature-aggregation/2023-09-21T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/assumeutxo-update/2023-09-20T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/kernel-planning/2023-09-20T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/libsecp256k1-meeting/2023-09-20T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-design-goals/2023-09-20T00:00:00+00:00https://btctranscripts.com/tags/package-relay/2023-09-20T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/package-relay-planning/2023-09-20T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/privacy-metrics/2023-09-20T00:00:00+00:00https://btctranscripts.com/speakers/thecharlatan/2023-09-20T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/wallet-coin-selection/2023-09-19T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-working-session/2023-09-19T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/kernel-update/2023-09-18T00:00:00+00:00https://btctranscripts.com/speakers/jesse-posner/2023-09-08T00:00:00+00:00https://btctranscripts.com/speakers/jonas-nick/2023-09-08T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/libsec-panel/2023-09-08T00:00:00+00:00https://btctranscripts.com/speakers/lloyd-fournier/2023-09-08T00:00:00+00:00https://btctranscripts.com/tags/schnorr-signatures/2023-09-08T00:00:00+00:00https://btctranscripts.com/tags/threshold-signature/2023-09-08T00:00:00+00:00https://btctranscripts.com/speakers/tim-ruffing/2023-09-08T00:00:00+00:00https://btctranscripts.com/brink/the-bitcoin-development-podcast/code-review-and-bip324/2023-09-06T00:00:00+00:00https://btctranscripts.com/tags/generic-signmessage/2023-09-06T00:00:00+00:00https://btctranscripts.com/speakers/mike-schmidt/2023-09-06T00:00:00+00:00https://btctranscripts.com/speakers/sebastian-falbesoner/2023-09-06T00:00:00+00:00https://btctranscripts.com/tags/v2-p2p-transport/2023-09-06T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-08-28-specification-call/2023-08-28T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-08-14-specification-call/2023-08-14T00:00:00+00:00https://btctranscripts.com/chaincode-labs/2023-08-09T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/2023-08-09T00:00:00+00:00https://btctranscripts.com/tags/eltoo/2023-08-09T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/privacy-and-robustness-in-lightning/2023-08-09T00:00:00+00:00https://btctranscripts.com/speakers/rusty-russell/2023-08-09T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-07-31-specification-call/2023-07-31T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/mpcbros-vs-teamscript-debate/2023-07-30T00:00:00+00:00https://btctranscripts.com/tags/miniscript/2023-07-30T00:00:00+00:00https://btctranscripts.com/speakers/rob-hamilton/2023-07-30T00:00:00+00:00https://btctranscripts.com/tags/taproot/2023-07-30T00:00:00+00:00https://btctranscripts.com/speakers/arik-sosman/2023-07-18T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/layer-2/2023-07-18T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/layer-2/lightning-on-taproot/2023-07-18T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-07-17-specification-call/2023-07-17T00:00:00+00:00https://btctranscripts.com/tags/anchor-outputs/2023-07-15T00:00:00+00:00https://btctranscripts.com/tags/cpfp-carve-out/2023-07-15T00:00:00+00:00https://btctranscripts.com/speakers/elle-mouton/2023-07-15T00:00:00+00:00https://btctranscripts.com/speakers/oliver-gugger/2023-07-15T00:00:00+00:00https://btctranscripts.com/tags/ptlc/2023-07-15T00:00:00+00:00https://btctranscripts.com/tags/simple-taproot-channels/2023-07-15T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/simple-taproot-channels/2023-07-15T00:00:00+00:00https://btctranscripts.com/speakers/dusty-daemon/2023-07-10T00:00:00+00:00https://btctranscripts.com/tags/scalability/2023-07-10T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/scaling-to-billions-of-users/2023-07-10T00:00:00+00:00https://btctranscripts.com/tags/sidechains/2023-07-10T00:00:00+00:00https://btctranscripts.com/tags/splicing/2023-07-10T00:00:00+00:00https://btctranscripts.com/speakers/stephan-livera/2023-07-10T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2023-07-10T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/what-is-splicing/2023-07-10T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-v25/2023-06-26T00:00:00+00:00https://btctranscripts.com/tags/compact-block-filters/2023-06-26T00:00:00+00:00https://btctranscripts.com/tags/transaction-relay-policy/2023-06-26T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/layer-2/anchors-shackles-ark/2023-06-24T00:00:00+00:00https://btctranscripts.com/tags/ark/2023-06-24T00:00:00+00:00https://btctranscripts.com/speakers/burak-keceli/2023-06-24T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-06-19-specification-call/2023-06-19T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-06-05-specification-call/2023-06-05T00:00:00+00:00https://btctranscripts.com/speakers/alekos-filini/2023-05-23T00:00:00+00:00https://btctranscripts.com/speakers/daniela-brozzoni/2023-05-23T00:00:00+00:00https://btctranscripts.com/tags/hwi/2023-05-23T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/the-bitcoin-development-kit-bdk/2023-05-23T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-05-22-specification-call/2023-05-22T00:00:00+00:00https://btctranscripts.com/speakers/bastien-teinturier/2023-05-12T00:00:00+00:00https://btctranscripts.com/speakers/dusty-dettmer/2023-05-12T00:00:00+00:00https://btctranscripts.com/speakers/jeff-czyz/2023-05-12T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/lightning-privacy-splice-panel/2023-05-12T00:00:00+00:00https://btctranscripts.com/tags/offers/2023-05-12T00:00:00+00:00https://btctranscripts.com/tags/rv-routing/2023-05-12T00:00:00+00:00https://btctranscripts.com/speakers/tony-giorgio/2023-05-12T00:00:00+00:00https://btctranscripts.com/speakers/vivek/2023-05-12T00:00:00+00:00https://btctranscripts.com/speakers/greg-sanders/2023-05-11T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/op_vault-round-2-op_ctv/2023-05-11T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-05-08-specification-call/2023-05-08T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/layer-2/building-trustless-bridges/2023-04-29T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/layer-2/exploring-p2p-hashrate-markets-v2/2023-04-29T00:00:00+00:00https://btctranscripts.com/speakers/john-light/2023-04-29T00:00:00+00:00https://btctranscripts.com/speakers/nico-preti/2023-04-29T00:00:00+00:00https://btctranscripts.com/tags/statechains/2023-04-29T00:00:00+00:00https://btctranscripts.com/speakers/tadge-dryja/2023-04-29T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/layer-2/translational-bitcoin-development/2023-04-29T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-assumeutxo/2023-04-27T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-fuzzing/2023-04-27T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-libbitcoin-kernel/2023-04-26T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-meta-discussion/2023-04-26T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-asmap/2023-04-25T00:00:00+00:00https://btctranscripts.com/tags/cluster-mempool/2023-04-25T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-mempool-clustering/2023-04-25T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-package-relay-primer/2023-04-25T00:00:00+00:00https://btctranscripts.com/speakers/pieter-wuille/2023-04-25T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-refactors/2023-04-25T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-silent-payments/2023-04-25T00:00:00+00:00https://btctranscripts.com/speakers/suhas-daftuar/2023-04-25T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-04-24-specification-call/2023-04-24T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/peer-to-peer-encryption/2023-04-24T00:00:00+00:00https://btctranscripts.com/speakers/calle/2023-04-13T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/cashu-and-fedimint/2023-04-13T00:00:00+00:00https://btctranscripts.com/tags/ecash/2023-04-13T00:00:00+00:00https://btctranscripts.com/speakers/eric-sirion/2023-04-13T00:00:00+00:00https://btctranscripts.com/speakers/matt-odell/2023-04-13T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/lightning-history-and-everything-else/2023-03-22T00:00:00+00:00https://btctranscripts.com/tags/segwit/2023-03-22T00:00:00+00:00https://btctranscripts.com/tags/sighash-anyprevout/2023-03-22T00:00:00+00:00https://btctranscripts.com/tags/trimmed-htlc/2023-03-22T00:00:00+00:00https://btctranscripts.com/tags/dual-funding/2023-03-16T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/lets-talk-about-dual-funding-protocol-overview/2023-03-16T00:00:00+00:00https://btctranscripts.com/speakers/lisa-neigut/2023-03-16T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/onchain-privacy/splicing-lightnings-multiparty-future/2023-03-14T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/the-bitcoin-core-wallet/2023-03-09T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2023-03-06-greg-sanders/2023-03-06T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2023-03-02T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2022/2023-03-02T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2022/challenges-in-implementing-coinjoin-in-hardware-wallets/2023-03-02T00:00:00+00:00https://btctranscripts.com/tags/hardware-wallet/2023-03-02T00:00:00+00:00https://btctranscripts.com/speakers/pavol-rusnak/2023-03-02T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2023/2023-03-01T00:00:00+00:00https://btctranscripts.com/speakers/christian-lewe/2023-03-01T00:00:00+00:00https://btctranscripts.com/speakers/kevin-loaec/2023-03-01T00:00:00+00:00https://btctranscripts.com/tags/simplicity/2023-03-01T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2023/simplicity-going-beyond-miniscript/2023-03-01T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2023/timelock-enabled-safety-and-recovery-use-cases-for-bitcoin-users/2023-03-01T00:00:00+00:00https://btctranscripts.com/tags/timelocks/2023-03-01T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2023-02-27-craig-raw-bitcoin-multi-signature/2023-02-27T00:00:00+00:00https://btctranscripts.com/speakers/matt-corallo/2023-02-23T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2023-02-23-matt-corallo/2023-02-23T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/demystifying-and-understanding-bitcoin-core-development/2023-02-22T00:00:00+00:00https://btctranscripts.com/speakers/rodolfo-novak/2023-02-22T00:00:00+00:00https://btctranscripts.com/tags/ephemeral-anchors/2023-02-15T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/sighash-anyprevout-ephemeral-anchors-and-ln-symmetry-eltoo/2023-02-15T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-02-13-specification-call/2023-02-13T00:00:00+00:00https://btctranscripts.com/categories/meeting/2023-02-13T00:00:00+00:00https://btctranscripts.com/speakers/antoine-poinsot/2023-02-11T00:00:00+00:00https://btctranscripts.com/tags/fee-management/2023-02-11T00:00:00+00:00https://btctranscripts.com/bitcoin-review-podcast/op_vault-for-bitcoin-covenants-panel/2023-02-11T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/inscriptions/2023-02-08T00:00:00+00:00https://btctranscripts.com/speakers/casey-rodarmor/2023-02-02T00:00:00+00:00https://btctranscripts.com/tags/privacy/2023-02-02T00:00:00+00:00https://btctranscripts.com/speakers/sergi-delgado/2023-02-02T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/watchtowers-lightning-privacy/2023-02-02T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2023-02-02-casey-rodarmor/2023-02-02T00:00:00+00:00https://btctranscripts.com/speakers/anant-tapadia/2023-01-31T00:00:00+00:00https://btctranscripts.com/tags/scripts-addresses/2023-01-31T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/slp455-anant-tapadia-single-sig-or-multi-sig/2023-01-31T00:00:00+00:00https://btctranscripts.com/lightning-specification/2023-01-30-specification-call/2023-01-30T00:00:00+00:00https://btctranscripts.com/bitcointranscripts/2023-01-29T00:00:00+00:00https://btctranscripts.com/bitcointranscripts/stephan-livera-podcast/opvault-a-new-way-to-hodl/2023-01-29T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2023-01-23-antoine-poinsot-and-salvatore-ingala/2023-01-23T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2023-01-18-josibake/2023-01-18T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2023-01-14-james-obeirne-a-new-way-to-hodl/2023-01-14T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-v24-bug/2022-12-29T00:00:00+00:00https://btctranscripts.com/tags/adaptor-signatures/2022-12-27T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/nesting-roast-half-aggregation-adaptor-signatures/2022-12-27T00:00:00+00:00https://btctranscripts.com/tags/cryptography/2022-12-16T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/schnorr-musig-frost-and-more/2022-12-16T00:00:00+00:00https://btctranscripts.com/speakers/adam-gibson/2022-12-10T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/onchain-privacy/coinjoin-done-right-the-onchain-offchain-mix-and-anti-sybil-with-riddles/2022-12-10T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/channel-jamming-on-the-lightning-network/2022-11-23T00:00:00+00:00https://btctranscripts.com/speakers/clara-shikhelman/2022-11-23T00:00:00+00:00https://btctranscripts.com/tags/research/2022-11-23T00:00:00+00:00https://btctranscripts.com/speakers/sergei-tikhomirov/2022-11-23T00:00:00+00:00https://btctranscripts.com/tags/watchtowers/2022-11-23T00:00:00+00:00https://btctranscripts.com/speakers/dhruv/2022-11-13T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-11-13-dhruv-pieter-wuille-and-tim-ruffing/2022-11-13T00:00:00+00:00https://btctranscripts.com/adopting-bitcoin/2022-11-11T00:00:00+00:00https://btctranscripts.com/adopting-bitcoin/2022/2022-11-11T00:00:00+00:00https://btctranscripts.com/adopting-bitcoin/2022/how-to-get-started-contributing-sustainably-to-bitcoin-core/2022-11-11T00:00:00+00:00https://btctranscripts.com/speakers/jon-atack/2022-11-11T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/the-bitcoin-core-wallet-and-wrangling-bitcoin-data/2022-10-21T00:00:00+00:00https://btctranscripts.com/speakers/bob-mcelrath/2022-10-15T00:00:00+00:00https://btctranscripts.com/tabconf/2022/2022-10-15-braidpool/2022-10-15T00:00:00+00:00https://btctranscripts.com/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/2022-10-15T00:00:00+00:00https://btctranscripts.com/tabconf/2022/2022-10-15-silent-payments/2022-10-15T00:00:00+00:00https://btctranscripts.com/tabconf/2022-10-15T00:00:00+00:00https://btctranscripts.com/tabconf/2022/2022-10-15T00:00:00+00:00https://btctranscripts.com/tabconf/2022/lightning-is-broken-af-but-we-can-fix-it/2022-10-14T00:00:00+00:00https://btctranscripts.com/tabconf/2022/2022-10-14-hac-spec/2022-10-14T00:00:00+00:00https://btctranscripts.com/tabconf/2022/2022-10-14-roast/2022-10-14T00:00:00+00:00https://btctranscripts.com/tabconf/2022/weighing-transactions-the-witness-discount/2022-10-14T00:00:00+00:00https://btctranscripts.com/tabconf/2022/how-to-become-signet-rich-learn-about-bitcoin-signet-and-zebnet/2022-10-13T00:00:00+00:00https://btctranscripts.com/tags/lnd/2022-10-13T00:00:00+00:00https://btctranscripts.com/speakers/richard-safier/2022-10-13T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/2022-10-12T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-research-wishlist/2022-10-12T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-merging/2022-10-12T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-github/2022-10-11T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/2022-10-11T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-frost/2022-10-11T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-hac-spec/2022-10-11T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-package-relay/2022-10-11T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-stratum-v2/2022-10-11T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/2022-10-10T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/2022-10-10T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-v24/2022-10-07T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/lightning-updates-stratum-v2/2022-09-28T00:00:00+00:00https://btctranscripts.com/speakers/steve-lee/2022-09-28T00:00:00+00:00https://btctranscripts.com/tags/zero-conf-channels/2022-09-28T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/checking-bitcoin-balances-privately/2022-09-27T00:00:00+00:00https://btctranscripts.com/categories/club/2022-09-27T00:00:00+00:00https://btctranscripts.com/speakers/samir-menon/2022-09-27T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/2022-09-27T00:00:00+00:00https://btctranscripts.com/wasabi/2022-09-27T00:00:00+00:00https://btctranscripts.com/tags/bip32/2022-09-17T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/hd-wallets-mnemonic-codes-and-seedqr/2022-09-17T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2022-08-11T00:00:00+00:00https://btctranscripts.com/categories/meetup/2022-08-11T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2022-08-11-tim-ruffing-musig2/2022-08-11T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-08-11-gloria-zhao/2022-08-11T00:00:00+00:00https://btctranscripts.com/speakers/chelsea-komlo/2022-08-07T00:00:00+00:00https://btctranscripts.com/speakers/elizabeth-crites/2022-08-07T00:00:00+00:00https://btctranscripts.com/misc/2022-08-07-komlo-crites-frost/2022-08-07T00:00:00+00:00https://btctranscripts.com/misc/2022-08-07T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-08-02-jonas-nick-tim-ruffing/2022-08-02T00:00:00+00:00https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/fedimint/2022-07-29T00:00:00+00:00https://btctranscripts.com/speakers/justin-moon/2022-07-29T00:00:00+00:00https://btctranscripts.com/speakers/stephen-delorme/2022-07-29T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/op_return/2022-07-15T00:00:00+00:00https://btctranscripts.com/misc/2022-07-14-tim-ruffing-roast/2022-07-14T00:00:00+00:00https://btctranscripts.com/tags/htlc/2022-07-05T00:00:00+00:00https://btctranscripts.com/tags/incentives/2022-07-05T00:00:00+00:00https://btctranscripts.com/speakers/jeremy-rubin/2022-07-05T00:00:00+00:00https://btctranscripts.com/speakers/jonathan-harvey-buschel/2022-07-05T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2022/lightning-panel/2022-07-05T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2022/2022-07-05T00:00:00+00:00https://btctranscripts.com/speakers/rene-pickhardt/2022-07-05T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2022/tradeoffs-in-permissionless-systems/2022-07-05T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/silent-payments/2022-06-09T00:00:00+00:00https://btctranscripts.com/speakers/alex-myers/2022-06-07T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/2022/2022-06-07T00:00:00+00:00https://btctranscripts.com/bitcoinplusplus/2022/2022-06-07-alex-myers-minisketch-lightning-gossip/2022-06-07T00:00:00+00:00https://btctranscripts.com/speakers/0xb10c/2022-06-06T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/tracepoints-and-monitoring-the-bitcoin-network/2022-06-06T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/package-relay/2022-05-24T00:00:00+00:00https://btctranscripts.com/tags/security/2022-05-24T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/address-relay/2022-05-13T00:00:00+00:00https://btctranscripts.com/speakers/martin-zumsande/2022-05-13T00:00:00+00:00https://btctranscripts.com/speakers/andrew-poelstra/2022-05-07T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2022/bitcoin-randd-panel/2022-05-07T00:00:00+00:00https://btctranscripts.com/tags/codex32/2022-05-07T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2022/long-term-trust-and-analog-computers/2022-05-07T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/are-users-rejecting-bitcoin-forks/2022-05-07T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2022-05-05-covenants-bip119/2022-05-05T00:00:00+00:00https://btctranscripts.com/speakers/greg-maxwell/2022-05-05T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2022-05-05T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-v23/2022-04-24T00:00:00+00:00https://btctranscripts.com/speakers/carl-dong/2022-04-12T00:00:00+00:00https://btctranscripts.com/misc/2022-04-12-carl-dong-libbitcoinkernel/2022-04-12T00:00:00+00:00https://btctranscripts.com/speakers/max-hillebrand/2022-04-01T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-04-01-max-hillebrand/2022-04-01T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2022-03-29T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2022-03-29-socratic-seminar/2022-03-29T00:00:00+00:00https://btctranscripts.com/bitcoinology/2022-03-27T00:00:00+00:00https://btctranscripts.com/speakers/christian-moss/2022-03-27T00:00:00+00:00https://btctranscripts.com/bitcoinology/history-of-bitcoin-in-gaming/2022-03-27T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-03-27-rene-pickhardt/2022-03-27T00:00:00+00:00https://btctranscripts.com/bitcoinology/how-to-design-schnorr-signatures/2022-03-14T00:00:00+00:00https://btctranscripts.com/lightning-specification/2022-03-14-specification-call/2022-03-14T00:00:00+00:00https://btctranscripts.com/tags/c-lightning/2022-03-07T00:00:00+00:00https://btctranscripts.com/c-lightning/2022-03-07T00:00:00+00:00https://btctranscripts.com/c-lightning/2022-03-07-developer-call/2022-03-07T00:00:00+00:00https://btctranscripts.com/speakers/john-cantrell/2022-03-07T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-03-07-john-cantrell-sensei/2022-03-07T00:00:00+00:00https://btctranscripts.com/tags/amp/2022-03-03T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-christian-decker-greenlight/2022-03-03T00:00:00+00:00https://btctranscripts.com/speakers/jimmy-song/2022-03-03T00:00:00+00:00https://btctranscripts.com/tags/lnurl/2022-03-03T00:00:00+00:00https://btctranscripts.com/speakers/michael-folkson/2022-03-03T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-sanket-kanjalkar-miniscript/2022-03-03T00:00:00+00:00https://btctranscripts.com/speakers/sanket-kanjalkar/2022-03-03T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2022/static-invoices-in-lightning/2022-03-03T00:00:00+00:00https://btctranscripts.com/speakers/stepan-snigirev/2022-03-03T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-jimmy-song-taproot-multisig/2022-03-03T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-stepan-snigirev-taproot-hardware-wallets/2022-03-03T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2022/2022-03-03-michael-folkson-taproot-update/2022-03-03T00:00:00+00:00https://btctranscripts.com/tags/tapscript/2022-03-03T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2022-03-01-lightning-panel/2022-03-01T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/security-issue-burying-bitcoin-soft-forks/2022-02-25T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/lightning-privacy/2022-02-17T00:00:00+00:00https://btctranscripts.com/tags/topology/2022-02-17T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-02-15-chris-stewart/2022-02-15T00:00:00+00:00https://btctranscripts.com/speakers/chris-stewart/2022-02-15T00:00:00+00:00https://btctranscripts.com/lightning-specification/2022-02-14-specification-call/2022-02-14T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/block-building/2022-02-01T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-01-31-nvk-bitcoin-hardware-innovation/2022-01-31T00:00:00+00:00https://btctranscripts.com/lightning-specification/2022-01-31-specification-call/2022-01-31T00:00:00+00:00https://btctranscripts.com/tags/client-side-validation/2022-01-26T00:00:00+00:00https://btctranscripts.com/bitcoinology/2022-01-26-igor-korsakov-cool-ln-developments/2022-01-26T00:00:00+00:00https://btctranscripts.com/speakers/igor-korsakov/2022-01-26T00:00:00+00:00https://btctranscripts.com/c-lightning/2022-01-24-developer-call/2022-01-24T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-01-17-jeremy-rubin/2022-01-17T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2022-01-11-salvatore-ingala/2022-01-11T00:00:00+00:00https://btctranscripts.com/c-lightning/2022-01-10-developer-call/2022-01-10T00:00:00+00:00https://btctranscripts.com/lightning-specification/2022-01-03-specification-call/2022-01-03T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-12-17-eric-sirion/2021-12-17T00:00:00+00:00https://btctranscripts.com/bitcoinology/what-is-lightning-network/2021-12-15T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-12-13-developer-call/2021-12-13T00:00:00+00:00https://btctranscripts.com/lightning-specification/2021-12-06-specification-call/2021-12-06T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-11-29-developer-call/2021-11-29T00:00:00+00:00https://btctranscripts.com/speakers/alex-bosworth/2021-11-27T00:00:00+00:00https://btctranscripts.com/speakers/graham-krizek/2021-11-27T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-11-27-lisa-neigut-alex-bosworth-graham-krizek-and-matt-corallo/2021-11-27T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/death-to-the-mempool-long-live-the-mempool/2021-11-26T00:00:00+00:00https://btctranscripts.com/tags/cpfp/2021-11-24T00:00:00+00:00https://btctranscripts.com/speakers/john-newbery/2021-11-24T00:00:00+00:00https://btctranscripts.com/brink/the-bitcoin-development-podcast/mempool-ancestors-and-descendants/2021-11-24T00:00:00+00:00https://btctranscripts.com/lightning-specification/2021-11-22-specification-call/2021-11-22T00:00:00+00:00https://btctranscripts.com/adopting-bitcoin/2021/2021-11-17T00:00:00+00:00https://btctranscripts.com/adopting-bitcoin/2021/2021-11-17-bastien-teinturier-privacy-on-lightning/2021-11-17T00:00:00+00:00https://btctranscripts.com/adopting-bitcoin/2021/onboarding-bitcoin-and-lightning-developers/2021-11-16T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-11-16-pieter-wuille-andrew-poelstra-andrew-chow-mark-erhardt/2021-11-16T00:00:00+00:00https://btctranscripts.com/adopting-bitcoin/2021/2021-11-16-gloria-zhao-transaction-relay-policy/2021-11-16T00:00:00+00:00https://btctranscripts.com/speakers/will-clark/2021-11-16T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-11-15-developer-call/2021-11-15T00:00:00+00:00https://btctranscripts.com/speakers/nicholas-gregory/2021-11-12T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-11-12-nicholas-gregory/2021-11-12T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-was-under-attack/2021-11-11T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/miniscript/2021-11-11T00:00:00+00:00https://btctranscripts.com/brink/the-bitcoin-development-podcast/mempool-policy/2021-11-10T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-11-07-t-bast/2021-11-07T00:00:00+00:00https://btctranscripts.com/tabconf/2021/schnorr-signatures-jimmy-song/2021-11-07T00:00:00+00:00https://btctranscripts.com/tabconf/2021/2021-11-07T00:00:00+00:00https://btctranscripts.com/tabconf/2021/liquidity-advertisements-niftynei-tabconf-2021/2021-11-06T00:00:00+00:00https://btctranscripts.com/tabconf/2021/2021-11-06-andrew-poelstra-miniscript/2021-11-06T00:00:00+00:00https://btctranscripts.com/tabconf/2021/coin-selection-algorithms/2021-11-05T00:00:00+00:00https://btctranscripts.com/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/2021-11-05T00:00:00+00:00https://btctranscripts.com/tabconf/2021/lightning-dev-kit-making-lightning-more-accessible-to-developers-matt-corallo-tabconf-2021/2021-11-05T00:00:00+00:00https://btctranscripts.com/tabconf/2021/scaling-with-lnd/2021-11-05T00:00:00+00:00https://btctranscripts.com/tabconf/2021/bitcoin-mining-firmware-and-stratum-v2-rachel-rybarczyk-tabconf-2021/2021-11-04T00:00:00+00:00https://btctranscripts.com/speakers/rachel-rybarczyk/2021-11-04T00:00:00+00:00https://btctranscripts.com/speakers/calvin-kim/2021-11-02T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2021-11-02-socratic-seminar-assumeutxo/2021-11-02T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2021-11-02-socratic-seminar/2021-11-02T00:00:00+00:00https://btctranscripts.com/tags/utreexo/2021-11-02T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-11-01-developer-call/2021-11-01T00:00:00+00:00https://btctranscripts.com/speakers/k3tan/2021-10-27T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-10-27-k3tan-networking-for-bitcoiners/2021-10-27T00:00:00+00:00https://btctranscripts.com/speakers/amiti-uttarwar/2021-10-26T00:00:00+00:00https://btctranscripts.com/tags/erlay/2021-10-26T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/the-p2p-network-2/2021-10-26T00:00:00+00:00https://btctranscripts.com/speakers/dustin-trammell/2021-10-24T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-10-24-dustin-trammell/2021-10-24T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-10-18-developer-call/2021-10-18T00:00:00+00:00https://btctranscripts.com/tags/eclipse-attacks/2021-10-18T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/the-p2p-network/2021-10-18T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-10-04-developer-call/2021-10-04T00:00:00+00:00https://btctranscripts.com/speakers/philip-glazman/2021-10-02T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-10-02-philip-glazman/2021-10-02T00:00:00+00:00https://btctranscripts.com/speakers/anthony-potdevin/2021-09-29T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-09-29-thomas-jestopher-and-anthony-potdevin/2021-09-29T00:00:00+00:00https://btctranscripts.com/speakers/thomas-jestopher/2021-09-29T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-09-20-developer-call/2021-09-20T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/the-libsecp256k1-library/2021-09-18T00:00:00+00:00https://btctranscripts.com/tags/anonymity-networks/2021-09-13T00:00:00+00:00https://btctranscripts.com/tags/bech32/2021-09-13T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-v22-explained/2021-09-13T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-09-06-developer-call/2021-09-06T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-08-24-seedsigner/2021-08-24T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-08-23-developer-call/2021-08-23T00:00:00+00:00https://btctranscripts.com/iacr/2021-08-16T00:00:00+00:00https://btctranscripts.com/iacr/2021-08-16-jonas-nick-musig2/2021-08-16T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/basis-of-lightning-technology-12/2021-08-13T00:00:00+00:00https://btctranscripts.com/tags/dlc/2021-08-10T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2021-08-10-socratic-seminar-dlcs/2021-08-10T00:00:00+00:00https://btctranscripts.com/c-lightning/2021-08-09-developer-call/2021-08-09T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-08-09-rusty-russell/2021-08-09T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2021-07-20-socratic-seminar-taproot-rollout/2021-07-20T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-07-17-andrew-chow/2021-07-17T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-07-13-nvk-bitcoin-security/2021-07-13T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2021-07-06-socratic-seminar/2021-07-06T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2021-06-01-socratic-seminar/2021-06-01T00:00:00+00:00https://btctranscripts.com/wasabi/podcast/2021-05-30-improving-lightning/2021-05-30T00:00:00+00:00https://btctranscripts.com/wasabi/podcast/2021-05-30T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/chaincode-decoded-blockchain/2021-05-27T00:00:00+00:00https://btctranscripts.com/speakers/alejandro-de-la-torre/2021-05-24T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-05-24-alejandro-de-la-torre/2021-05-24T00:00:00+00:00https://btctranscripts.com/speakers/anthony-ronning/2021-05-21T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-05-21-anthony-ronning-bitcoin-lightning-privacy/2021-05-21T00:00:00+00:00https://btctranscripts.com/tags/cves/2021-05-21T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/replace-by-fee-bug/2021-05-21T00:00:00+00:00https://btctranscripts.com/speakers/pavel-moravec/2021-05-13T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-05-13-pavel-moravec/2021-05-13T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/2021-05-12-matt-corallo-ldk/2021-05-12T00:00:00+00:00https://btctranscripts.com/speakers/pete-rizzo/2021-04-28T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-04-28-pete-rizzo/2021-04-28T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/chaincode-decoded-mempool/2021-04-26T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/taproot-activation-update/2021-04-23T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/chaincode-decoded-bech32m/2021-04-16T00:00:00+00:00https://btctranscripts.com/tags/minisketch/2021-04-08T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/scaling-bitcoin-with-the-erlay-protocol/2021-04-08T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2021/2021-04-03-defending-against-99-attack/2021-04-03T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2021/2021-04-03T00:00:00+00:00https://btctranscripts.com/categories/hackathon/2021-03-27T00:00:00+00:00https://btctranscripts.com/lightning-hack-day/2021-03-27T00:00:00+00:00https://btctranscripts.com/lightning-hack-day/2021-03-27-alex-bosworth-lightning-routing/2021-03-27T00:00:00+00:00https://btctranscripts.com/tags/routing/2021-03-27T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/explaining-rgb-tokens/2021-03-26T00:00:00+00:00https://btctranscripts.com/blockstream-webinars/2021-03-25T00:00:00+00:00https://btctranscripts.com/blockstream-webinars/dual-funded-channels/2021-03-25T00:00:00+00:00https://btctranscripts.com/categories/workshop/2021-03-25T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-03-24-craig-raw-bitcoin-multi-sig/2021-03-24T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/discrete-log-contract-specification/2021-03-23T00:00:00+00:00https://btctranscripts.com/speakers/nadav-kohen/2021-03-23T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/explaining-segregated-witness/2021-03-18T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-03-17-luke-dashjr-taproot-activation/2021-03-17T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-03-17-luke-dashjr/2021-03-17T00:00:00+00:00https://btctranscripts.com/speakers/luke-dashjr/2021-03-17T00:00:00+00:00https://btctranscripts.com/speakers/adam-ficsor/2021-03-16T00:00:00+00:00https://btctranscripts.com/speakers/caleb-delisle/2021-03-16T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/cjdns/2021-03-16T00:00:00+00:00https://btctranscripts.com/speakers/lucas-ontivero/2021-03-16T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/taproot-activation-speedy-trial/2021-03-12T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/hardware-wallet-integration-in-bitcoin-core-and-hwi/2021-03-05T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-03-04-matt-corallo/2021-03-04T00:00:00+00:00https://btctranscripts.com/speakers/gleb-naumenko/2021-02-26T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/taproot-activation-lockinontimeout/2021-02-26T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-02-26-gleb-naumenko/2021-02-26T00:00:00+00:00https://btctranscripts.com/speakers/anthony-towns/2021-02-23T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2021-02-23-socratic-seminar/2021-02-23T00:00:00+00:00https://btctranscripts.com/munich-meetup/2021-02-21T00:00:00+00:00https://btctranscripts.com/munich-meetup/2021-02-21-daniela-brozzoni-stratumv2/2021-02-21T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/explaining-bitcoin-addresses/2021-02-19T00:00:00+00:00https://btctranscripts.com/tftc-podcast/2021-02-11T00:00:00+00:00https://btctranscripts.com/tftc-podcast/2021-02-11-matt-corallo-taproot-activation/2021-02-11T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/replace-by-fee-rbf/2021-02-05T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/compact-client-side-filtering/2021-01-29T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-v0-21/2021-01-21T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-01-21-wiz-and-simon-mempool/2021-01-21T00:00:00+00:00https://btctranscripts.com/speakers/simon/2021-01-21T00:00:00+00:00https://btctranscripts.com/speakers/wiz/2021-01-21T00:00:00+00:00https://btctranscripts.com/speakers/jonas-schnelli/2021-01-14T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2021-01-14-jonas-schnelli-maintaining-bitcoin-core/2021-01-14T00:00:00+00:00https://btctranscripts.com/realworldcrypto/2021/2021-01-12-tim-ruffing-musig2/2021-01-12T00:00:00+00:00https://btctranscripts.com/realworldcrypto/2021-01-12T00:00:00+00:00https://btctranscripts.com/realworldcrypto/2021/2021-01-12T00:00:00+00:00https://btctranscripts.com/tags/reproducible-builds/2020-12-18T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/why-open-source-matters-for-bitcoin/2020-12-18T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/modularizing-the-bitcoin-consensus-engine/2020-12-15T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/rsk-federated-sidechains-and-powpeg/2020-12-11T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-11-30-carl-dong-reproducible-builds/2020-11-30T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2020-11-30T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2020-11-30-socratic-seminar-20/2020-11-30T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2020-11-25-greg-maxwell-replacing-pgp/2020-11-25T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/erebus-attacks-and-how-to-stop-them-with-asmap/2020-11-19T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-eclipse-attacks-and-how-to-stop-them/2020-11-13T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-11-09-enterprise-walletsutxo-management/2020-11-09T00:00:00+00:00https://btctranscripts.com/tags/payment-batching/2020-11-09T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/open-timestamps-leveraging-bitcoin-s-security-for-all-data/2020-11-05T00:00:00+00:00https://btctranscripts.com/tags/proof-systems/2020-11-05T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2020-11-05-greg-maxwell-yubikey-security/2020-11-05T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2020-11-01-greg-maxwell-hardware-wallets-altcoins/2020-11-01T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/what-is-utreexo/2020-10-30T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-10-27-jonas-nick-tim-ruffing-musig2/2020-10-27T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2020-10-26-greg-maxwell-bitcoin-core-github/2020-10-26T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/sync-bitcoin-faster-assume-utxo/2020-10-23T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/bitcoin-core-v21-supports-tor-v3/2020-10-15T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-10-15-nadav-kohen-bitcoin-dlcs/2020-10-15T00:00:00+00:00https://btctranscripts.com/speakers/barnab%C3%A1s-b%C3%A1gyi/2020-10-09T00:00:00+00:00https://btctranscripts.com/cppcon/2020-10-09T00:00:00+00:00https://btctranscripts.com/cppcon/2020/2020-10-09T00:00:00+00:00https://btctranscripts.com/cppcon/2020/2020-10-09-barnabas-bagyi-fuzzing-class-interfaces/2020-10-09T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/accounts-for-bitcoin-easypaysy/2020-10-02T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-10-02-gloria-zhao-bitcoin-core/2020-10-02T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-09-28-michael-flaxman-security-guide/2020-09-28T00:00:00+00:00https://btctranscripts.com/speakers/michael-flaxman/2020-09-28T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/explaining-signet/2020-09-25T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-09-15-steve-lee-of-square-crypto/2020-09-15T00:00:00+00:00https://btctranscripts.com/speakers/ben-kaufman/2020-08-28T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-08-28-stepan-snigirev-and-ben-kaufman/2020-08-28T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2020-08-27-greg-maxwell-checkmultisig-bug/2020-08-27T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2020-08-25-socratic-seminar/2020-08-25T00:00:00+00:00https://btctranscripts.com/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/2020-08-20T00:00:00+00:00https://btctranscripts.com/bitcoin-design/misc/2020-08-20T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-08-19-socratic-seminar-signet/2020-08-19T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-08-13-christian-decker-lightning-topics/2020-08-13T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-08-13-christian-decker/2020-08-13T00:00:00+00:00https://btctranscripts.com/tags/multipath-payments/2020-08-13T00:00:00+00:00https://btctranscripts.com/tags/trampoline-payments/2020-08-13T00:00:00+00:00https://btctranscripts.com/chicago-bitdevs/2020-08-12T00:00:00+00:00https://btctranscripts.com/chicago-bitdevs/2020-08-12-socratic-seminar/2020-08-12T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-08-09-thomas-voegtlin-ghost43-electrum/2020-08-09T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-08-09-thomas-voegtlin-and-ghost43/2020-08-09T00:00:00+00:00https://btctranscripts.com/speakers/ghost43/2020-08-09T00:00:00+00:00https://btctranscripts.com/speakers/thomas-voegtlin/2020-08-09T00:00:00+00:00https://btctranscripts.com/speakers/eric-lombrozo/2020-08-03T00:00:00+00:00https://btctranscripts.com/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/2020-08-03T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/what-is-miniscript/2020-07-31T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-07-26-nix-bitcoin/2020-07-26T00:00:00+00:00https://btctranscripts.com/speakers/nixbitcoindev/2020-07-26T00:00:00+00:00https://btctranscripts.com/bitcoin-explained/breaking-down-taproot-activation-options/2020-07-25T00:00:00+00:00https://btctranscripts.com/speakers/elichai-turkel/2020-07-21T00:00:00+00:00https://btctranscripts.com/tags/mast/2020-07-21T00:00:00+00:00https://btctranscripts.com/speakers/openoms/2020-07-21T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-07-21-rootzoll-and-openoms-raspiblitz/2020-07-21T00:00:00+00:00https://btctranscripts.com/speakers/rootzoll/2020-07-21T00:00:00+00:00https://btctranscripts.com/speakers/russell-oconnor/2020-07-21T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2020-07-21-socratic-seminar/2020-07-21T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-07-21-socratic-seminar-bip-taproot/2020-07-21T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2020-07-20-greg-maxwell-taproot-pace/2020-07-20T00:00:00+00:00https://btctranscripts.com/vr-bitcoin/2020-07-11-jeremy-rubin-sapio-101/2020-07-11T00:00:00+00:00https://btctranscripts.com/vr-bitcoin/2020-07-11T00:00:00+00:00https://btctranscripts.com/misc/2020-07-10-what-am-i-working-on/2020-07-10T00:00:00+00:00https://btctranscripts.com/chicago-bitdevs/2020-07-08-socratic-seminar/2020-07-08T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2020-07-05-greg-maxwell-useful-proof-of-work/2020-07-05T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-06-30-john-cantrell-bruteforcing-bitcoin-seeds/2020-06-30T00:00:00+00:00https://btctranscripts.com/tags/coinswap/2020-06-23T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2020-06-23-socratic-seminar/2020-06-23T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-06-23-socratic-seminar-coinswap/2020-06-23T00:00:00+00:00https://btctranscripts.com/lightning-hack-day/2020-06-21-rootzoll-openoms-raspiblitz/2020-06-21T00:00:00+00:00https://btctranscripts.com/la-bitdevs/2020-06-18T00:00:00+00:00https://btctranscripts.com/la-bitdevs/2020-06-18-luke-dashjr-segwit-psbt-vulnerability/2020-06-18T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-06-17-tim-ruffing-schnorr-multisig/2020-06-17T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-06-16-socratic-seminar-bip-schnorr/2020-06-16T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/2020-06-15-coinswap/2020-06-15T00:00:00+00:00https://btctranscripts.com/speakers/ergo/2020-06-09T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-06-09-ergo-unwinding-bitcoin/2020-06-09T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2020-06-08-greg-maxwell-liquid-censorship-resistance/2020-06-08T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-05-27-bitcoin-coin-selection/2020-05-27T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-05-26-kevin-loaec-antoine-poinsot-revault/2020-05-26T00:00:00+00:00https://btctranscripts.com/speakers/sergi-delgado-segura/2020-05-24T00:00:00+00:00https://btctranscripts.com/lightning-hack-day/2020-05-24-sergi-delgado-watchtowers/2020-05-24T00:00:00+00:00https://btctranscripts.com/la-bitdevs/2020-05-21-alekos-filini-magical-bitcoin/2020-05-21T00:00:00+00:00https://btctranscripts.com/sydney-bitcoin-meetup/2020-05-19-socratic-seminar/2020-05-19T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-05-19-socratic-seminar-vaults/2020-05-19T00:00:00+00:00https://btctranscripts.com/vr-bitcoin/2020-05-16-oliver-gugger-lsat/2020-05-16T00:00:00+00:00https://btctranscripts.com/ruben-somsen/2020-05-11T00:00:00+00:00https://btctranscripts.com/ruben-somsen/2020-05-11-ruben-somsen-succinct-atomic-swap/2020-05-11T00:00:00+00:00https://btctranscripts.com/lightning-hack-day/2020-05-09-sergei-tikhomirov-lightning-privacy/2020-05-09T00:00:00+00:00https://btctranscripts.com/tags/payjoin/2020-05-05T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-05-05-socratic-seminar-payjoins/2020-05-05T00:00:00+00:00https://btctranscripts.com/lightning-hack-day/2020-05-03-christian-decker-lightning-backups/2020-05-03T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-04-29-kalle-rosenbaum-grokking-bitcoin/2020-04-29T00:00:00+00:00https://btctranscripts.com/speakers/kalle-rosenbaum/2020-04-29T00:00:00+00:00https://btctranscripts.com/honey-badger-diaries/2020-04-24T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-04-24-lisa-neigut-lighting-network-channel/2020-04-24T00:00:00+00:00https://btctranscripts.com/honey-badger-diaries/2020-04-24-kevin-loaec-antoine-poinsot-revault/2020-04-24T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-04-22-socratic-seminar/2020-04-22T00:00:00+00:00https://btctranscripts.com/speakers/chris-belcher/2020-04-21T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-04-21-chris-belcher/2020-04-21T00:00:00+00:00https://btctranscripts.com/speakers/joost-jager/2020-04-18T00:00:00+00:00https://btctranscripts.com/vr-bitcoin/2020-04-18-laolu-joost-oliver-lnd0.10/2020-04-18T00:00:00+00:00https://btctranscripts.com/speakers/olaoluwa-osuntokun/2020-04-18T00:00:00+00:00https://btctranscripts.com/la-bitdevs/2020-04-16-amiti-uttarwar-attacking-bitcoin-core/2020-04-16T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/anonymous-credentials/2020-04-14T00:00:00+00:00https://btctranscripts.com/tags/bls-signatures/2020-04-14T00:00:00+00:00https://btctranscripts.com/speakers/adam-back/2020-04-08T00:00:00+00:00https://btctranscripts.com/speakers/andreas-antonopoulos/2020-04-08T00:00:00+00:00https://btctranscripts.com/andreas-antonopoulos/2020-04-08T00:00:00+00:00https://btctranscripts.com/misc/2020-04-08-john-newbery-contracts-in-bitcoin/2020-04-08T00:00:00+00:00https://btctranscripts.com/blockstream-webinars/2020-04-08-adam-back-simplicity/2020-04-08T00:00:00+00:00https://btctranscripts.com/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/2020-04-08T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-04-07-gleb-naumenko-erlay/2020-04-07T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/payment-points/2020-03-30T00:00:00+00:00https://btctranscripts.com/tags/compact-block-relay/2020-03-12T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-03-12-matt-corallo-compact-blocks-fibre/2020-03-12T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2020/2020-03-07T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2020/2020-03-07-andrew-poelstra-taproot/2020-03-07T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/utxos-chaincode-decoded/2020-02-26T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2020-02-24T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/2020-02-24T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020/atomic-multi-channel-updates/2020-02-21T00:00:00+00:00https://btctranscripts.com/speakers/matteo-maffei/2020-02-21T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020-02-21T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020/2020-02-21T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020/beyond-hashrate-majority-attacks/2020-02-20T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020/competitive-equilibria-staking-lending/2020-02-20T00:00:00+00:00https://btctranscripts.com/speakers/david-tse/2020-02-20T00:00:00+00:00https://btctranscripts.com/tags/ethereum/2020-02-20T00:00:00+00:00https://btctranscripts.com/tags/proof-of-stake/2020-02-20T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020/proof-of-stake/2020-02-20T00:00:00+00:00https://btctranscripts.com/speakers/tarun-chitra/2020-02-20T00:00:00+00:00https://btctranscripts.com/speakers/vitalik-buterin/2020-02-20T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/2020-02-19T00:00:00+00:00https://btctranscripts.com/speakers/bram-cohen/2020-02-19T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/consensus-protocol-risks-and-vulnerabilities/2020-02-19T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-02-19T00:00:00+00:00https://btctranscripts.com/speakers/dan-boneh/2020-02-19T00:00:00+00:00https://btctranscripts.com/speakers/florian-tramer/2020-02-19T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020/linking-anonymous-transactions/2020-02-19T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020/welcome-remarks/2020-02-19T00:00:00+00:00https://btctranscripts.com/speakers/byron-gibson/2020-02-18T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/communication-with-regulators/2020-02-18T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/opening-remarks/2020-02-18T00:00:00+00:00https://btctranscripts.com/tags/regulation/2020-02-18T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/regulatory-pain-points/2020-02-18T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/risk-overview/2020-02-18T00:00:00+00:00https://btctranscripts.com/speakers/ryosuke-ushida/2020-02-18T00:00:00+00:00https://btctranscripts.com/speakers/shinichiro-matsuo/2020-02-18T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/stress-testing-decentralized-finance/2020-02-18T00:00:00+00:00https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/technological-stability/2020-02-18T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-02-16-waxwing-or-adam-gibson/2020-02-16T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/assumeutxo/2020-02-13T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/coinshuffle-plusplus-part-2/2020-02-11T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/2020-02-07T00:00:00+00:00https://btctranscripts.com/speakers/kalle-alm/2020-02-07T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/2020-02-07T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/2020-02-07T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/2020-02-06T00:00:00+00:00https://btctranscripts.com/speakers/antoine-riard/2020-02-06T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/2020-02-06T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/2020-02-06T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2020/2020-02-06-kalle-alm-signet-integration/2020-02-06T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-02-05-andrew-chow-hardware-wallets/2020-02-05T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/coinshuffle-plusplus-part-1/2020-02-04T00:00:00+00:00https://btctranscripts.com/speakers/james-chiang/2020-02-04T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-02-04-andrew-poelstra-miniscript/2020-02-04T00:00:00+00:00https://btctranscripts.com/speakers/raphael/2020-02-04T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2020-02-04-james-chiang-trace-net/2020-02-04T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-02-11-jeremy-rubin-ctv/2020-01-30T00:00:00+00:00https://btctranscripts.com/tags/op_checktemplateverify/2020-01-30T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-01-28-pieter-wuille-part1/2020-01-28T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-podcast/2020-01-28-pieter-wuille-part2/2020-01-28T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/2020-01-21T00:00:00+00:00https://btctranscripts.com/speakers/adam-fiscor/2020-01-20T00:00:00+00:00https://btctranscripts.com/speakers/aviv-milner/2020-01-20T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/coinshuffle/2020-01-20T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/snicker/2020-01-13T00:00:00+00:00https://btctranscripts.com/speakers/felix-maurer/2020-01-06T00:00:00+00:00https://btctranscripts.com/wasabi/research-club/knapsack-mixing/2020-01-06T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2020-01-06-andreas-antonopoulos/2020-01-06T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-12-27-aj-towns-schnorr-taproot/2019-12-27T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-12-27-aj-townsschnorr-taproot-tapscript-bips/2019-12-27T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2019-12-16-bip-taproot-bip-tapscript/2019-12-16T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-12-16-rusty-russelllightning-multi-part-payments/2019-12-16T00:00:00+00:00https://btctranscripts.com/speakers/jan-%C4%8Dapek/2019-11-27T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-11-27-jan-capekstratum-v2/2019-11-27T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/2019-11-19T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-11-16-thomas-voegtlin-electrum-wallet/2019-11-16T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-11-13-jon-atack/2019-11-13T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2019-11-13-gleb-naumenko-p2p-erlay/2019-11-13T00:00:00+00:00https://btctranscripts.com/speakers/allen-piscitello/2019-11-08T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-11-08-allen-piscitellosidechains/2019-11-08T00:00:00+00:00https://btctranscripts.com/speakers/jack-mallers/2019-10-29T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-10-29-jack-mallers/2019-10-29T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-10-24-alex-bosworth-submarine-swaps/2019-10-24T00:00:00+00:00https://btctranscripts.com/lightning-conference/2019-10-20T00:00:00+00:00https://btctranscripts.com/lightning-conference/2019/2019-10-20T00:00:00+00:00https://btctranscripts.com/lightning-conference/2019/2019-10-20-nadav-kohen-payment-points/2019-10-20T00:00:00+00:00https://btctranscripts.com/lightning-conference/2019/2019-10-20-antoine-riard-rust-lightning/2019-10-20T00:00:00+00:00https://btctranscripts.com/lightning-conference/2019/2019-10-20-bastien-teinturier-trampoline-routing/2019-10-20T00:00:00+00:00https://btctranscripts.com/lightning-conference/2019/2019-10-19-rusty-russell-offers/2019-10-19T00:00:00+00:00https://btctranscripts.com/lightning-conference/2019/2019-10-19-chris-stewart-private-key-management/2019-10-19T00:00:00+00:00https://btctranscripts.com/lightning-conference/2019/lightning-payment-pathfinding-for-reliability/2019-10-18T00:00:00+00:00https://btctranscripts.com/tags/pathfinding/2019-10-18T00:00:00+00:00https://btctranscripts.com/cryptoeconomic-systems/2019-10-15T00:00:00+00:00https://btctranscripts.com/cryptoeconomic-systems/2019/2019-10-15T00:00:00+00:00https://btctranscripts.com/cryptoeconomic-systems/2019/2019-10-15-russell-oconnor-simplicity/2019-10-15T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/2019-10-14T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-10-09T00:00:00+00:00https://btctranscripts.com/tags/dandelion/2019-10-09T00:00:00+00:00https://btctranscripts.com/speakers/giulia-fanti/2019-10-09T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-10-09-giulia-fanti-p2p-privacy-attacks/2019-10-09T00:00:00+00:00https://btctranscripts.com/categories/residency/2019-10-09T00:00:00+00:00https://btctranscripts.com/speakers/bryan-bishop/2019-10-06T00:00:00+00:00https://btctranscripts.com/cryptoeconomic-systems/2019/knowledge-aggregation-and-propagation/2019-10-06T00:00:00+00:00https://btctranscripts.com/cryptoeconomic-systems/2019/threshold-schnorr-signatures/2019-10-06T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2019-10-04-majority-miner-attack/2019-10-04T00:00:00+00:00https://btctranscripts.com/bitcoinops/2019-09-27-schnorr-taproot-workshop/2019-09-27T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-09-22-bryan-bishop/2019-09-22T00:00:00+00:00https://btctranscripts.com/baltic-honeybadger/2019-09-14T00:00:00+00:00https://btctranscripts.com/baltic-honeybadger/2019/2019-09-14T00:00:00+00:00https://btctranscripts.com/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/2019-09-14T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/anonymous-atomic-locks/2019-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/atomic-multi-channel-updates/2019-09-12T00:00:00+00:00https://btctranscripts.com/speakers/georgios-konstantopoulos/2019-09-12T00:00:00+00:00https://btctranscripts.com/speakers/kanta-matsuura/2019-09-12T00:00:00+00:00https://btctranscripts.com/speakers/pedro-moreno-sanchez/2019-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/plasma-cash/2019-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/proof-of-verification-for-proof-of-work/2019-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/payment-channel-recovery-with-seeds/2019-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/2019-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/survey-of-progress-in-zero-knowledge-proofs-towards-trustless-snarks/2019-09-11T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/private-information-retrieval/2019-09-11T00:00:00+00:00https://btctranscripts.com/speakers/ben-fisch/2019-09-11T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/bip-securethebag/2019-09-11T00:00:00+00:00https://btctranscripts.com/tags/contract-protocols/2019-09-11T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/bitml/2019-09-11T00:00:00+00:00https://btctranscripts.com/tags/lightweight-client/2019-09-11T00:00:00+00:00https://btctranscripts.com/speakers/oleg-andreev/2019-09-11T00:00:00+00:00https://btctranscripts.com/speakers/stefano-lande/2019-09-11T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/zkvm/2019-09-11T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/lightning-network-layer-by-layer/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/bitcoin-core-functional-test-framework/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/blockchain-design-patterns/2019-09-10T00:00:00+00:00https://btctranscripts.com/speakers/carla-kirk-cohen/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/bosminer/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/debugging-bitcoin/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/hardware-wallet-design-best-practices/2019-09-10T00:00:00+00:00https://btctranscripts.com/speakers/james-hilliard/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/libbitcoin/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/lightning-network-sphinx-and-onion-routing/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/lightning-network-topology/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/mining-firmware-security/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/signet/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/statechains/2019-09-10T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/accumulators/2019-09-09T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/bitcoin-data-structures/2019-09-09T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/taproot/2019-09-09T00:00:00+00:00https://btctranscripts.com/needs/2019-09-09T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/privacy-concepts/2019-09-09T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/rebroadcasting/2019-09-09T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/2019-09-09-carla-kirk-cohen-routing-problems-and-solutions/2019-09-09T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-09-09-amiti-uttarwar-transaction-rebroadcast/2019-09-09T00:00:00+00:00https://btctranscripts.com/needs/transcript/2019-09-09T00:00:00+00:00https://btctranscripts.com/speakers/udi-wertheimer/2019-09-09T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2019/wallet-architecture/2019-09-09T00:00:00+00:00https://btctranscripts.com/speakers/aviv-zohar/2019-09-08T00:00:00+00:00https://btctranscripts.com/decentralized-financial-architecture-workshop/custody-group/2019-09-08T00:00:00+00:00https://btctranscripts.com/decentralized-financial-architecture-workshop/2019-09-08T00:00:00+00:00https://btctranscripts.com/decentralized-financial-architecture-workshop/introduction/2019-09-08T00:00:00+00:00https://btctranscripts.com/blockstream-webinars/2019-09-04-christian-decker-c-lightning-questions/2019-09-04T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-08-22-fabian-jahr-debugging/2019-08-22T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/2019-08-22T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-08-22-james-chiang-taproot-policy/2019-08-22T00:00:00+00:00https://btctranscripts.com/dallas-bitcoin-symposium/2019-08-16T00:00:00+00:00https://btctranscripts.com/speakers/dhruv-bansal/2019-08-16T00:00:00+00:00https://btctranscripts.com/speakers/gideon-powell/2019-08-16T00:00:00+00:00https://btctranscripts.com/dallas-bitcoin-symposium/intro/2019-08-16T00:00:00+00:00https://btctranscripts.com/speakers/marty-bent/2019-08-16T00:00:00+00:00https://btctranscripts.com/speakers/michael-goldstein/2019-08-16T00:00:00+00:00https://btctranscripts.com/speakers/parker-lewis/2019-08-16T00:00:00+00:00https://btctranscripts.com/dallas-bitcoin-symposium/q-a/2019-08-16T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-08-16-elichai-turkel-schnorr-signatures/2019-08-16T00:00:00+00:00https://btctranscripts.com/speakers/tuur-demeester/2019-08-16T00:00:00+00:00https://btctranscripts.com/speakers/joe-netti/2019-08-12T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-08-12-rusty-russell-joe-netti/2019-08-12T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-08-08-michael-flaxman/2019-08-08T00:00:00+00:00https://btctranscripts.com/misc/2019-08-07-jonathan-metzman-structured-fuzzing/2019-08-07T00:00:00+00:00https://btctranscripts.com/speakers/jonathan-metzman/2019-08-07T00:00:00+00:00https://btctranscripts.com/blockstream-webinars/2019-07-31-rusty-russell-getting-started-with-c-lightning/2019-07-31T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-07-31-roy-sheinfeld-lightning-network-services/2019-07-31T00:00:00+00:00https://btctranscripts.com/speakers/roy-sheinfeld/2019-07-31T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-07-31-roy-sheinfeld-stephan-livera/2019-07-31T00:00:00+00:00https://btctranscripts.com/speakers/britt-kelly/2019-07-25T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-07-25-britt-kelly-btcpayserver-documentation/2019-07-25T00:00:00+00:00https://btctranscripts.com/tags/submarine-swaps/2019-07-03T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2019-07-03-alex-bosworth-submarine-swaps/2019-07-03T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2019-06-29-hardware-wallets/2019-06-29T00:00:00+00:00https://btctranscripts.com/tags/channel-factory/2019-06-28T00:00:00+00:00https://btctranscripts.com/tags/multiparty-channel/2019-06-28T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-28-christian-decker-multiparty-channels/2019-06-28T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-28-christian-decker-rendezvous-routing/2019-06-28T00:00:00+00:00https://btctranscripts.com/speakers/fabrice-drouin/2019-06-26T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-26-fabrice-drouin-limitations-of-lightweight-clients/2019-06-26T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-26-rene-pickhardt-path-finding-lightning-network/2019-06-26T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-26-rene-pickhardt-splicing/2019-06-26T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-26-rene-pickhardt-update-layer/2019-06-26T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-fabrice-drouin-attack-vectors-of-lightning-network/2019-06-25T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/2019-06-25T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-alex-bosworth-mpp/2019-06-25T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-onion-routing-deep-dive/2019-06-25T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-fabrice-drouin-routing-failures/2019-06-25T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-24-fabrice-drouin-base-and-transport-layers-of-lightning-network/2019-06-24T00:00:00+00:00https://btctranscripts.com/speakers/conner-fromknecht/2019-06-24T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-06-24-conner-fromknecht-stephan-livera/2019-06-24T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-24-rene-pickhardt-multihop-in-lightning/2019-06-24T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-19-john-newbery-wallet-development/2019-06-19T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-18-james-obeirne-advanced-segwit/2019-06-18T00:00:00+00:00https://btctranscripts.com/tftc-podcast/2019-06-18-andrew-poelstra-tftc/2019-06-18T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-17-john-newbery-security-models/2019-06-17T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2019-06-13T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2019/2019-06-13T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2019/2019-06-09-joost-jager-hodl-invoices/2019-06-13T00:00:00+00:00https://btctranscripts.com/tags/hold-invoices/2019-06-13T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-12-ethan-heilman-network-partitioning-attacks/2019-06-12T00:00:00+00:00https://btctranscripts.com/speakers/ethan-heilman/2019-06-12T00:00:00+00:00https://btctranscripts.com/lets-talk-bitcoin-podcast/2019-06-09T00:00:00+00:00https://btctranscripts.com/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/2019-06-09T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2019/p2p-encryption/2019-06-08T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2019/2019-06-08-mempool-analysis-simulation/2019-06-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-assumeutxo/2019-06-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-statechains/2019-06-07T00:00:00+00:00https://btctranscripts.com/tags/channel-factories/2019-06-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-hardware-wallets/2019-06-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/2019-06-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/2019-06-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/2019-06-06T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-great-consensus-cleanup/2019-06-06T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/2019-06-06T00:00:00+00:00https://btctranscripts.com/speakers/michael-ford/2019-06-06T00:00:00+00:00https://btctranscripts.com/tags/op_checksigfromstack/2019-06-06T00:00:00+00:00https://btctranscripts.com/tags/p2c/2019-06-06T00:00:00+00:00https://btctranscripts.com/tags/quantum-resistance/2019-06-06T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2019/secure-protocols-bip-taproot/2019-06-06T00:00:00+00:00https://btctranscripts.com/tags/sighash_anyprevout/2019-06-06T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-taproot/2019-06-06T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-utreexo/2019-06-06T00:00:00+00:00https://btctranscripts.com/speakers/wladimir-van-der-laan/2019-06-06T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-code-review/2019-06-05T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/2019-06-05T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/2019-05-27T00:00:00+00:00https://btctranscripts.com/speakers/paul-sztorc/2019-05-27T00:00:00+00:00https://btctranscripts.com/what-bitcoin-did-podcast/2019-05-14-adam-back-bryan-bishop-block-reorgs/2019-05-14T00:00:00+00:00https://btctranscripts.com/what-bitcoin-did-podcast/2019-05-14T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/fork-dynamics/2019-05-12T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019-05-12T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/2019-05-12T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/crypto-in-cryptocurrency/2019-05-12T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/the-state-of-bitcoin-mining/2019-05-12T00:00:00+00:00https://btctranscripts.com/speakers/alexandra-moxin/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-satellite-network/2019-05-11T00:00:00+00:00https://btctranscripts.com/speakers/brandon-goodell/2019-05-11T00:00:00+00:00https://btctranscripts.com/speakers/elizabeth-stark/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/future-of-privacy-coins/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/htc/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/intro/2019-05-11T00:00:00+00:00https://btctranscripts.com/speakers/leigh-cuen/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/lightning-payments/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/ln-present-and-future-panel/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/mcf-episode/2019-05-11T00:00:00+00:00https://btctranscripts.com/noded-podcast/2019-05-11-andrew-poelstra-miniscript/2019-05-11T00:00:00+00:00https://btctranscripts.com/noded-podcast/2019-05-11T00:00:00+00:00https://btctranscripts.com/speakers/phil-chen/2019-05-11T00:00:00+00:00https://btctranscripts.com/speakers/stacy-herbert/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/state-of-lightning-network/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/submarine-swaps/2019-05-11T00:00:00+00:00https://btctranscripts.com/magicalcryptoconference/2019/taxonomy-of-ln-nodes/2019-05-11T00:00:00+00:00https://btctranscripts.com/speakers/will-obeirne/2019-05-11T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2019-05-02-conner-fromknecht-lnd-0.6-beta/2019-05-02T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2019-05-01-stepan-snigirev-hardware-wallet-attacks/2019-05-01T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-04-11-james-obeirne/2019-04-11T00:00:00+00:00https://btctranscripts.com/boltathon/2019-04-06T00:00:00+00:00https://btctranscripts.com/boltathon/2019-04-06-rusty-russell-json-interface/2019-04-06T00:00:00+00:00https://btctranscripts.com/boltathon/2019-04-06-alex-bosworth-major-limitations/2019-04-06T00:00:00+00:00https://btctranscripts.com/boltathon/2019-04-06-conner-fromknecht-watchtowers/2019-04-06T00:00:00+00:00https://btctranscripts.com/speakers/daniel-lehnberg/2019-03-26T00:00:00+00:00https://btctranscripts.com/grincon/2019/lehnberg/2019-03-26T00:00:00+00:00https://btctranscripts.com/grincon/2019-03-26T00:00:00+00:00https://btctranscripts.com/grincon/2019/2019-03-26T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2019-03-15-partially-signed-bitcoin-transactions/2019-03-15T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-03-14-christian-decker-channel-factories/2019-03-14T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-03-11-chris-belcher/2019-03-11T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2019/2019-03-09T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2019/signature-scheme-security-properties/2019-03-09T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2020/attacking-evm-resource-metering/2019-02-19T00:00:00+00:00https://btctranscripts.com/speakers/benjamin-livshits/2019-02-19T00:00:00+00:00https://btctranscripts.com/speakers/daniel-perez/2019-02-19T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-02-11-jack-dorsey-elizabeth-stark/2019-02-11T00:00:00+00:00https://btctranscripts.com/speakers/jack-dorsey/2019-02-11T00:00:00+00:00https://btctranscripts.com/misc/2019-02-09-mcelrath-on-chain-defense-in-depth/2019-02-09T00:00:00+00:00https://btctranscripts.com/tags/op-checksigfromstack/2019-02-09T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2019/2019-02-07T00:00:00+00:00https://btctranscripts.com/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/2019-02-07T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2019-02-05-matt-corallo-betterhash/2019-02-05T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2019-02-04-threshold-signatures-and-accountability/2019-02-04T00:00:00+00:00https://btctranscripts.com/verifiable-delay-functions/vdf-day-2019/2019-02-03T00:00:00+00:00https://btctranscripts.com/verifiable-delay-functions/2019-02-03T00:00:00+00:00https://btctranscripts.com/verifiable-delay-functions/vdf-day-2019/dan-boneh/2019-02-03T00:00:00+00:00https://btctranscripts.com/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/2019-02-01T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2019/handel-practical-multisig-aggregation/2019-02-01T00:00:00+00:00https://btctranscripts.com/speakers/nicolas-gailly/2019-02-01T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2019/2019-02-01T00:00:00+00:00https://btctranscripts.com/speakers/alberto-sonnino/2019-01-30T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2019/building-mimblewimble-and-grin/2019-01-30T00:00:00+00:00https://btctranscripts.com/speakers/prastudy-fauzi/2019-01-30T00:00:00+00:00https://btctranscripts.com/speakers/quentin-le-sceller/2019-01-30T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2019/quisquis/2019-01-30T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2019/sybilquorum/2019-01-30T00:00:00+00:00https://btctranscripts.com/grincon/2019/dan-boneh/2019-01-28T00:00:00+00:00https://btctranscripts.com/speakers/taariq-lewis/2019-01-28T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-07-21-kukks-btcpayserver-architecture/2019-01-20T00:00:00+00:00https://btctranscripts.com/speakers/kukks/2019-01-20T00:00:00+00:00https://btctranscripts.com/speakers/nicolas-dorier/2019-01-20T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2019-01-20-nicolas-dorier-and-btcpayserver/2019-01-20T00:00:00+00:00https://btctranscripts.com/stanford-blockchain-conference/2019/plasma-cash/2019-01-20T00:00:00+00:00https://btctranscripts.com/speakers/istvan-andras-seres/2019-01-15T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2019/lightning-network-topological-analysis/2019-01-15T00:00:00+00:00https://btctranscripts.com/misc/2019-01-05-unchained-capital-socratic-seminar/2019-01-05T00:00:00+00:00https://btctranscripts.com/noded-podcast/2018-12-14-laolu-conner-lnd/2018-12-14T00:00:00+00:00https://btctranscripts.com/stephan-livera-podcast/2018-12-11-laolu-osuntokun-stephan-livera/2018-12-11T00:00:00+00:00https://btctranscripts.com/speakers/tom-kirkpatrick/2018-12-01T00:00:00+00:00https://btctranscripts.com/lightning-hack-day/2018-12-01-tom-kirkpatrick-zap-wallet/2018-12-01T00:00:00+00:00https://btctranscripts.com/lightning-hack-day/2018-10-27-pierre-rochard-excel-in-lightning/2018-10-27T00:00:00+00:00https://btctranscripts.com/speakers/pierre-rochard/2018-10-27T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-26-pierre-rochard-lightning-excel-plugin/2018-10-26T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-24-christian-decker-c-lightning-api/2018-10-24T00:00:00+00:00https://btctranscripts.com/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/2018-10-23T00:00:00+00:00https://btctranscripts.com/tags/consensus-enforcement/2018-10-23T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-elaine-ou-bootstrapping-lightning-node/2018-10-22T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-alex-bosworth-building-lightning-applications/2018-10-22T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-alex-bosworth-channel-management/2018-10-22T00:00:00+00:00https://btctranscripts.com/speakers/elaine-ou/2018-10-22T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-christian-decker-history-of-lightning/2018-10-22T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-christian-decker-lightning-bitcoin/2018-10-22T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-10-22-alex-bosworth-lightning-protocol/2018-10-22T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-10T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-10-signmessage/2018-10-10T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-09-bitcoin-optech/2018-10-09T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-09-wallet-stuff/2018-10-09T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-efficient-p2p-transaction-relay/2018-10-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/2018-10-08T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-utxo-accumulators-and-utreexo/2018-10-08T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/rebalancing-lightning/2018-10-07T00:00:00+00:00https://btctranscripts.com/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/2018-10-07T00:00:00+00:00https://btctranscripts.com/speakers/sebasti%C3%A1n-reca/2018-10-07T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/atomic-swaps/2018-10-07T00:00:00+00:00https://btctranscripts.com/speakers/thomas-eizinger/2018-10-07T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/accumulators/2018-10-06T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/analysis-of-dust-in-utxo-based-cryptocurrencies/2018-10-06T00:00:00+00:00https://btctranscripts.com/speakers/benedikt-b%C3%BCnz/2018-10-06T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/compact-multi-signatures-for-smaller-blockchains/2018-10-06T00:00:00+00:00https://btctranscripts.com/speakers/giulio-malavolta/2018-10-06T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/how-much-privacy-is-enough/2018-10-06T00:00:00+00:00https://btctranscripts.com/speakers/ian-miers/2018-10-06T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/fraud-proofs/2018-10-06T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/scriptless-ecdsa/2018-10-06T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/tokyo-2018/multi-hop-locks/2018-10-06T00:00:00+00:00https://btctranscripts.com/speakers/mustafa-al-bassam/2018-10-06T00:00:00+00:00https://btctranscripts.com/tags/multisignature/2018-10-06T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/abstract-thinking-about-consensus-systems/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/bitcoin-toolchain-unit-testing-and-deterministic-builds/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/cross-chain-swaps/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/sidechains-and-federation-models/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/reorgs/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/python-bitcoinlib/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/lightning-network/2018-10-05T00:00:00+00:00https://btctranscripts.com/speakers/marco-falke/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/overview-bitcoin-core-architecture/2018-10-05T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/protecting-yourself-and-your-business/2018-10-05T00:00:00+00:00https://btctranscripts.com/speakers/warren-togami/2018-10-05T00:00:00+00:00https://btctranscripts.com/speakers/akio-nakamura/2018-10-04T00:00:00+00:00https://btctranscripts.com/speakers/anton-yemelyanov/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/blind-signatures/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/block-structure-and-headers-utxos-merkle-trees-segwit-bip141/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/bulletproofs/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/coin-selection/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/digital-signatures/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/hierarchical-deterministic-wallets/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/introduction/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/p2pkh-p2wpkh-p2h-p2wsh/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/partially-signed-bitcoin-transactions-bip174/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/scripts-general-and-simple/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/sighash-noinput/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/taproot-and-graftroot/2018-10-04T00:00:00+00:00https://btctranscripts.com/edgedevplusplus/2018/wallet-security/2018-10-04T00:00:00+00:00https://btctranscripts.com/noded-podcast/jnewbery-cve-2018-17144-bug/2018-09-26T00:00:00+00:00https://btctranscripts.com/baltic-honeybadger/2018/2018-09-23T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2018-09-23-greg-maxwell-bitcoin-core-testing/2018-09-23T00:00:00+00:00https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-custody/2018-09-23T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2018-09-23-greg-maxwell-multiple-implementations/2018-09-23T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2018-09-19-sjors-provoost-core-hardware-wallet/2018-09-19T00:00:00+00:00https://btctranscripts.com/chaincode-labs/chaincode-residency/2018-09-18-alex-bosworth-incentive-problems-in-the-lightning-network/2018-09-18T00:00:00+00:00https://btctranscripts.com/andreas-antonopoulos/2018-08-30-andreas-antonopoulos-home-network-security/2018-08-30T00:00:00+00:00https://btctranscripts.com/austin-bitcoin-developers/2018-08-17-richard-bondi-bitcoin-cli-regtest/2018-08-17T00:00:00+00:00https://btctranscripts.com/speakers/richard-bondi/2018-08-17T00:00:00+00:00https://btctranscripts.com/speakers/jim-posen/2018-07-24T00:00:00+00:00https://btctranscripts.com/misc/2018-07-24-la-blockchain-jim-posen-lightning-bolt-by-bolt/2018-07-24T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2018-07-23-john-light-bitcoin-full-nodes/2018-07-23T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2018-07-09-taproot-schnorr-signatures-and-sighash-noinput-oh-my/2018-07-09T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/lightning-routing-ants-pheromones/2018-07-04T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/bitcoin-assets/2018-07-04T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/bootstrapping-lightning-network/2018-07-04T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018-07-04T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/2018-07-04T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/crypto-castles/2018-07-04T00:00:00+00:00https://btctranscripts.com/speakers/eric-voskuil/2018-07-04T00:00:00+00:00https://btctranscripts.com/speakers/giacomo-zucco/2018-07-04T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/libbitcoin/2018-07-04T00:00:00+00:00https://btctranscripts.com/speakers/ricardo-perez-marco/2018-07-04T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/anonymous-bitcoin/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/blind-signatures-and-scriptless-scripts/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/coinjoinxt/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/binary-transparency/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/current-and-future-state-of-wallets/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/dandelion/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/btcpay/2018-07-03T00:00:00+00:00https://btctranscripts.com/speakers/lawrence-nahum/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/single-use-seals/2018-07-03T00:00:00+00:00https://btctranscripts.com/speakers/thomas-kerin/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/tooling/2018-07-03T00:00:00+00:00https://btctranscripts.com/building-on-bitcoin/2018/working-on-scripts/2018-07-03T00:00:00+00:00https://btctranscripts.com/london-bitcoin-devs/2018-06-12-adam-gibson-unfairly-linear-signatures/2018-06-12T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2019/bitcoin-build-system/2018-06-08T00:00:00+00:00https://btctranscripts.com/layer2-summit/2018-05-25T00:00:00+00:00https://btctranscripts.com/layer2-summit/2018/2018-05-25T00:00:00+00:00https://btctranscripts.com/layer2-summit/2018/scriptless-scripts/2018-05-25T00:00:00+00:00https://btctranscripts.com/layer2-summit/2018/lightning-overview/2018-04-25T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2018-04-23-jeremy-rubin-bitcoin-core/2018-04-23T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2018-04-20-laolu-osuntokun-exploring-lnd0.4/2018-04-20T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/2018-03-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/2018-03-06T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/2018-03-06T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/2018-03-05T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/2018-03-05T00:00:00+00:00https://btctranscripts.com/speakers/ron-paul/2018-02-06T00:00:00+00:00https://btctranscripts.com/satoshi-roundtable/sr-004/ron-paul/2018-02-06T00:00:00+00:00https://btctranscripts.com/satoshi-roundtable/2018-02-06T00:00:00+00:00https://btctranscripts.com/satoshi-roundtable/sr-004/2018-02-06T00:00:00+00:00https://btctranscripts.com/misc/2018-02-02-andrew-poelstra-bulletproofs/2018-02-02T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018-01-31T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/2018-01-31T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/proofs-of-space/2018-01-31T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/schnorr-signatures-for-bitcoin-challenges-opportunities/2018-01-31T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/hardening-lightning/2018-01-30T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/2018-01-25-russell-oconnor-simplicity/2018-01-25T00:00:00+00:00https://btctranscripts.com/speakers/christopher-allen/2018-01-24T00:00:00+00:00https://btctranscripts.com/misc/2018-01-24-rusty-russell-future-bitcoin-tech-directions/2018-01-24T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/2018-01-24-christopher-allen-smart-signatures/2018-01-24T00:00:00+00:00https://btctranscripts.com/realworldcrypto/2018/mimblewimble-and-scriptless-scripts/2018-01-11T00:00:00+00:00https://btctranscripts.com/realworldcrypto/2018/2018-01-11T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2017-12-22-bech32-design/2017-12-22T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2017-11-27-gmaxwell-advances-in-block-propagation/2017-11-27T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/how-to-charge-lightning/2017-11-05T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/incentives-tradeoffs-transaction-selection-in-dag-based-protocols/2017-11-05T00:00:00+00:00https://btctranscripts.com/speakers/joi-ito/2017-11-05T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/joi-ito/2017-11-05T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/microchains/2017-11-05T00:00:00+00:00https://btctranscripts.com/speakers/nick-szabo/2017-11-05T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/weak-signal-radio-communications-for-bitcoin-network-resilience/2017-11-05T00:00:00+00:00https://btctranscripts.com/speakers/yonatan-sompolinsky/2017-11-05T00:00:00+00:00https://btctranscripts.com/speakers/andrew-stone/2017-11-04T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/bitcoin-script-v2.0-and-strengthened-payment-channels/2017-11-04T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/blocksci-platform/2017-11-04T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/bolt-anonymous-payment-channels-for-decentralized-currencies/2017-11-04T00:00:00+00:00https://btctranscripts.com/speakers/harry-kalodner/2017-11-04T00:00:00+00:00https://btctranscripts.com/speakers/johnson-lau/2017-11-04T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/measuring-network-maximum-sustained-transaction-throughput/2017-11-04T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/stanford-2017/valueshuffle-mixing-confidential-transactions/2017-11-04T00:00:00+00:00https://btctranscripts.com/cppcon/2017/2017-10-11T00:00:00+00:00https://btctranscripts.com/cppcon/2017/2017-10-11-kostya-serebryany-fuzzing/2017-10-11T00:00:00+00:00https://btctranscripts.com/speakers/kostya-serebryany/2017-10-11T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/2017-09-10T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/changing-consensus-rules-without-breaking-bitcoin/2017-09-10T00:00:00+00:00https://btctranscripts.com/speakers/christopher-jeffrey/2017-09-10T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/2017-09-10-christopher-jeffrey-consensus-pitfalls/2017-09-10T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/interview-adam-back-elizabeth-stark/2017-09-10T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/solar-powered-space-pirates/2017-09-10T00:00:00+00:00https://btctranscripts.com/speakers/antoine-le-calvez/2017-09-09T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/breaking-hardware-wallets/2017-09-09T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/spam-attacks-analysis/2017-09-09T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/light-clients-during-2017-interfork-period/2017-09-09T00:00:00+00:00https://btctranscripts.com/speakers/nicolas-bacca/2017-09-09T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/socialized-costs-of-hard-forks/2017-09-09T00:00:00+00:00https://btctranscripts.com/breaking-bitcoin/2017/banks-as-bitcoin-custodians/2017-09-09T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/2017-09-07T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/2017-09-06T00:00:00+00:00https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/2017-09-05T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2017-09-04-jonas-schnelli-bip150-bip151/2017-09-04T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2017-08-28-gmaxwell-deep-dive-bitcoin-core-v0.15/2017-08-28T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2017-07-08-bram-cohen-merkle-sets/2017-07-08T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2017-06-06-laolu-osuntokun-neutrino/2017-06-06T00:00:00+00:00https://btctranscripts.com/lets-talk-bitcoin-podcast/2017-06-04-consensus-uasf-and-forks/2017-06-04T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2017-04-28-gmaxwell-confidential-transactions/2017-04-28T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2017-04-03-andreas-antonopoulos-bitcoin-scripting/2017-04-03T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2017-03-29-new-address-type-for-segwit-addresses/2017-03-29T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/bitcoin-mining-and-trustlessness/2017-03-04T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/exchange-security/2017-03-04T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/ideal-number-of-full-bitcoin-nodes/2017-03-04T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/mimblewimble-and-scriptless-scripts/2017-03-04T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/2017-03-04T00:00:00+00:00https://btctranscripts.com/speakers/mitchell-dong/2017-03-04T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/scaling-and-utxos/2017-03-04T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/2017-02-03T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/scalable-smart-contracts-via-proofs-and-single-use-seals/2017-02-03T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/lightning-network-security-analysis/2017-02-03T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/2017-01-26-jeremy-rubin-covenants/2017-01-26T00:00:00+00:00https://btctranscripts.com/speakers/dan-robinson/2017-01-26T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/2017-01-26-dan-robinson-ivy/2017-01-26T00:00:00+00:00https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2017/2017-01-26-russell-oconnor-posts-theorem/2017-01-26T00:00:00+00:00https://btctranscripts.com/lets-talk-bitcoin-podcast/2016-12-25-christopher-jeffrey-consensus-barnacles/2016-12-25T00:00:00+00:00https://btctranscripts.com/speakers/roger-ver/2016-12-14T00:00:00+00:00https://btctranscripts.com/misc/2016-12-14-whalepool/2016-12-14T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2016-11-21-mimblewimble/2016-11-21T00:00:00+00:00https://btctranscripts.com/misc/2016-adam-back/2016-11-04T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/schnorr-signatures/2016-10-10T00:00:00+00:00https://btctranscripts.com/speakers/arthur-gervais/2016-10-09T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/bip151-peer-encryption/2016-10-09T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/covenants/2016-10-09T00:00:00+00:00https://btctranscripts.com/speakers/emin-gun-sirer/2016-10-09T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/segwit-lessons-learned/2016-10-09T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/on-the-security-and-performance-of-proof-of-work-blockchains/2016-10-09T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/client-side-validation/2016-10-09T00:00:00+00:00https://btctranscripts.com/speakers/adlai-chandrasekhar/2016-10-08T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/flare-routing-in-lightning/2016-10-08T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/fungibility-overview/2016-10-08T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/joinmarket/2016-10-08T00:00:00+00:00https://btctranscripts.com/speakers/leen-alshenibr/2016-10-08T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/lightning/2016-10-08T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/mimblewimble/2016-10-08T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/onion-routing-in-lightning/2016-10-08T00:00:00+00:00https://btctranscripts.com/speakers/pavel-prihodko/2016-10-08T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/milan-2016/tumblebit/2016-10-08T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2016-09-28-christopher-jeffrey-bcoin/2016-09-28T00:00:00+00:00https://btctranscripts.com/speakers/brian-deery/2016-08-07T00:00:00+00:00https://btctranscripts.com/speakers/chris-odom/2016-08-07T00:00:00+00:00https://btctranscripts.com/misc/mimblewimble-podcast/2016-08-07T00:00:00+00:00https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/dan-boneh/2016-08-01T00:00:00+00:00https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/2016-08-01T00:00:00+00:00https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/cali2016/2016-07-30T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2016-07-18-laolu-osuntokun-lightning-network/2016-07-18T00:00:00+00:00https://btctranscripts.com/w3-blockchain-workshop-2016/lightning-network/2016-06-30T00:00:00+00:00https://btctranscripts.com/w3-blockchain-workshop-2016/2016-06-30T00:00:00+00:00https://btctranscripts.com/speakers/doug-schepers/2016-06-29T00:00:00+00:00https://btctranscripts.com/w3-blockchain-workshop-2016/intro/2016-06-29T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2016-04-11-lightning-network-as-a-directed-graph-single-funded-channel-network-topology/2016-04-11T00:00:00+00:00https://btctranscripts.com/misc/adam3us-bitcoin-scaling-tradeoffs/2016-04-05T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/pindar-wong/2016-03-05T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/2016-03-05T00:00:00+00:00https://btctranscripts.com/speakers/pindar-wong/2016-03-05T00:00:00+00:00https://btctranscripts.com/speakers/joseph-poon/2015-12-07T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/hong-kong-2015/network-topologies-and-their-scalability-implications-on-decentralized-off-chain-networks/2015-12-07T00:00:00+00:00https://btctranscripts.com/tags/bandwidth-reduction/2015-12-06T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/hong-kong-2015/fungibility-and-scalability/2015-12-06T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/hong-kong-2015/invertible-bloom-lookup-tables-and-weak-block-propagation-performance/2015-12-06T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2015-11-09-gmaxwell-mining-and-block-size-etc/2015-11-09T00:00:00+00:00https://btctranscripts.com/speakers/andrew-miller/2015-09-13T00:00:00+00:00https://btctranscripts.com/categories/developer-tools/2015-09-13T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/montreal-2015/block-synchronization-time/2015-09-13T00:00:00+00:00https://btctranscripts.com/speakers/patrick-strateman/2015-09-13T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/montreal-2015/sharding-the-blockchain/2015-09-13T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/montreal-2015/systematizing-knowledge/2015-09-13T00:00:00+00:00https://btctranscripts.com/speakers/vlad-zamfir/2015-09-13T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/montreal-2015/transaction-fee-estimation/2015-09-12T00:00:00+00:00https://btctranscripts.com/speakers/miles-carlsten/2015-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/montreal-2015/overview-of-security-concerns/2015-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/montreal-2015/privacy-preserving-smart-contracts/2015-09-12T00:00:00+00:00https://btctranscripts.com/speakers/ranjit-kumaresan/2015-09-12T00:00:00+00:00https://btctranscripts.com/scalingbitcoin/montreal-2015/security-of-diminishing-block-subsidy/2015-09-12T00:00:00+00:00https://btctranscripts.com/misc/2015-09-07-epicenter-bitcoin-adam3us-scalability/2015-09-07T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2015-08-24-pieter-wuille-key-tree-signatures/2015-08-24T00:00:00+00:00https://btctranscripts.com/speakers/daniele-micciancio/2015-07-15T00:00:00+00:00https://btctranscripts.com/simons-institute/history-of-lattice-based-cryptography/2015-07-15T00:00:00+00:00https://btctranscripts.com/simons-institute/2015-07-15T00:00:00+00:00https://btctranscripts.com/simons-institute/pairing-cryptography/2015-07-14T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2015-06-08-gmaxwell-sidechains-elements/2015-06-08T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2015-05-26-lightning-network/2015-05-26T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2015-04-29-gmaxwell-bitcoin-selection-cryptography/2015-04-29T00:00:00+00:00https://btctranscripts.com/speakers/madars-virza/2015-03-08T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/2015-03-08T00:00:00+00:00https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/zerocash-and-zero-knowledge-succint-arguments-of-knowledge-libsnark/2015-03-08T00:00:00+00:00https://btctranscripts.com/sf-bitcoin-meetup/2015-02-23-scaling-bitcoin-to-billions-of-transactions-per-day/2015-02-23T00:00:00+00:00https://btctranscripts.com/misc/bitcoin-sidechains-unchained-epicenter-adam3us-gmaxwell/2015-02-03T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2015-01-08-libsecp256k1-testing/2015-01-08T00:00:00+00:00https://btctranscripts.com/greg-maxwell/2015-01-08-openssl-bug/2015-01-08T00:00:00+00:00https://btctranscripts.com/misc/nydfs-bitlicense-lawsky-update/2014-12-18T00:00:00+00:00https://btctranscripts.com/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/2014-10-08T00:00:00+00:00https://btctranscripts.com/misc/bitcoin-adam3us-fungibility-privacy/2014-02-09T00:00:00+00:00https://btctranscripts.com/style/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/a-bevy-of-block-size-proposals-bip100-bip102-and-more/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/a-flexible-limit-trading-subsidy-for-larger-blocks/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/scaling-oblivious-read-write/https://btctranscripts.com/simons-institute/a-wishlist-for-verifiable-computation/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/abstract-groups/https://btctranscripts.com/tags/accidental-confiscation/https://btctranscripts.com/tags/acc/https://btctranscripts.com/bit-block-boom/2019/accumulating-bitcoin/https://btctranscripts.com/stanford-blockchain-conference/2019/accumulators/https://btctranscripts.com/speakers/adam-ludwin/https://btctranscripts.com/tags/addr-v2/https://btctranscripts.com/speakers/aki-balogh/https://btctranscripts.com/speakers/alan-reiner/https://btctranscripts.com/speakers/alena-vranova/https://btctranscripts.com/speakers/alessandro-chiesa/https://btctranscripts.com/speakers/alex-petrov/https://btctranscripts.com/speakers/alex-zinder/https://btctranscripts.com/speakers/alexander-chepurnoy/https://btctranscripts.com/speakers/alexander-zaidelson/https://btctranscripts.com/speakers/alexei-zamyatin/https://btctranscripts.com/speakers/alicia-bendhan/https://btctranscripts.com/cryptoeconomic-systems/2019/all-about-decentralized-trust/https://btctranscripts.com/tags/altcoin/https://btctranscripts.com/scalingbitcoin/montreal-2015/alternatives-to-block-size-as-aggregate-resource-limits/https://btctranscripts.com/scalingbitcoin/montreal-2015/amiko-pay/https://btctranscripts.com/speakers/andy-ofiesh/https://btctranscripts.com/tags/annex/https://btctranscripts.com/stanford-blockchain-conference/2020/arbitrum-v2/https://btctranscripts.com/w3-blockchain-workshop-2016/archival-science/https://btctranscripts.com/speakers/ari-juels/https://btctranscripts.com/speakers/ariel-gabizon/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/armory-proof-of-payment/https://btctranscripts.com/speakers/arvind-narayanan/https://btctranscripts.com/w3-blockchain-workshop-2016/arvind-narayanan/https://btctranscripts.com/tags/asicboost/https://btctranscripts.com/stanford-blockchain-conference/2019/asics/https://btctranscripts.com/speakers/assimakis-kattis/https://btctranscripts.com/tags/async-payments/https://btctranscripts.com/scalingbitcoin/stanford-2017/atomically-trading-with-roger-gambling-on-the-success-of-a-hard-fork/https://btctranscripts.com/stanford-blockchain-conference/2019/aurora-transparent-succinct-arguments-r1cs/https://btctranscripts.com/speakers/austin-hill/https://btctranscripts.com/stanford-blockchain-conference/2019/vulnerability-detection/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/backpackers/https://btctranscripts.com/speakers/baker-marquart/https://btctranscripts.com/speakers/balaji-srinivasan/https://btctranscripts.com/speakers/barry-silbert/https://btctranscripts.com/speakers/bart-suichies/https://btctranscripts.com/speakers/ben-maurer/https://btctranscripts.com/speakers/benjamin-chan/https://btctranscripts.com/speakers/benjamin-lawsky/https://btctranscripts.com/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/bip101-block-propagation-data-from-testnet/https://btctranscripts.com/tags/bip70-payment-protocol/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/bip99-and-uncontroversial-hard-forks/https://btctranscripts.com/bit-block-boom/https://btctranscripts.com/bit-block-boom/2019/https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-block-propagation-iblt-rusty-russell/https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/https://btctranscripts.com/london-bitcoin-devs/jnewbery-bitcoin-core-v0.17/https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-developers/https://btctranscripts.com/edgedevplusplus/2017/https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-failure-modes-and-the-role-of-the-lightning-network/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-financing-and-trading/https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-load-spike-simulation/https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-maximalism-dissected/https://btctranscripts.com/stanford-blockchain-conference/2019/bitcoin-payment-economic-analysis/https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/https://btctranscripts.com/edgedevplusplus/2017/p2p-john-newbery/https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-protocol-development-panel/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-regulation-landscape/https://btctranscripts.com/scalingbitcoin/montreal-2015/relay-network/https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-security/https://btctranscripts.com/breaking-bitcoin/2019/selfish-mining/https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-without-internet/https://btctranscripts.com/bit-block-boom/2019/there-can-only-be-one/https://btctranscripts.com/tags/block-explorers/https://btctranscripts.com/stanford-blockchain-conference/2020/block-rewards/https://btctranscripts.com/tags/block-withholding/https://btctranscripts.com/coindesk-consensus-2016/blockchain-database-technology-in-a-global-context/https://btctranscripts.com/w3-blockchain-workshop-2016/blockchain-hub/https://btctranscripts.com/scalingbitcoin/montreal-2015/blockchain-testbed/https://btctranscripts.com/stanford-blockchain-conference/2020/blockchains-for-multiplayer-games/https://btctranscripts.com/stanford-blockchain-conference/2019/bloxroute/https://btctranscripts.com/speakers/bobby-cho/https://btctranscripts.com/speakers/bobby-lee/https://btctranscripts.com/stanford-blockchain-conference/2020/boomerang/https://btctranscripts.com/speakers/boyma-fahnbulleh/https://btctranscripts.com/speakers/brad-peterson/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/braiding-the-blockchain/https://btctranscripts.com/speakers/brandon-black/https://btctranscripts.com/breaking-bitcoin/2019/breaking-bitcoin-privacy/https://btctranscripts.com/scalingbitcoin/milan-2016/breaking-the-chain/https://btctranscripts.com/breaking-bitcoin/2019/breaking-wasabi/https://btctranscripts.com/speakers/brett-seyler/https://btctranscripts.com/speakers/brian-kelly/https://btctranscripts.com/speakers/brian-klein/https://btctranscripts.com/speakers/brian-n.-levine/https://btctranscripts.com/speakers/brian-okeefe/https://btctranscripts.com/stanford-blockchain-conference/2020/brick-async-state-channels/https://btctranscripts.com/speakers/bruce-fenton/https://btctranscripts.com/scalingbitcoin/milan-2016/build-scale-operate/https://btctranscripts.com/tags/build-systems/https://btctranscripts.com/stanford-blockchain-conference/2019/building-bulletproofs/https://btctranscripts.com/bit-block-boom/2019/building-vibrant-bitcoin-communities/https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/bulletproofs/https://btctranscripts.com/stanford-blockchain-conference/2019/casper/https://btctranscripts.com/speakers/cathie-yun/https://btctranscripts.com/stanford-blockchain-conference/2020/celo-ultralight-client/https://btctranscripts.com/misc/cftc-bitcoin/https://btctranscripts.com/scalingbitcoin/milan-2016/chainbreak/https://btctranscripts.com/scalingbitcoin/stanford-2017/changes-without-unanimous-consent/https://btctranscripts.com/tags/channel-announcements/https://btctranscripts.com/tags/channel-commitment-upgrades/https://btctranscripts.com/tags/channel-jamming-attacks/https://btctranscripts.com/speakers/charles-cascarilla/https://btctranscripts.com/speakers/charles-guillemet/https://btctranscripts.com/speakers/charlie-lee/https://btctranscripts.com/speakers/chris-church/https://btctranscripts.com/speakers/chris-tse/https://btctranscripts.com/w3-blockchain-workshop-2016/christopher-allen/https://btctranscripts.com/coindesk-consensus-2016/clearing-and-settlement-for-global-financial-institutions/https://btctranscripts.com/stanford-blockchain-conference/2020/clockwork-nonfrontrunning/https://btctranscripts.com/tags/cltv-expiry-delta/https://btctranscripts.com/scalingbitcoin/milan-2016/coin-selection/https://btctranscripts.com/coindesk-consensus-2016/https://btctranscripts.com/scalingbitcoin/montreal-2015/coinscope-andrew-miller/https://btctranscripts.com/speakers/come-plooy/https://btctranscripts.com/verifiable-delay-functions/vdf-day-2019/comments-and-observations-about-timelocks-ron-rivest/https://btctranscripts.com/scalingbitcoin/montreal-2015/competitive-fee-market-urgency/https://btctranscripts.com/decentralized-financial-architecture-workshop/compliance-and-confidentiality/https://btctranscripts.com/scalingbitcoin/stanford-2017/concurrency-and-privacy-with-payment-channel-networks/https://btctranscripts.com/speakers/constance-choi/https://btctranscripts.com/stanford-blockchain-conference/2019/coordinated-upgrades/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/cory-fields/https://btctranscripts.com/tags/countersign/https://btctranscripts.com/cryptoeconomic-systems/2019/cross-chain-deals-and-adversarial-commerce/https://btctranscripts.com/magicalcryptoconference/2019/cryptographic-hocus-pocus/https://btctranscripts.com/grincon/2019/cryptography-audit/https://btctranscripts.com/scalingbitcoin/stanford-2017/state-of-cryptography/https://btctranscripts.com/misc/ctv-bip-review-workshop/https://btctranscripts.com/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/https://btctranscripts.com/tags/cve-2018-17144/https://btctranscripts.com/speakers/dahlia-malkhi/https://btctranscripts.com/speakers/daniel-cline/https://btctranscripts.com/speakers/daniel-hinton/https://btctranscripts.com/speakers/daniel-j.-bernstein/https://btctranscripts.com/speakers/daniel-marquez/https://btctranscripts.com/speakers/daniel-robinson/https://btctranscripts.com/speakers/dave-levin/https://btctranscripts.com/speakers/david-bailey/https://btctranscripts.com/speakers/david-rutter/https://btctranscripts.com/speakers/david-schwartz/https://btctranscripts.com/baltic-honeybadger/2018/day-1-closing-panel/https://btctranscripts.com/scalingbitcoin/milan-2016/day-1-group-summaries/https://btctranscripts.com/scalingbitcoin/milan-2016/day-2-group-summaries/https://btctranscripts.com/w3-blockchain-workshop-2016/day-2-groups/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/day-2-opening/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/decentralization-through-game-theory/https://btctranscripts.com/stanford-blockchain-conference/2020/decentralized-oracles-tls/https://btctranscripts.com/tags/default-minimum-transaction-relay-feerates/https://btctranscripts.com/coindesk-consensus-2016/marco-santori-delaware-initiative/https://btctranscripts.com/scalingbitcoin/tokyo-2018/deploying-blockchain-at-scale-lessons-from-the-internet-deployment-in-japan/https://btctranscripts.com/building-on-bitcoin/2018/lightning-wallet-design/https://btctranscripts.com/w3-blockchain-workshop-2016/deterministic-signatures-group/https://btctranscripts.com/w3-blockchain-workshop-2016/petertodd-dex/https://btctranscripts.com/misc/discreet-log-contracts/https://btctranscripts.com/scalingbitcoin/stanford-2017/discreet-log-contracts/https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/discreet-log-contracts-oracles-loans-stablecoins-and-more/https://btctranscripts.com/speakers/duc-v.-le/https://btctranscripts.com/tags/duplicate-transactions/https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/economic-risks/https://btctranscripts.com/speakers/ed-felten/https://btctranscripts.com/speakers/edward-budd/https://btctranscripts.com/stanford-blockchain-conference/2019/threshold-signatures/https://btctranscripts.com/speakers/elaine-shi/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/elastic-block-caps/https://btctranscripts.com/speakers/eleftherios-kokoris-kogias/https://btctranscripts.com/speakers/eli-ben-sasson/https://btctranscripts.com/scalingbitcoin/milan-2016/collective-signing/https://btctranscripts.com/speakers/eran-tromer/https://btctranscripts.com/speakers/eric-martindale/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/erlay/https://btctranscripts.com/w3-blockchain-workshop-2016/ethcore/https://btctranscripts.com/stanford-blockchain-conference/2019/ethereum2/https://btctranscripts.com/cryptoeconomic-systems/2019/everything-is-broken/https://btctranscripts.com/tags/exfiltration-resistant-signing/https://btctranscripts.com/tags/expiration-floods/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/extensibility/https://btctranscripts.com/breaking-bitcoin/2019/extracting-seeds-from-hardware-wallets/https://btctranscripts.com/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/https://btctranscripts.com/misc/failures-of-secret-key-cryptography/https://btctranscripts.com/speakers/fan-zhang/https://btctranscripts.com/scalingbitcoin/milan-2016/fast-difficulty-adjustment/https://btctranscripts.com/tags/fee-estimation/https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-fabrice-drouin-fee-management/https://btctranscripts.com/scalingbitcoin/montreal-2015/peter-r/https://btctranscripts.com/tags/fee-sniping/https://btctranscripts.com/tags/fee-sourcing/https://btctranscripts.com/tags/fee-sponsorship/https://btctranscripts.com/bit-block-boom/2019/fiat-money-fiat-food/https://btctranscripts.com/stanford-blockchain-conference/2020/smart-contract-bug-hunting/https://btctranscripts.com/breaking-bitcoin/2019/defense-of-bitcoin/https://btctranscripts.com/cryptoeconomic-systems/2019/flash-boys-v2/https://btctranscripts.com/speakers/florian-maier/https://btctranscripts.com/scalingbitcoin/stanford-2017/flyclient-super-light-clients-for-cryptocurrencies/https://btctranscripts.com/stanford-blockchain-conference/2019/formal-verification/https://btctranscripts.com/scalingbitcoin/tokyo-2018/forward-blocks/https://btctranscripts.com/stanford-blockchain-conference/2020/fractal/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/fraud-proofs-petertodd/https://btctranscripts.com/tags/free-relay/https://btctranscripts.com/breaking-bitcoin/2019/fud-perceived-vs-real-bitcoin-risks/https://btctranscripts.com/cryptoeconomic-systems/2019/funding/https://btctranscripts.com/coindesk-consensus-2016/future-of-blockchains/https://btctranscripts.com/coindesk-consensus-2016/future-of-regulation/https://btctranscripts.com/scalingbitcoin/montreal-2015/future-of-spv-tech/https://btctranscripts.com/decentralized-financial-architecture-workshop/g20-discussion/https://btctranscripts.com/tags/gap-limits/https://btctranscripts.com/speakers/gavin-andresen/https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/gavinandresen/https://btctranscripts.com/speakers/georgia-avarikioti/https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/jihan-wu-google-tech-talk/https://btctranscripts.com/texas-bitcoin-conference-2014/gox/https://btctranscripts.com/scalingbitcoin/stanford-2017/graphene-set-reconciliation/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/group-updates/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/groups/https://btctranscripts.com/w3-blockchain-workshop-2016/groups-identity/https://btctranscripts.com/coindesk-consensus-2016/hackathon-intro/https://btctranscripts.com/stanford-blockchain-conference/2020/hardware-accelerated-rsa/https://btctranscripts.com/speakers/henry-de-valence/https://btctranscripts.com/dallas-bitcoin-symposium/history-and-extrapolation/https://btctranscripts.com/coindesk-consensus-2016/how-tech-companies-are-embracing-blockchain-database-technology/https://btctranscripts.com/coindesk-consensus-2016/how-to-get-bitcoin/https://btctranscripts.com/bit-block-boom/2019/how-to-meme-bitcoin-to-the-moon/https://btctranscripts.com/scalingbitcoin/montreal-2015/how-to-mine-bitcoin-profitably/https://btctranscripts.com/tags/htlc-endorsement/https://btctranscripts.com/stanford-blockchain-conference/2019/htlcs-considered-harmful/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/human-side-trust-workshop/https://btctranscripts.com/speakers/hutchins/https://btctranscripts.com/speakers/ian-lee/https://btctranscripts.com/decentralized-financial-architecture-workshop/implications/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/maaku-panel/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2018/improving-bitcoin-smart-contract-efficiency/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/in-adversarial-environments-blockchains-dont-scale/https://btctranscripts.com/tags/inbound-forwarding-fees/https://btctranscripts.com/scalingbitcoin/tokyo-2018/incentivizing-payment-channel-watchtowers/https://btctranscripts.com/coindesk-consensus-2016/internal-approaches-blockchain-database-technology-strategies/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/internet-of-value/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/intro/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/intro/https://btctranscripts.com/scalingbitcoin/milan-2016/intro/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/intro/https://btctranscripts.com/w3-blockchain-workshop-2016/wendy/https://btctranscripts.com/cryptoeconomic-systems/2019/introduction/https://btctranscripts.com/scalingbitcoin/stanford-2017/intro/https://btctranscripts.com/scalingbitcoin/tokyo-2018/introduction/https://btctranscripts.com/baltic-honeybadger/2018/investing-in-bitcoin-businesses/https://btctranscripts.com/w3-blockchain-workshop-2016/ipfs/https://btctranscripts.com/scalingbitcoin/montreal-2015/issues-impacting-block-size-proposals/https://btctranscripts.com/speakers/ittai-abraham/https://btctranscripts.com/speakers/ittay-eyal/https://btctranscripts.com/speakers/j.-christopher-giancarlo/https://btctranscripts.com/speakers/jacob-leshno/https://btctranscripts.com/speakers/james-dangelo/https://btctranscripts.com/speakers/james-gatto/https://btctranscripts.com/speakers/james-smith/https://btctranscripts.com/speakers/jarl-fransson/https://btctranscripts.com/speakers/jason-potts/https://btctranscripts.com/speakers/jason-teutsch/https://btctranscripts.com/speakers/jeff-garzik/https://btctranscripts.com/speakers/jeremy-allaire/https://btctranscripts.com/speakers/jeremy-wilson/https://btctranscripts.com/speakers/jerry-brito/https://btctranscripts.com/speakers/jerry-cuomo/https://btctranscripts.com/speakers/jihan-wu/https://btctranscripts.com/speakers/jinglan-wang/https://btctranscripts.com/speakers/joachim-breitner/https://btctranscripts.com/speakers/joachim-neu/https://btctranscripts.com/speakers/joe-gerber/https://btctranscripts.com/speakers/john-woeltz/https://btctranscripts.com/tags/joinpools/https://btctranscripts.com/speakers/jonathan-bier/https://btctranscripts.com/speakers/jonathan-tomim/https://btctranscripts.com/speakers/jorge-tim%C3%B3n/https://btctranscripts.com/speakers/joshua-lim/https://btctranscripts.com/cryptoeconomic-systems/2019/journal-review/https://btctranscripts.com/cryptoeconomic-systems/2019/journals-as-clubs/https://btctranscripts.com/speakers/jun-muai/https://btctranscripts.com/tags/jit-channels/https://btctranscripts.com/tags/jit-routing/https://btctranscripts.com/speakers/justin-camarena/https://btctranscripts.com/scalingbitcoin/milan-2016/jute-braiding/https://btctranscripts.com/speakers/juthica-chou/https://btctranscripts.com/speakers/karl-floersch/https://btctranscripts.com/speakers/katherine-wu/https://btctranscripts.com/speakers/kathleen-breitman/https://btctranscripts.com/speakers/kenji-saito/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote-gavin-andresen/https://btctranscripts.com/speakers/kim-hamilton-duffy/https://btctranscripts.com/tags/kindred-rbf/https://btctranscripts.com/speakers/kris-merkel/https://btctranscripts.com/speakers/kristov-atlas/https://btctranscripts.com/speakers/kulpreet-singh/https://btctranscripts.com/tags/large-channels/https://btctranscripts.com/speakers/lata-varghese/https://btctranscripts.com/coindesk-consensus-2016/law-enforcement-and-anonymous-transactions/https://btctranscripts.com/speakers/lawrence-h.-summers/https://btctranscripts.com/speakers/lei-yang/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/lessons-for-bitcoin-from-150-years-of-decentralization/https://btctranscripts.com/cryptoeconomic-systems/2019/libra/https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-24-fabrice-drouin-the-transfer-layer/https://btctranscripts.com/edgedevplusplus/2019/lightning-network-routing/https://btctranscripts.com/breaking-bitcoin/2019/lightning-network-security-panel/https://btctranscripts.com/stanford-blockchain-conference/2019/links/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/linq/https://btctranscripts.com/tags/liquidity-advertisements/https://btctranscripts.com/speakers/lous-parker/https://btctranscripts.com/tags/low-r-grinding/https://btctranscripts.com/stanford-blockchain-conference/2020/lower-bounds-limits-plasma/https://btctranscripts.com/speakers/mahnush-movahedi/https://btctranscripts.com/speakers/marco-santori/https://btctranscripts.com/speakers/marek-olszewski/https://btctranscripts.com/speakers/mark-erhart/https://btctranscripts.com/speakers/mark-friedenbach/https://btctranscripts.com/speakers/mark-wetjen/https://btctranscripts.com/speakers/marshall-long/https://btctranscripts.com/speakers/martin-lundfall/https://btctranscripts.com/w3-blockchain-workshop-2016/matsuo/https://btctranscripts.com/tags/matt/https://btctranscripts.com/speakers/matt-weinberg/https://btctranscripts.com/speakers/matt-weiss/https://btctranscripts.com/speakers/matthew-mezinskis/https://btctranscripts.com/speakers/maurice-herlihy/https://btctranscripts.com/speakers/max-keidun/https://btctranscripts.com/cryptoeconomic-systems/2019/mechanism-design/https://btctranscripts.com/speakers/megan-chen/https://btctranscripts.com/speakers/melanie-shapiro/https://btctranscripts.com/speakers/meltem-demirors/https://btctranscripts.com/speakers/meni-rosenfeld/https://btctranscripts.com/tags/merkle-tree-vulnerabilities/https://btctranscripts.com/decentralized-financial-architecture-workshop/metadata/https://btctranscripts.com/edgedevplusplus/2019/metadata/https://btctranscripts.com/speakers/michael-more/https://btctranscripts.com/speakers/michael-straka/https://btctranscripts.com/speakers/michael-walfish/https://btctranscripts.com/speakers/mikael-dubrovsky/https://btctranscripts.com/stanford-blockchain-conference/2019/miniscript/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2018/https://btctranscripts.com/stanford-blockchain-conference/2020/mixicles/https://btctranscripts.com/speakers/mooly-sagiv/https://btctranscripts.com/scalingbitcoin/montreal-2015/more-core-devs/https://btctranscripts.com/stanford-blockchain-conference/2020/motoko-language/https://btctranscripts.com/scalingbitcoin/tokyo-2018/multi-party-channels-in-the-utxo-model-challenges-and-opportunities/https://btctranscripts.com/speakers/nathan-wilcox/https://btctranscripts.com/cryptoeconomic-systems/2019/near-misses/https://btctranscripts.com/speakers/neha-narula/https://btctranscripts.com/breaking-bitcoin/2019/neutrino/https://btctranscripts.com/stanford-blockchain-conference/2019/thundercore/https://btctranscripts.com/speakers/nic-carter/https://btctranscripts.com/speakers/nick-spooner/https://btctranscripts.com/stanford-blockchain-conference/2020/no-incentive/https://btctranscripts.com/scalingbitcoin/montreal-2015/non-currency-applications/https://btctranscripts.com/speakers/omer-shlomovits/https://btctranscripts.com/scalingbitcoin/tokyo-2018/omniledger/https://btctranscripts.com/tags/onion-messages/https://btctranscripts.com/tags/op-cat/https://btctranscripts.com/tags/op-codeseparator/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/eric-martindale/https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/open-source-mining/https://btctranscripts.com/baltic-honeybadger/2018/opening/https://btctranscripts.com/breaking-bitcoin/2019/opening-remarks/https://btctranscripts.com/stanford-blockchain-conference/2019/opening-remarks/https://btctranscripts.com/coindesk-consensus-2016/opening-remarks-state-of-blockchain-ryan-selkis/https://btctranscripts.com/scalingbitcoin/stanford-2017/optimizing-fee-estimation-via-mempool-state/https://btctranscripts.com/speakers/or-sattath/https://btctranscripts.com/tags/out-of-band-fees/https://btctranscripts.com/tags/output-linking/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/overview-of-bips-necessary-for-lightning/https://btctranscripts.com/speakers/patricia-estevao/https://btctranscripts.com/speakers/patrick-mccorry/https://btctranscripts.com/speakers/patrick-murck/https://btctranscripts.com/speakers/paul-vigna/https://btctranscripts.com/tags/payment-probes/https://btctranscripts.com/tags/payment-secrets/https://btctranscripts.com/tags/peer-storage/https://btctranscripts.com/decentralized-financial-architecture-workshop/perspective/https://btctranscripts.com/speakers/peter-rizun/https://btctranscripts.com/w3-blockchain-workshop-2016/physical-assets/https://btctranscripts.com/speakers/pierre-roberge/https://btctranscripts.com/scalingbitcoin/tokyo-2018/playing-with-fire-adjusting-bitcoin-block-subsidy/https://btctranscripts.com/stanford-blockchain-conference/2020/plonk/https://btctranscripts.com/speakers/prakash-santhana/https://btctranscripts.com/speakers/pramod-viswanath/https://btctranscripts.com/baltic-honeybadger/2018/present-and-future-tech-challenges-in-bitcoin/https://btctranscripts.com/stanford-blockchain-conference/2020/prism/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/prism/https://btctranscripts.com/scalingbitcoin/montreal-2015/privacy-and-fungibility/https://btctranscripts.com/w3-blockchain-workshop-2016/privacy-anonymity-and-identity-group/https://btctranscripts.com/stanford-blockchain-conference/2019/privacy-preserving-multi-hop-locks/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/proof-of-necessary-work/https://btctranscripts.com/stanford-blockchain-conference/2020/proof-of-necessary-work/https://btctranscripts.com/tags/proof-of-payment/https://btctranscripts.com/tags/proof-of-reserves/https://btctranscripts.com/w3-blockchain-workshop-2016/provenance-groups/https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/research-and-development-goals/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/r3/https://btctranscripts.com/coindesk-consensus-2016/reaching-consensus-open-blockchains/https://btctranscripts.com/rebooting-web-of-trust/https://btctranscripts.com/scalingbitcoin/stanford-2017/redesigning-bitcoin-fee-market/https://btctranscripts.com/tags/redundant-overpayments/https://btctranscripts.com/tags/replacement-cycling/https://btctranscripts.com/cryptoeconomic-systems/2019/reproducible-builds/https://btctranscripts.com/scalingbitcoin/tokyo-2018/reproducible-lightning-benchmark/https://btctranscripts.com/tags/responsible-disclosures/https://btctranscripts.com/scalingbitcoin/montreal-2015/reworking-bitcoin-core-p2p-code-for-robustness-and-event-driven/https://btctranscripts.com/speakers/riccardo-casatta/https://btctranscripts.com/speakers/richard-myers/https://btctranscripts.com/speakers/robert-schwinker/https://btctranscripts.com/speakers/rodrigo-buenaventura/https://btctranscripts.com/speakers/roman-snitko/https://btctranscripts.com/speakers/ron-rivest/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/rootstock/https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-1/https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-2/https://btctranscripts.com/w3-blockchain-workshop-2016/royalties/https://btctranscripts.com/speakers/ryan-selkis/https://btctranscripts.com/misc/safecurves-choosing-safe-curves-for-elliptic-curve-cryptography-2014/https://btctranscripts.com/speakers/saifedean-ammous/https://btctranscripts.com/speakers/sandra-ro/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/peter-todd-scalability/https://btctranscripts.com/scalingbitcoin/milan-2016/timestamping/https://btctranscripts.com/stanford-blockchain-conference/2020/scalable-rsa-modulus-generation/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/scaling-debate-is-a-proxy-battle-over-centralization/https://btctranscripts.com/speakers/scott-manuel/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/scriptless-lotteries/https://btctranscripts.com/grincon/2019/scriptless-scripts-with-mimblewimble/https://btctranscripts.com/speakers/sean-neville/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/secure-fountain-architecture/https://btctranscripts.com/breaking-bitcoin/2019/security-attacks-decentralized-mining-pools/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/security-and-usability/https://btctranscripts.com/breaking-bitcoin/2019/lightning-network-routing-security/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/security-assumptions/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/segregated-witness-and-its-impact-on-scalability/https://btctranscripts.com/scalingbitcoin/tokyo-2018/self-reproducing-coins-as-universal-turing-machine/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/self-sovereign-identity-ideology-and-architecture/https://btctranscripts.com/speakers/sergej-kotliar/https://btctranscripts.com/speakers/sergio-lerner/https://btctranscripts.com/speakers/shafi-goldwasser/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/shamir-secret-sharing/https://btctranscripts.com/speakers/shayan-eskandari/https://btctranscripts.com/speakers/shehzan-maredia/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/siacoin/https://btctranscripts.com/tags/side-channels/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/matt-corallo-sidechains/https://btctranscripts.com/scalingbitcoin/milan-2016/sidechains/https://btctranscripts.com/tags/signer-delegation/https://btctranscripts.com/speakers/simon-peffers/https://btctranscripts.com/speakers/skot-9000/https://btctranscripts.com/w3-blockchain-workshop-2016/smart-signatures/https://btctranscripts.com/scalingbitcoin/montreal-2015/snarks/https://btctranscripts.com/simons-institute/snarks-and-their-practical-applications/https://btctranscripts.com/stanford-blockchain-conference/2020/solving-data-availability-attacks-using-coded-merkle-trees/https://btctranscripts.com/cryptoeconomic-systems/2019/solving-the-blockchain-trilemma/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/some-questions-for-bitcoiners/https://btctranscripts.com/speakers/soumya-basu/https://btctranscripts.com/dallas-bitcoin-symposium/sound-money/https://btctranscripts.com/tags/spontaneous-payments/https://btctranscripts.com/stanford-blockchain-conference/2019/spork-probabilistic-bitcoin-soft-forks/https://btctranscripts.com/speakers/sreeram-kannan/https://btctranscripts.com/stanford-blockchain-conference/2020/stark-for-developers/https://btctranscripts.com/stanford-blockchain-conference/2019/state-channels/https://btctranscripts.com/coindesk-consensus-2016/state-of-blockchain/https://btctranscripts.com/bit-block-boom/2019/state-of-multisig/https://btctranscripts.com/scalingbitcoin/tokyo-2018/statechains/https://btctranscripts.com/tags/stateless-invoices/https://btctranscripts.com/tags/static-channel-backups/https://btctranscripts.com/speakers/stefan-dziembowski/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/andrew-miller/https://btctranscripts.com/speakers/stephanie-hurder/https://btctranscripts.com/stanford-blockchain-conference/2020/streamlet/https://btctranscripts.com/scalingbitcoin/montreal-2015/stroem-payment-channels/https://btctranscripts.com/speakers/swanand-kadhe/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/swashbuckling-safety-training/https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/https://btctranscripts.com/bit-block-boom/2019/taproot-schnorr-soft-fork/https://btctranscripts.com/tags/testnet/https://btctranscripts.com/texas-bitcoin-conference-2014/https://btctranscripts.com/dallas-bitcoin-symposium/texas-energy-market/https://btctranscripts.com/speakers/thang-n.-dinh/https://btctranscripts.com/baltic-honeybadger/2018/the-b-foundation/https://btctranscripts.com/baltic-honeybadger/2018/the-bitcoin-standard/https://btctranscripts.com/scalingbitcoin/tokyo-2018/bitcoin-script/https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/https://btctranscripts.com/breaking-bitcoin/2019/future-of-hardware-wallets/https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-lightning/https://btctranscripts.com/scalingbitcoin/tokyo-2018/ghostdag/https://btctranscripts.com/stanford-blockchain-conference/2020/libra-blockchain-intro/https://btctranscripts.com/stanford-blockchain-conference/2020/optimistic-vm/https://btctranscripts.com/baltic-honeybadger/2018/the-reserve-currency-fallacy/https://btctranscripts.com/stanford-blockchain-conference/2019/stark-dex/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/threshold-scriptless-scripts/https://btctranscripts.com/stanford-blockchain-conference/2019/proofs-of-space-and-replication/https://btctranscripts.com/speakers/tim-roughgarden/https://btctranscripts.com/tags/time-warp/https://btctranscripts.com/simons-institute/todo/https://btctranscripts.com/cryptoeconomic-systems/2019/token-journal/https://btctranscripts.com/speakers/tone-vays/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/topics/https://btctranscripts.com/baltic-honeybadger/2018/trading-panel/https://btctranscripts.com/tags/transaction-bloom-filtering/https://btctranscripts.com/tags/transaction-origin-privacy/https://btctranscripts.com/stanford-blockchain-conference/2020/transparent-dishonesty/https://btctranscripts.com/stanford-blockchain-conference/2020/transparent-snarks-from-dark-compilers/https://btctranscripts.com/cryptoeconomic-systems/2019/trust-and-blockchain-marketplaces/https://btctranscripts.com/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/txprobe/https://btctranscripts.com/tags/unannounced-channels/https://btctranscripts.com/tags/uneconomical-outputs/https://btctranscripts.com/scalingbitcoin/milan-2016/unlinkable-outsourced-channel-monitoring/https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/unlocking-expressivity-with-op-cat/https://btctranscripts.com/coindesk-consensus-2016/upgrading-capital-markets-for-digital-asset-trading/https://btctranscripts.com/stanford-blockchain-conference/2019/urkel-trees/https://btctranscripts.com/scalingbitcoin/stanford-2017/using-the-chain-for-what-chains-are-good-for/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2019/utreexo/https://btctranscripts.com/bitcoin-design/ux-research/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/validation-cost-metric/https://btctranscripts.com/scalingbitcoin/montreal-2015/validation-costs/https://btctranscripts.com/tags/v3-transaction-relay/https://btctranscripts.com/coindesk-consensus-2016/visa-chain/https://btctranscripts.com/speakers/vivek-bagaria/https://btctranscripts.com/speakers/vortex/https://btctranscripts.com/tags/wallet-labels/https://btctranscripts.com/rebooting-web-of-trust/2019-prague/weak-signals/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/welcome/https://btctranscripts.com/speakers/wendy-seltzer/https://btctranscripts.com/speakers/whalepanda/https://btctranscripts.com/coindesk-consensus-2016/why-bitcoin-still-matters/https://btctranscripts.com/magicalcryptoconference/2019/why-block-sizes-should-not-be-too-big/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/why-miners-will-not-voluntarily-individually-produce-smaller-blocks/https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/arvind-narayanan/https://btctranscripts.com/speakers/william-mougayar/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/work-in-progress/https://btctranscripts.com/tags/x-only-public-keys/https://btctranscripts.com/speakers/yorke-rhodes/https://btctranscripts.com/speakers/yoshinori-hashimoto/https://btctranscripts.com/speakers/yurii-rashkovskii/https://btctranscripts.com/speakers/yuta-takanashi/https://btctranscripts.com/speakers/yuval-kogman/https://btctranscripts.com/simons-institute/zero-knowledge-probabilistic-proof-systems/https://btctranscripts.com/scalingbitcoin/hong-kong-2015/zero-knowledge-proofs-for-bitcoin-scalability-and-beyond/https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/zerolink-sudoku/https://btctranscripts.com/speakers/zeta-avarikioti/https://btctranscripts.com/cryptoeconomic-systems/2019/zksharks/ \ No newline at end of file diff --git a/es/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/index.html b/es/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/index.html new file mode 100644 index 0000000000..e04bb6267c --- /dev/null +++ b/es/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/index.html @@ -0,0 +1,30 @@ +Signet | Transcripciones de ₿itcoin +
Home +< Bitcoin Core Dev Tech +< Bitcoin Core Dev Tech 2023 (Apr) +< Bitcoin Core Dev Tech 2022 +< Bitcoin Core Dev Tech 2019 +< Bitcoin Core Dev Tech 2018 (Oct) +< Bitcoin Core Dev Tech 2018 (Mar) +< Bitcoin Core Dev Tech 2017 +< Bitcoin Core Dev Tech 2015 +< Bitcoin Explained +< Bitcoin-designs +< Bitcoin Magazine +< Andreas Antonopoulos +< Austin Bitcoin Developers +< Advancing Bitcoin +< Baltic Honeybadger +< Misc +< Chaincode Labs +< Lets Talk Bitcoin Podcast +< Greg Maxwell +< Bit Block Boom +< Signet

Signet

Fecha: June 7, 2019

Transcripción De: Bryan Bishop

Traducción Por: Blue Moon

Tags: +Signet

Categoría: +Core dev tech

https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2019-March/016734.html

https://twitter.com/kanzure/status/1136980462524608512

Introducción

Voy a hablar un poco de signet. ¿Alguien no sabe lo que es signet? La idea es tener una firma del bloque o del bloque anterior. La idea es que testnet está horriblemente roto para probar cosas, especialmente para probar cosas a largo plazo. Hay grandes reorgs en testnet. ¿Qué pasa con testnet con un ajuste de dificultad menos roto? Testnet es realmente para probar mineros. Uno de los objetivos es que quieras una falta de fiabilidad predecible y no una falta de fiabilidad que destroce el mundo. Signet sería como una nueva serie de redes. Cualquiera puede crear una signet; es una red pública pero sólo las personas con la clave privada pueden crear bloques. Cualquiera puede crear bloques pero sería inválido si miras la coinbase. Podrías engañar a los clientes SPV supongo. Podrías tener una signet taproot y hacerla girar, o una signet Schnorr, o lo que quieras hacer.

Preguntas y respuestas.

PREGUNTAS Y RESPUESTAS

P: ¿Sigue haciendo proof-of-work?

R: El encabezamiento de bloque sigue siendo válido, sí. Sigue haciendo prueba de trabajo. La gente es perezosa y quiere incluir esto en su software, pero no quiere hackear su software de validación de consenso. En su lugar, pueden mantener esto como está. La forma de almacenar y descargar las cabeceras también sigue siendo la misma, no hay que cambiar esas cosas.

P: ¿Es este regtest una prueba de trabajo?

R: Es como la dificultad 1.

P: Entonces, ¿se le puede engañar fácilmente con cambios en las cabeceras?

R: Sí, se puede. Esto es para pruebas, así que no deberías estar conectado a nodos aleatorios.

Las implementaciones no necesitan implementar la comprobación de firma y funciona con todo el software existente. Tienes una salida de coinbase que tiene una firma que dice mi consenso está configurado y configuras cuál es la scriptpubkey para eso en el scriptsig. En vez de firmar la transacción firmas el bloque. Los cambios no son muy grandes en absoluto. Es lo mismo que firmar transacciones. Hay un nuevo firmante que toma un hash y se crea una firma. El hash es el blockhash.

P: ¿Su objetivo es que la gente cree signets al azar o que haya uno global?

R: Una idea es tener un sello fiable que la gente pueda utilizar para hacer pruebas. Este sello permanente tendría una interfaz web y podríamos pedirle que te gaste el doble o algo así y entonces gastaría el doble de tu dirección. Todo esto está fuera de la propuesta, esto es sólo una herramienta que lo hace. Es el doble gasto como servicio (DSaaS).

Tienes una dependencia circular- no puede ser el blockchain. La mejor manera sería eliminar el compromiso testigo manualmente. En segwit, lo ponen a 0000 en el merkle… Pero probablemente no quieras hacer eso aquí porque todavía quieres firmar tu coinbase. Podrías hacer algo como, calcular el posible blockhash si ese compromiso fuera eliminado, y entonces eso es lo que firmas. Cero o eliminado, de cualquier manera.

Podrías firmar el bloque anterior en lugar del bloque actual. Firmas todo excepto la propia firma, por supuesto, y probablemente el nonce en la cabecera. El problema con esto es que vas a tener que crear una firma cada vez, porque vas a hacer PoW y hacer una firma por nonce. Así que no se firma el nonce. Podrías hacer la firma, y luego tirar el nonce. Con dificultad 1, sólo vas a hacer uno de media de todos modos. Va a ser mainnet dificultad 1.

Regtest frente a signet

Regtest es malo, porque cualquiera puede ir y hacer mil millones de bloques. Tienes que conseguir las cabeceras y luego el bloque y luego comprobar la firma.

¿Qué tiene de malo que la firma esté en la cabecera? Todo el mundo tendría que cambiar su código de consenso para poder analizarlo y validarlo. Sería más fácil si no tuvieran que modificar ningún software para utilizarlo. O bien podría estar fuera de la caja, o hacen cambios para signet. Hay poca motivación para añadir la verificación de firmas a diferentes herramientas cuando esto no se utiliza en producción para nada. Es, literalmente, sólo para probar nuevos protocolos, o para probar su integración de intercambio para asegurarse de que está manejando reorgs correctamente - pero usted podría utilizar regtest para ese caso.

Puedes ejecutar bitcoind haciendo cumplir signet, y te conectas a tu propio nodo. Realmente no te importa que seas vulnerable, porque no estás comprobando, sólo estás recibiendo bloques de tu propio nodo. Lo mismo ocurre con regtest, pero cualquier otra persona que se conecte a esa red regtest puede acabar con tus bloques. Podrías usar regtest y sólo confiar en ciertos nodos, lo que significa que la retransmisión de bloques sería de un único nodo que ejecuta la cosa.

Sin embargo, no necesitas proteger una red signet. En signet, sigues conectado a un nodo que está validando. Un nodo que está validando en regtest verá el reorg y verá que todavía es válido y válido por consenso, a menos que hagas una lista blanca sólo para regtest, que todo el mundo tendría que configurar. Regtest es sensible al contexto. Los usuarios de Signet todavía necesitan validar firmas, te conectas a bitcoind ejecutando signet. Así que tienes que usar el software signet, pero no requieren otros cambios en sus otras pilas de software si el nuevo formato de encabezado rompe algo. Usted opta por un signet en particular sobre la base de su scriptsig. No importa qué software ejecutes internamente, pero usas bitcoind como enrutador de borde.

¿Qué tal tener una cabecera normal, y un conjunto separado de firma? Es el truco de segwit. ¿Cuántos cambios va a aceptar Bitcoin Core para esto de probar sólo la firma? Es super simple si es solo «una firma en un lugar determinado». Si no te gusta, no tienes que usarla. Bueno, si va a ser parte de Bitcoin Core entonces eso significa que estamos manteniendo.

¿Regtest no tiene prueba de trabajo? No, tiene proof-of-work pero es un bit de trabajo. Tienes que ponerlo a cero. La mitad de las veces, lo consigues en el primer intento.

Si tu objetivo es tener bloques de 10 minutos, no necesitas cambiar las reglas de dificultad en absoluto. Puedes usar las reglas de la red principal. Y entonces el firmante, si tienes un firmante de alto perfil en algún lugar, tienen 10 ASICs disponibles, pueden elegir una dificultad más alta si quieren y tendrá esa seguridad. La dificultad será exactamente la que el firmante elija o pueda producir. También puede elegir mínima y es menos seguro… El firmante puede tener un cronjob y hacer un bloque de dificultad mínima en ese momento. Sólo mina todo el tiempo y llega a cierta dificultad.

¿Cómo vas a hacer reorg bajo demanda si la dificultad es exactamente lo que pueden hacer? Bueno, tomará de 10 a 20 minutos hacer la reorg. Eso está bien. Sería bueno para reorgs más rápido. 10 minutos es sólo para el ajuste de la dificultad.

Tener una serialización chainparam y hacer que sea fácil enviar eso. Ese es el pull request que alguien estaba pensando - es una cadena personalizada como regtest pero puedes cambiar todos los chainparams a lo que quieras, como un genesis personalizado o lo que sea. Un arg configure o parámetro de línea de comandos que tiene el archivo para chainparams.

Aplicaciones

Creo que es superior en todos los sentidos a testnet. Para lo único que sirve testnet es para hacer pruebas de minería y probar el equipo de los mineros. Si quieres bloques realmente rápidos y reorgs realmente rápidos, entonces usa testnet.

Si estás probando protocolos como los de eltoo entre muchas personas diferentes, entonces regtest es demasiado frágil para eso, y testnet también es demasiado frágil para eso si quieres conseguir algo productivo. Pero aún así quieres poder hacer cosas como el doble gasto como servicio, porque eltoo necesita ser lo suficientemente robusto como para poder manejar reorgs esperados pero no necesariamente reorgs que hagan temblar la tierra. Otra aplicación es que, como intercambiador, siempre quise que mis clientes se unieran a regtest y probaran con mis reorgs arbitrarios.

Podemos tomar bip-taproot y simplemente meterlo ahí. Podríamos ejecutar la propia rama en signet… o el firmante puede aplicar otras reglas de consenso y ahora esas reglas de consenso están activas allí. Taproot puede ser un soft-fork y puedes simplemente decir que este soft-fork está habilitado en esta red, seguro. Durante el desarrollo de segwit, hubo algunas redes de prueba diferentes para segwit llamadas segnet. No es un error tipográfico, había segnet y ahora hay signet. Nadie se acuerda de segnet excepto Pieter.

También es útil para probar software de monederos. Digamos un intercambio que ejecuta un signet semi-privado. Es extremadamente común visitar intercambios y mirar el código de su monedero, y ni siquiera están comprobando los reorgs en absoluto. Así que aquí hay una manera fácil para ellos para comprobar su trabajo contra reorgs. Podría ser muy educativo.

Implementación

El pull request para signet está en el limbo. Estoy planeando volver a ello. Hay una implementación antigua que modifica los encabezados de bloque. Voy a reemplazarla con algo que no lo haga. No parece muy difícil de hacer.

\ No newline at end of file diff --git a/es/bitcoin-core-dev-tech/2019-06/index.html b/es/bitcoin-core-dev-tech/2019-06/index.html index fb6bead749..0b5a136294 100644 --- a/es/bitcoin-core-dev-tech/2019-06/index.html +++ b/es/bitcoin-core-dev-tech/2019-06/index.html @@ -2,4 +2,4 @@
\ No newline at end of file +

Bitcoin Core Dev Tech 2019

\ No newline at end of file diff --git a/es/bitcoin-core-dev-tech/2019-06/index.xml b/es/bitcoin-core-dev-tech/2019-06/index.xml index 3b8dfe6603..5a0f74ad31 100644 --- a/es/bitcoin-core-dev-tech/2019-06/index.xml +++ b/es/bitcoin-core-dev-tech/2019-06/index.xml @@ -8,7 +8,9 @@ Introducción Voy a hablar casualmente de todo el asunto de las cadenas de estad https://twitter.com/kanzure/status/1136939003666685952 https://github.com/bitcoin-core/bitcoin-devwiki/wiki/P2P-Design-Philosophy &ldquo;Elligator al cuadrado: Puntos uniformes en curvas elípticas de orden primo como cadenas aleatorias uniformes&rdquo; https://eprint.iacr.org/2014/043 -Introducción Esta propuesta lleva años en marcha. Muchas ideas de sipa y gmaxwell fueron a parar al bip151. Hace años decidí intentar sacar esto adelante. Hay bip151 que de nuevo la mayoría de las ideas no son mías sino que vienen de sipa y gmaxwell. La propuesta original fue retirada porque descubrimos formas de hacerlo mejor.Discusión general sobre SIGHASH_NOINPUT, OP_CHECKSIGFROMSTACK, and OP_SECURETHEBAGhttps://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/Thu, 06 Jun 2019 00:00:00 +0000https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/SIGHASH_NOINPUT, ANYPREVOUT, OP_CHECKSIGFROMSTACK, OP_CHECKOUTPUTSHASHVERIFY, and OP_SECURETHEBAG +Introducción Esta propuesta lleva años en marcha. Muchas ideas de sipa y gmaxwell fueron a parar al bip151. Hace años decidí intentar sacar esto adelante. Hay bip151 que de nuevo la mayoría de las ideas no son mías sino que vienen de sipa y gmaxwell. La propuesta original fue retirada porque descubrimos formas de hacerlo mejor.Signethttps://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/Fri, 07 Jun 2019 00:00:00 +0000https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2019-March/016734.html +https://twitter.com/kanzure/status/1136980462524608512 +Introducción Voy a hablar un poco de signet. ¿Alguien no sabe lo que es signet? La idea es tener una firma del bloque o del bloque anterior. La idea es que testnet está horriblemente roto para probar cosas, especialmente para probar cosas a largo plazo. Hay grandes reorgs en testnet. ¿Qué pasa con testnet con un ajuste de dificultad menos roto? Testnet es realmente para probar mineros. Uno de los objetivos es que quieras una falta de fiabilidad predecible y no una falta de fiabilidad que destroce el mundo.Discusión general sobre SIGHASH_NOINPUT, OP_CHECKSIGFROMSTACK, and OP_SECURETHEBAGhttps://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/Thu, 06 Jun 2019 00:00:00 +0000https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/SIGHASH_NOINPUT, ANYPREVOUT, OP_CHECKSIGFROMSTACK, OP_CHECKOUTPUTSHASHVERIFY, and OP_SECURETHEBAG https://twitter.com/kanzure/status/1136636856093876225 Al parecer, hay algunos mensajes políticos en torno a OP_SECURETHEBA y &ldquo;asegurar la bolsa&rdquo; podría ser una cosa de Andrew Yang SIGHASH_NOINPUT Muchos de nosotros estamos familiarizados con NOINPUT. ¿Alguien necesita una explicación? ¿Cuál es la diferencia entre el NOINPUT original y el nuevo? NOINPUT asusta al menos a algunas personas. Si sólo hacemos NOINPUT, ¿empezará a causar problemas en bitcoin? ¿Significa que los intercambios tienen que empezar a mirar el historial de transacciones y poner en la lista negra NOINPUT en el historial reciente hasta que esté profundamente enterrado?Gran limpieza de consensohttps://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-great-consensus-cleanup/Thu, 06 Jun 2019 00:00:00 +0000https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-great-consensus-cleanup/https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2019-March/016714.html diff --git a/es/categories/core-dev-tech/index.html b/es/categories/core-dev-tech/index.html index 43883558b9..c04acc8996 100644 --- a/es/categories/core-dev-tech/index.html +++ b/es/categories/core-dev-tech/index.html @@ -2,4 +2,4 @@

Core Dev Tech

\ No newline at end of file +

Core Dev Tech

\ No newline at end of file diff --git a/es/categories/core-dev-tech/index.xml b/es/categories/core-dev-tech/index.xml index e65a241fe9..7dc47465ae 100644 --- a/es/categories/core-dev-tech/index.xml +++ b/es/categories/core-dev-tech/index.xml @@ -20,7 +20,9 @@ Introducción Voy a hablar casualmente de todo el asunto de las cadenas de estad https://twitter.com/kanzure/status/1136939003666685952 https://github.com/bitcoin-core/bitcoin-devwiki/wiki/P2P-Design-Philosophy &ldquo;Elligator al cuadrado: Puntos uniformes en curvas elípticas de orden primo como cadenas aleatorias uniformes&rdquo; https://eprint.iacr.org/2014/043 -Introducción Esta propuesta lleva años en marcha. Muchas ideas de sipa y gmaxwell fueron a parar al bip151. Hace años decidí intentar sacar esto adelante. Hay bip151 que de nuevo la mayoría de las ideas no son mías sino que vienen de sipa y gmaxwell. La propuesta original fue retirada porque descubrimos formas de hacerlo mejor.
Discusión general sobre SIGHASH_NOINPUT, OP_CHECKSIGFROMSTACK, and OP_SECURETHEBAGhttps://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/Thu, 06 Jun 2019 00:00:00 +0000https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/SIGHASH_NOINPUT, ANYPREVOUT, OP_CHECKSIGFROMSTACK, OP_CHECKOUTPUTSHASHVERIFY, and OP_SECURETHEBAG +Introducción Esta propuesta lleva años en marcha. Muchas ideas de sipa y gmaxwell fueron a parar al bip151. Hace años decidí intentar sacar esto adelante. Hay bip151 que de nuevo la mayoría de las ideas no son mías sino que vienen de sipa y gmaxwell. La propuesta original fue retirada porque descubrimos formas de hacerlo mejor.Signethttps://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/Fri, 07 Jun 2019 00:00:00 +0000https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2019-March/016734.html +https://twitter.com/kanzure/status/1136980462524608512 +Introducción Voy a hablar un poco de signet. ¿Alguien no sabe lo que es signet? La idea es tener una firma del bloque o del bloque anterior. La idea es que testnet está horriblemente roto para probar cosas, especialmente para probar cosas a largo plazo. Hay grandes reorgs en testnet. ¿Qué pasa con testnet con un ajuste de dificultad menos roto? Testnet es realmente para probar mineros. Uno de los objetivos es que quieras una falta de fiabilidad predecible y no una falta de fiabilidad que destroce el mundo.Discusión general sobre SIGHASH_NOINPUT, OP_CHECKSIGFROMSTACK, and OP_SECURETHEBAGhttps://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/Thu, 06 Jun 2019 00:00:00 +0000https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/SIGHASH_NOINPUT, ANYPREVOUT, OP_CHECKSIGFROMSTACK, OP_CHECKOUTPUTSHASHVERIFY, and OP_SECURETHEBAG https://twitter.com/kanzure/status/1136636856093876225 Al parecer, hay algunos mensajes políticos en torno a OP_SECURETHEBA y &ldquo;asegurar la bolsa&rdquo; podría ser una cosa de Andrew Yang SIGHASH_NOINPUT Muchos de nosotros estamos familiarizados con NOINPUT. ¿Alguien necesita una explicación? ¿Cuál es la diferencia entre el NOINPUT original y el nuevo? NOINPUT asusta al menos a algunas personas. Si sólo hacemos NOINPUT, ¿empezará a causar problemas en bitcoin? ¿Significa que los intercambios tienen que empezar a mirar el historial de transacciones y poner en la lista negra NOINPUT en el historial reciente hasta que esté profundamente enterrado?Gran limpieza de consensohttps://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-great-consensus-cleanup/Thu, 06 Jun 2019 00:00:00 +0000https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-great-consensus-cleanup/https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2019-March/016714.html diff --git a/es/directories.json b/es/directories.json index 8d1763881a..65803d21da 100644 --- a/es/directories.json +++ b/es/directories.json @@ -1 +1 @@ -{"advancing-bitcoin":{"2019":1,"2020":6},"andreas-antonopoulos":5,"austin-bitcoin-developers":8,"baltic-honeybadger":{"2018":18,"2019":1},"bit-block-boom":{"2019":1},"bitcoin-core-dev-tech":{"2015-02":4,"2017-09":3,"2018-03":5,"2018-10":6,"2019-06":9,"2022-10":5,"2023-04":5},"bitcoin-explained":3,"bitcoin-magazine":1,"chaincode-labs":{"chaincode-residency":2},"greg-maxwell":1,"lets-talk-bitcoin-podcast":1,"misc":4} \ No newline at end of file +{"advancing-bitcoin":{"2019":1,"2020":6},"andreas-antonopoulos":5,"austin-bitcoin-developers":8,"baltic-honeybadger":{"2018":18,"2019":1},"bit-block-boom":{"2019":1},"bitcoin-core-dev-tech":{"2015-02":4,"2017-09":3,"2018-03":5,"2018-10":6,"2019-06":10,"2022-10":5,"2023-04":5},"bitcoin-explained":3,"bitcoin-magazine":1,"chaincode-labs":{"chaincode-residency":2},"greg-maxwell":1,"lets-talk-bitcoin-podcast":1,"misc":4} \ No newline at end of file diff --git a/es/index.json b/es/index.json index 3fb59c4080..f3ee4e726b 100644 --- a/es/index.json +++ b/es/index.json @@ -1 +1 @@ -[{"uri":"/es/tags/assumeutxo/","title":"assumeUTXO","content":""},{"uri":"/es/bitcoin-core-dev-tech/2023-04/2023-04-27-assumeutxo/","title":"AssumeUTXO update","content":"Objetivos permitir a los nodos obtener un conjunto utxo rápidamente (1h) al mismo tiempo, sin grandes concesiones en materia de seguridad Enfoque Proporcionar instantánea utxo serializada obtener primero la cadena de cabeceras, cargar la instantánea y deserializar, sincronizar con la punta a partir de ahí a continuación, iniciar la verificación de fondo con una segunda instantánea por último, comparar los hashes cuando el IBD en segundo plano llega a la base de la instantánea Actualización del …"},{"uri":"/es/bitcoin-core-dev-tech/","title":"Bitcoin Core Dev Tech","content":" Bitcoin Core Dev Tech 2015 Bitcoin Core Dev Tech 2017 Bitcoin Core Dev Tech 2018 (Mar) Bitcoin Core Dev Tech 2018 (Oct) Bitcoin Core Dev Tech 2019 Bitcoin Core Dev Tech 2022 Bitcoin Core Dev Tech 2023 (Apr) "},{"uri":"/es/bitcoin-core-dev-tech/2023-04/","title":"Bitcoin Core Dev Tech 2023 (Apr)","content":" Agrupación de Mempool Apr 25, 2023 Suhas Daftuar, Pieter Wuille Cluster mempool ASMap Apr 25, 2023 Fabian Jahr Bitcoin core Security enhancements AssumeUTXO update Apr 27, 2023 James O\u0026amp;#39;Beirne Bitcoin core Assumeutxo Fuzzing Apr 27, 2023 Niklas Gögge Bitcoin core Developer tools Libbitcoin kernel Apr 26, 2023 thecharlatan Bitcoin core Build system "},{"uri":"/es/tags/bitcoin-core/","title":"bitcoin-core","content":""},{"uri":"/es/categories/","title":"Categories","content":""},{"uri":"/es/categories/core-dev-tech/","title":"core-dev-tech","content":""},{"uri":"/es/tags/developer-tools/","title":"developer-tools","content":""},{"uri":"/es/bitcoin-core-dev-tech/2023-04/2023-04-27-fuzzing/","title":"Fuzzing","content":"Slides: https://docs.google.com/presentation/d/1NlTw_n60z9bvqziZqU3H3Jw7Xs5slnQoehYXhEKrzOE\nFuzzing El fuzzing se realiza de forma continua. Los objetivos del fuzzing pueden dar sus frutos incluso años más tarde encontrando nuevos bugs. Ejemplo en la diapositiva sobre libFuzzer fuzzing una función parse_json que podría bloquearse en alguna entrada extraña, pero no informará de entradas json no válidas que pasan el análisis. libFuzzer hace la cobertura de bucle de retroalimentación guiada + ayuda …"},{"uri":"/es/speakers/james-obeirne/","title":"James O'Beirne","content":""},{"uri":"/es/speakers/niklas-g%C3%B6gge/","title":"Niklas Gögge","content":""},{"uri":"/es/speakers/","title":"Speakers","content":""},{"uri":"/es/tags/","title":"Tags","content":""},{"uri":"/es/","title":"Transcripciones de ₿itcoin","content":""},{"uri":"/es/tags/build-system/","title":"build-system","content":""},{"uri":"/es/bitcoin-core-dev-tech/2023-04/2023-04-26-libbitcoin-kernel/","title":"Libbitcoin kernel","content":"Preguntas y respuestas Q: bitcoind y bitcoin-qt vinculado contra el núcleo de la biblioteca en el futuro?\npresentador: sí, ese es un / el objetivo P: ¿has mirado una implementación de electrum usando libbitcoinkernel?\naudiencia: sí, ¡estaría bien tener algo así! audiencia: ¿también podría hacer el largo índice de direcciones propuesto con eso? audiencia: no solo indice de direcciones, otros indices tambien. P: Otros casos de uso:\npúblico: poder ejecutar cosas en iOS P: ¿Debería estar el mempool …"},{"uri":"/es/speakers/thecharlatan/","title":"thecharlatan","content":""},{"uri":"/es/bitcoin-core-dev-tech/2023-04/2023-04-25-mempool-clustering/","title":"Agrupación de Mempool","content":"Problemas Actuales Muchos problemas en el mempool\nEl desalojo está roto. El algoritmo de minería es parte del problema, no es perfecto. RBF es como totalmente roto nos quejamos todo el tiempo, a veces hacemos/no RBF cuando deberíamos/no deberíamos. Desalojo El desalojo es cuando mempool está lleno, y queremos tirar el peor tx. Por ejemplo, pensamos que un tx es el peor en mempool pero es descendiente de un tx \u0026amp;ldquo;bueno\u0026amp;rdquo;. El desalojo de mempool es más o menos lo contrario del algoritmo …"},{"uri":"/es/bitcoin-core-dev-tech/2023-04/2023-04-27-asmap/","title":"ASMap","content":"¿Deberíamos enviarlo en cada versión de Core? La idea inicial es enviar un archivo de mapa en cada versión de Core. Fabian escribió un artículo sobre cómo se integraría en el despliegue (https://gist.github.com/fjahr/f879769228f4f1c49b49d348f80d7635). Algunos desarrolladores señalaron que una opción sería tenerlo separado del proceso de lanzamiento, cualquier colaborador habitual podría actualizarlo cuando quisiera (¿quién lo haría? ¿con qué frecuencia?). Entonces, cuando llegue el momento de la …"},{"uri":"/es/tags/cluster-mempool/","title":"cluster-mempool","content":""},{"uri":"/es/speakers/fabian-jahr/","title":"Fabian Jahr","content":""},{"uri":"/es/speakers/pieter-wuille/","title":"Pieter Wuille","content":""},{"uri":"/es/tags/security-enhancements/","title":"security-enhancements","content":""},{"uri":"/es/speakers/suhas-daftuar/","title":"Suhas Daftuar","content":""},{"uri":"/es/bitcoin-core-dev-tech/2022-10/","title":"Bitcoin Core Dev Tech 2022","content":" BIP324 - Versión 2 del protocolo de transporte cifrado p2p Oct 10, 2022 P2p Bitcoin core Bitcoin Core y GitHub (2022-10-11) Bitcoin core Libsecp256k1 Reunión de mantenedores (2022-10-12) Libsecp256k1 Mercado de tarifas Oct 11, 2022 Fee management Bitcoin core Varios Oct 10, 2022 P2p Bitcoin core "},{"uri":"/es/tags/fee-management/","title":"fee-management","content":""},{"uri":"/es/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/","title":"Mercado de tarifas","content":"Hay dos momentos en los que hemos tenido tasas sostenidas: a finales de 2017 y a principios de 2021. A finales de 2017 vimos que muchas cosas se rompían porque la gente no había escrito un software para hacer frente a las tasas variables o algo así. No sé si eso fue un problema tan grande en 2021. Lo que sí me preocupa es que esto empiece a ser una cosa. Si no hay un mercado de tarifas variables y se puede poner 1 sat/vbyte durante varios años, entonces funcionará hasta que no funcione. Así que …"},{"uri":"/es/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/","title":"BIP324 - Versión 2 del protocolo de transporte cifrado p2p","content":"Intervenciones anteriores https://btctranscripts.com/scalingbitcoin/milan-2016/bip151-peer-encryption/\nhttps://btctranscripts.com/sf-bitcoin-meetup/2017-09-04-jonas-schnelli-bip150-bip151/\nhttps://btctranscripts.com/bitcoin-core-dev-tech/2019-06-07-p2p-encryption/\nhttps://btctranscripts.com/breaking-bitcoin/2019/p2p-encryption/\nIntroducción y motivación ¿Podemos apagar las luces? \u0026amp;ldquo;A oscuras\u0026amp;rdquo; es un bonito tema para la charla. También tengo café oscuro. De acuerdo.\nVamos a hablar un …"},{"uri":"/es/tags/p2p/","title":"P2P","content":""},{"uri":"/es/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/","title":"Varios","content":"Red de confianza Algunos de los operadores de servidores de clave pública interpretaron el GDPR como que ya no pueden operar infraestructuras de clave pública. Tiene que haber otra solución para la distribución p2p de claves y Web-of-Trust.\nbitcoin-otc sigue siendo la web de confianza PGP que opera desde hace más tiempo utilizando infraestructura de clave pública. Rumplepay podría ser capaz de arrancar una web-of-trust con el tiempo.\nDirecciones invisibles y pagos silenciosos He aquí algo …"},{"uri":"/es/speakers/aaron-van-wirdum/","title":"Aaron van Wirdum","content":""},{"uri":"/es/bitcoin-explained/taproot-activation-update/","title":"Actualización de la activación de Taproot","content":"Tema: Actualización de la activación de Taproot: Speedy Trial y el cliente LOT=true\nUbicación: Bitcoin Magazine (en línea)\nFecha: 23 de abril de 2021\nEpisodio anterior en lockinontimeout (LOT): https://btctranscripts.com/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/\nEpisodio anterior sobre Speedy Trial: https://btctranscripts.com/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/\nAaron van Wirdum en \u0026amp;ldquo;Ahora hay dos clientes de activación de Taproot, aquí está el …"},{"uri":"/es/bitcoin-explained/","title":"Bitcoin Explained","content":" Actualización de la activación de Taproot Apr 23, 2021 Sjors Provoost, Aaron van Wirdum Taproot Episode 36 Taproot Activación con Speedy Trial Mar 12, 2021 Sjors Provoost, Aaron van Wirdum Taproot Soft fork activation Episode 31 Activación de Taproot y LOT=true vs LOT=false Feb 26, 2021 Sjors Provoost, Aaron van Wirdum Taproot Soft fork activation Episode 29 "},{"uri":"/es/categories/podcast/","title":"podcast","content":""},{"uri":"/es/speakers/sjors-provoost/","title":"Sjors Provoost","content":""},{"uri":"/es/tags/taproot/","title":"taproot","content":""},{"uri":"/es/tags/soft-fork-activation/","title":"soft-fork-activation","content":""},{"uri":"/es/bitcoin-explained/taproot-activation-speedy-trial/","title":"Taproot Activación con Speedy Trial","content":"Propuesta Speedy Trial: https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-March/018583.html\nIntroducción Aaron van Wirdum (AvW): En directo desde Utrecht este es el van Wirdum Sjorsnado. Sjors, ¿cuál es tu juego de palabras de la semana?\nSjors Provoost (SP): En realidad te pedí un juego de palabras y me dijiste \u0026amp;ldquo;Corta, reedita. Vamos a hacerlo de nuevo\u0026amp;rdquo;. No tengo un juego de palabras esta semana.\nAvW: Los juegos de palabras son lo tuyo.\nSP: La última vez intentamos esto de …"},{"uri":"/es/bitcoin-explained/taproot-activation-lockinontimeout/","title":"Activación de Taproot y LOT=true vs LOT=false","content":"BIP 8: https://github.com/bitcoin/bips/blob/master/bip-0008.mediawiki\nArgumentos para LOT=true and LOT=false (T1-T6 and F1-F6): https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-February/018380.html\nArgumento adicional para LOT=false (F7): https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-February/018415.html\nArtículo de Aaron van Wirdum en LOT=true or LOT=false: https://bitcoinmagazine.com/articles/lottrue-or-lotfalse-this-is-the-last-hurdle-before-taproot-activation …"},{"uri":"/es/bitcoin-design/","title":"Bitcoin-designs","content":""},{"uri":"/es/tags/bitcoin-dise%C3%B1o/","title":"bitcoin-diseño","content":""},{"uri":"/es/bitcoin-design/misc/","title":"Miscellaneous","content":" Reunión introductoria de la GUI de Bitcoin Core Aug 20, 2020 Bitcoin diseño "},{"uri":"/es/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/","title":"Reunión introductoria de la GUI de Bitcoin Core","content":"Tema: Enlace del orden del día publicado a continuación\nUbicación: Diseño de Bitcoin (en línea)\nVídeo: No se ha publicado ningún vídeo en línea\nAgenda: https://github.com/BitcoinDesign/Meta/issues/8\nLa conversación se ha anonimizado por defecto para proteger la identidad de los participantes. Aquellos que han expresado su preferencia por que se atribuyan sus comentarios son atribuidos. Si usted ha participado y quiere que sus comentarios sean atribuidos, póngase en contacto con nosotros. …"},{"uri":"/es/bitcoin-magazine/","title":"Bitcoin Magazine","content":" Cómo activar un nuevo Soft Fork Aug 03, 2020 Eric Lombrozo, Luke Dashjr Taproot Soft fork activation "},{"uri":"/es/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/","title":"Cómo activar un nuevo Soft Fork","content":"Location: Bitcoin Magazine (en línea)\nAaron van Wirdum Aaron van Wirdum en Bitcoin Magazine sobre el BIP 8, el BIP 9 o la activación del Soft Fork moderno: https://bitcoinmagazine.com/articles/bip-8-bip-9-or-modern-soft-fork-activation-how-bitcoin-could-upgrade-next\nDavid Harding sobre las propuestas de activación de Taproot: https://gist.github.com/harding/dda66f5fd00611c0890bdfa70e28152d\nIntroducción Aaron van Wirdum (AvW): Eric, Luke bienvenido. Feliz Día de la Independencia de Bitcoin. ¿Cómo …"},{"uri":"/es/speakers/eric-lombrozo/","title":"Eric Lombrozo","content":""},{"uri":"/es/speakers/luke-dashjr/","title":"Luke Dashjr","content":""},{"uri":"/es/speakers/andreas-antonopoulos/","title":"Andreas Antonopoulos","content":""},{"uri":"/es/andreas-antonopoulos/","title":"Andreas Antonopoulos","content":" Bitcoin Q\u0026amp;amp;A: Descarga inicial de la cadena de bloques Oct 23, 2018 Andreas Antonopoulos Consensus enforcement División de la semilla Apr 08, 2020 Andreas Antonopoulos Cartera Seguridad Firmas Schnorr Oct 07, 2018 Andreas Antonopoulos Schnorr signatures Seguridad de la cartera de hardware Feb 01, 2019 Andreas Antonopoulos Cartera hardware Validación Cartera Senado de Canadá Bitcoin Oct 08, 2014 Andreas Antonopoulos Seguridad "},{"uri":"/es/tags/cartera/","title":"cartera","content":""},{"uri":"/es/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/","title":"División de la semilla","content":"Tema: ¿Por qué es una mala idea dividir las semillas?\nLocalisación: Canal de YouTube de Andreas Antonopoulos\n¿Por qué es una mala idea dividir las semillas? Esto es algo que se discute todo el tiempo, especialmente en los foros de novatos. Realmente hay que tener mucho cuidado. Un amigo tuvo la idea de lograr una protección de 2 de 3 de la semilla de mi cartera almacenando la semilla de la siguiente manera:\nUbicación 1: palabras clave 1-8 y 9-16 Ubicación 2: palabras clave 1-8 y 17-24 Ubicación …"},{"uri":"/es/tags/seguridad/","title":"seguridad","content":""},{"uri":"/es/austin-bitcoin-developers/","title":"Austin Bitcoin Developers","content":"https://austinbitdevs.com/\nBitcoin CLI y Regtest Aug 17, 2018 Richard Bondi Bitcoin core Developer tools Drivechain May 27, 2019 Paul Sztorc Investigación Lightning Capa 2 Sidechains Hardware Wallets Jun 29, 2019 Stepan Snigirev Hardware wallet Security problems Seminario Socrático 2 Aug 22, 2019 Research Hardware wallet Seminario Socrático 3 Oct 14, 2019 Miniscript Taproot Seminario Socrático 4 Nov 19, 2019 Seminario Socrático 5 Jan 21, 2020 Lightning Seminario Socrático 6 Feb 24, 2020 Taproot "},{"uri":"/es/categories/reuni%C3%B3n/","title":"reunión","content":""},{"uri":"/es/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/","title":"Seminario Socrático 6","content":"https://www.meetup.com/Austin-Bitcoin-Developers/events/268812642/\nhttps://bitdevs.org/2020-02-12-socratic-seminar-101\nhttps://twitter.com/kanzure/status/1232132693179207682\nIntroducción Muy bien, vamos a empezar. Reúnanse. A Phil le vendría bien algo de compañía. A nadie le gusta la primera fila. Tal vez los bancos. Así que tengo un formato un poco diferente de cómo quiero hacerlo esta semana. Normalmente cubro una amplia serie de temas que robo de la lista de reuniones de Nueva York. Revisando …"},{"uri":"/es/advancing-bitcoin/","title":"Advancing Bitcoin","content":" Advancing Bitcoin 2019 Advancing Bitcoin 2020 "},{"uri":"/es/advancing-bitcoin/2020/","title":"Advancing Bitcoin 2020","content":" Carteras de descriptores Feb 06, 2020 Andrew Chow Cartera Miniscript Feb 07, 2020 Andrew Poelstra Miniscript Miniscript Introducción Feb 06, 2020 Andrew Poelstra Miniscript Cartera Taller de depuración de Bitcoin Core Feb 07, 2020 Fabian Jahr Bitcoin core Developer tools Taller Signet Feb 07, 2020 Kalle Alm Taproot Signet Taproot Lightning Feb 06, 2020 Antoine Riard Taproot Lightning Ptlc "},{"uri":"/es/speakers/andrew-poelstra/","title":"Andrew Poelstra","content":""},{"uri":"/es/speakers/kalle-alm/","title":"Kalle Alm","content":""},{"uri":"/es/tags/miniscript/","title":"miniscript","content":""},{"uri":"/es/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/","title":"Miniscript","content":"Taller sobre el avance de Bitcoin\nMiniscript\nPágina Web: https://bitcoin.sipa.be/miniscript/\nTaller de reposición: https://github.com/apoelstra/miniscript-workshop\nTranscripción de la presentación de Londres Bitcoin Devs Miniscript: https://btctranscripts.com/london-bitcoin-devs/2020-02-04-andrew-poelstra-miniscript/\nParte 1 Así que lo que vamos a hacer, es un par de cosas. Vamos a ir a través del sitio web de Miniscript y aprender sobre cómo se construye Miniscript, cómo funciona el sistema de …"},{"uri":"/es/tags/signet/","title":"signet","content":""},{"uri":"/es/categories/taller/","title":"taller","content":""},{"uri":"/es/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/","title":"Taller de depuración de Bitcoin Core","content":"Vídeo: No se ha publicado ningún vídeo en Internet\nPresentación de Fabian en el Bitcoin Edge Dev++ 2019: https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/debugging-bitcoin/\nDepuración de Bitcoin Core doc: https://github.com/fjahr/debugging_bitcoin\nTaller de depuración de Bitcoin Core: https://gist.github.com/fjahr/5bf65daaf9ff189a0993196195005386\nIntroducción En primer lugar bienvenido al taller de depuración de Bitcoin Core. Todo lo que sé más o menos sobre el uso de un …"},{"uri":"/es/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/","title":"Taller Signet","content":"Tema: Taller Signet\nLocalización: El avance de Bitcoin\nVídeo: No se ha publicado ningún vídeo en línea\nPreparémonos mkdir workspace cd workspace git clone https://github.com/bitcoin/bitcoin.git cd bitcoin git remote add kallewoof https://github.com/kallewoof/bitcoin.git git fetch kallewoof git checkout signet ./autogen.sh ./configure -C --disable-bench --disable-test --without-gui make -j5 Cuando intentes ejecutar la parte de configuración vas a tener algunos problemas si no tienes las …"},{"uri":"/es/speakers/andrew-chow/","title":"Andrew Chow","content":""},{"uri":"/es/speakers/antoine-riard/","title":"Antoine Riard","content":""},{"uri":"/es/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/","title":"Carteras de descriptores","content":"Tema: Repensar la arquitectura de las carteras: Carteras de descriptores nativos\nUbicación: El avance de Bitcoin\nDiapositivas: https://www.dropbox.com/s/142b4o4lrbkvqnh/Rethinking%20Wallet%20Architecture_%20Native%20Descriptor%20Wallets.pptx\nSoporte para descriptores de salida en Bitcoin Core: https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md\nBitcoin Optech en los descriptores de la secuencia de comandos de salida: https://bitcoinops.org/en/topics/output-script-descriptors/ …"},{"uri":"/es/categories/conferencia/","title":"conferencia","content":""},{"uri":"/es/tags/lightning/","title":"lightning","content":""},{"uri":"/es/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/","title":"Miniscript Introducción","content":"Tema: Introducción a Miniscript\nLocación: El avance de Bitcoin\nDiapositivas: https://www.dropbox.com/s/vgh5vaooqqbgg1v/andrew-poelstra.pdf\nIntroducción Hola a todos. Algunos de vosotros estuvisteis en mi presentación de Bitcoin sobre Miniscript hace un par de días donde me las arreglé para pasar más de 2 horas dando una presentación sobre esto. Creo que esta vez la he reducido a 20 minutos, pero no prometo nada. Voy a mantener un ojo en el reloj.\nDescriptores Es muy agradable tener esto …"},{"uri":"/es/tags/ptlc/","title":"ptlc","content":""},{"uri":"/es/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/","title":"Taproot Lightning","content":"Nombre: Antoine Riard\nTema: A Schnorr-Taproot’ed Lightning\nUbicación: El avance de Bitcoin\nFecha: 6 de febrero de 2020\nDiapositivas: https://www.dropbox.com/s/9vs54e9bqf317u0/Schnorr-Taproot%27ed-LN.pdf\nIntroducción Hoy Schnorr y Taproot para Lightning, es un tema realmente apasionante.\nArquitectura Lightning La arquitectura Lightning para aquellos que no están familiarizados con ella. Usted tiene el blockchain como la capa subyacente. Encima de ella vas a construir un canal, tienes un HTLC y la …"},{"uri":"/es/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/","title":"Seminario Socrático 5","content":"https://www.meetup.com/Austin-Bitcoin-Developers/events/267941700/\nhttps://bitdevs.org/2019-12-03-socratic-seminar-99\nhttps://bitdevs.org/2020-01-09-socratic-seminar-100\nhttps://twitter.com/kanzure/status/1219817063948148737\nLSATs Así que solemos empezar con una demostración de un proyecto basado en un rayo en el que ha estado trabajando durante unos meses.\nEsta no es una idea original para mí. Fue presentada por roasbeef, cofundador de Lightning Labs en la conferencia Lightning del pasado …"},{"uri":"/es/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/","title":"Seminario Socrático 4","content":"https://twitter.com/kanzure/status/1196947713658626048\nOrganización de normas para carteras (WSO) Presentar un argumento económico para que los vendedores se unan a una organización y pongan algo de dinero o esfuerzo para construir la organización. El argumento económico es que los miembros comprometidos tienen un cierto nivel de fondos comprometidos, que representan un número X de usuarios, y X mil millones de dólares de fondos custodiados. Esto se puede utilizar como argumento convincente para …"},{"uri":"/es/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/","title":"Seminario Socrático 3","content":"Seminario socrático de desarrolladores de Bitcoin de Austin 3\nhttps://www.meetup.com/Austin-Bitcoin-Developers/events/265295570/\nhttps://bitdevs.org/2019-09-16-socratic-seminar-96\nHemos hecho dos reuniones en este formato. La idea es que en Nueva York hay BitDevs que es una de las reuniones más antiguas. Esto ha estado sucediendo durante cinco años. Tienen un formato llamado socrático donde tienen un tipo talentoso llamado J que los conduce a través de algunos temas y tratan de conseguir un poco …"},{"uri":"/es/baltic-honeybadger/","title":"Baltic Honeybadger","content":" Baltic Honeybadger 2018 Baltic Honeybadger 2019 "},{"uri":"/es/baltic-honeybadger/2019/","title":"Baltic Honeybadger 2019","content":" Coldcard Mk3 - Security in Depth Sep 14, 2019 Rodolfo Novak Seguridad Cartera hardware "},{"uri":"/es/tags/cartera-hardware/","title":"cartera hardware","content":""},{"uri":"/es/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/","title":"Coldcard Mk3 - Security in Depth","content":"Intriduccióno Mi nombre es Rodolfo, he estado alrededor de Bitcoin por un tiempo. Hacemos hardware. Hoy quería entrar un poco en cómo hacer una billetera de hardware segura en términos un poco más legos. Ir a través del proceso de conseguir que se haga.\n¿Cuáles fueron las opciones? Cuando cerré mi última empresa y decidí buscar un lugar para almacenar mis monedas, no pude encontrar un monedero que satisficiera dos cosas que necesitaba. Que era la seguridad física y el código abierto. Hay dos …"},{"uri":"/es/speakers/rodolfo-novak/","title":"Rodolfo Novak","content":""},{"uri":"/es/tags/hardware-wallet/","title":"hardware-wallet","content":""},{"uri":"/es/tags/research/","title":"research","content":""},{"uri":"/es/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/","title":"Seminario Socrático 2","content":"https://twitter.com/kanzure/status/1164710800910692353\nIntroducción Hola. La idea era hacer una reunión de estilo más socrático. Esto fue popularizado por Bitdevs NYC y se extendió a SF. Lo intentamos hace unos meses con Jay. La idea es que recorremos las noticias de investigación, los boletines, los podcasters, hablamos de lo que ha pasado en la comunidad técnica de bitcoin. Vamos a tener diferentes presentadores.\nMike Schmidt hablará de algunos boletines de optech a los que ha contribuido. …"},{"uri":"/es/speakers/0xb10c/","title":"0xB10C","content":""},{"uri":"/es/tags/history/","title":"history","content":""},{"uri":"/es/misc/","title":"Misc","content":" Bitcoin\u0026amp;#39;s Academic Pedigree Aug 29, 2017 Arvind Narayanan, Jeremy Clark History Bitcoin\u0026amp;#39;s Security Model - A Deep Dive Nov 13, 2016 Jameson Lopp Security If I\u0026amp;#39;d Known What We Were Starting Sep 20, 2017 Ray Dillinger History The Incomplete History of Bitcoin Development Aug 04, 2019 0xB10C History "},{"uri":"/es/misc/2019-08-04-incomplete_history/","title":"The Incomplete History of Bitcoin Development","content":"Autor: 0xB10C Texto original: https://b10c.me/blog/004-the-incomplete-history-of-bitcoin-development/\nLa historia incompleta del desarrollo de Bitcoin Para comprender plenamente la justificación del estado actual del desarrollo de Bitcoin, el conocimiento de los eventos históricos es esencial. Esta publicación de blog destaca eventos históricos seleccionados, versiones de software y correcciones de errores antes y después de que Satoshi abandonara el proyecto. Además, contiene una sección sobre …"},{"uri":"/es/austin-bitcoin-developers/2019-06-29-hardware-wallets/","title":"Hardware Wallets","content":"https://twitter.com/kanzure/status/1145019634547978240\nVer también:\nExtracción de semillas de hardware wallets El futuro de las hardware wallets coredev.tech 2019 debate de hardware wallets Antecedentes Hace algo más de un año, pasé por la clase de Jimmy Song de Programación de Blockchain. Ahí fue donde conocí a M, donde él era el asistente de enseñanza. Básicamente, se escribe una biblioteca de bitcoin en python desde cero. La API de esta librería y las clases y funcciones que usa Jimmy son muy …"},{"uri":"/es/tags/security-problems/","title":"security-problems","content":""},{"uri":"/es/speakers/stepan-snigirev/","title":"Stepan Snigirev","content":""},{"uri":"/es/chaincode-labs/","title":"Chaincode Labs","content":" Residencia de Chaincode "},{"uri":"/es/speakers/christian-decker/","title":"Christian Decker","content":""},{"uri":"/es/tags/eltoo/","title":"eltoo","content":""},{"uri":"/es/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/","title":"Eltoo - El (lejano) futuro de lightning","content":"Tema: Eltoo: El (lejano) futuro de lightning\nLugar: Chaincode Labs\nDiapositivas: https://residency.chaincode.com/presentations/lightning/Eltoo.pdf\nEltoo white paper: https://blockstream.com/eltoo.pdf\nArtículo de Bitcoin Magazine: https://bitcoinmagazine.com/articles/noinput-class-bitcoin-soft-fork-simplify-lightning\nIntro ¿Quién nunca ha oído hablar de eltoo? Es mi proyecto favorito y estoy bastante orgulloso de él. Intentaré que esto sea breve. Me dijeron que todos vieron mi presentación sobre …"},{"uri":"/es/chaincode-labs/chaincode-residency/","title":"Residencia de Chaincode","content":" Eltoo - El (lejano) futuro de lightning Jun 25, 2019 Christian Decker Eltoo Lightning Security Models Jun 17, 2019 John Newbery Security Taproot Cryptography "},{"uri":"/es/categories/residency/","title":"residency","content":""},{"uri":"/es/tags/cryptography/","title":"cryptography","content":""},{"uri":"/es/speakers/john-newbery/","title":"John Newbery","content":""},{"uri":"/es/tags/security/","title":"security","content":""},{"uri":"/es/chaincode-labs/chaincode-residency/2019-06-17-newbery-security-models/","title":"Security Models","content":"Texto original: https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-17-john-newbery-security-models/\nTranscripción de: Caralie Chrisco\nUbicación: Residencia de Chaincode Labs 2019\nDiapositivas: https://residency.chaincode.com/presentations/bitcoin/security_models.pdf\nJohn Newbery: Muy bien, modelos de seguridad. Esto va a ser como un recorrido rápido de varias cosas, vista de muy alto nivel. Empezaré dándote algún tipo de marco para pensar en las cosas. Así que en criptografía, …"},{"uri":"/es/speakers/jonas-nick/","title":"Jonas Nick","content":""},{"uri":"/es/lets-talk-bitcoin-podcast/","title":"Lets Talk Bitcoin Podcast","content":" The Tools and The Work Jun 09, 2019 Pieter Wuille, Jonas Nick Taproot Schnorr signatures "},{"uri":"/es/tags/schnorr-signatures/","title":"schnorr-signatures","content":""},{"uri":"/es/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/","title":"The Tools and The Work","content":"Hablemos de Bitcoin con Pieter Wuille y Jonas Nick – 9 de Junio de 2019 (\u0026amp;ldquo;Let\u0026amp;rsquo;s Talk Bitcoin\u0026amp;rdquo;)\nhttps://twitter.com/kanzure/status/1155851797568917504\nParte 1: https://letstalkbitcoin.com/blog/post/lets-talk-bitcoin-400-the-tools-and-the-work\nParte 2: https://letstalkbitcoin.com/blog/post/lets-talk-bitcoin-401-the-tools-and-the-work-part-2\nBorrador de BIP-Schnorr: https://github.com/sipa/bips/blob/bip-schnorr/bip-schnorr.mediawiki\nBorrador de BIP-Taproot: …"},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-07-assumeutxo/","title":"AssumeUTXO","content":"https://twitter.com/kanzure/status/1137008648620838912\nPor qué assumeutxo assumeutxo es la continuación espiritual de assumevalid. ¿Por qué queremos hacer esto en primer lugar? En la actualidad, la descarga inicial de bloques tarda horas y días. Varios proyectos en la comunidad han estado implementando medidas para acelerar esto. Casa creo que incluye datadir con sus nodos. Otros proyectos como btcpay tienen varias formas de agrupar esto y firmar las cosas con claves gpg y estas soluciones no …"},{"uri":"/es/bitcoin-core-dev-tech/2019-06/","title":"Bitcoin Core Dev Tech 2019","content":" Arquitecturas de las wallets Jun 05, 2019 Andrew Chow Wallet Bitcoin core AssumeUTXO Jun 07, 2019 James O\u0026amp;#39;Beirne Assume utxo Bitcoin core Cadenas de estado ciegas: Transferencia de UTXO con un servidor de firmas ciegas Jun 07, 2019 Ruben Somsen Statechains Eltoo Channel factories Cifrado P2P Jun 07, 2019 P2 p Discusión general sobre SIGHASH_NOINPUT, OP_CHECKSIGFROMSTACK, and OP_SECURETHEBAG Jun 06, 2019 Olaoluwa Osuntokun, Jeremy Rubin Sighash anyprevout Op checksigfromstack Op …"},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-07-statechains/","title":"Cadenas de estado ciegas: Transferencia de UTXO con un servidor de firmas ciegas","content":"https://twitter.com/kanzure/status/1136992734953299970\nFormalización de Blind Statechains como servidor de firma ciega minimalista https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2019-June/017005.html\nVisión General: https://medium.com/@RubenSomsen/statechains-non-custodial-off-chain-bitcoin-transfer-1ae4845a4a39\nDocumento statechains: https://github.com/RubenSomsen/rubensomsen.github.io/blob/master/img/statechains.pdf\nTranscripción anterior: …"},{"uri":"/es/tags/channel-factories/","title":"channel-factories","content":""},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/","title":"Cifrado P2P","content":"Cifrado p2p\nhttps://twitter.com/kanzure/status/1136939003666685952\nhttps://github.com/bitcoin-core/bitcoin-devwiki/wiki/P2P-Design-Philosophy\n\u0026amp;ldquo;Elligator al cuadrado: Puntos uniformes en curvas elípticas de orden primo como cadenas aleatorias uniformes\u0026amp;rdquo; https://eprint.iacr.org/2014/043\nIntroducción Esta propuesta lleva años en marcha. Muchas ideas de sipa y gmaxwell fueron a parar al bip151. Hace años decidí intentar sacar esto adelante. Hay bip151 que de nuevo la mayoría de las ideas …"},{"uri":"/es/speakers/ruben-somsen/","title":"Ruben Somsen","content":""},{"uri":"/es/tags/statechains/","title":"statechains","content":""},{"uri":"/es/tags/consensus-cleanup/","title":"consensus-cleanup","content":""},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/","title":"Discusión general sobre SIGHASH_NOINPUT, OP_CHECKSIGFROMSTACK, and OP_SECURETHEBAG","content":"SIGHASH_NOINPUT, ANYPREVOUT, OP_CHECKSIGFROMSTACK, OP_CHECKOUTPUTSHASHVERIFY, and OP_SECURETHEBAG\nhttps://twitter.com/kanzure/status/1136636856093876225\nAl parecer, hay algunos mensajes políticos en torno a OP_SECURETHEBA y \u0026amp;ldquo;asegurar la bolsa\u0026amp;rdquo; podría ser una cosa de Andrew Yang\nSIGHASH_NOINPUT Muchos de nosotros estamos familiarizados con NOINPUT. ¿Alguien necesita una explicación? ¿Cuál es la diferencia entre el NOINPUT original y el nuevo? NOINPUT asusta al menos a algunas …"},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-06-great-consensus-cleanup/","title":"Gran limpieza de consenso","content":"https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2019-March/016714.html\nhttps://twitter.com/kanzure/status/1136591286012698626\nIntroducción No hay mucho nuevo de que hablar. No está claro lo de CODESEPARATOR. Se quiere convertir en regla de consenso que las transacciones no pueden ser mayores de 100 kb. ¿No hay reacciones a eso? De acuerdo. Bien, lo haremos. Hagámoslo. ¿Todos saben cuál es esta propuesta?\nEl tiempo de validación para cualquier bloque, éramos perezosos a la hora de …"},{"uri":"/es/speakers/jeremy-rubin/","title":"Jeremy Rubin","content":""},{"uri":"/es/speakers/matt-corallo/","title":"Matt Corallo","content":""},{"uri":"/es/speakers/olaoluwa-osuntokun/","title":"Olaoluwa Osuntokun","content":""},{"uri":"/es/tags/op_checksigfromstack/","title":"op_checksigfromstack","content":""},{"uri":"/es/tags/op_checktemplateverify/","title":"op_checktemplateverify","content":""},{"uri":"/es/tags/p2c/","title":"p2c","content":""},{"uri":"/es/tags/quantum-resistance/","title":"quantum-resistance","content":""},{"uri":"/es/tags/sighash_anyprevout/","title":"sighash_anyprevout","content":""},{"uri":"/es/speakers/tadge-dryja/","title":"Tadge Dryja","content":""},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-06-taproot/","title":"Taproot","content":"https://github.com/bitcoin/bips/blob/master/bip-0340.mediawiki\nhttps://lists.linuxfoundation.org/pipermail/bitcoin-dev/2019-May/016914.html\nhttps://bitcoinmagazine.com/articles/taproot-coming-what-it-and-how-it-will-benefit-bitcoin/\nPreviamente: http://diyhpl.us/wiki/transcripts/bitcoin-core-dev-tech/2018-03-06-taproot-graftroot-etc/\nhttps://twitter.com/kanzure/status/1136616356827283456\nIntroducción Bien, primera pregunta: ¿quién puso mi nombre en esa lista y qué quieren? No fui yo. Voy a hacer …"},{"uri":"/es/tags/utreexo/","title":"utreexo","content":""},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-06-utreexo/","title":"Utreexo","content":"Utreexo: acumulador basado en hash para UTXOs de bitcoin\nhttp://diyhpl.us/wiki/transcripts/bitcoin-core-dev-tech/2018-10-08-utxo-accumulators-and-utreexo/\nhttp://diyhpl.us/wiki/transcripts/mit-bitcoin-expo-2019/utreexo/\nDocumento Utreexo https://eprint.iacr.org/2019/611.pdf\nhttps://github.com/mit-dci/utreexo\nhttps://twitter.com/kanzure/status/1136560700187447297\nIntroducción Sigues descargando todo; en lugar de escribir en tu base de datos UTXO, modificas tu acumulador. Aceptas una prueba de que …"},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/","title":"Arquitecturas de las wallets","content":"Arquitectura de la wallet de Bitcoin Core + descriptores\nhttps://twitter.com/kanzure/status/1136282460675878915\nwriteup: https://github.com/bitcoin/bitcoin/issues/16165\nDebate sobre la arquitectura de las wallets Aquí hay tres áreas principales. Una es IsMine: ¿cómo determino que una salida concreta está afectando a mi wallet? ¿Qué hay de pedir una nueva dirección, de dónde viene? Eso no es sólo obtener una nueva dirección, es obtener una dirección de cambio en bruto, es también el cambio que se …"},{"uri":"/es/tags/wallet/","title":"wallet","content":""},{"uri":"/es/tags/capa-2/","title":"capa 2","content":""},{"uri":"/es/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/","title":"Drivechain","content":"Drivechain: Una capa de interoperabilidad-2, descrita en términos de la red lightning - algo que ya entiendes\nhttps://twitter.com/kanzure/status/1133202672570519552\nSobre mí Bien, aquí hay algunas cosas sobre mí. He sido un bitcoiner desde 2012. He publicado investigaciones sobre bitcoin en el blog truthcoin.info. He presentado en Scaling Bitcoin 1, 2, 3, 4, tabconf, y Building on Bitcoin. Mi formación es en economía y estadística. Trabajé en el Departamento de Economía de Yale como estadístico …"},{"uri":"/es/tags/investigaci%C3%B3n/","title":"investigación","content":""},{"uri":"/es/speakers/paul-sztorc/","title":"Paul Sztorc","content":""},{"uri":"/es/tags/sidechains/","title":"sidechains","content":""},{"uri":"/es/advancing-bitcoin/2019/","title":"Advancing Bitcoin 2019","content":" Lightning Rust Feb 07, 2019 Matt Corallo Lightning "},{"uri":"/es/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/","title":"Lightning Rust","content":"Lightning flexible en Rust\nDiapositivas: https://docs.google.com/presentation/d/154bMWdcMCFUco4ZXQ3lWfF51U5dad8pQ23rKVkncnns/edit#slide=id.p\nhttps://twitter.com/kanzure/status/1144256392490029057\nIntroducción Gracias por recibirme. Quiero hablar un poco sobre un proyecto en el que he estado trabajando durante un año llamado \u0026amp;ldquo;Rust-lightning\u0026amp;rdquo;. Lo empecé en diciembre, así que hace un año y unos meses. Esta es mi primera presentación en él, así que estoy emocionado de finalmente llegar a …"},{"uri":"/es/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/","title":"Seguridad de la cartera de hardware","content":"Tema: ¿Son los monederos electrónicos lo suficientemente seguros?\nLocalización: Canal de YouTube de Andreas Antonopoulos\n¿Son los monederos electrónicos lo suficientemente seguros? P - Hola Andreas. Almaceno mi criptografía en un Ledger. Escuchando a Trace Mayer esta semana me preocupa que esto no sea lo suficientemente seguro. Trace dice que necesitas Bitcoin Core para la validación de la red, Armory para gestionar las claves privadas y un protocolo Glacier para los procedimientos operativos …"},{"uri":"/es/tags/validaci%C3%B3n/","title":"validación","content":""},{"uri":"/es/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/","title":"Bitcoin Q\u0026A: Descarga inicial de la cadena de bloques","content":"Becca pregunta por qué se tarda tanto en descargar el blockchain. Yo tengo una conexión rápida a Internet y he podido descargar 200GB en menos de una hora. A lo que Becca se refiere es a lo que se llama la descarga inicial del blockchain o IBD, que es la primera sincronización del nodo de Bitcoin o de cualquier tipo de nodo de blockchain con su blockchain. La respuesta es que, aunque la cantidad de datos que hay que descargar para obtener la cadena de bloques completa es de unos 200 GB, no se …"},{"uri":"/es/tags/consensus-enforcement/","title":"consensus-enforcement","content":""},{"uri":"/es/bitcoin-core-dev-tech/2018-10/","title":"Bitcoin Core Dev Tech 2018 (Oct)","content":" Acumuladores UTXO, compromisos UTXO y Utreexo Oct 08, 2018 Tadge Dryja Proof systems Utreexo Bitcoin Optech Oct 09, 2018 Lightning Segwit Cosas de Wallets Oct 09, 2018 Wallet Descriptores de guiones (2018-10-08) Wallet Mensaje de señalización Oct 10, 2018 Kalle Alm Wallet Retransmisión eficiente de transacciones P2P Oct 08, 2018 P2 p "},{"uri":"/es/bitcoin-core-dev-tech/2018-10/2018-10-10-signmessage/","title":"Mensaje de señalización","content":"kallewoof and others\nhttps://twitter.com/kanzure/status/1049834659306061829\nEstoy tratando de hacer un nuevo signmessage para hacer otras cosas. Sólo tiene que utilizar el sistema de firma dentro de bitcoin para firmar un mensaje. Firmar un mensaje que alguien quiere. Puedes usar proof-of-funds o lo que sea.\nUsted podría simplemente tener una firma y es una firma dentro de un paquete y es pequeño y fácil. Otra opción es tener un .. que no es válido de alguna manera. Haces una transacción con …"},{"uri":"/es/bitcoin-core-dev-tech/2018-10/2018-10-09-bitcoin-optech/","title":"Bitcoin Optech","content":"https://twitter.com/kanzure/status/1049527415767101440\nhttps://bitcoinops.org/\nBitcoin Optech trata de animar a las empresas bitcoin a adoptar mejores técnicas y tecnologías de escalado, cosas como batching, segwit, más adelante quizá firmas Schnorr, firmas agregables, quizá lightning. Ahora mismo nos estamos centrando en cosas que las empresas podrían estar haciendo ahora mismo. Los intercambios podrían ser por lotes, y algunos no lo son. Estamos hablando con esas empresas y escuchando sus …"},{"uri":"/es/bitcoin-core-dev-tech/2018-10/2018-10-09-wallet-stuff/","title":"Cosas de Wallets","content":"https://twitter.com/kanzure/status/1049526667079643136\nTal vez podamos hacer que los PRs del monedero tengan un proceso de revisión diferente para que pueda haber cierta especialización, incluso si el monedero no está listo para ser separado. En el futuro, si el monedero fuera un proyecto o repositorio separado, entonces sería mejor. Tenemos que ser capaces de subdividir el trabajo mejor de lo que ya lo hacemos, y la cartera es un buen lugar para empezar a hacerlo. Es diferente del código …"},{"uri":"/es/tags/segwit/","title":"segwit","content":""},{"uri":"/es/bitcoin-core-dev-tech/2018-10/2018-10-08-utxo-accumulators-and-utreexo/","title":"Acumuladores UTXO, compromisos UTXO y Utreexo","content":"https://twitter.com/kanzure/status/1049112390413897728\nSi la gente vio la charla de Benedikt, hace dos días, está relacionado. Es una construcción diferente, pero el mismo objetivo. La idea básica es, y creo que Cory comenzó a hablar de esto hace unos meses en la lista de correo \u0026amp;hellip; en lugar de almacenar todos los UTXOs en leveldb, almacenar el hash de cada UTXO, y entonces es la mitad del tamaño, y entonces casi se podría crear a partir del hash de la entrada, es como 10 bytes más. En vez …"},{"uri":"/es/tags/proof-systems/","title":"proof-systems","content":""},{"uri":"/es/bitcoin-core-dev-tech/2018-10/2018-10-08-efficient-p2p-transaction-relay/","title":"Retransmisión eficiente de transacciones P2P","content":"Mejoras del protocolo de retransmisión de transacciones p2p con reconciliación de conjuntos gleb\nNo sé si necesito motivar este problema. Presenté una sesión de trabajo en curso en Scaling. El coste de retransmitir transacciones o anunciar una transacción en una red: ¿cuántos anuncios tienes? Cada enlace tiene un anuncio en cualquier dirección en este momento, y luego está el número de nodos multiplicado por el número de conexiones por nodo. Esto es como 8 conexiones de media. Si hay más …"},{"uri":"/es/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/","title":"Firmas Schnorr","content":"LTB Episodio 378 - El Petro dentro de Venezuela y las firmas Schnorr\nActualmente utilizamos el algoritmo de firma digital de curva elíptica (ECDSA), que es una forma específica de realizar firmas digitales con curvas elípticas, pero no la única. Las firmas Schnorr tienen algunas características únicas que las hacen mejores en muchos aspectos que el algoritmo ECDSA que usamos actualmente en Bitcoin.\nLas firmas Schnorr son mejores porque tienen ciertas peculiaridades en la forma en que se …"},{"uri":"/es/austin-bitcoin-developers/2018-08-17-richard-bondi-bitcoin-cli-regtest/","title":"Bitcoin CLI y Regtest","content":"Clone este repositorio para seguir el proceso: https://github.com/austin-bitcoin-developers/regtest-dev-environment\nhttps://twitter.com/kanzure/status/1161266116293009408\nIntroducción Así que el objetivo aquí como Justin dijo es conseguir el entorno regtest configurado. Las ventajas que mencionó, también existe la ventaja de que usted puede minar sus propias monedas a voluntad por lo que no tiene que perder el tiempo con grifos testnet. También puedes generar bloques, así que no tienes que …"},{"uri":"/es/speakers/richard-bondi/","title":"Richard Bondi","content":""},{"uri":"/es/bitcoin-core-dev-tech/2018-03/","title":"Bitcoin Core Dev Tech 2018 (Mar)","content":" Árboles de sintaxis abstracta merkleizados - MAST Mar 06, 2018 Taproot Covenios Validación Bellare-Neven Mar 05, 2018 Signature aggregation Intercambios atómicos de curvas transversales Mar 05, 2018 Adaptor signatures Prioridades Mar 07, 2018 Taproot, Graftroot, Etc (2018-03-06) Contract protocols Taproot "},{"uri":"/es/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/","title":"Prioridades","content":"https://twitter.com/kanzure/status/972863994489901056\nPrioridades Vamos a esperar hasta que BlueMatt esté aquí. Nadie sabe cuáles son sus prioridades. Dice que podría llegar alrededor del mediodía.\nHay un ex-director de producto de Google interesado en ayudar con Bitcoin Core. Me preguntó cómo participar. Le dije que se involucrara simplemente sumergiéndose. Pasará algún tiempo en Chaincode a finales de marzo. Nos haremos una idea de cuáles son sus habilidades. Creo que podría ser útil para …"},{"uri":"/es/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/","title":"Árboles de sintaxis abstracta merkleizados - MAST","content":"https://twitter.com/kanzure/status/972120890279432192\nVer también http://diyhpl.us/wiki/transcripts/bitcoin-core-dev-tech/2017-09-07-merkleized-abstract-syntax-trees/\nCosas de MAST Podrías merkleizar directamente los scripts si cambias de IF, IFNOT, ELSE con IFJUMP que tiene el número de bytes.\nCon graftroot y taproot, nunca para hacer cualquier scripts (que eran un hack para empezar las cosas). Pero estamos haciendo la validación y el cálculo.\nTomas todos los caminos que tiene; así que en lugar …"},{"uri":"/es/tags/covenios/","title":"covenios","content":""},{"uri":"/es/tags/adaptor-signatures/","title":"adaptor-signatures","content":""},{"uri":"/es/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/","title":"Bellare-Neven","content":"Ver también http://diyhpl.us/wiki/transcripts/bitcoin-core-dev-tech/2017-09-06-signature-aggregation/\nSe ha publicado, ha existido durante una década, y es ampliamente citado. En Bellare-Neven, es en sí mismo, es un esquema multi-firma que significa múltiples pubkeys y un mensaje. Debe tratar las autorizaciones individuales para gastar entradas, como mensajes individuales. Lo que necesitamos es un esquema de firma agregada interactiva. El artículo de Bellare-Neven sugiere una forma trivial de …"},{"uri":"/es/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/","title":"Intercambios atómicos de curvas transversales","content":"https://twitter.com/kanzure/status/971827042223345664\nBorrador de un próximo documento de guiones sin guión. Esto fue a principios de 2017. Pero ya ha pasado todo un año.\ntransacciones lightning posteriores a schnorr https://lists.linuxfoundation.org/pipermail/lightning-dev/2018-February/001031.html\nUna firma adaptadora.. si tienes diferentes generadores, entonces los dos secretos a revelar, simplemente le das a alguien los dos, más una prueba de un log discreto, y entonces dices aprende el …"},{"uri":"/es/tags/signature-aggregation/","title":"signature-aggregation","content":""},{"uri":"/es/misc/2017-09-20-ray-dillinger-if-id-known/","title":"If I'd Known What We Were Starting","content":"Autor: Ray Dillinger Texto original: https://www.linkedin.com/pulse/id-known-what-we-were-starting-ray-dillinger/\nSi hubiera sabido lo que estábamos empezando En noviembre de 2008, realicé una revisión de código y una auditoría de seguridad para la parte de la blockchain del código fuente de Bitcoin. El fallecido Hal Finney revisó el código y auditó el lenguaje de scripting, y ambos analizamos el código de contabilidad. Satoshi Nakamoto, arquitecto seudónimo y autor del código, alternó entre …"},{"uri":"/es/speakers/ray-dillinger/","title":"Ray Dillinger","content":""},{"uri":"/es/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/","title":"Árboles de sintaxis abstracta merkleizados","content":"https://twitter.com/kanzure/status/907075529534328832\nÁrboles de sintaxis abstracta merkleizados (MAST) https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2017-September/014932.html\nVoy a hablar del esquema que publiqué ayer en la lista de correo, que consiste en implementar MAST (árboles de sintaxis abstracta merkleizados) en bitcoin de la forma menos invasiva posible. Está dividido en dos grandes rasgos de consenso que juntos nos dan MAST. Empezaré con el último BIP.\nEsto es la …"},{"uri":"/es/bitcoin-core-dev-tech/2017-09/","title":"Bitcoin Core Dev Tech 2017","content":" Agregación de firmas Sep 06, 2017 Signature aggregation Árboles de sintaxis abstracta merkleizados Sep 07, 2017 Mast Notas de la reunión Sep 05, 2017 Privacidad "},{"uri":"/es/tags/mast/","title":"mast","content":""},{"uri":"/es/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/","title":"Agregación de firmas","content":"https://twitter.com/kanzure/status/907065194463072258\nAgregación de firmas Sipa, ¿puedes firmar y verificar firmas ECDSA a mano? No. Sobre GF(43), tal vez. Los inversos podrían tomar un poco de tiempo para computar. Sobre GF(2).\nCreo que lo primero de lo que deberíamos hablar es de algunas definiciones. Me gustaría empezar distinguiendo entre tres cosas: Agregación de claves, agregación de firmas y validación de lotes. Más adelante, la multifirma.\nHay tres problemas diferentes. La agregación de …"},{"uri":"/es/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/","title":"Notas de la reunión","content":"coredev.tech septiembre 2017\nhttps://twitter.com/kanzure/status/907233490919464960\n((Como siempre, cualquier error es probablemente mío, etc.))\nIntroducción Existe una gran preocupación sobre si BlueMatt se ha convertido en un nombre erróneo.\nPresentación del lunes por la noche: https://btctranscripts.com/sf-bitcoin-meetup/2017-09-04-jonas-schnelli-bip150-bip151/\nCreo que deberíamos seguir usando #bitcoin-core-dev para cualquier cosa relacionada con el cambio de Bitcoin Core y tratar de mantener …"},{"uri":"/es/tags/privacidad/","title":"privacidad","content":""},{"uri":"/es/speakers/arvind-narayanan/","title":"Arvind Narayanan","content":""},{"uri":"/es/misc/2017-08-29-bitcoin-academic-pedigree/","title":"Bitcoin's Academic Pedigree","content":"Texto original: https://queue.acm.org/detail.cfm?id=3136559\nPedigrí académico de Bitcoin El concepto de criptomonedas se basa en ideas olvidadas en la literatura de investigación. Arvind Narayanan y Jeremy Clark\nSi has leído sobre bitcoin en la prensa y tienes cierta familiaridad con la investigación académica en el campo de la criptografía, podrías tener razonablemente la siguiente impresión: La investigación de varias décadas sobre el efectivo digital, comenzando por David Chaum,10,12 no …"},{"uri":"/es/speakers/jeremy-clark/","title":"Jeremy Clark","content":""},{"uri":"/es/misc/2016-11-13-lopp-bitcoin-security-model/","title":"Bitcoin's Security Model - A Deep Dive","content":"Texto original: https://www.coindesk.com/markets/2016/11/13/bitcoins-security-model-a-deep-dive/\nEl modelo de seguridad de Bitcoin: una profunda inmersión CoinDesk echa un vistazo bajo el capó para entender qué funciones de seguridad ofrecen y qué no ofrecen bitcoin. Cuando se discuten los mecanismos de consenso para diferentes criptomonedas, un tema que a menudo causa argumentos es la falta de comprensión (y definición) del modelo de seguridad que proporcionan para los datos históricos del …"},{"uri":"/es/speakers/jameson-lopp/","title":"Jameson Lopp","content":""},{"uri":"/es/greg-maxwell/2016-01-29-a-trip-to-the-moon/","title":"A trip to the moon requires a rocket with multiple stages","content":"Texto original: https://www.reddit.com/r/Bitcoin/comments/438hx0/a_trip_to_the_moon_requires_a_rocket_with/\nUn viaje a la luna requiere un cohete con múltiples etapas o, de lo contrario, la ecuación del cohete te comerá el almuerzo\u0026amp;hellip; empacar a todos como un coche de payasos en un trebuchet y esperar el éxito esta excluido.\nMucha gente en Reddit piensa que Bitcoin es principalmente un competidor de las redes de pago con tarjeta. Creo que esto es más que un poco extraño: Bitcoin es una …"},{"uri":"/es/speakers/greg-maxwell/","title":"Greg Maxwell","content":""},{"uri":"/es/greg-maxwell/","title":"Greg Maxwell","content":" A trip to the moon requires a rocket with multiple stages Jan 29, 2016 Greg Maxwell Scaling "},{"uri":"/es/tags/scaling/","title":"scaling","content":""},{"uri":"/es/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/","title":"Senado de Canadá Bitcoin","content":"Esta es una transcripción de las pruebas presentadas ante el Comité del Senado de Canadá sobre Banca, Comercio y Economía. Aquí hay un video. El discurso de apertura se puede encontrar aquí.\nPuede aparecer otra transcripción aquí pero quién sabe.\nSe puede encontrar una transcripción adicional aquí.\nInforme final: http://www.parl.gc.ca/Content/SEN/Committee/412/banc/rep/rep12jun15-e.pdf\nObservaciones preparadas. Mi experiencia se centra principalmente en la seguridad de la información y la …"},{"uri":"/es/bit-block-boom/2019/accumulating-bitcoin/","title":"Acumular Bitcoin","content":"Introducción Hoy voy a predicar al coro, creo. Espero reiterar y reforzar algunos puntos que ya conoces pero que tal vez olvidaste mencionar a tus amigos nocoiner, o aprender algo nuevo. Espero que haya algo para todos aquí.\nP: ¿Debo comprar bitcoin?\nR: Sí.\nP: ¿Vas a trolear a un periodista?\nR: ¿Hoy? Ya lo he hecho.\nConceptos erróneos Una de las mayores ideas erróneas que escuché cuando conocí el bitcoin fue que éste era sólo un sistema de pagos. Si lees el libro blanco, entonces lees esto y …"},{"uri":"/es/speakers/alena-vranova/","title":"Alena Vranova","content":""},{"uri":"/es/speakers/alex-petrov/","title":"Alex Petrov","content":""},{"uri":"/es/baltic-honeybadger/2018/opening/","title":"Apertura","content":"Discurso de apertura del Baltic Honeybadger 2018\ntwitter: https://twitter.com/search?f=tweets\u0026amp;amp;vertical=default\u0026amp;amp;q=bh2018\nhttps://twitter.com/kanzure/status/1043384689321566208\nBien chicos, vamos a empezar en cinco minutos. Así que quédense aquí. Ella va a presentar a los oradores y ayudar a todos. Gracias a todos por venir. Es una gran multitud este año. Quería hacer algunos anuncios técnicos. En primer lugar, recuerden que debemos ser excelentes entre nosotros. Tenemos gente de todo el …"},{"uri":"/es/baltic-honeybadger/2018/","title":"Baltic Honeybadger 2018","content":"http://web.archive.org/web/20180825023519/https://bh2018.hodlhodl.com/\nApertura Bitcoin como nueva institución de mercado Nic Carter Custodia de Bitcoin Bryan Bishop Custodia Reglamento El estándar Bitcoin Saifedean Ammous El futuro de Lightning Elizabeth Stark Lightning El futuro de los contratos inteligentes de Bitcoin Max Keidun Contratos inteligentes El futuro de los monederos de Bitcoin Pavol Rusnak, Lawrence Nahum, Giacomo Zucco Cartera hardware Cartera El maximalismo de Bitcoin …"},{"uri":"/es/bit-block-boom/","title":"Bit Block Boom","content":" Bit Block Boom 2019 "},{"uri":"/es/bit-block-boom/2019/","title":"Bit Block Boom 2019","content":" Acumular Bitcoin Pierre Rochard "},{"uri":"/es/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/","title":"Bitcoin como nueva institución de mercado","content":"Bitcoin como nueva institución de mercado\nhttps://twitter.com/kanzure/status/1043763647498063872\nVoy a hablar de bitcoin como un sistema económico, no como un sistema de software o criptográfico. Esta charla tiene dos partes. En la primera, voy a hacer una retrospectiva de los últimos 10 años de bitcoin como sistema económico en funcionamiento. En la segunda parte, voy a analizar a bitcoin tal y como es hoy y cómo será en el futuro. Voy a mirar la cantidad de riqueza almacenada en bitcoin y …"},{"uri":"/es/bitcoin-core-dev-tech/2015-02/","title":"Bitcoin Core Dev Tech 2015","content":" Bitcoin Law For Developers James Gatto, Marco Santori Charla de los fundadores de Circle Jeremy Allaire, Sean Neville Gavin Andresen Research And Development Goals Patrick Murck, Gavin Andresen, Cory Fields Consensus "},{"uri":"/es/bitcoin-core-dev-tech/2022-10/2022-10-11-github/","title":"Bitcoin Core y GitHub (2022-10-11)","content":"Bitcoin Core y GitHub Creo que en este punto está bastante claro que no es necesariamente un \u0026amp;ldquo;si\u0026amp;rdquo; salimos de github, sino un cuándo y cómo. La pregunta sería, ¿cómo lo haríamos? Esto no es realmente una presentación. Es más bien una discusión. Hay algunas cosas a tener en cuenta, como el repo de bitcoin-gh-meta, que captura todas las cuestiones, comentarios y pull requests. Es bastante bueno. La capacidad de reconstruir lo que hay aquí en otra plataforma no parece posible en su …"},{"uri":"/es/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/","title":"Bitcoin Law For Developers","content":"Vamos a hacer una pausa de 15 minutos para tomar café después de nuestros dos próximos oradores. Quiero presentarles a James Gatto y Marco Santori de Pilsbury. Pasarán algún tiempo hablando de la ley Bitcoin. Tienen una sala esta tarde y se ofrecen a hablar con ustedes uno a uno. Así que Marco y James.\nTe perdiste la introducción. ¿Estuvo bien? (risas)\nEstamos aquí para hablar de cuestiones jurídicas. Vamos a intentar que sea ligero e interesante. Yo voy a hablar de patentes. Y Marc va a hablar …"},{"uri":"/es/speakers/bruce-fenton/","title":"Bruce Fenton","content":""},{"uri":"/es/speakers/bryan-bishop/","title":"Bryan Bishop","content":""},{"uri":"/es/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/","title":"Charla de los fundadores de Circle","content":"Estamos encantados de estar aquí y de patrocinar este evento. Nuestra experiencia en herramientas para desarrolladores se remonta a los primeros días de algo.\n¿Cómo maduramos el desarrollo del propio Bitcoin Core? Una de las cosas útiles es identificar los componentes clave. En un estándar tienes una especificación, podría ser un libro blanco, y luego tienes una implementación de referencia, y luego un conjunto de pruebas que hace cumplir la interoperabilidad. El conjunto de pruebas es lo que …"},{"uri":"/es/categories/conference/","title":"conference","content":""},{"uri":"/es/categories/conferenciae/","title":"conferenciae","content":""},{"uri":"/es/tags/consensus/","title":"consensus","content":""},{"uri":"/es/tags/contract-protocols/","title":"contract-protocols","content":""},{"uri":"/es/tags/contratos-inteligentes/","title":"contratos inteligentes","content":""},{"uri":"/es/speakers/cory-fields/","title":"Cory Fields","content":""},{"uri":"/es/tags/custodia/","title":"custodia","content":""},{"uri":"/es/baltic-honeybadger/2018/bitcoin-custody/","title":"Custodia de Bitcoin","content":"https://twitter.com/kanzure/status/1048014038179823617\nCustodia de Bitcoin\nConferencia de Bitcoin del Báltico Honey Badger 2018, Riga, Letonia, Día 2\nSchedule: https://bh2018.hodlhodl.com/\nTranscripción\nHora de inicio: 6:09:50\nMi nombre es Bryan Bishop, voy a hablar de la custodia de bitcoin. Aquí está mi huella digital PGP, deberíamos hacer eso. Así que quién soy, tengo un fondo de desarrollo de software, no solo escribo transcripciones. En realidad ya no estoy en LedgerX desde el viernes (21 …"},{"uri":"/es/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/","title":"Descriptores de guiones (2018-10-08)","content":"2018-10-08\nDescriptores de guiones Pieter Wuille (sipa)\nhttps://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md\nMe gustaría hablar de los descriptores de guiones. Hay varios proyectos en los que estamos trabajando y todos están relacionados. Me gustaría aclarar cómo encajan las cosas.\nNota: hay una transcripción anterior que no ha sido publicada (necesita ser revisada) sobre los descriptores de guiones.\nAgenda Historia de los descriptores de guiones y cómo llegamos a esto. Lo que hay …"},{"uri":"/es/baltic-honeybadger/2018/the-bitcoin-standard/","title":"El estándar Bitcoin","content":"El estándar bitcoin como solución de escalado por capas\nhttps://twitter.com/kanzure/status/1043425514801844224\nHola a todos. ¿Pueden escucharme todos? Bien, maravilloso. No puedes ver mis diapositivas, ¿verdad? Tienes que compartir la pantalla si quieres que vean tus diapositivas. ¿Cómo hago eso? ¿Dónde está eso? Este es el nuevo Skype, lo siento. Gracias a todos por invitarme a hablar hoy. Sería estupendo acompañaros, pero desgraciadamente no podré hacerlo.\nQuiero describir cómo veo el …"},{"uri":"/es/baltic-honeybadger/2018/the-future-of-lightning/","title":"El futuro de Lightning","content":"El futuro de lightning\nEl año del #craeful y el futuro de lightning\nhttps://twitter.com/kanzure/status/1043501348606693379\nEs estupendo estar de vuelta aquí en Riga. Demos un aplauso a los organizadores del evento y a todos los que nos han traído aquí. Este es el momento más cálido que he vivido en Riga. Ha sido genial. Quiero volver en los veranos.\nIntroducción Estoy aquí para hablar de lo que ha ocurrido en el último año y del futuro de lo que vamos a ver con los rayos. Un segundo mientras …"},{"uri":"/es/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/","title":"El futuro de los contratos inteligentes de Bitcoin","content":"El futuro de los contratos inteligentes de Bitcoin\nhttps://twitter.com/kanzure/status/1043419056492228608\nHola chicos, la próxima charla en 5 minutos. En cinco minutos.\nIntroducción Hola a todos. Si están caminando, por favor háganlo en silencio. Estoy un poco nervioso. Estuve muy ocupado organizando esta conferencia y no tuve tiempo para esta charla. Si tenían grandes expectativas para esta presentación, entonces por favor bájenlas durante los próximos 20 minutos. Iba a hablar de los modelos …"},{"uri":"/es/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/","title":"El futuro de los monederos de Bitcoin","content":"1 a 1: El futuro de los monederos de bitcoin\nhttps://twitter.com/kanzure/status/1043445104827084800\nGZ: Muchas gracias. Vamos a hablar del futuro de los monederos de bitcoin. Como sabes, es un tema muy central. Siempre comparamos el bitcoin con Internet. Los monederos son básicamente como los navegadores, como al principio de la web. Son la primera puerta de entrada a una experiencia de usuario en bitcoin. Es importante ver cómo van a evolucionar. Tenemos dos representantes excepcionales del …"},{"uri":"/es/baltic-honeybadger/2018/bitcoin-maximalism-dissected/","title":"El maximalismo de Bitcoin diseccionado","content":"El maximalismo de Bitcoin diseccionado\nBuenos días a todos. Estoy muy contento de estar aquí en el Baltic Honeybadger. El año pasado hice una presentación de scaling. Inauguré la conferencia con una presentación de escalamiento. Este año, para compensar, seré súper serio. Esta será la presentación más aburrida de la conferencia. Voy a tratar de diseccionar y formalizar el maximalismo de bitcoin.\nEsta es la fuente más terrorífica que encontré en prezi. Quería algo con sangre saliendo de ella pero …"},{"uri":"/es/speakers/elizabeth-stark/","title":"Elizabeth Stark","content":""},{"uri":"/es/speakers/eric-voskuil/","title":"Eric Voskuil","content":""},{"uri":"/es/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/","title":"Escalabilidad y orientación de los modelos de seguridad","content":"Escalabilidad y orientación de los modelos de seguridad\nhttps://twitter.com/kanzure/status/1043397023846883329\n\u0026amp;hellip; ¿Están todos despiertos? Claro. Salto de obstáculos. Vaya, eso es brillante. Soy más idealista que Eric. Voy a hablar de la utilidad y de por qué la gente usa bitcoin y vamos a ver cómo va eso.\nLa falta de confianza es mucho mejor que la descentralización. Quiero hablar de la falta de confianza. La gente usa mucho la palabra descentralización y me parece que es algo inútil …"},{"uri":"/es/speakers/florian-maier/","title":"Florian Maier","content":""},{"uri":"/es/speakers/gavin-andresen/","title":"Gavin Andresen","content":""},{"uri":"/es/bitcoin-core-dev-tech/2015-02/gavinandresen/","title":"Gavin Andresen","content":"http://blog.circle.com/2015/02/10/devcore-livestream/\nEl tiempo de transacción instantánea\u0026amp;hellip; ya sabes, me acerco a una caja registradora, pongo mi teléfono ahí, y en un segundo o dos la transacción está confirmada y me voy con mi café. Cualquier cosa más allá de eso, 10 minutos frente a 1 minuto no importa. Hay un montón de ideas sobre esto, como un tercero de confianza que promete no duplicar el gasto, tener algunas monedas encerradas en un monedero multisig como Green Address. Hay ideas …"},{"uri":"/es/speakers/giacomo-zucco/","title":"Giacomo Zucco","content":""},{"uri":"/es/baltic-honeybadger/2018/investing-in-bitcoin-businesses/","title":"Invertir en negocios de Bitcoin","content":"1 a 1: Invertir en negocios de bitcoin\nMatthew Mezinskis (crypto_voices) (moderador)\nMM: Dirijo un podcast aquí en Letonia sobre la economía y el dinero del bitcoin. Es americano-latino. Lo hago con mi socio que está basado en Brasil. Hoy vamos a centrarnos en la inversión en negocios centrados en el bitcoin y las criptomonedas.\nNC: Me llamo Nic Carter. Trabajo para un fondo de riesgo. Somos uno de los pocos fondos de riesgo que se centran en el bitcoin y en las startups relacionadas con el …"},{"uri":"/es/speakers/james-gatto/","title":"James Gatto","content":""},{"uri":"/es/speakers/jeremy-allaire/","title":"Jeremy Allaire","content":""},{"uri":"/es/baltic-honeybadger/2018/the-reserve-currency-fallacy/","title":"La falacia de la moneda de reserva","content":"La falacia de la moneda de reserva\nhttps://twitter.com/kanzure/status/1043385469134925824\nGracias. Desarrolladores, desarrolladores, desarrolladores, desarrolladores. Muy bien, no fue tan malo. Hay mucho contenido para explicar este concepto de la falacia de la moneda de reserva. Es difícil de terminar en la cantidad de tiempo disponible. Estaré disponible en la fiesta de esta noche. Quiero ir a través de cuatro diapositivas y hablar de la historia de esta cuestión de la escala, y luego la …"},{"uri":"/es/baltic-honeybadger/2018/the-b-foundation/","title":"La Fundación B","content":"La Fundación B\nhttps://twitter.com/kanzure/status/1043802179004493825\nCreo que la mayoría de la gente aquí tiene una idea de quién soy. Soy un bitcoiner a largo plazo. He estado en bitcoin desde 2010. Me encanta el bitcoin. Me apasiona. Quiero verlo crecer y prosperar. Lo positivo de bitcoin es que tiene un ecosistema resistente. No necesita ningún director general. No necesita ninguna organización centralizada y no necesita ningún punto central para dirigir hacia dónde va. Básicamente funciona. …"},{"uri":"/es/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/","title":"La situación actual del mercado y los inversores institucionales","content":"1 a 1: La situación actual del mercado y los inversores institucionales\nhttps://twitter.com/kanzure/status/1043404928935444480\nAsociación Bitcoin Guy (BAG)\nBAG: Estoy aquí con Bruce Fenton y Tone Vays. Bruce es también anfitrión de la Mesa Redonda Satoshi y un inversor a largo plazo. Tone Vays es un operador de derivados y creador de contenidos. Vamos a hablar de Wall Street. ¿Creo que ambos están basados en Nueva York? ¿Cómo fueron los últimos 12 meses?\nTV: Tengo un apartamento allí, pero creo …"},{"uri":"/es/speakers/lawrence-nahum/","title":"Lawrence Nahum","content":""},{"uri":"/es/tags/libsecp256k1/","title":"libsecp256k1","content":""},{"uri":"/es/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/","title":"Libsecp256k1 Reunión de mantenedores (2022-10-12)","content":"P: ¿Por qué C89? Cuando te hice esta pregunta hace unos años, creo que dijiste gmaxwell.\nR: Hay una serie de dispositivos embebidos que sólo soportan C89 y sería bueno soportar esos dispositivos. Esa fue la respuesta de entonces, al menos.\nP: ¿Es un gran coste seguir haciendo C89?\nR: El único coste es para las cosas de contexto que queremos hacer threadlocal. El CPUid o las cosas específicas de x86. Estos podrían ser opcionales. Si realmente quieres entrar en este tema, entonces tal vez más …"},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/","title":"Mantenedores (2019-06-06)","content":"Visión de los mantenedores del proyecto Bitcoin Core\nhttps://twitter.com/kanzure/status/1136568307992158208\n¿Cómo piensan o sienten los mantenedores que va todo? ¿Hay frustraciones? ¿Podrían los colaboradores ayudar a eliminar estas frustraciones? Eso es todo lo que tengo.\nSería bueno tener una mejor supervisión o visión general sobre quién está trabajando en qué dirección, para ser más eficientes. A veces he visto gente trabajando en lo mismo, y ambos hacen un pull request similar con mucho …"},{"uri":"/es/speakers/marco-santori/","title":"Marco Santori","content":""},{"uri":"/es/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/","title":"Más allá de Bitcoin - Colaboración descentralizada","content":"Más allá de Bitcoin: colaboración descentralizada.\nhttps://twitter.com/kanzure/status/1043432684591230976\nhttp://sit.fyi/\nHola a todos. Hoy voy a hablar de algo diferente a lo habitual. Voy a hablar más sobre cómo podemos computar y cómo colaboramos. Empezaré con una introducción a la historia de cómo sucedieron las cosas y por qué son como son hoy. Muchos de ustedes probablemente utilizan aplicaciones SaaS en la nube. A menudo se promociona como algo nuevo, algo que ha sucedido en los últimos …"},{"uri":"/es/speakers/matthew-mezinskis/","title":"Matthew Mezinskis","content":""},{"uri":"/es/speakers/max-keidun/","title":"Max Keidun","content":""},{"uri":"/es/needs/","title":"Needs","content":""},{"uri":"/es/speakers/nic-carter/","title":"Nic Carter","content":""},{"uri":"/es/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/","title":"Opsec extremo para el cypherpunk moderno","content":"Opsec extremo para el cypherpunk moderno\nJameson es el ingeniero de infraestructuras de Casa. Demos la bienvenida a Jameson Lopp.\nIntroducción Hola compañeros cypherpunks. Estamos bajo ataque. Las corporaciones y los estados nación en su búsqueda de la omnisciencia han despojado lentamente nuestra privacidad. Somos la rana que está siendo hervida en la olla llamada progreso. No podemos confiar en que las corporaciones nos concedan privacidad por su beneficio. Nuestros fracasos aquí son nuestros. …"},{"uri":"/es/baltic-honeybadger/2018/day-1-closing-panel/","title":"Panel de clausura del primer día","content":"Panel de cierre\nhttps://twitter.com/kanzure/status/1043517333640241152\nRS: Gracias chicos por unirse al panel. Sólo necesitamos una silla más. Voy a presentar a Alex Petrov aquí porque todos los demás estaban en el escenario. El panel de cierre va a ser una visión general de lo que está sucediendo en bitcoin. Quiero empezar con la pregunta que empecé el año pasado. ¿Cuál es el estado actual de bitcoin en comparación con el año pasado? ¿Qué ha sucedido?\nES: El año pasado, estaba sentado al lado …"},{"uri":"/es/baltic-honeybadger/2018/trading-panel/","title":"Panel de negociación","content":"MM: Como dice Trace Mayer, es perseguir al conejo. ¿Por qué no nos presentamos?\nTV: Mi nombre es Tone Vays. Vengo del entorno comercial tradicional de Wall Street. Me uní al espacio de las criptomonedas en 2013. Hablé en mi primera conferencia y escribí mi primer artículo en el primer trimestre de 2014. Estaba haciendo algo de trading. Con la popularidad del canal de youtube y de ir a conferencias, volví a operar con opciones en los mercados tradicionales. Volveré a operar con cripto pronto, …"},{"uri":"/es/speakers/patrick-murck/","title":"Patrick Murck","content":""},{"uri":"/es/speakers/pavol-rusnak/","title":"Pavol Rusnak","content":""},{"uri":"/es/speakers/peter-todd/","title":"Peter Todd","content":""},{"uri":"/es/speakers/pierre-rochard/","title":"Pierre Rochard","content":""},{"uri":"/es/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/","title":"Procesamiento de pagos con Bitcoin y comerciantes","content":"1 a 1: Procesamiento de pagos con Bitcoin y comerciantes\nhttps://twitter.com/kanzure/status/1043476967918592003\nV: Hola y bienvenidos a esta increíble conferencia. Es una buena conferencia, vamos. Es genial porque puedes preguntarles sobre la UASF y ellos saben de qué estás hablando. Tengo algunos invitados conmigo hoy. Vamos a hablar sobre el procesamiento de los comerciantes y hablar de la adopción regular de bitcoin también. La primera pregunta que tengo para Alena es, \u0026amp;hellip; hubo un gran …"},{"uri":"/es/tags/reglamento/","title":"reglamento","content":""},{"uri":"/es/bitcoin-core-dev-tech/2015-02/research-and-development-goals/","title":"Research And Development Goals","content":"Objetivos y retos de R\u0026amp;amp;D\nA menudo vemos gente diciendo que están probando las aguas, que han corregido un error tipográfico, que han hecho una pequeña corrección que no tiene mucho impacto, que se están acostumbrando al proceso. Se están dando cuenta de que es muy fácil contribuir a Bitcoin Core. Codificas tus cambios, envías tus cambios, no hay mucho que hacer.\nHay una diferencia, y las líneas son difusas e indefinidas, y puedes hacer un cambio en Core que cambie un error ortográfico o un …"},{"uri":"/es/speakers/roman-snitko/","title":"Roman Snitko","content":""},{"uri":"/es/speakers/saifedean-ammous/","title":"Saifedean Ammous","content":""},{"uri":"/es/tags/scalabilidad/","title":"scalabilidad","content":""},{"uri":"/es/speakers/sean-neville/","title":"Sean Neville","content":""},{"uri":"/es/speakers/sergej-kotliar/","title":"Sergej Kotliar","content":""},{"uri":"/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/","title":"Taproot, Graftroot, Etc (2018-03-06)","content":"https://twitter.com/kanzure/status/972468121046061056\nGraftroot La idea del graftroot es que en cada contrato hay un superconjunto de personas que pueden gastar el dinero. Esta suposición no siempre es cierta, pero casi siempre lo es. Digamos que quieres bloquear estas monedas durante un año, sin ninguna condición para ello, entonces no funciona. Pero suponga que tiene\u0026amp;hellip; ¿recuperación pubkey? No\u0026amp;hellip; la recuperación pubkey es inherentemente incompatible con cualquier forma de …"},{"uri":"/es/speakers/tone-vays/","title":"Tone Vays","content":""},{"uri":"/es/speakers/vortex/","title":"Vortex","content":""},{"uri":"/es/speakers/whalepanda/","title":"Whalepanda","content":""},{"uri":"/es/speakers/yurii-rashkovskii/","title":"Yurii Rashkovskii","content":""}] \ No newline at end of file +[{"uri":"/es/tags/assumeutxo/","title":"assumeUTXO","content":""},{"uri":"/es/bitcoin-core-dev-tech/2023-04/2023-04-27-assumeutxo/","title":"AssumeUTXO update","content":"Objetivos permitir a los nodos obtener un conjunto utxo rápidamente (1h) al mismo tiempo, sin grandes concesiones en materia de seguridad Enfoque Proporcionar instantánea utxo serializada obtener primero la cadena de cabeceras, cargar la instantánea y deserializar, sincronizar con la punta a partir de ahí a continuación, iniciar la verificación de fondo con una segunda instantánea por último, comparar los hashes cuando el IBD en segundo plano llega a la base de la instantánea Actualización del …"},{"uri":"/es/bitcoin-core-dev-tech/","title":"Bitcoin Core Dev Tech","content":" Bitcoin Core Dev Tech 2015 Bitcoin Core Dev Tech 2017 Bitcoin Core Dev Tech 2018 (Mar) Bitcoin Core Dev Tech 2018 (Oct) Bitcoin Core Dev Tech 2019 Bitcoin Core Dev Tech 2022 Bitcoin Core Dev Tech 2023 (Apr) "},{"uri":"/es/bitcoin-core-dev-tech/2023-04/","title":"Bitcoin Core Dev Tech 2023 (Apr)","content":" Agrupación de Mempool Apr 25, 2023 Suhas Daftuar, Pieter Wuille Cluster mempool ASMap Apr 25, 2023 Fabian Jahr Bitcoin core Security enhancements AssumeUTXO update Apr 27, 2023 James O\u0026amp;#39;Beirne Bitcoin core Assumeutxo Fuzzing Apr 27, 2023 Niklas Gögge Bitcoin core Developer tools Libbitcoin kernel Apr 26, 2023 thecharlatan Bitcoin core Build system "},{"uri":"/es/tags/bitcoin-core/","title":"bitcoin-core","content":""},{"uri":"/es/categories/","title":"Categories","content":""},{"uri":"/es/categories/core-dev-tech/","title":"core-dev-tech","content":""},{"uri":"/es/tags/developer-tools/","title":"developer-tools","content":""},{"uri":"/es/bitcoin-core-dev-tech/2023-04/2023-04-27-fuzzing/","title":"Fuzzing","content":"Slides: https://docs.google.com/presentation/d/1NlTw_n60z9bvqziZqU3H3Jw7Xs5slnQoehYXhEKrzOE\nFuzzing El fuzzing se realiza de forma continua. Los objetivos del fuzzing pueden dar sus frutos incluso años más tarde encontrando nuevos bugs. Ejemplo en la diapositiva sobre libFuzzer fuzzing una función parse_json que podría bloquearse en alguna entrada extraña, pero no informará de entradas json no válidas que pasan el análisis. libFuzzer hace la cobertura de bucle de retroalimentación guiada + ayuda …"},{"uri":"/es/speakers/james-obeirne/","title":"James O'Beirne","content":""},{"uri":"/es/speakers/niklas-g%C3%B6gge/","title":"Niklas Gögge","content":""},{"uri":"/es/speakers/","title":"Speakers","content":""},{"uri":"/es/tags/","title":"Tags","content":""},{"uri":"/es/","title":"Transcripciones de ₿itcoin","content":""},{"uri":"/es/tags/build-system/","title":"build-system","content":""},{"uri":"/es/bitcoin-core-dev-tech/2023-04/2023-04-26-libbitcoin-kernel/","title":"Libbitcoin kernel","content":"Preguntas y respuestas Q: bitcoind y bitcoin-qt vinculado contra el núcleo de la biblioteca en el futuro?\npresentador: sí, ese es un / el objetivo P: ¿has mirado una implementación de electrum usando libbitcoinkernel?\naudiencia: sí, ¡estaría bien tener algo así! audiencia: ¿también podría hacer el largo índice de direcciones propuesto con eso? audiencia: no solo indice de direcciones, otros indices tambien. P: Otros casos de uso:\npúblico: poder ejecutar cosas en iOS P: ¿Debería estar el mempool …"},{"uri":"/es/speakers/thecharlatan/","title":"thecharlatan","content":""},{"uri":"/es/bitcoin-core-dev-tech/2023-04/2023-04-25-mempool-clustering/","title":"Agrupación de Mempool","content":"Problemas Actuales Muchos problemas en el mempool\nEl desalojo está roto. El algoritmo de minería es parte del problema, no es perfecto. RBF es como totalmente roto nos quejamos todo el tiempo, a veces hacemos/no RBF cuando deberíamos/no deberíamos. Desalojo El desalojo es cuando mempool está lleno, y queremos tirar el peor tx. Por ejemplo, pensamos que un tx es el peor en mempool pero es descendiente de un tx \u0026amp;ldquo;bueno\u0026amp;rdquo;. El desalojo de mempool es más o menos lo contrario del algoritmo …"},{"uri":"/es/bitcoin-core-dev-tech/2023-04/2023-04-27-asmap/","title":"ASMap","content":"¿Deberíamos enviarlo en cada versión de Core? La idea inicial es enviar un archivo de mapa en cada versión de Core. Fabian escribió un artículo sobre cómo se integraría en el despliegue (https://gist.github.com/fjahr/f879769228f4f1c49b49d348f80d7635). Algunos desarrolladores señalaron que una opción sería tenerlo separado del proceso de lanzamiento, cualquier colaborador habitual podría actualizarlo cuando quisiera (¿quién lo haría? ¿con qué frecuencia?). Entonces, cuando llegue el momento de la …"},{"uri":"/es/tags/cluster-mempool/","title":"cluster-mempool","content":""},{"uri":"/es/speakers/fabian-jahr/","title":"Fabian Jahr","content":""},{"uri":"/es/speakers/pieter-wuille/","title":"Pieter Wuille","content":""},{"uri":"/es/tags/security-enhancements/","title":"security-enhancements","content":""},{"uri":"/es/speakers/suhas-daftuar/","title":"Suhas Daftuar","content":""},{"uri":"/es/bitcoin-core-dev-tech/2022-10/","title":"Bitcoin Core Dev Tech 2022","content":" BIP324 - Versión 2 del protocolo de transporte cifrado p2p Oct 10, 2022 P2p Bitcoin core Bitcoin Core y GitHub (2022-10-11) Bitcoin core Libsecp256k1 Reunión de mantenedores (2022-10-12) Libsecp256k1 Mercado de tarifas Oct 11, 2022 Fee management Bitcoin core Varios Oct 10, 2022 P2p Bitcoin core "},{"uri":"/es/tags/fee-management/","title":"fee-management","content":""},{"uri":"/es/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/","title":"Mercado de tarifas","content":"Hay dos momentos en los que hemos tenido tasas sostenidas: a finales de 2017 y a principios de 2021. A finales de 2017 vimos que muchas cosas se rompían porque la gente no había escrito un software para hacer frente a las tasas variables o algo así. No sé si eso fue un problema tan grande en 2021. Lo que sí me preocupa es que esto empiece a ser una cosa. Si no hay un mercado de tarifas variables y se puede poner 1 sat/vbyte durante varios años, entonces funcionará hasta que no funcione. Así que …"},{"uri":"/es/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/","title":"BIP324 - Versión 2 del protocolo de transporte cifrado p2p","content":"Intervenciones anteriores https://btctranscripts.com/scalingbitcoin/milan-2016/bip151-peer-encryption/\nhttps://btctranscripts.com/sf-bitcoin-meetup/2017-09-04-jonas-schnelli-bip150-bip151/\nhttps://btctranscripts.com/bitcoin-core-dev-tech/2019-06-07-p2p-encryption/\nhttps://btctranscripts.com/breaking-bitcoin/2019/p2p-encryption/\nIntroducción y motivación ¿Podemos apagar las luces? \u0026amp;ldquo;A oscuras\u0026amp;rdquo; es un bonito tema para la charla. También tengo café oscuro. De acuerdo.\nVamos a hablar un …"},{"uri":"/es/tags/p2p/","title":"P2P","content":""},{"uri":"/es/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/","title":"Varios","content":"Red de confianza Algunos de los operadores de servidores de clave pública interpretaron el GDPR como que ya no pueden operar infraestructuras de clave pública. Tiene que haber otra solución para la distribución p2p de claves y Web-of-Trust.\nbitcoin-otc sigue siendo la web de confianza PGP que opera desde hace más tiempo utilizando infraestructura de clave pública. Rumplepay podría ser capaz de arrancar una web-of-trust con el tiempo.\nDirecciones invisibles y pagos silenciosos He aquí algo …"},{"uri":"/es/speakers/aaron-van-wirdum/","title":"Aaron van Wirdum","content":""},{"uri":"/es/bitcoin-explained/taproot-activation-update/","title":"Actualización de la activación de Taproot","content":"Tema: Actualización de la activación de Taproot: Speedy Trial y el cliente LOT=true\nUbicación: Bitcoin Magazine (en línea)\nFecha: 23 de abril de 2021\nEpisodio anterior en lockinontimeout (LOT): https://btctranscripts.com/bitcoin-magazine/2021-02-26-taproot-activation-lockinontimeout/\nEpisodio anterior sobre Speedy Trial: https://btctranscripts.com/bitcoin-magazine/2021-03-12-taproot-activation-speedy-trial/\nAaron van Wirdum en \u0026amp;ldquo;Ahora hay dos clientes de activación de Taproot, aquí está el …"},{"uri":"/es/bitcoin-explained/","title":"Bitcoin Explained","content":" Actualización de la activación de Taproot Apr 23, 2021 Sjors Provoost, Aaron van Wirdum Taproot Episode 36 Taproot Activación con Speedy Trial Mar 12, 2021 Sjors Provoost, Aaron van Wirdum Taproot Soft fork activation Episode 31 Activación de Taproot y LOT=true vs LOT=false Feb 26, 2021 Sjors Provoost, Aaron van Wirdum Taproot Soft fork activation Episode 29 "},{"uri":"/es/categories/podcast/","title":"podcast","content":""},{"uri":"/es/speakers/sjors-provoost/","title":"Sjors Provoost","content":""},{"uri":"/es/tags/taproot/","title":"taproot","content":""},{"uri":"/es/tags/soft-fork-activation/","title":"soft-fork-activation","content":""},{"uri":"/es/bitcoin-explained/taproot-activation-speedy-trial/","title":"Taproot Activación con Speedy Trial","content":"Propuesta Speedy Trial: https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-March/018583.html\nIntroducción Aaron van Wirdum (AvW): En directo desde Utrecht este es el van Wirdum Sjorsnado. Sjors, ¿cuál es tu juego de palabras de la semana?\nSjors Provoost (SP): En realidad te pedí un juego de palabras y me dijiste \u0026amp;ldquo;Corta, reedita. Vamos a hacerlo de nuevo\u0026amp;rdquo;. No tengo un juego de palabras esta semana.\nAvW: Los juegos de palabras son lo tuyo.\nSP: La última vez intentamos esto de …"},{"uri":"/es/bitcoin-explained/taproot-activation-lockinontimeout/","title":"Activación de Taproot y LOT=true vs LOT=false","content":"BIP 8: https://github.com/bitcoin/bips/blob/master/bip-0008.mediawiki\nArgumentos para LOT=true and LOT=false (T1-T6 and F1-F6): https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-February/018380.html\nArgumento adicional para LOT=false (F7): https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2021-February/018415.html\nArtículo de Aaron van Wirdum en LOT=true or LOT=false: https://bitcoinmagazine.com/articles/lottrue-or-lotfalse-this-is-the-last-hurdle-before-taproot-activation …"},{"uri":"/es/bitcoin-design/","title":"Bitcoin-designs","content":""},{"uri":"/es/tags/bitcoin-dise%C3%B1o/","title":"bitcoin-diseño","content":""},{"uri":"/es/bitcoin-design/misc/","title":"Miscellaneous","content":" Reunión introductoria de la GUI de Bitcoin Core Aug 20, 2020 Bitcoin diseño "},{"uri":"/es/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/","title":"Reunión introductoria de la GUI de Bitcoin Core","content":"Tema: Enlace del orden del día publicado a continuación\nUbicación: Diseño de Bitcoin (en línea)\nVídeo: No se ha publicado ningún vídeo en línea\nAgenda: https://github.com/BitcoinDesign/Meta/issues/8\nLa conversación se ha anonimizado por defecto para proteger la identidad de los participantes. Aquellos que han expresado su preferencia por que se atribuyan sus comentarios son atribuidos. Si usted ha participado y quiere que sus comentarios sean atribuidos, póngase en contacto con nosotros. …"},{"uri":"/es/bitcoin-magazine/","title":"Bitcoin Magazine","content":" Cómo activar un nuevo Soft Fork Aug 03, 2020 Eric Lombrozo, Luke Dashjr Taproot Soft fork activation "},{"uri":"/es/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/","title":"Cómo activar un nuevo Soft Fork","content":"Location: Bitcoin Magazine (en línea)\nAaron van Wirdum Aaron van Wirdum en Bitcoin Magazine sobre el BIP 8, el BIP 9 o la activación del Soft Fork moderno: https://bitcoinmagazine.com/articles/bip-8-bip-9-or-modern-soft-fork-activation-how-bitcoin-could-upgrade-next\nDavid Harding sobre las propuestas de activación de Taproot: https://gist.github.com/harding/dda66f5fd00611c0890bdfa70e28152d\nIntroducción Aaron van Wirdum (AvW): Eric, Luke bienvenido. Feliz Día de la Independencia de Bitcoin. ¿Cómo …"},{"uri":"/es/speakers/eric-lombrozo/","title":"Eric Lombrozo","content":""},{"uri":"/es/speakers/luke-dashjr/","title":"Luke Dashjr","content":""},{"uri":"/es/speakers/andreas-antonopoulos/","title":"Andreas Antonopoulos","content":""},{"uri":"/es/andreas-antonopoulos/","title":"Andreas Antonopoulos","content":" Bitcoin Q\u0026amp;amp;A: Descarga inicial de la cadena de bloques Oct 23, 2018 Andreas Antonopoulos Consensus enforcement División de la semilla Apr 08, 2020 Andreas Antonopoulos Cartera Seguridad Firmas Schnorr Oct 07, 2018 Andreas Antonopoulos Schnorr signatures Seguridad de la cartera de hardware Feb 01, 2019 Andreas Antonopoulos Cartera hardware Validación Cartera Senado de Canadá Bitcoin Oct 08, 2014 Andreas Antonopoulos Seguridad "},{"uri":"/es/tags/cartera/","title":"cartera","content":""},{"uri":"/es/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/","title":"División de la semilla","content":"Tema: ¿Por qué es una mala idea dividir las semillas?\nLocalisación: Canal de YouTube de Andreas Antonopoulos\n¿Por qué es una mala idea dividir las semillas? Esto es algo que se discute todo el tiempo, especialmente en los foros de novatos. Realmente hay que tener mucho cuidado. Un amigo tuvo la idea de lograr una protección de 2 de 3 de la semilla de mi cartera almacenando la semilla de la siguiente manera:\nUbicación 1: palabras clave 1-8 y 9-16 Ubicación 2: palabras clave 1-8 y 17-24 Ubicación …"},{"uri":"/es/tags/seguridad/","title":"seguridad","content":""},{"uri":"/es/austin-bitcoin-developers/","title":"Austin Bitcoin Developers","content":"https://austinbitdevs.com/\nBitcoin CLI y Regtest Aug 17, 2018 Richard Bondi Bitcoin core Developer tools Drivechain May 27, 2019 Paul Sztorc Investigación Lightning Capa 2 Sidechains Hardware Wallets Jun 29, 2019 Stepan Snigirev Hardware wallet Security problems Seminario Socrático 2 Aug 22, 2019 Research Hardware wallet Seminario Socrático 3 Oct 14, 2019 Miniscript Taproot Seminario Socrático 4 Nov 19, 2019 Seminario Socrático 5 Jan 21, 2020 Lightning Seminario Socrático 6 Feb 24, 2020 Taproot "},{"uri":"/es/categories/reuni%C3%B3n/","title":"reunión","content":""},{"uri":"/es/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/","title":"Seminario Socrático 6","content":"https://www.meetup.com/Austin-Bitcoin-Developers/events/268812642/\nhttps://bitdevs.org/2020-02-12-socratic-seminar-101\nhttps://twitter.com/kanzure/status/1232132693179207682\nIntroducción Muy bien, vamos a empezar. Reúnanse. A Phil le vendría bien algo de compañía. A nadie le gusta la primera fila. Tal vez los bancos. Así que tengo un formato un poco diferente de cómo quiero hacerlo esta semana. Normalmente cubro una amplia serie de temas que robo de la lista de reuniones de Nueva York. Revisando …"},{"uri":"/es/advancing-bitcoin/","title":"Advancing Bitcoin","content":" Advancing Bitcoin 2019 Advancing Bitcoin 2020 "},{"uri":"/es/advancing-bitcoin/2020/","title":"Advancing Bitcoin 2020","content":" Carteras de descriptores Feb 06, 2020 Andrew Chow Cartera Miniscript Feb 07, 2020 Andrew Poelstra Miniscript Miniscript Introducción Feb 06, 2020 Andrew Poelstra Miniscript Cartera Taller de depuración de Bitcoin Core Feb 07, 2020 Fabian Jahr Bitcoin core Developer tools Taller Signet Feb 07, 2020 Kalle Alm Taproot Signet Taproot Lightning Feb 06, 2020 Antoine Riard Taproot Lightning Ptlc "},{"uri":"/es/speakers/andrew-poelstra/","title":"Andrew Poelstra","content":""},{"uri":"/es/speakers/kalle-alm/","title":"Kalle Alm","content":""},{"uri":"/es/tags/miniscript/","title":"miniscript","content":""},{"uri":"/es/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/","title":"Miniscript","content":"Taller sobre el avance de Bitcoin\nMiniscript\nPágina Web: https://bitcoin.sipa.be/miniscript/\nTaller de reposición: https://github.com/apoelstra/miniscript-workshop\nTranscripción de la presentación de Londres Bitcoin Devs Miniscript: https://btctranscripts.com/london-bitcoin-devs/2020-02-04-andrew-poelstra-miniscript/\nParte 1 Así que lo que vamos a hacer, es un par de cosas. Vamos a ir a través del sitio web de Miniscript y aprender sobre cómo se construye Miniscript, cómo funciona el sistema de …"},{"uri":"/es/tags/signet/","title":"signet","content":""},{"uri":"/es/categories/taller/","title":"taller","content":""},{"uri":"/es/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/","title":"Taller de depuración de Bitcoin Core","content":"Vídeo: No se ha publicado ningún vídeo en Internet\nPresentación de Fabian en el Bitcoin Edge Dev++ 2019: https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/edgedevplusplus/debugging-bitcoin/\nDepuración de Bitcoin Core doc: https://github.com/fjahr/debugging_bitcoin\nTaller de depuración de Bitcoin Core: https://gist.github.com/fjahr/5bf65daaf9ff189a0993196195005386\nIntroducción En primer lugar bienvenido al taller de depuración de Bitcoin Core. Todo lo que sé más o menos sobre el uso de un …"},{"uri":"/es/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/","title":"Taller Signet","content":"Tema: Taller Signet\nLocalización: El avance de Bitcoin\nVídeo: No se ha publicado ningún vídeo en línea\nPreparémonos mkdir workspace cd workspace git clone https://github.com/bitcoin/bitcoin.git cd bitcoin git remote add kallewoof https://github.com/kallewoof/bitcoin.git git fetch kallewoof git checkout signet ./autogen.sh ./configure -C --disable-bench --disable-test --without-gui make -j5 Cuando intentes ejecutar la parte de configuración vas a tener algunos problemas si no tienes las …"},{"uri":"/es/speakers/andrew-chow/","title":"Andrew Chow","content":""},{"uri":"/es/speakers/antoine-riard/","title":"Antoine Riard","content":""},{"uri":"/es/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/","title":"Carteras de descriptores","content":"Tema: Repensar la arquitectura de las carteras: Carteras de descriptores nativos\nUbicación: El avance de Bitcoin\nDiapositivas: https://www.dropbox.com/s/142b4o4lrbkvqnh/Rethinking%20Wallet%20Architecture_%20Native%20Descriptor%20Wallets.pptx\nSoporte para descriptores de salida en Bitcoin Core: https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md\nBitcoin Optech en los descriptores de la secuencia de comandos de salida: https://bitcoinops.org/en/topics/output-script-descriptors/ …"},{"uri":"/es/categories/conferencia/","title":"conferencia","content":""},{"uri":"/es/tags/lightning/","title":"lightning","content":""},{"uri":"/es/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/","title":"Miniscript Introducción","content":"Tema: Introducción a Miniscript\nLocación: El avance de Bitcoin\nDiapositivas: https://www.dropbox.com/s/vgh5vaooqqbgg1v/andrew-poelstra.pdf\nIntroducción Hola a todos. Algunos de vosotros estuvisteis en mi presentación de Bitcoin sobre Miniscript hace un par de días donde me las arreglé para pasar más de 2 horas dando una presentación sobre esto. Creo que esta vez la he reducido a 20 minutos, pero no prometo nada. Voy a mantener un ojo en el reloj.\nDescriptores Es muy agradable tener esto …"},{"uri":"/es/tags/ptlc/","title":"ptlc","content":""},{"uri":"/es/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/","title":"Taproot Lightning","content":"Nombre: Antoine Riard\nTema: A Schnorr-Taproot’ed Lightning\nUbicación: El avance de Bitcoin\nFecha: 6 de febrero de 2020\nDiapositivas: https://www.dropbox.com/s/9vs54e9bqf317u0/Schnorr-Taproot%27ed-LN.pdf\nIntroducción Hoy Schnorr y Taproot para Lightning, es un tema realmente apasionante.\nArquitectura Lightning La arquitectura Lightning para aquellos que no están familiarizados con ella. Usted tiene el blockchain como la capa subyacente. Encima de ella vas a construir un canal, tienes un HTLC y la …"},{"uri":"/es/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/","title":"Seminario Socrático 5","content":"https://www.meetup.com/Austin-Bitcoin-Developers/events/267941700/\nhttps://bitdevs.org/2019-12-03-socratic-seminar-99\nhttps://bitdevs.org/2020-01-09-socratic-seminar-100\nhttps://twitter.com/kanzure/status/1219817063948148737\nLSATs Así que solemos empezar con una demostración de un proyecto basado en un rayo en el que ha estado trabajando durante unos meses.\nEsta no es una idea original para mí. Fue presentada por roasbeef, cofundador de Lightning Labs en la conferencia Lightning del pasado …"},{"uri":"/es/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/","title":"Seminario Socrático 4","content":"https://twitter.com/kanzure/status/1196947713658626048\nOrganización de normas para carteras (WSO) Presentar un argumento económico para que los vendedores se unan a una organización y pongan algo de dinero o esfuerzo para construir la organización. El argumento económico es que los miembros comprometidos tienen un cierto nivel de fondos comprometidos, que representan un número X de usuarios, y X mil millones de dólares de fondos custodiados. Esto se puede utilizar como argumento convincente para …"},{"uri":"/es/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/","title":"Seminario Socrático 3","content":"Seminario socrático de desarrolladores de Bitcoin de Austin 3\nhttps://www.meetup.com/Austin-Bitcoin-Developers/events/265295570/\nhttps://bitdevs.org/2019-09-16-socratic-seminar-96\nHemos hecho dos reuniones en este formato. La idea es que en Nueva York hay BitDevs que es una de las reuniones más antiguas. Esto ha estado sucediendo durante cinco años. Tienen un formato llamado socrático donde tienen un tipo talentoso llamado J que los conduce a través de algunos temas y tratan de conseguir un poco …"},{"uri":"/es/baltic-honeybadger/","title":"Baltic Honeybadger","content":" Baltic Honeybadger 2018 Baltic Honeybadger 2019 "},{"uri":"/es/baltic-honeybadger/2019/","title":"Baltic Honeybadger 2019","content":" Coldcard Mk3 - Security in Depth Sep 14, 2019 Rodolfo Novak Seguridad Cartera hardware "},{"uri":"/es/tags/cartera-hardware/","title":"cartera hardware","content":""},{"uri":"/es/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/","title":"Coldcard Mk3 - Security in Depth","content":"Intriduccióno Mi nombre es Rodolfo, he estado alrededor de Bitcoin por un tiempo. Hacemos hardware. Hoy quería entrar un poco en cómo hacer una billetera de hardware segura en términos un poco más legos. Ir a través del proceso de conseguir que se haga.\n¿Cuáles fueron las opciones? Cuando cerré mi última empresa y decidí buscar un lugar para almacenar mis monedas, no pude encontrar un monedero que satisficiera dos cosas que necesitaba. Que era la seguridad física y el código abierto. Hay dos …"},{"uri":"/es/speakers/rodolfo-novak/","title":"Rodolfo Novak","content":""},{"uri":"/es/tags/hardware-wallet/","title":"hardware-wallet","content":""},{"uri":"/es/tags/research/","title":"research","content":""},{"uri":"/es/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/","title":"Seminario Socrático 2","content":"https://twitter.com/kanzure/status/1164710800910692353\nIntroducción Hola. La idea era hacer una reunión de estilo más socrático. Esto fue popularizado por Bitdevs NYC y se extendió a SF. Lo intentamos hace unos meses con Jay. La idea es que recorremos las noticias de investigación, los boletines, los podcasters, hablamos de lo que ha pasado en la comunidad técnica de bitcoin. Vamos a tener diferentes presentadores.\nMike Schmidt hablará de algunos boletines de optech a los que ha contribuido. …"},{"uri":"/es/speakers/0xb10c/","title":"0xB10C","content":""},{"uri":"/es/tags/history/","title":"history","content":""},{"uri":"/es/misc/","title":"Misc","content":" Bitcoin\u0026amp;#39;s Academic Pedigree Aug 29, 2017 Arvind Narayanan, Jeremy Clark History Bitcoin\u0026amp;#39;s Security Model - A Deep Dive Nov 13, 2016 Jameson Lopp Security If I\u0026amp;#39;d Known What We Were Starting Sep 20, 2017 Ray Dillinger History The Incomplete History of Bitcoin Development Aug 04, 2019 0xB10C History "},{"uri":"/es/misc/2019-08-04-incomplete_history/","title":"The Incomplete History of Bitcoin Development","content":"Autor: 0xB10C Texto original: https://b10c.me/blog/004-the-incomplete-history-of-bitcoin-development/\nLa historia incompleta del desarrollo de Bitcoin Para comprender plenamente la justificación del estado actual del desarrollo de Bitcoin, el conocimiento de los eventos históricos es esencial. Esta publicación de blog destaca eventos históricos seleccionados, versiones de software y correcciones de errores antes y después de que Satoshi abandonara el proyecto. Además, contiene una sección sobre …"},{"uri":"/es/austin-bitcoin-developers/2019-06-29-hardware-wallets/","title":"Hardware Wallets","content":"https://twitter.com/kanzure/status/1145019634547978240\nVer también:\nExtracción de semillas de hardware wallets El futuro de las hardware wallets coredev.tech 2019 debate de hardware wallets Antecedentes Hace algo más de un año, pasé por la clase de Jimmy Song de Programación de Blockchain. Ahí fue donde conocí a M, donde él era el asistente de enseñanza. Básicamente, se escribe una biblioteca de bitcoin en python desde cero. La API de esta librería y las clases y funcciones que usa Jimmy son muy …"},{"uri":"/es/tags/security-problems/","title":"security-problems","content":""},{"uri":"/es/speakers/stepan-snigirev/","title":"Stepan Snigirev","content":""},{"uri":"/es/chaincode-labs/","title":"Chaincode Labs","content":" Residencia de Chaincode "},{"uri":"/es/speakers/christian-decker/","title":"Christian Decker","content":""},{"uri":"/es/tags/eltoo/","title":"eltoo","content":""},{"uri":"/es/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/","title":"Eltoo - El (lejano) futuro de lightning","content":"Tema: Eltoo: El (lejano) futuro de lightning\nLugar: Chaincode Labs\nDiapositivas: https://residency.chaincode.com/presentations/lightning/Eltoo.pdf\nEltoo white paper: https://blockstream.com/eltoo.pdf\nArtículo de Bitcoin Magazine: https://bitcoinmagazine.com/articles/noinput-class-bitcoin-soft-fork-simplify-lightning\nIntro ¿Quién nunca ha oído hablar de eltoo? Es mi proyecto favorito y estoy bastante orgulloso de él. Intentaré que esto sea breve. Me dijeron que todos vieron mi presentación sobre …"},{"uri":"/es/chaincode-labs/chaincode-residency/","title":"Residencia de Chaincode","content":" Eltoo - El (lejano) futuro de lightning Jun 25, 2019 Christian Decker Eltoo Lightning Security Models Jun 17, 2019 John Newbery Security Taproot Cryptography "},{"uri":"/es/categories/residency/","title":"residency","content":""},{"uri":"/es/tags/cryptography/","title":"cryptography","content":""},{"uri":"/es/speakers/john-newbery/","title":"John Newbery","content":""},{"uri":"/es/tags/security/","title":"security","content":""},{"uri":"/es/chaincode-labs/chaincode-residency/2019-06-17-newbery-security-models/","title":"Security Models","content":"Texto original: https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-17-john-newbery-security-models/\nTranscripción de: Caralie Chrisco\nUbicación: Residencia de Chaincode Labs 2019\nDiapositivas: https://residency.chaincode.com/presentations/bitcoin/security_models.pdf\nJohn Newbery: Muy bien, modelos de seguridad. Esto va a ser como un recorrido rápido de varias cosas, vista de muy alto nivel. Empezaré dándote algún tipo de marco para pensar en las cosas. Así que en criptografía, …"},{"uri":"/es/speakers/jonas-nick/","title":"Jonas Nick","content":""},{"uri":"/es/lets-talk-bitcoin-podcast/","title":"Lets Talk Bitcoin Podcast","content":" The Tools and The Work Jun 09, 2019 Pieter Wuille, Jonas Nick Taproot Schnorr signatures "},{"uri":"/es/tags/schnorr-signatures/","title":"schnorr-signatures","content":""},{"uri":"/es/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/","title":"The Tools and The Work","content":"Hablemos de Bitcoin con Pieter Wuille y Jonas Nick – 9 de Junio de 2019 (\u0026amp;ldquo;Let\u0026amp;rsquo;s Talk Bitcoin\u0026amp;rdquo;)\nhttps://twitter.com/kanzure/status/1155851797568917504\nParte 1: https://letstalkbitcoin.com/blog/post/lets-talk-bitcoin-400-the-tools-and-the-work\nParte 2: https://letstalkbitcoin.com/blog/post/lets-talk-bitcoin-401-the-tools-and-the-work-part-2\nBorrador de BIP-Schnorr: https://github.com/sipa/bips/blob/bip-schnorr/bip-schnorr.mediawiki\nBorrador de BIP-Taproot: …"},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-07-assumeutxo/","title":"AssumeUTXO","content":"https://twitter.com/kanzure/status/1137008648620838912\nPor qué assumeutxo assumeutxo es la continuación espiritual de assumevalid. ¿Por qué queremos hacer esto en primer lugar? En la actualidad, la descarga inicial de bloques tarda horas y días. Varios proyectos en la comunidad han estado implementando medidas para acelerar esto. Casa creo que incluye datadir con sus nodos. Otros proyectos como btcpay tienen varias formas de agrupar esto y firmar las cosas con claves gpg y estas soluciones no …"},{"uri":"/es/bitcoin-core-dev-tech/2019-06/","title":"Bitcoin Core Dev Tech 2019","content":" Arquitecturas de las wallets Jun 05, 2019 Andrew Chow Wallet Bitcoin core AssumeUTXO Jun 07, 2019 James O\u0026amp;#39;Beirne Assume utxo Bitcoin core Cadenas de estado ciegas: Transferencia de UTXO con un servidor de firmas ciegas Jun 07, 2019 Ruben Somsen Statechains Eltoo Channel factories Cifrado P2P Jun 07, 2019 P2 p Discusión general sobre SIGHASH_NOINPUT, OP_CHECKSIGFROMSTACK, and OP_SECURETHEBAG Jun 06, 2019 Olaoluwa Osuntokun, Jeremy Rubin Sighash anyprevout Op checksigfromstack Op …"},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-07-statechains/","title":"Cadenas de estado ciegas: Transferencia de UTXO con un servidor de firmas ciegas","content":"https://twitter.com/kanzure/status/1136992734953299970\nFormalización de Blind Statechains como servidor de firma ciega minimalista https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2019-June/017005.html\nVisión General: https://medium.com/@RubenSomsen/statechains-non-custodial-off-chain-bitcoin-transfer-1ae4845a4a39\nDocumento statechains: https://github.com/RubenSomsen/rubensomsen.github.io/blob/master/img/statechains.pdf\nTranscripción anterior: …"},{"uri":"/es/tags/channel-factories/","title":"channel-factories","content":""},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/","title":"Cifrado P2P","content":"Cifrado p2p\nhttps://twitter.com/kanzure/status/1136939003666685952\nhttps://github.com/bitcoin-core/bitcoin-devwiki/wiki/P2P-Design-Philosophy\n\u0026amp;ldquo;Elligator al cuadrado: Puntos uniformes en curvas elípticas de orden primo como cadenas aleatorias uniformes\u0026amp;rdquo; https://eprint.iacr.org/2014/043\nIntroducción Esta propuesta lleva años en marcha. Muchas ideas de sipa y gmaxwell fueron a parar al bip151. Hace años decidí intentar sacar esto adelante. Hay bip151 que de nuevo la mayoría de las ideas …"},{"uri":"/es/speakers/ruben-somsen/","title":"Ruben Somsen","content":""},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/","title":"Signet","content":"https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2019-March/016734.html\nhttps://twitter.com/kanzure/status/1136980462524608512\nIntroducción Voy a hablar un poco de signet. ¿Alguien no sabe lo que es signet? La idea es tener una firma del bloque o del bloque anterior. La idea es que testnet está horriblemente roto para probar cosas, especialmente para probar cosas a largo plazo. Hay grandes reorgs en testnet. ¿Qué pasa con testnet con un ajuste de dificultad menos roto? Testnet es …"},{"uri":"/es/tags/statechains/","title":"statechains","content":""},{"uri":"/es/tags/consensus-cleanup/","title":"consensus-cleanup","content":""},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/","title":"Discusión general sobre SIGHASH_NOINPUT, OP_CHECKSIGFROMSTACK, and OP_SECURETHEBAG","content":"SIGHASH_NOINPUT, ANYPREVOUT, OP_CHECKSIGFROMSTACK, OP_CHECKOUTPUTSHASHVERIFY, and OP_SECURETHEBAG\nhttps://twitter.com/kanzure/status/1136636856093876225\nAl parecer, hay algunos mensajes políticos en torno a OP_SECURETHEBA y \u0026amp;ldquo;asegurar la bolsa\u0026amp;rdquo; podría ser una cosa de Andrew Yang\nSIGHASH_NOINPUT Muchos de nosotros estamos familiarizados con NOINPUT. ¿Alguien necesita una explicación? ¿Cuál es la diferencia entre el NOINPUT original y el nuevo? NOINPUT asusta al menos a algunas …"},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-06-great-consensus-cleanup/","title":"Gran limpieza de consenso","content":"https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2019-March/016714.html\nhttps://twitter.com/kanzure/status/1136591286012698626\nIntroducción No hay mucho nuevo de que hablar. No está claro lo de CODESEPARATOR. Se quiere convertir en regla de consenso que las transacciones no pueden ser mayores de 100 kb. ¿No hay reacciones a eso? De acuerdo. Bien, lo haremos. Hagámoslo. ¿Todos saben cuál es esta propuesta?\nEl tiempo de validación para cualquier bloque, éramos perezosos a la hora de …"},{"uri":"/es/speakers/jeremy-rubin/","title":"Jeremy Rubin","content":""},{"uri":"/es/speakers/matt-corallo/","title":"Matt Corallo","content":""},{"uri":"/es/speakers/olaoluwa-osuntokun/","title":"Olaoluwa Osuntokun","content":""},{"uri":"/es/tags/op_checksigfromstack/","title":"op_checksigfromstack","content":""},{"uri":"/es/tags/op_checktemplateverify/","title":"op_checktemplateverify","content":""},{"uri":"/es/tags/p2c/","title":"p2c","content":""},{"uri":"/es/tags/quantum-resistance/","title":"quantum-resistance","content":""},{"uri":"/es/tags/sighash_anyprevout/","title":"sighash_anyprevout","content":""},{"uri":"/es/speakers/tadge-dryja/","title":"Tadge Dryja","content":""},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-06-taproot/","title":"Taproot","content":"https://github.com/bitcoin/bips/blob/master/bip-0340.mediawiki\nhttps://lists.linuxfoundation.org/pipermail/bitcoin-dev/2019-May/016914.html\nhttps://bitcoinmagazine.com/articles/taproot-coming-what-it-and-how-it-will-benefit-bitcoin/\nPreviamente: http://diyhpl.us/wiki/transcripts/bitcoin-core-dev-tech/2018-03-06-taproot-graftroot-etc/\nhttps://twitter.com/kanzure/status/1136616356827283456\nIntroducción Bien, primera pregunta: ¿quién puso mi nombre en esa lista y qué quieren? No fui yo. Voy a hacer …"},{"uri":"/es/tags/utreexo/","title":"utreexo","content":""},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-06-utreexo/","title":"Utreexo","content":"Utreexo: acumulador basado en hash para UTXOs de bitcoin\nhttp://diyhpl.us/wiki/transcripts/bitcoin-core-dev-tech/2018-10-08-utxo-accumulators-and-utreexo/\nhttp://diyhpl.us/wiki/transcripts/mit-bitcoin-expo-2019/utreexo/\nDocumento Utreexo https://eprint.iacr.org/2019/611.pdf\nhttps://github.com/mit-dci/utreexo\nhttps://twitter.com/kanzure/status/1136560700187447297\nIntroducción Sigues descargando todo; en lugar de escribir en tu base de datos UTXO, modificas tu acumulador. Aceptas una prueba de que …"},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/","title":"Arquitecturas de las wallets","content":"Arquitectura de la wallet de Bitcoin Core + descriptores\nhttps://twitter.com/kanzure/status/1136282460675878915\nwriteup: https://github.com/bitcoin/bitcoin/issues/16165\nDebate sobre la arquitectura de las wallets Aquí hay tres áreas principales. Una es IsMine: ¿cómo determino que una salida concreta está afectando a mi wallet? ¿Qué hay de pedir una nueva dirección, de dónde viene? Eso no es sólo obtener una nueva dirección, es obtener una dirección de cambio en bruto, es también el cambio que se …"},{"uri":"/es/tags/wallet/","title":"wallet","content":""},{"uri":"/es/tags/capa-2/","title":"capa 2","content":""},{"uri":"/es/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/","title":"Drivechain","content":"Drivechain: Una capa de interoperabilidad-2, descrita en términos de la red lightning - algo que ya entiendes\nhttps://twitter.com/kanzure/status/1133202672570519552\nSobre mí Bien, aquí hay algunas cosas sobre mí. He sido un bitcoiner desde 2012. He publicado investigaciones sobre bitcoin en el blog truthcoin.info. He presentado en Scaling Bitcoin 1, 2, 3, 4, tabconf, y Building on Bitcoin. Mi formación es en economía y estadística. Trabajé en el Departamento de Economía de Yale como estadístico …"},{"uri":"/es/tags/investigaci%C3%B3n/","title":"investigación","content":""},{"uri":"/es/speakers/paul-sztorc/","title":"Paul Sztorc","content":""},{"uri":"/es/tags/sidechains/","title":"sidechains","content":""},{"uri":"/es/advancing-bitcoin/2019/","title":"Advancing Bitcoin 2019","content":" Lightning Rust Feb 07, 2019 Matt Corallo Lightning "},{"uri":"/es/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/","title":"Lightning Rust","content":"Lightning flexible en Rust\nDiapositivas: https://docs.google.com/presentation/d/154bMWdcMCFUco4ZXQ3lWfF51U5dad8pQ23rKVkncnns/edit#slide=id.p\nhttps://twitter.com/kanzure/status/1144256392490029057\nIntroducción Gracias por recibirme. Quiero hablar un poco sobre un proyecto en el que he estado trabajando durante un año llamado \u0026amp;ldquo;Rust-lightning\u0026amp;rdquo;. Lo empecé en diciembre, así que hace un año y unos meses. Esta es mi primera presentación en él, así que estoy emocionado de finalmente llegar a …"},{"uri":"/es/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/","title":"Seguridad de la cartera de hardware","content":"Tema: ¿Son los monederos electrónicos lo suficientemente seguros?\nLocalización: Canal de YouTube de Andreas Antonopoulos\n¿Son los monederos electrónicos lo suficientemente seguros? P - Hola Andreas. Almaceno mi criptografía en un Ledger. Escuchando a Trace Mayer esta semana me preocupa que esto no sea lo suficientemente seguro. Trace dice que necesitas Bitcoin Core para la validación de la red, Armory para gestionar las claves privadas y un protocolo Glacier para los procedimientos operativos …"},{"uri":"/es/tags/validaci%C3%B3n/","title":"validación","content":""},{"uri":"/es/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/","title":"Bitcoin Q\u0026A: Descarga inicial de la cadena de bloques","content":"Becca pregunta por qué se tarda tanto en descargar el blockchain. Yo tengo una conexión rápida a Internet y he podido descargar 200GB en menos de una hora. A lo que Becca se refiere es a lo que se llama la descarga inicial del blockchain o IBD, que es la primera sincronización del nodo de Bitcoin o de cualquier tipo de nodo de blockchain con su blockchain. La respuesta es que, aunque la cantidad de datos que hay que descargar para obtener la cadena de bloques completa es de unos 200 GB, no se …"},{"uri":"/es/tags/consensus-enforcement/","title":"consensus-enforcement","content":""},{"uri":"/es/bitcoin-core-dev-tech/2018-10/","title":"Bitcoin Core Dev Tech 2018 (Oct)","content":" Acumuladores UTXO, compromisos UTXO y Utreexo Oct 08, 2018 Tadge Dryja Proof systems Utreexo Bitcoin Optech Oct 09, 2018 Lightning Segwit Cosas de Wallets Oct 09, 2018 Wallet Descriptores de guiones (2018-10-08) Wallet Mensaje de señalización Oct 10, 2018 Kalle Alm Wallet Retransmisión eficiente de transacciones P2P Oct 08, 2018 P2 p "},{"uri":"/es/bitcoin-core-dev-tech/2018-10/2018-10-10-signmessage/","title":"Mensaje de señalización","content":"kallewoof and others\nhttps://twitter.com/kanzure/status/1049834659306061829\nEstoy tratando de hacer un nuevo signmessage para hacer otras cosas. Sólo tiene que utilizar el sistema de firma dentro de bitcoin para firmar un mensaje. Firmar un mensaje que alguien quiere. Puedes usar proof-of-funds o lo que sea.\nUsted podría simplemente tener una firma y es una firma dentro de un paquete y es pequeño y fácil. Otra opción es tener un .. que no es válido de alguna manera. Haces una transacción con …"},{"uri":"/es/bitcoin-core-dev-tech/2018-10/2018-10-09-bitcoin-optech/","title":"Bitcoin Optech","content":"https://twitter.com/kanzure/status/1049527415767101440\nhttps://bitcoinops.org/\nBitcoin Optech trata de animar a las empresas bitcoin a adoptar mejores técnicas y tecnologías de escalado, cosas como batching, segwit, más adelante quizá firmas Schnorr, firmas agregables, quizá lightning. Ahora mismo nos estamos centrando en cosas que las empresas podrían estar haciendo ahora mismo. Los intercambios podrían ser por lotes, y algunos no lo son. Estamos hablando con esas empresas y escuchando sus …"},{"uri":"/es/bitcoin-core-dev-tech/2018-10/2018-10-09-wallet-stuff/","title":"Cosas de Wallets","content":"https://twitter.com/kanzure/status/1049526667079643136\nTal vez podamos hacer que los PRs del monedero tengan un proceso de revisión diferente para que pueda haber cierta especialización, incluso si el monedero no está listo para ser separado. En el futuro, si el monedero fuera un proyecto o repositorio separado, entonces sería mejor. Tenemos que ser capaces de subdividir el trabajo mejor de lo que ya lo hacemos, y la cartera es un buen lugar para empezar a hacerlo. Es diferente del código …"},{"uri":"/es/tags/segwit/","title":"segwit","content":""},{"uri":"/es/bitcoin-core-dev-tech/2018-10/2018-10-08-utxo-accumulators-and-utreexo/","title":"Acumuladores UTXO, compromisos UTXO y Utreexo","content":"https://twitter.com/kanzure/status/1049112390413897728\nSi la gente vio la charla de Benedikt, hace dos días, está relacionado. Es una construcción diferente, pero el mismo objetivo. La idea básica es, y creo que Cory comenzó a hablar de esto hace unos meses en la lista de correo \u0026amp;hellip; en lugar de almacenar todos los UTXOs en leveldb, almacenar el hash de cada UTXO, y entonces es la mitad del tamaño, y entonces casi se podría crear a partir del hash de la entrada, es como 10 bytes más. En vez …"},{"uri":"/es/tags/proof-systems/","title":"proof-systems","content":""},{"uri":"/es/bitcoin-core-dev-tech/2018-10/2018-10-08-efficient-p2p-transaction-relay/","title":"Retransmisión eficiente de transacciones P2P","content":"Mejoras del protocolo de retransmisión de transacciones p2p con reconciliación de conjuntos gleb\nNo sé si necesito motivar este problema. Presenté una sesión de trabajo en curso en Scaling. El coste de retransmitir transacciones o anunciar una transacción en una red: ¿cuántos anuncios tienes? Cada enlace tiene un anuncio en cualquier dirección en este momento, y luego está el número de nodos multiplicado por el número de conexiones por nodo. Esto es como 8 conexiones de media. Si hay más …"},{"uri":"/es/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/","title":"Firmas Schnorr","content":"LTB Episodio 378 - El Petro dentro de Venezuela y las firmas Schnorr\nActualmente utilizamos el algoritmo de firma digital de curva elíptica (ECDSA), que es una forma específica de realizar firmas digitales con curvas elípticas, pero no la única. Las firmas Schnorr tienen algunas características únicas que las hacen mejores en muchos aspectos que el algoritmo ECDSA que usamos actualmente en Bitcoin.\nLas firmas Schnorr son mejores porque tienen ciertas peculiaridades en la forma en que se …"},{"uri":"/es/austin-bitcoin-developers/2018-08-17-richard-bondi-bitcoin-cli-regtest/","title":"Bitcoin CLI y Regtest","content":"Clone este repositorio para seguir el proceso: https://github.com/austin-bitcoin-developers/regtest-dev-environment\nhttps://twitter.com/kanzure/status/1161266116293009408\nIntroducción Así que el objetivo aquí como Justin dijo es conseguir el entorno regtest configurado. Las ventajas que mencionó, también existe la ventaja de que usted puede minar sus propias monedas a voluntad por lo que no tiene que perder el tiempo con grifos testnet. También puedes generar bloques, así que no tienes que …"},{"uri":"/es/speakers/richard-bondi/","title":"Richard Bondi","content":""},{"uri":"/es/bitcoin-core-dev-tech/2018-03/","title":"Bitcoin Core Dev Tech 2018 (Mar)","content":" Árboles de sintaxis abstracta merkleizados - MAST Mar 06, 2018 Taproot Covenios Validación Bellare-Neven Mar 05, 2018 Signature aggregation Intercambios atómicos de curvas transversales Mar 05, 2018 Adaptor signatures Prioridades Mar 07, 2018 Taproot, Graftroot, Etc (2018-03-06) Contract protocols Taproot "},{"uri":"/es/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/","title":"Prioridades","content":"https://twitter.com/kanzure/status/972863994489901056\nPrioridades Vamos a esperar hasta que BlueMatt esté aquí. Nadie sabe cuáles son sus prioridades. Dice que podría llegar alrededor del mediodía.\nHay un ex-director de producto de Google interesado en ayudar con Bitcoin Core. Me preguntó cómo participar. Le dije que se involucrara simplemente sumergiéndose. Pasará algún tiempo en Chaincode a finales de marzo. Nos haremos una idea de cuáles son sus habilidades. Creo que podría ser útil para …"},{"uri":"/es/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/","title":"Árboles de sintaxis abstracta merkleizados - MAST","content":"https://twitter.com/kanzure/status/972120890279432192\nVer también http://diyhpl.us/wiki/transcripts/bitcoin-core-dev-tech/2017-09-07-merkleized-abstract-syntax-trees/\nCosas de MAST Podrías merkleizar directamente los scripts si cambias de IF, IFNOT, ELSE con IFJUMP que tiene el número de bytes.\nCon graftroot y taproot, nunca para hacer cualquier scripts (que eran un hack para empezar las cosas). Pero estamos haciendo la validación y el cálculo.\nTomas todos los caminos que tiene; así que en lugar …"},{"uri":"/es/tags/covenios/","title":"covenios","content":""},{"uri":"/es/tags/adaptor-signatures/","title":"adaptor-signatures","content":""},{"uri":"/es/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/","title":"Bellare-Neven","content":"Ver también http://diyhpl.us/wiki/transcripts/bitcoin-core-dev-tech/2017-09-06-signature-aggregation/\nSe ha publicado, ha existido durante una década, y es ampliamente citado. En Bellare-Neven, es en sí mismo, es un esquema multi-firma que significa múltiples pubkeys y un mensaje. Debe tratar las autorizaciones individuales para gastar entradas, como mensajes individuales. Lo que necesitamos es un esquema de firma agregada interactiva. El artículo de Bellare-Neven sugiere una forma trivial de …"},{"uri":"/es/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/","title":"Intercambios atómicos de curvas transversales","content":"https://twitter.com/kanzure/status/971827042223345664\nBorrador de un próximo documento de guiones sin guión. Esto fue a principios de 2017. Pero ya ha pasado todo un año.\ntransacciones lightning posteriores a schnorr https://lists.linuxfoundation.org/pipermail/lightning-dev/2018-February/001031.html\nUna firma adaptadora.. si tienes diferentes generadores, entonces los dos secretos a revelar, simplemente le das a alguien los dos, más una prueba de un log discreto, y entonces dices aprende el …"},{"uri":"/es/tags/signature-aggregation/","title":"signature-aggregation","content":""},{"uri":"/es/misc/2017-09-20-ray-dillinger-if-id-known/","title":"If I'd Known What We Were Starting","content":"Autor: Ray Dillinger Texto original: https://www.linkedin.com/pulse/id-known-what-we-were-starting-ray-dillinger/\nSi hubiera sabido lo que estábamos empezando En noviembre de 2008, realicé una revisión de código y una auditoría de seguridad para la parte de la blockchain del código fuente de Bitcoin. El fallecido Hal Finney revisó el código y auditó el lenguaje de scripting, y ambos analizamos el código de contabilidad. Satoshi Nakamoto, arquitecto seudónimo y autor del código, alternó entre …"},{"uri":"/es/speakers/ray-dillinger/","title":"Ray Dillinger","content":""},{"uri":"/es/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/","title":"Árboles de sintaxis abstracta merkleizados","content":"https://twitter.com/kanzure/status/907075529534328832\nÁrboles de sintaxis abstracta merkleizados (MAST) https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2017-September/014932.html\nVoy a hablar del esquema que publiqué ayer en la lista de correo, que consiste en implementar MAST (árboles de sintaxis abstracta merkleizados) en bitcoin de la forma menos invasiva posible. Está dividido en dos grandes rasgos de consenso que juntos nos dan MAST. Empezaré con el último BIP.\nEsto es la …"},{"uri":"/es/bitcoin-core-dev-tech/2017-09/","title":"Bitcoin Core Dev Tech 2017","content":" Agregación de firmas Sep 06, 2017 Signature aggregation Árboles de sintaxis abstracta merkleizados Sep 07, 2017 Mast Notas de la reunión Sep 05, 2017 Privacidad "},{"uri":"/es/tags/mast/","title":"mast","content":""},{"uri":"/es/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/","title":"Agregación de firmas","content":"https://twitter.com/kanzure/status/907065194463072258\nAgregación de firmas Sipa, ¿puedes firmar y verificar firmas ECDSA a mano? No. Sobre GF(43), tal vez. Los inversos podrían tomar un poco de tiempo para computar. Sobre GF(2).\nCreo que lo primero de lo que deberíamos hablar es de algunas definiciones. Me gustaría empezar distinguiendo entre tres cosas: Agregación de claves, agregación de firmas y validación de lotes. Más adelante, la multifirma.\nHay tres problemas diferentes. La agregación de …"},{"uri":"/es/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/","title":"Notas de la reunión","content":"coredev.tech septiembre 2017\nhttps://twitter.com/kanzure/status/907233490919464960\n((Como siempre, cualquier error es probablemente mío, etc.))\nIntroducción Existe una gran preocupación sobre si BlueMatt se ha convertido en un nombre erróneo.\nPresentación del lunes por la noche: https://btctranscripts.com/sf-bitcoin-meetup/2017-09-04-jonas-schnelli-bip150-bip151/\nCreo que deberíamos seguir usando #bitcoin-core-dev para cualquier cosa relacionada con el cambio de Bitcoin Core y tratar de mantener …"},{"uri":"/es/tags/privacidad/","title":"privacidad","content":""},{"uri":"/es/speakers/arvind-narayanan/","title":"Arvind Narayanan","content":""},{"uri":"/es/misc/2017-08-29-bitcoin-academic-pedigree/","title":"Bitcoin's Academic Pedigree","content":"Texto original: https://queue.acm.org/detail.cfm?id=3136559\nPedigrí académico de Bitcoin El concepto de criptomonedas se basa en ideas olvidadas en la literatura de investigación. Arvind Narayanan y Jeremy Clark\nSi has leído sobre bitcoin en la prensa y tienes cierta familiaridad con la investigación académica en el campo de la criptografía, podrías tener razonablemente la siguiente impresión: La investigación de varias décadas sobre el efectivo digital, comenzando por David Chaum,10,12 no …"},{"uri":"/es/speakers/jeremy-clark/","title":"Jeremy Clark","content":""},{"uri":"/es/misc/2016-11-13-lopp-bitcoin-security-model/","title":"Bitcoin's Security Model - A Deep Dive","content":"Texto original: https://www.coindesk.com/markets/2016/11/13/bitcoins-security-model-a-deep-dive/\nEl modelo de seguridad de Bitcoin: una profunda inmersión CoinDesk echa un vistazo bajo el capó para entender qué funciones de seguridad ofrecen y qué no ofrecen bitcoin. Cuando se discuten los mecanismos de consenso para diferentes criptomonedas, un tema que a menudo causa argumentos es la falta de comprensión (y definición) del modelo de seguridad que proporcionan para los datos históricos del …"},{"uri":"/es/speakers/jameson-lopp/","title":"Jameson Lopp","content":""},{"uri":"/es/greg-maxwell/2016-01-29-a-trip-to-the-moon/","title":"A trip to the moon requires a rocket with multiple stages","content":"Texto original: https://www.reddit.com/r/Bitcoin/comments/438hx0/a_trip_to_the_moon_requires_a_rocket_with/\nUn viaje a la luna requiere un cohete con múltiples etapas o, de lo contrario, la ecuación del cohete te comerá el almuerzo\u0026amp;hellip; empacar a todos como un coche de payasos en un trebuchet y esperar el éxito esta excluido.\nMucha gente en Reddit piensa que Bitcoin es principalmente un competidor de las redes de pago con tarjeta. Creo que esto es más que un poco extraño: Bitcoin es una …"},{"uri":"/es/speakers/greg-maxwell/","title":"Greg Maxwell","content":""},{"uri":"/es/greg-maxwell/","title":"Greg Maxwell","content":" A trip to the moon requires a rocket with multiple stages Jan 29, 2016 Greg Maxwell Scaling "},{"uri":"/es/tags/scaling/","title":"scaling","content":""},{"uri":"/es/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/","title":"Senado de Canadá Bitcoin","content":"Esta es una transcripción de las pruebas presentadas ante el Comité del Senado de Canadá sobre Banca, Comercio y Economía. Aquí hay un video. El discurso de apertura se puede encontrar aquí.\nPuede aparecer otra transcripción aquí pero quién sabe.\nSe puede encontrar una transcripción adicional aquí.\nInforme final: http://www.parl.gc.ca/Content/SEN/Committee/412/banc/rep/rep12jun15-e.pdf\nObservaciones preparadas. Mi experiencia se centra principalmente en la seguridad de la información y la …"},{"uri":"/es/bit-block-boom/2019/accumulating-bitcoin/","title":"Acumular Bitcoin","content":"Introducción Hoy voy a predicar al coro, creo. Espero reiterar y reforzar algunos puntos que ya conoces pero que tal vez olvidaste mencionar a tus amigos nocoiner, o aprender algo nuevo. Espero que haya algo para todos aquí.\nP: ¿Debo comprar bitcoin?\nR: Sí.\nP: ¿Vas a trolear a un periodista?\nR: ¿Hoy? Ya lo he hecho.\nConceptos erróneos Una de las mayores ideas erróneas que escuché cuando conocí el bitcoin fue que éste era sólo un sistema de pagos. Si lees el libro blanco, entonces lees esto y …"},{"uri":"/es/speakers/alena-vranova/","title":"Alena Vranova","content":""},{"uri":"/es/speakers/alex-petrov/","title":"Alex Petrov","content":""},{"uri":"/es/baltic-honeybadger/2018/opening/","title":"Apertura","content":"Discurso de apertura del Baltic Honeybadger 2018\ntwitter: https://twitter.com/search?f=tweets\u0026amp;amp;vertical=default\u0026amp;amp;q=bh2018\nhttps://twitter.com/kanzure/status/1043384689321566208\nBien chicos, vamos a empezar en cinco minutos. Así que quédense aquí. Ella va a presentar a los oradores y ayudar a todos. Gracias a todos por venir. Es una gran multitud este año. Quería hacer algunos anuncios técnicos. En primer lugar, recuerden que debemos ser excelentes entre nosotros. Tenemos gente de todo el …"},{"uri":"/es/baltic-honeybadger/2018/","title":"Baltic Honeybadger 2018","content":"http://web.archive.org/web/20180825023519/https://bh2018.hodlhodl.com/\nApertura Bitcoin como nueva institución de mercado Nic Carter Custodia de Bitcoin Bryan Bishop Custodia Reglamento El estándar Bitcoin Saifedean Ammous El futuro de Lightning Elizabeth Stark Lightning El futuro de los contratos inteligentes de Bitcoin Max Keidun Contratos inteligentes El futuro de los monederos de Bitcoin Pavol Rusnak, Lawrence Nahum, Giacomo Zucco Cartera hardware Cartera El maximalismo de Bitcoin …"},{"uri":"/es/bit-block-boom/","title":"Bit Block Boom","content":" Bit Block Boom 2019 "},{"uri":"/es/bit-block-boom/2019/","title":"Bit Block Boom 2019","content":" Acumular Bitcoin Pierre Rochard "},{"uri":"/es/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/","title":"Bitcoin como nueva institución de mercado","content":"Bitcoin como nueva institución de mercado\nhttps://twitter.com/kanzure/status/1043763647498063872\nVoy a hablar de bitcoin como un sistema económico, no como un sistema de software o criptográfico. Esta charla tiene dos partes. En la primera, voy a hacer una retrospectiva de los últimos 10 años de bitcoin como sistema económico en funcionamiento. En la segunda parte, voy a analizar a bitcoin tal y como es hoy y cómo será en el futuro. Voy a mirar la cantidad de riqueza almacenada en bitcoin y …"},{"uri":"/es/bitcoin-core-dev-tech/2015-02/","title":"Bitcoin Core Dev Tech 2015","content":" Bitcoin Law For Developers James Gatto, Marco Santori Charla de los fundadores de Circle Jeremy Allaire, Sean Neville Gavin Andresen Research And Development Goals Patrick Murck, Gavin Andresen, Cory Fields Consensus "},{"uri":"/es/bitcoin-core-dev-tech/2022-10/2022-10-11-github/","title":"Bitcoin Core y GitHub (2022-10-11)","content":"Bitcoin Core y GitHub Creo que en este punto está bastante claro que no es necesariamente un \u0026amp;ldquo;si\u0026amp;rdquo; salimos de github, sino un cuándo y cómo. La pregunta sería, ¿cómo lo haríamos? Esto no es realmente una presentación. Es más bien una discusión. Hay algunas cosas a tener en cuenta, como el repo de bitcoin-gh-meta, que captura todas las cuestiones, comentarios y pull requests. Es bastante bueno. La capacidad de reconstruir lo que hay aquí en otra plataforma no parece posible en su …"},{"uri":"/es/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/","title":"Bitcoin Law For Developers","content":"Vamos a hacer una pausa de 15 minutos para tomar café después de nuestros dos próximos oradores. Quiero presentarles a James Gatto y Marco Santori de Pilsbury. Pasarán algún tiempo hablando de la ley Bitcoin. Tienen una sala esta tarde y se ofrecen a hablar con ustedes uno a uno. Así que Marco y James.\nTe perdiste la introducción. ¿Estuvo bien? (risas)\nEstamos aquí para hablar de cuestiones jurídicas. Vamos a intentar que sea ligero e interesante. Yo voy a hablar de patentes. Y Marc va a hablar …"},{"uri":"/es/speakers/bruce-fenton/","title":"Bruce Fenton","content":""},{"uri":"/es/speakers/bryan-bishop/","title":"Bryan Bishop","content":""},{"uri":"/es/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/","title":"Charla de los fundadores de Circle","content":"Estamos encantados de estar aquí y de patrocinar este evento. Nuestra experiencia en herramientas para desarrolladores se remonta a los primeros días de algo.\n¿Cómo maduramos el desarrollo del propio Bitcoin Core? Una de las cosas útiles es identificar los componentes clave. En un estándar tienes una especificación, podría ser un libro blanco, y luego tienes una implementación de referencia, y luego un conjunto de pruebas que hace cumplir la interoperabilidad. El conjunto de pruebas es lo que …"},{"uri":"/es/categories/conference/","title":"conference","content":""},{"uri":"/es/categories/conferenciae/","title":"conferenciae","content":""},{"uri":"/es/tags/consensus/","title":"consensus","content":""},{"uri":"/es/tags/contract-protocols/","title":"contract-protocols","content":""},{"uri":"/es/tags/contratos-inteligentes/","title":"contratos inteligentes","content":""},{"uri":"/es/speakers/cory-fields/","title":"Cory Fields","content":""},{"uri":"/es/tags/custodia/","title":"custodia","content":""},{"uri":"/es/baltic-honeybadger/2018/bitcoin-custody/","title":"Custodia de Bitcoin","content":"https://twitter.com/kanzure/status/1048014038179823617\nCustodia de Bitcoin\nConferencia de Bitcoin del Báltico Honey Badger 2018, Riga, Letonia, Día 2\nSchedule: https://bh2018.hodlhodl.com/\nTranscripción\nHora de inicio: 6:09:50\nMi nombre es Bryan Bishop, voy a hablar de la custodia de bitcoin. Aquí está mi huella digital PGP, deberíamos hacer eso. Así que quién soy, tengo un fondo de desarrollo de software, no solo escribo transcripciones. En realidad ya no estoy en LedgerX desde el viernes (21 …"},{"uri":"/es/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/","title":"Descriptores de guiones (2018-10-08)","content":"2018-10-08\nDescriptores de guiones Pieter Wuille (sipa)\nhttps://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md\nMe gustaría hablar de los descriptores de guiones. Hay varios proyectos en los que estamos trabajando y todos están relacionados. Me gustaría aclarar cómo encajan las cosas.\nNota: hay una transcripción anterior que no ha sido publicada (necesita ser revisada) sobre los descriptores de guiones.\nAgenda Historia de los descriptores de guiones y cómo llegamos a esto. Lo que hay …"},{"uri":"/es/baltic-honeybadger/2018/the-bitcoin-standard/","title":"El estándar Bitcoin","content":"El estándar bitcoin como solución de escalado por capas\nhttps://twitter.com/kanzure/status/1043425514801844224\nHola a todos. ¿Pueden escucharme todos? Bien, maravilloso. No puedes ver mis diapositivas, ¿verdad? Tienes que compartir la pantalla si quieres que vean tus diapositivas. ¿Cómo hago eso? ¿Dónde está eso? Este es el nuevo Skype, lo siento. Gracias a todos por invitarme a hablar hoy. Sería estupendo acompañaros, pero desgraciadamente no podré hacerlo.\nQuiero describir cómo veo el …"},{"uri":"/es/baltic-honeybadger/2018/the-future-of-lightning/","title":"El futuro de Lightning","content":"El futuro de lightning\nEl año del #craeful y el futuro de lightning\nhttps://twitter.com/kanzure/status/1043501348606693379\nEs estupendo estar de vuelta aquí en Riga. Demos un aplauso a los organizadores del evento y a todos los que nos han traído aquí. Este es el momento más cálido que he vivido en Riga. Ha sido genial. Quiero volver en los veranos.\nIntroducción Estoy aquí para hablar de lo que ha ocurrido en el último año y del futuro de lo que vamos a ver con los rayos. Un segundo mientras …"},{"uri":"/es/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/","title":"El futuro de los contratos inteligentes de Bitcoin","content":"El futuro de los contratos inteligentes de Bitcoin\nhttps://twitter.com/kanzure/status/1043419056492228608\nHola chicos, la próxima charla en 5 minutos. En cinco minutos.\nIntroducción Hola a todos. Si están caminando, por favor háganlo en silencio. Estoy un poco nervioso. Estuve muy ocupado organizando esta conferencia y no tuve tiempo para esta charla. Si tenían grandes expectativas para esta presentación, entonces por favor bájenlas durante los próximos 20 minutos. Iba a hablar de los modelos …"},{"uri":"/es/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/","title":"El futuro de los monederos de Bitcoin","content":"1 a 1: El futuro de los monederos de bitcoin\nhttps://twitter.com/kanzure/status/1043445104827084800\nGZ: Muchas gracias. Vamos a hablar del futuro de los monederos de bitcoin. Como sabes, es un tema muy central. Siempre comparamos el bitcoin con Internet. Los monederos son básicamente como los navegadores, como al principio de la web. Son la primera puerta de entrada a una experiencia de usuario en bitcoin. Es importante ver cómo van a evolucionar. Tenemos dos representantes excepcionales del …"},{"uri":"/es/baltic-honeybadger/2018/bitcoin-maximalism-dissected/","title":"El maximalismo de Bitcoin diseccionado","content":"El maximalismo de Bitcoin diseccionado\nBuenos días a todos. Estoy muy contento de estar aquí en el Baltic Honeybadger. El año pasado hice una presentación de scaling. Inauguré la conferencia con una presentación de escalamiento. Este año, para compensar, seré súper serio. Esta será la presentación más aburrida de la conferencia. Voy a tratar de diseccionar y formalizar el maximalismo de bitcoin.\nEsta es la fuente más terrorífica que encontré en prezi. Quería algo con sangre saliendo de ella pero …"},{"uri":"/es/speakers/elizabeth-stark/","title":"Elizabeth Stark","content":""},{"uri":"/es/speakers/eric-voskuil/","title":"Eric Voskuil","content":""},{"uri":"/es/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/","title":"Escalabilidad y orientación de los modelos de seguridad","content":"Escalabilidad y orientación de los modelos de seguridad\nhttps://twitter.com/kanzure/status/1043397023846883329\n\u0026amp;hellip; ¿Están todos despiertos? Claro. Salto de obstáculos. Vaya, eso es brillante. Soy más idealista que Eric. Voy a hablar de la utilidad y de por qué la gente usa bitcoin y vamos a ver cómo va eso.\nLa falta de confianza es mucho mejor que la descentralización. Quiero hablar de la falta de confianza. La gente usa mucho la palabra descentralización y me parece que es algo inútil …"},{"uri":"/es/speakers/florian-maier/","title":"Florian Maier","content":""},{"uri":"/es/speakers/gavin-andresen/","title":"Gavin Andresen","content":""},{"uri":"/es/bitcoin-core-dev-tech/2015-02/gavinandresen/","title":"Gavin Andresen","content":"http://blog.circle.com/2015/02/10/devcore-livestream/\nEl tiempo de transacción instantánea\u0026amp;hellip; ya sabes, me acerco a una caja registradora, pongo mi teléfono ahí, y en un segundo o dos la transacción está confirmada y me voy con mi café. Cualquier cosa más allá de eso, 10 minutos frente a 1 minuto no importa. Hay un montón de ideas sobre esto, como un tercero de confianza que promete no duplicar el gasto, tener algunas monedas encerradas en un monedero multisig como Green Address. Hay ideas …"},{"uri":"/es/speakers/giacomo-zucco/","title":"Giacomo Zucco","content":""},{"uri":"/es/baltic-honeybadger/2018/investing-in-bitcoin-businesses/","title":"Invertir en negocios de Bitcoin","content":"1 a 1: Invertir en negocios de bitcoin\nMatthew Mezinskis (crypto_voices) (moderador)\nMM: Dirijo un podcast aquí en Letonia sobre la economía y el dinero del bitcoin. Es americano-latino. Lo hago con mi socio que está basado en Brasil. Hoy vamos a centrarnos en la inversión en negocios centrados en el bitcoin y las criptomonedas.\nNC: Me llamo Nic Carter. Trabajo para un fondo de riesgo. Somos uno de los pocos fondos de riesgo que se centran en el bitcoin y en las startups relacionadas con el …"},{"uri":"/es/speakers/james-gatto/","title":"James Gatto","content":""},{"uri":"/es/speakers/jeremy-allaire/","title":"Jeremy Allaire","content":""},{"uri":"/es/baltic-honeybadger/2018/the-reserve-currency-fallacy/","title":"La falacia de la moneda de reserva","content":"La falacia de la moneda de reserva\nhttps://twitter.com/kanzure/status/1043385469134925824\nGracias. Desarrolladores, desarrolladores, desarrolladores, desarrolladores. Muy bien, no fue tan malo. Hay mucho contenido para explicar este concepto de la falacia de la moneda de reserva. Es difícil de terminar en la cantidad de tiempo disponible. Estaré disponible en la fiesta de esta noche. Quiero ir a través de cuatro diapositivas y hablar de la historia de esta cuestión de la escala, y luego la …"},{"uri":"/es/baltic-honeybadger/2018/the-b-foundation/","title":"La Fundación B","content":"La Fundación B\nhttps://twitter.com/kanzure/status/1043802179004493825\nCreo que la mayoría de la gente aquí tiene una idea de quién soy. Soy un bitcoiner a largo plazo. He estado en bitcoin desde 2010. Me encanta el bitcoin. Me apasiona. Quiero verlo crecer y prosperar. Lo positivo de bitcoin es que tiene un ecosistema resistente. No necesita ningún director general. No necesita ninguna organización centralizada y no necesita ningún punto central para dirigir hacia dónde va. Básicamente funciona. …"},{"uri":"/es/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/","title":"La situación actual del mercado y los inversores institucionales","content":"1 a 1: La situación actual del mercado y los inversores institucionales\nhttps://twitter.com/kanzure/status/1043404928935444480\nAsociación Bitcoin Guy (BAG)\nBAG: Estoy aquí con Bruce Fenton y Tone Vays. Bruce es también anfitrión de la Mesa Redonda Satoshi y un inversor a largo plazo. Tone Vays es un operador de derivados y creador de contenidos. Vamos a hablar de Wall Street. ¿Creo que ambos están basados en Nueva York? ¿Cómo fueron los últimos 12 meses?\nTV: Tengo un apartamento allí, pero creo …"},{"uri":"/es/speakers/lawrence-nahum/","title":"Lawrence Nahum","content":""},{"uri":"/es/tags/libsecp256k1/","title":"libsecp256k1","content":""},{"uri":"/es/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/","title":"Libsecp256k1 Reunión de mantenedores (2022-10-12)","content":"P: ¿Por qué C89? Cuando te hice esta pregunta hace unos años, creo que dijiste gmaxwell.\nR: Hay una serie de dispositivos embebidos que sólo soportan C89 y sería bueno soportar esos dispositivos. Esa fue la respuesta de entonces, al menos.\nP: ¿Es un gran coste seguir haciendo C89?\nR: El único coste es para las cosas de contexto que queremos hacer threadlocal. El CPUid o las cosas específicas de x86. Estos podrían ser opcionales. Si realmente quieres entrar en este tema, entonces tal vez más …"},{"uri":"/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/","title":"Mantenedores (2019-06-06)","content":"Visión de los mantenedores del proyecto Bitcoin Core\nhttps://twitter.com/kanzure/status/1136568307992158208\n¿Cómo piensan o sienten los mantenedores que va todo? ¿Hay frustraciones? ¿Podrían los colaboradores ayudar a eliminar estas frustraciones? Eso es todo lo que tengo.\nSería bueno tener una mejor supervisión o visión general sobre quién está trabajando en qué dirección, para ser más eficientes. A veces he visto gente trabajando en lo mismo, y ambos hacen un pull request similar con mucho …"},{"uri":"/es/speakers/marco-santori/","title":"Marco Santori","content":""},{"uri":"/es/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/","title":"Más allá de Bitcoin - Colaboración descentralizada","content":"Más allá de Bitcoin: colaboración descentralizada.\nhttps://twitter.com/kanzure/status/1043432684591230976\nhttp://sit.fyi/\nHola a todos. Hoy voy a hablar de algo diferente a lo habitual. Voy a hablar más sobre cómo podemos computar y cómo colaboramos. Empezaré con una introducción a la historia de cómo sucedieron las cosas y por qué son como son hoy. Muchos de ustedes probablemente utilizan aplicaciones SaaS en la nube. A menudo se promociona como algo nuevo, algo que ha sucedido en los últimos …"},{"uri":"/es/speakers/matthew-mezinskis/","title":"Matthew Mezinskis","content":""},{"uri":"/es/speakers/max-keidun/","title":"Max Keidun","content":""},{"uri":"/es/needs/","title":"Needs","content":""},{"uri":"/es/speakers/nic-carter/","title":"Nic Carter","content":""},{"uri":"/es/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/","title":"Opsec extremo para el cypherpunk moderno","content":"Opsec extremo para el cypherpunk moderno\nJameson es el ingeniero de infraestructuras de Casa. Demos la bienvenida a Jameson Lopp.\nIntroducción Hola compañeros cypherpunks. Estamos bajo ataque. Las corporaciones y los estados nación en su búsqueda de la omnisciencia han despojado lentamente nuestra privacidad. Somos la rana que está siendo hervida en la olla llamada progreso. No podemos confiar en que las corporaciones nos concedan privacidad por su beneficio. Nuestros fracasos aquí son nuestros. …"},{"uri":"/es/baltic-honeybadger/2018/day-1-closing-panel/","title":"Panel de clausura del primer día","content":"Panel de cierre\nhttps://twitter.com/kanzure/status/1043517333640241152\nRS: Gracias chicos por unirse al panel. Sólo necesitamos una silla más. Voy a presentar a Alex Petrov aquí porque todos los demás estaban en el escenario. El panel de cierre va a ser una visión general de lo que está sucediendo en bitcoin. Quiero empezar con la pregunta que empecé el año pasado. ¿Cuál es el estado actual de bitcoin en comparación con el año pasado? ¿Qué ha sucedido?\nES: El año pasado, estaba sentado al lado …"},{"uri":"/es/baltic-honeybadger/2018/trading-panel/","title":"Panel de negociación","content":"MM: Como dice Trace Mayer, es perseguir al conejo. ¿Por qué no nos presentamos?\nTV: Mi nombre es Tone Vays. Vengo del entorno comercial tradicional de Wall Street. Me uní al espacio de las criptomonedas en 2013. Hablé en mi primera conferencia y escribí mi primer artículo en el primer trimestre de 2014. Estaba haciendo algo de trading. Con la popularidad del canal de youtube y de ir a conferencias, volví a operar con opciones en los mercados tradicionales. Volveré a operar con cripto pronto, …"},{"uri":"/es/speakers/patrick-murck/","title":"Patrick Murck","content":""},{"uri":"/es/speakers/pavol-rusnak/","title":"Pavol Rusnak","content":""},{"uri":"/es/speakers/peter-todd/","title":"Peter Todd","content":""},{"uri":"/es/speakers/pierre-rochard/","title":"Pierre Rochard","content":""},{"uri":"/es/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/","title":"Procesamiento de pagos con Bitcoin y comerciantes","content":"1 a 1: Procesamiento de pagos con Bitcoin y comerciantes\nhttps://twitter.com/kanzure/status/1043476967918592003\nV: Hola y bienvenidos a esta increíble conferencia. Es una buena conferencia, vamos. Es genial porque puedes preguntarles sobre la UASF y ellos saben de qué estás hablando. Tengo algunos invitados conmigo hoy. Vamos a hablar sobre el procesamiento de los comerciantes y hablar de la adopción regular de bitcoin también. La primera pregunta que tengo para Alena es, \u0026amp;hellip; hubo un gran …"},{"uri":"/es/tags/reglamento/","title":"reglamento","content":""},{"uri":"/es/bitcoin-core-dev-tech/2015-02/research-and-development-goals/","title":"Research And Development Goals","content":"Objetivos y retos de R\u0026amp;amp;D\nA menudo vemos gente diciendo que están probando las aguas, que han corregido un error tipográfico, que han hecho una pequeña corrección que no tiene mucho impacto, que se están acostumbrando al proceso. Se están dando cuenta de que es muy fácil contribuir a Bitcoin Core. Codificas tus cambios, envías tus cambios, no hay mucho que hacer.\nHay una diferencia, y las líneas son difusas e indefinidas, y puedes hacer un cambio en Core que cambie un error ortográfico o un …"},{"uri":"/es/speakers/roman-snitko/","title":"Roman Snitko","content":""},{"uri":"/es/speakers/saifedean-ammous/","title":"Saifedean Ammous","content":""},{"uri":"/es/tags/scalabilidad/","title":"scalabilidad","content":""},{"uri":"/es/speakers/sean-neville/","title":"Sean Neville","content":""},{"uri":"/es/speakers/sergej-kotliar/","title":"Sergej Kotliar","content":""},{"uri":"/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/","title":"Taproot, Graftroot, Etc (2018-03-06)","content":"https://twitter.com/kanzure/status/972468121046061056\nGraftroot La idea del graftroot es que en cada contrato hay un superconjunto de personas que pueden gastar el dinero. Esta suposición no siempre es cierta, pero casi siempre lo es. Digamos que quieres bloquear estas monedas durante un año, sin ninguna condición para ello, entonces no funciona. Pero suponga que tiene\u0026amp;hellip; ¿recuperación pubkey? No\u0026amp;hellip; la recuperación pubkey es inherentemente incompatible con cualquier forma de …"},{"uri":"/es/speakers/tone-vays/","title":"Tone Vays","content":""},{"uri":"/es/speakers/vortex/","title":"Vortex","content":""},{"uri":"/es/speakers/whalepanda/","title":"Whalepanda","content":""},{"uri":"/es/speakers/yurii-rashkovskii/","title":"Yurii Rashkovskii","content":""}] \ No newline at end of file diff --git a/es/sitemap.xml b/es/sitemap.xml index 08619ab45c..4c7ab92717 100644 --- a/es/sitemap.xml +++ b/es/sitemap.xml @@ -1 +1 @@ -https://btctranscripts.com/es/tags/assumeutxo/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-assumeutxo/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/tags/bitcoin-core/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/categories/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/categories/core-dev-tech/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/tags/developer-tools/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-fuzzing/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/speakers/james-obeirne/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/speakers/niklas-g%C3%B6gge/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/speakers/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/tags/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/tags/build-system/2023-04-26T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-26-libbitcoin-kernel/2023-04-26T00:00:00+00:00https://btctranscripts.com/es/speakers/thecharlatan/2023-04-26T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-25-mempool-clustering/2023-04-25T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-asmap/2023-04-25T00:00:00+00:00https://btctranscripts.com/es/tags/cluster-mempool/2023-04-25T00:00:00+00:00https://btctranscripts.com/es/speakers/fabian-jahr/2023-04-25T00:00:00+00:00https://btctranscripts.com/es/speakers/pieter-wuille/2023-04-25T00:00:00+00:00https://btctranscripts.com/es/tags/security-enhancements/2023-04-25T00:00:00+00:00https://btctranscripts.com/es/speakers/suhas-daftuar/2023-04-25T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11T00:00:00+00:00https://btctranscripts.com/es/tags/fee-management/2022-10-11T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/2022-10-11T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/2022-10-10T00:00:00+00:00https://btctranscripts.com/es/tags/p2p/2022-10-10T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/2022-10-10T00:00:00+00:00https://btctranscripts.com/es/speakers/aaron-van-wirdum/2021-04-23T00:00:00+00:00https://btctranscripts.com/es/bitcoin-explained/taproot-activation-update/2021-04-23T00:00:00+00:00https://btctranscripts.com/es/bitcoin-explained/2021-04-23T00:00:00+00:00https://btctranscripts.com/es/categories/podcast/2021-04-23T00:00:00+00:00https://btctranscripts.com/es/speakers/sjors-provoost/2021-04-23T00:00:00+00:00https://btctranscripts.com/es/tags/taproot/2021-04-23T00:00:00+00:00https://btctranscripts.com/es/tags/soft-fork-activation/2021-03-12T00:00:00+00:00https://btctranscripts.com/es/bitcoin-explained/taproot-activation-speedy-trial/2021-03-12T00:00:00+00:00https://btctranscripts.com/es/bitcoin-explained/taproot-activation-lockinontimeout/2021-02-26T00:00:00+00:00https://btctranscripts.com/es/bitcoin-design/2020-08-20T00:00:00+00:00https://btctranscripts.com/es/tags/bitcoin-dise%C3%B1o/2020-08-20T00:00:00+00:00https://btctranscripts.com/es/bitcoin-design/misc/2020-08-20T00:00:00+00:00https://btctranscripts.com/es/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/2020-08-20T00:00:00+00:00https://btctranscripts.com/es/bitcoin-magazine/2020-08-03T00:00:00+00:00https://btctranscripts.com/es/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/2020-08-03T00:00:00+00:00https://btctranscripts.com/es/speakers/eric-lombrozo/2020-08-03T00:00:00+00:00https://btctranscripts.com/es/speakers/luke-dashjr/2020-08-03T00:00:00+00:00https://btctranscripts.com/es/speakers/andreas-antonopoulos/2020-04-08T00:00:00+00:00https://btctranscripts.com/es/andreas-antonopoulos/2020-04-08T00:00:00+00:00https://btctranscripts.com/es/tags/cartera/2020-04-08T00:00:00+00:00https://btctranscripts.com/es/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/2020-04-08T00:00:00+00:00https://btctranscripts.com/es/tags/seguridad/2020-04-08T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2020-02-24T00:00:00+00:00https://btctranscripts.com/es/categories/reuni%C3%B3n/2020-02-24T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/2020-02-24T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/speakers/andrew-poelstra/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/speakers/kalle-alm/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/tags/miniscript/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/tags/signet/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/categories/taller/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/speakers/andrew-chow/2020-02-06T00:00:00+00:00https://btctranscripts.com/es/speakers/antoine-riard/2020-02-06T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/2020-02-06T00:00:00+00:00https://btctranscripts.com/es/categories/conferencia/2020-02-06T00:00:00+00:00https://btctranscripts.com/es/tags/lightning/2020-02-06T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/2020-02-06T00:00:00+00:00https://btctranscripts.com/es/tags/ptlc/2020-02-06T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/2020-02-06T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/2020-01-21T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/2019-11-19T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/2019-10-14T00:00:00+00:00https://btctranscripts.com/es/baltic-honeybadger/2019-09-14T00:00:00+00:00https://btctranscripts.com/es/baltic-honeybadger/2019/2019-09-14T00:00:00+00:00https://btctranscripts.com/es/tags/cartera-hardware/2019-09-14T00:00:00+00:00https://btctranscripts.com/es/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/2019-09-14T00:00:00+00:00https://btctranscripts.com/es/speakers/rodolfo-novak/2019-09-14T00:00:00+00:00https://btctranscripts.com/es/tags/hardware-wallet/2019-08-22T00:00:00+00:00https://btctranscripts.com/es/tags/research/2019-08-22T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/2019-08-22T00:00:00+00:00https://btctranscripts.com/es/speakers/0xb10c/2019-08-04T00:00:00+00:00https://btctranscripts.com/es/tags/history/2019-08-04T00:00:00+00:00https://btctranscripts.com/es/misc/2019-08-04T00:00:00+00:00https://btctranscripts.com/es/misc/2019-08-04-incomplete_history/2019-08-04T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2019-06-29-hardware-wallets/2019-06-29T00:00:00+00:00https://btctranscripts.com/es/tags/security-problems/2019-06-29T00:00:00+00:00https://btctranscripts.com/es/speakers/stepan-snigirev/2019-06-29T00:00:00+00:00https://btctranscripts.com/es/chaincode-labs/2019-06-25T00:00:00+00:00https://btctranscripts.com/es/speakers/christian-decker/2019-06-25T00:00:00+00:00https://btctranscripts.com/es/tags/eltoo/2019-06-25T00:00:00+00:00https://btctranscripts.com/es/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/2019-06-25T00:00:00+00:00https://btctranscripts.com/es/chaincode-labs/chaincode-residency/2019-06-25T00:00:00+00:00https://btctranscripts.com/es/categories/residency/2019-06-25T00:00:00+00:00https://btctranscripts.com/es/tags/cryptography/2019-06-17T00:00:00+00:00https://btctranscripts.com/es/speakers/john-newbery/2019-06-17T00:00:00+00:00https://btctranscripts.com/es/tags/security/2019-06-17T00:00:00+00:00https://btctranscripts.com/es/chaincode-labs/chaincode-residency/2019-06-17-newbery-security-models/2019-06-17T00:00:00+00:00https://btctranscripts.com/es/speakers/jonas-nick/2019-06-09T00:00:00+00:00https://btctranscripts.com/es/lets-talk-bitcoin-podcast/2019-06-09T00:00:00+00:00https://btctranscripts.com/es/tags/schnorr-signatures/2019-06-09T00:00:00+00:00https://btctranscripts.com/es/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/2019-06-09T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-assumeutxo/2019-06-07T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-statechains/2019-06-07T00:00:00+00:00https://btctranscripts.com/es/tags/channel-factories/2019-06-07T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/2019-06-07T00:00:00+00:00https://btctranscripts.com/es/speakers/ruben-somsen/2019-06-07T00:00:00+00:00https://btctranscripts.com/es/tags/statechains/2019-06-07T00:00:00+00:00https://btctranscripts.com/es/tags/consensus-cleanup/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-great-consensus-cleanup/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/speakers/jeremy-rubin/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/speakers/matt-corallo/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/speakers/olaoluwa-osuntokun/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/tags/op_checksigfromstack/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/tags/op_checktemplateverify/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/tags/p2c/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/tags/quantum-resistance/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/tags/sighash_anyprevout/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/speakers/tadge-dryja/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-taproot/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/tags/utreexo/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-utreexo/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/2019-06-05T00:00:00+00:00https://btctranscripts.com/es/tags/wallet/2019-06-05T00:00:00+00:00https://btctranscripts.com/es/tags/capa-2/2019-05-27T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/2019-05-27T00:00:00+00:00https://btctranscripts.com/es/tags/investigaci%C3%B3n/2019-05-27T00:00:00+00:00https://btctranscripts.com/es/speakers/paul-sztorc/2019-05-27T00:00:00+00:00https://btctranscripts.com/es/tags/sidechains/2019-05-27T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2019/2019-02-07T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/2019-02-07T00:00:00+00:00https://btctranscripts.com/es/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/2019-02-01T00:00:00+00:00https://btctranscripts.com/es/tags/validaci%C3%B3n/2019-02-01T00:00:00+00:00https://btctranscripts.com/es/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/2018-10-23T00:00:00+00:00https://btctranscripts.com/es/tags/consensus-enforcement/2018-10-23T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-10T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-10-signmessage/2018-10-10T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-09-bitcoin-optech/2018-10-09T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-09-wallet-stuff/2018-10-09T00:00:00+00:00https://btctranscripts.com/es/tags/segwit/2018-10-09T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-utxo-accumulators-and-utreexo/2018-10-08T00:00:00+00:00https://btctranscripts.com/es/tags/proof-systems/2018-10-08T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-efficient-p2p-transaction-relay/2018-10-08T00:00:00+00:00https://btctranscripts.com/es/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/2018-10-07T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2018-08-17-richard-bondi-bitcoin-cli-regtest/2018-08-17T00:00:00+00:00https://btctranscripts.com/es/speakers/richard-bondi/2018-08-17T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-07T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/2018-03-07T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/2018-03-06T00:00:00+00:00https://btctranscripts.com/es/tags/covenios/2018-03-06T00:00:00+00:00https://btctranscripts.com/es/tags/adaptor-signatures/2018-03-05T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/2018-03-05T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/2018-03-05T00:00:00+00:00https://btctranscripts.com/es/tags/signature-aggregation/2018-03-05T00:00:00+00:00https://btctranscripts.com/es/misc/2017-09-20-ray-dillinger-if-id-known/2017-09-20T00:00:00+00:00https://btctranscripts.com/es/speakers/ray-dillinger/2017-09-20T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/2017-09-07T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-07T00:00:00+00:00https://btctranscripts.com/es/tags/mast/2017-09-07T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/2017-09-06T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/2017-09-05T00:00:00+00:00https://btctranscripts.com/es/tags/privacidad/2017-09-05T00:00:00+00:00https://btctranscripts.com/es/speakers/arvind-narayanan/2017-08-29T00:00:00+00:00https://btctranscripts.com/es/misc/2017-08-29-bitcoin-academic-pedigree/2017-08-29T00:00:00+00:00https://btctranscripts.com/es/speakers/jeremy-clark/2017-08-29T00:00:00+00:00https://btctranscripts.com/es/misc/2016-11-13-lopp-bitcoin-security-model/2016-11-13T00:00:00+00:00https://btctranscripts.com/es/speakers/jameson-lopp/2016-11-13T00:00:00+00:00https://btctranscripts.com/es/greg-maxwell/2016-01-29-a-trip-to-the-moon/2016-01-29T00:00:00+00:00https://btctranscripts.com/es/speakers/greg-maxwell/2016-01-29T00:00:00+00:00https://btctranscripts.com/es/greg-maxwell/2016-01-29T00:00:00+00:00https://btctranscripts.com/es/tags/scaling/2016-01-29T00:00:00+00:00https://btctranscripts.com/es/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/2014-10-08T00:00:00+00:00https://btctranscripts.com/es/bit-block-boom/2019/accumulating-bitcoin/https://btctranscripts.com/es/speakers/alena-vranova/https://btctranscripts.com/es/speakers/alex-petrov/https://btctranscripts.com/es/baltic-honeybadger/2018/opening/https://btctranscripts.com/es/baltic-honeybadger/2018/https://btctranscripts.com/es/bit-block-boom/https://btctranscripts.com/es/bit-block-boom/2019/https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-github/https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/https://btctranscripts.com/es/speakers/bruce-fenton/https://btctranscripts.com/es/speakers/bryan-bishop/https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/https://btctranscripts.com/es/categories/conference/https://btctranscripts.com/es/categories/conferenciae/https://btctranscripts.com/es/tags/consensus/https://btctranscripts.com/es/tags/contract-protocols/https://btctranscripts.com/es/tags/contratos-inteligentes/https://btctranscripts.com/es/speakers/cory-fields/https://btctranscripts.com/es/tags/custodia/https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-custody/https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/https://btctranscripts.com/es/baltic-honeybadger/2018/the-bitcoin-standard/https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-lightning/https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-maximalism-dissected/https://btctranscripts.com/es/speakers/elizabeth-stark/https://btctranscripts.com/es/speakers/eric-voskuil/https://btctranscripts.com/es/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/https://btctranscripts.com/es/speakers/florian-maier/https://btctranscripts.com/es/speakers/gavin-andresen/https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/gavinandresen/https://btctranscripts.com/es/speakers/giacomo-zucco/https://btctranscripts.com/es/baltic-honeybadger/2018/investing-in-bitcoin-businesses/https://btctranscripts.com/es/speakers/james-gatto/https://btctranscripts.com/es/speakers/jeremy-allaire/https://btctranscripts.com/es/baltic-honeybadger/2018/the-reserve-currency-fallacy/https://btctranscripts.com/es/baltic-honeybadger/2018/the-b-foundation/https://btctranscripts.com/es/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/https://btctranscripts.com/es/speakers/lawrence-nahum/https://btctranscripts.com/es/tags/libsecp256k1/https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/https://btctranscripts.com/es/speakers/marco-santori/https://btctranscripts.com/es/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/https://btctranscripts.com/es/speakers/matthew-mezinskis/https://btctranscripts.com/es/speakers/max-keidun/https://btctranscripts.com/es/needs/https://btctranscripts.com/es/speakers/nic-carter/https://btctranscripts.com/es/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/https://btctranscripts.com/es/baltic-honeybadger/2018/day-1-closing-panel/https://btctranscripts.com/es/baltic-honeybadger/2018/trading-panel/https://btctranscripts.com/es/speakers/patrick-murck/https://btctranscripts.com/es/speakers/pavol-rusnak/https://btctranscripts.com/es/speakers/peter-todd/https://btctranscripts.com/es/speakers/pierre-rochard/https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/https://btctranscripts.com/es/tags/reglamento/https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/research-and-development-goals/https://btctranscripts.com/es/speakers/roman-snitko/https://btctranscripts.com/es/speakers/saifedean-ammous/https://btctranscripts.com/es/tags/scalabilidad/https://btctranscripts.com/es/speakers/sean-neville/https://btctranscripts.com/es/speakers/sergej-kotliar/https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/https://btctranscripts.com/es/speakers/tone-vays/https://btctranscripts.com/es/speakers/vortex/https://btctranscripts.com/es/speakers/whalepanda/https://btctranscripts.com/es/speakers/yurii-rashkovskii/ \ No newline at end of file +https://btctranscripts.com/es/tags/assumeutxo/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-assumeutxo/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/tags/bitcoin-core/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/categories/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/categories/core-dev-tech/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/tags/developer-tools/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-fuzzing/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/speakers/james-obeirne/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/speakers/niklas-g%C3%B6gge/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/speakers/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/tags/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/2023-04-27T00:00:00+00:00https://btctranscripts.com/es/tags/build-system/2023-04-26T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-26-libbitcoin-kernel/2023-04-26T00:00:00+00:00https://btctranscripts.com/es/speakers/thecharlatan/2023-04-26T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-25-mempool-clustering/2023-04-25T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-asmap/2023-04-25T00:00:00+00:00https://btctranscripts.com/es/tags/cluster-mempool/2023-04-25T00:00:00+00:00https://btctranscripts.com/es/speakers/fabian-jahr/2023-04-25T00:00:00+00:00https://btctranscripts.com/es/speakers/pieter-wuille/2023-04-25T00:00:00+00:00https://btctranscripts.com/es/tags/security-enhancements/2023-04-25T00:00:00+00:00https://btctranscripts.com/es/speakers/suhas-daftuar/2023-04-25T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11T00:00:00+00:00https://btctranscripts.com/es/tags/fee-management/2022-10-11T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/2022-10-11T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/2022-10-10T00:00:00+00:00https://btctranscripts.com/es/tags/p2p/2022-10-10T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/2022-10-10T00:00:00+00:00https://btctranscripts.com/es/speakers/aaron-van-wirdum/2021-04-23T00:00:00+00:00https://btctranscripts.com/es/bitcoin-explained/taproot-activation-update/2021-04-23T00:00:00+00:00https://btctranscripts.com/es/bitcoin-explained/2021-04-23T00:00:00+00:00https://btctranscripts.com/es/categories/podcast/2021-04-23T00:00:00+00:00https://btctranscripts.com/es/speakers/sjors-provoost/2021-04-23T00:00:00+00:00https://btctranscripts.com/es/tags/taproot/2021-04-23T00:00:00+00:00https://btctranscripts.com/es/tags/soft-fork-activation/2021-03-12T00:00:00+00:00https://btctranscripts.com/es/bitcoin-explained/taproot-activation-speedy-trial/2021-03-12T00:00:00+00:00https://btctranscripts.com/es/bitcoin-explained/taproot-activation-lockinontimeout/2021-02-26T00:00:00+00:00https://btctranscripts.com/es/bitcoin-design/2020-08-20T00:00:00+00:00https://btctranscripts.com/es/tags/bitcoin-dise%C3%B1o/2020-08-20T00:00:00+00:00https://btctranscripts.com/es/bitcoin-design/misc/2020-08-20T00:00:00+00:00https://btctranscripts.com/es/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/2020-08-20T00:00:00+00:00https://btctranscripts.com/es/bitcoin-magazine/2020-08-03T00:00:00+00:00https://btctranscripts.com/es/bitcoin-magazine/2020-08-03-eric-lombrozo-luke-dashjr-taproot-activation/2020-08-03T00:00:00+00:00https://btctranscripts.com/es/speakers/eric-lombrozo/2020-08-03T00:00:00+00:00https://btctranscripts.com/es/speakers/luke-dashjr/2020-08-03T00:00:00+00:00https://btctranscripts.com/es/speakers/andreas-antonopoulos/2020-04-08T00:00:00+00:00https://btctranscripts.com/es/andreas-antonopoulos/2020-04-08T00:00:00+00:00https://btctranscripts.com/es/tags/cartera/2020-04-08T00:00:00+00:00https://btctranscripts.com/es/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/2020-04-08T00:00:00+00:00https://btctranscripts.com/es/tags/seguridad/2020-04-08T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2020-02-24T00:00:00+00:00https://btctranscripts.com/es/categories/reuni%C3%B3n/2020-02-24T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/2020-02-24T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/speakers/andrew-poelstra/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/speakers/kalle-alm/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/tags/miniscript/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/tags/signet/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/categories/taller/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/2020-02-07T00:00:00+00:00https://btctranscripts.com/es/speakers/andrew-chow/2020-02-06T00:00:00+00:00https://btctranscripts.com/es/speakers/antoine-riard/2020-02-06T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-andrew-chow-descriptor-wallets/2020-02-06T00:00:00+00:00https://btctranscripts.com/es/categories/conferencia/2020-02-06T00:00:00+00:00https://btctranscripts.com/es/tags/lightning/2020-02-06T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-andrew-poelstra-miniscript-intro/2020-02-06T00:00:00+00:00https://btctranscripts.com/es/tags/ptlc/2020-02-06T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-06-antoine-riard-taproot-lightning/2020-02-06T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/2020-01-21T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/2019-11-19T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/2019-10-14T00:00:00+00:00https://btctranscripts.com/es/baltic-honeybadger/2019-09-14T00:00:00+00:00https://btctranscripts.com/es/baltic-honeybadger/2019/2019-09-14T00:00:00+00:00https://btctranscripts.com/es/tags/cartera-hardware/2019-09-14T00:00:00+00:00https://btctranscripts.com/es/baltic-honeybadger/2019/2019-09-14-rodolfo-novak-coldcard-mk3/2019-09-14T00:00:00+00:00https://btctranscripts.com/es/speakers/rodolfo-novak/2019-09-14T00:00:00+00:00https://btctranscripts.com/es/tags/hardware-wallet/2019-08-22T00:00:00+00:00https://btctranscripts.com/es/tags/research/2019-08-22T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/2019-08-22T00:00:00+00:00https://btctranscripts.com/es/speakers/0xb10c/2019-08-04T00:00:00+00:00https://btctranscripts.com/es/tags/history/2019-08-04T00:00:00+00:00https://btctranscripts.com/es/misc/2019-08-04T00:00:00+00:00https://btctranscripts.com/es/misc/2019-08-04-incomplete_history/2019-08-04T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2019-06-29-hardware-wallets/2019-06-29T00:00:00+00:00https://btctranscripts.com/es/tags/security-problems/2019-06-29T00:00:00+00:00https://btctranscripts.com/es/speakers/stepan-snigirev/2019-06-29T00:00:00+00:00https://btctranscripts.com/es/chaincode-labs/2019-06-25T00:00:00+00:00https://btctranscripts.com/es/speakers/christian-decker/2019-06-25T00:00:00+00:00https://btctranscripts.com/es/tags/eltoo/2019-06-25T00:00:00+00:00https://btctranscripts.com/es/chaincode-labs/chaincode-residency/2019-06-25-christian-decker-eltoo/2019-06-25T00:00:00+00:00https://btctranscripts.com/es/chaincode-labs/chaincode-residency/2019-06-25T00:00:00+00:00https://btctranscripts.com/es/categories/residency/2019-06-25T00:00:00+00:00https://btctranscripts.com/es/tags/cryptography/2019-06-17T00:00:00+00:00https://btctranscripts.com/es/speakers/john-newbery/2019-06-17T00:00:00+00:00https://btctranscripts.com/es/tags/security/2019-06-17T00:00:00+00:00https://btctranscripts.com/es/chaincode-labs/chaincode-residency/2019-06-17-newbery-security-models/2019-06-17T00:00:00+00:00https://btctranscripts.com/es/speakers/jonas-nick/2019-06-09T00:00:00+00:00https://btctranscripts.com/es/lets-talk-bitcoin-podcast/2019-06-09T00:00:00+00:00https://btctranscripts.com/es/tags/schnorr-signatures/2019-06-09T00:00:00+00:00https://btctranscripts.com/es/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/2019-06-09T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-assumeutxo/2019-06-07T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-statechains/2019-06-07T00:00:00+00:00https://btctranscripts.com/es/tags/channel-factories/2019-06-07T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/2019-06-07T00:00:00+00:00https://btctranscripts.com/es/speakers/ruben-somsen/2019-06-07T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/2019-06-07T00:00:00+00:00https://btctranscripts.com/es/tags/statechains/2019-06-07T00:00:00+00:00https://btctranscripts.com/es/tags/consensus-cleanup/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-great-consensus-cleanup/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/speakers/jeremy-rubin/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/speakers/matt-corallo/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/speakers/olaoluwa-osuntokun/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/tags/op_checksigfromstack/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/tags/op_checktemplateverify/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/tags/p2c/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/tags/quantum-resistance/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/tags/sighash_anyprevout/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/speakers/tadge-dryja/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-taproot/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/tags/utreexo/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-utreexo/2019-06-06T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/2019-06-05T00:00:00+00:00https://btctranscripts.com/es/tags/wallet/2019-06-05T00:00:00+00:00https://btctranscripts.com/es/tags/capa-2/2019-05-27T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2019-05-27-drivechain-paul-sztorc/2019-05-27T00:00:00+00:00https://btctranscripts.com/es/tags/investigaci%C3%B3n/2019-05-27T00:00:00+00:00https://btctranscripts.com/es/speakers/paul-sztorc/2019-05-27T00:00:00+00:00https://btctranscripts.com/es/tags/sidechains/2019-05-27T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2019/2019-02-07T00:00:00+00:00https://btctranscripts.com/es/advancing-bitcoin/2019/2019-02-07-matt-corallo-rust-lightning/2019-02-07T00:00:00+00:00https://btctranscripts.com/es/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/2019-02-01T00:00:00+00:00https://btctranscripts.com/es/tags/validaci%C3%B3n/2019-02-01T00:00:00+00:00https://btctranscripts.com/es/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/2018-10-23T00:00:00+00:00https://btctranscripts.com/es/tags/consensus-enforcement/2018-10-23T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-10T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-10-signmessage/2018-10-10T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-09-bitcoin-optech/2018-10-09T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-09-wallet-stuff/2018-10-09T00:00:00+00:00https://btctranscripts.com/es/tags/segwit/2018-10-09T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-utxo-accumulators-and-utreexo/2018-10-08T00:00:00+00:00https://btctranscripts.com/es/tags/proof-systems/2018-10-08T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-efficient-p2p-transaction-relay/2018-10-08T00:00:00+00:00https://btctranscripts.com/es/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/2018-10-07T00:00:00+00:00https://btctranscripts.com/es/austin-bitcoin-developers/2018-08-17-richard-bondi-bitcoin-cli-regtest/2018-08-17T00:00:00+00:00https://btctranscripts.com/es/speakers/richard-bondi/2018-08-17T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-07T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/2018-03-07T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/2018-03-06T00:00:00+00:00https://btctranscripts.com/es/tags/covenios/2018-03-06T00:00:00+00:00https://btctranscripts.com/es/tags/adaptor-signatures/2018-03-05T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/2018-03-05T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/2018-03-05T00:00:00+00:00https://btctranscripts.com/es/tags/signature-aggregation/2018-03-05T00:00:00+00:00https://btctranscripts.com/es/misc/2017-09-20-ray-dillinger-if-id-known/2017-09-20T00:00:00+00:00https://btctranscripts.com/es/speakers/ray-dillinger/2017-09-20T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/2017-09-07T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-07T00:00:00+00:00https://btctranscripts.com/es/tags/mast/2017-09-07T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/2017-09-06T00:00:00+00:00https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/2017-09-05T00:00:00+00:00https://btctranscripts.com/es/tags/privacidad/2017-09-05T00:00:00+00:00https://btctranscripts.com/es/speakers/arvind-narayanan/2017-08-29T00:00:00+00:00https://btctranscripts.com/es/misc/2017-08-29-bitcoin-academic-pedigree/2017-08-29T00:00:00+00:00https://btctranscripts.com/es/speakers/jeremy-clark/2017-08-29T00:00:00+00:00https://btctranscripts.com/es/misc/2016-11-13-lopp-bitcoin-security-model/2016-11-13T00:00:00+00:00https://btctranscripts.com/es/speakers/jameson-lopp/2016-11-13T00:00:00+00:00https://btctranscripts.com/es/greg-maxwell/2016-01-29-a-trip-to-the-moon/2016-01-29T00:00:00+00:00https://btctranscripts.com/es/speakers/greg-maxwell/2016-01-29T00:00:00+00:00https://btctranscripts.com/es/greg-maxwell/2016-01-29T00:00:00+00:00https://btctranscripts.com/es/tags/scaling/2016-01-29T00:00:00+00:00https://btctranscripts.com/es/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/2014-10-08T00:00:00+00:00https://btctranscripts.com/es/bit-block-boom/2019/accumulating-bitcoin/https://btctranscripts.com/es/speakers/alena-vranova/https://btctranscripts.com/es/speakers/alex-petrov/https://btctranscripts.com/es/baltic-honeybadger/2018/opening/https://btctranscripts.com/es/baltic-honeybadger/2018/https://btctranscripts.com/es/bit-block-boom/https://btctranscripts.com/es/bit-block-boom/2019/https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-github/https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/https://btctranscripts.com/es/speakers/bruce-fenton/https://btctranscripts.com/es/speakers/bryan-bishop/https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/https://btctranscripts.com/es/categories/conference/https://btctranscripts.com/es/categories/conferenciae/https://btctranscripts.com/es/tags/consensus/https://btctranscripts.com/es/tags/contract-protocols/https://btctranscripts.com/es/tags/contratos-inteligentes/https://btctranscripts.com/es/speakers/cory-fields/https://btctranscripts.com/es/tags/custodia/https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-custody/https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/https://btctranscripts.com/es/baltic-honeybadger/2018/the-bitcoin-standard/https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-lightning/https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-maximalism-dissected/https://btctranscripts.com/es/speakers/elizabeth-stark/https://btctranscripts.com/es/speakers/eric-voskuil/https://btctranscripts.com/es/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/https://btctranscripts.com/es/speakers/florian-maier/https://btctranscripts.com/es/speakers/gavin-andresen/https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/gavinandresen/https://btctranscripts.com/es/speakers/giacomo-zucco/https://btctranscripts.com/es/baltic-honeybadger/2018/investing-in-bitcoin-businesses/https://btctranscripts.com/es/speakers/james-gatto/https://btctranscripts.com/es/speakers/jeremy-allaire/https://btctranscripts.com/es/baltic-honeybadger/2018/the-reserve-currency-fallacy/https://btctranscripts.com/es/baltic-honeybadger/2018/the-b-foundation/https://btctranscripts.com/es/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/https://btctranscripts.com/es/speakers/lawrence-nahum/https://btctranscripts.com/es/tags/libsecp256k1/https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/https://btctranscripts.com/es/speakers/marco-santori/https://btctranscripts.com/es/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/https://btctranscripts.com/es/speakers/matthew-mezinskis/https://btctranscripts.com/es/speakers/max-keidun/https://btctranscripts.com/es/needs/https://btctranscripts.com/es/speakers/nic-carter/https://btctranscripts.com/es/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/https://btctranscripts.com/es/baltic-honeybadger/2018/day-1-closing-panel/https://btctranscripts.com/es/baltic-honeybadger/2018/trading-panel/https://btctranscripts.com/es/speakers/patrick-murck/https://btctranscripts.com/es/speakers/pavol-rusnak/https://btctranscripts.com/es/speakers/peter-todd/https://btctranscripts.com/es/speakers/pierre-rochard/https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/https://btctranscripts.com/es/tags/reglamento/https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/research-and-development-goals/https://btctranscripts.com/es/speakers/roman-snitko/https://btctranscripts.com/es/speakers/saifedean-ammous/https://btctranscripts.com/es/tags/scalabilidad/https://btctranscripts.com/es/speakers/sean-neville/https://btctranscripts.com/es/speakers/sergej-kotliar/https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/https://btctranscripts.com/es/speakers/tone-vays/https://btctranscripts.com/es/speakers/vortex/https://btctranscripts.com/es/speakers/whalepanda/https://btctranscripts.com/es/speakers/yurii-rashkovskii/ \ No newline at end of file diff --git a/es/status.json b/es/status.json index c27197d87d..c8664e8483 100644 --- a/es/status.json +++ b/es/status.json @@ -1 +1 @@ -{"existing":{"categories":["conference","conferencia","conferenciae","core-dev-tech","podcast","residency","reunión","taller"],"media":["https://www.youtube.com/watch?v=SHmEXPvN6t4","https://www.youtube.com/watch?v=oCPrjaw3YVI","https://www.youtube.com/watch?v=7ouVGgE75zg","https://www.youtube.com/watch?v=yQZb0RDyFCQ","\u003chttps://www.youtube.com/watch?v=p5nSibpfHYE\u003e","https://www.youtube.com/watch?v=xC25NzIjzog","https://www.youtube.com/watch?v=eTUuwASdUBE","https://www.advancingbitcoin.com/video/a-schnorr-taprooted-lightning,11/","https://youtu.be/2IpZWSWUIVE?t=23739","https://www.youtube.com/watch?v=rK0jUeHeDf0","https://www.youtube.com/watch?v=3ZjymCOmn_A","https://youtu.be/6gGcS4N5Rg4","https://www.youtube.com/watch?v=BH-qZhEZSrg","https://www.youtube.com/watch?v=w_To_bnXjvk","https://www.youtube.com/watch?v=3zNVDIz6Snw","https://www.youtube.com/watch?v=OrYDehC-8TU","https://www.youtube.com/watch?v=sbupEpL6-J4","https://www.youtube.com/watch?v=eDsK4OpB69Q","https://www.youtube.com/watch?v=66ZoGUAnY9s","https://www.youtube.com/watch?v=D2WXxgZ8h-0\u0026t=22160s","https://youtu.be/66ZoGUAnY9s?t=2181"],"speakers":["0xB10C","Aaron van Wirdum","Alena Vranova","Alex Petrov","Andreas Antonopoulos","Andrew Chow","Andrew Poelstra","Antoine Riard","Arvind Narayanan","Bruce Fenton","Bryan Bishop","Christian Decker","Cory Fields","Elizabeth Stark","Eric Lombrozo","Eric Voskuil","Fabian Jahr","Florian Maier","Gavin Andresen","Giacomo Zucco","Greg Maxwell","James Gatto","James O'Beirne","Jameson Lopp","Jeremy Allaire","Jeremy Clark","Jeremy Rubin","John Newbery","Jonas Nick","Kalle Alm","Lawrence Nahum","Luke Dashjr","Marco Santori","Matt Corallo","Matthew Mezinskis","Max Keidun","Nic Carter","Niklas Gögge","Olaoluwa Osuntokun","Patrick Murck","Paul Sztorc","Pavol Rusnak","Peter Todd","Pierre Rochard","Pieter Wuille","Ray Dillinger","Richard Bondi","Rodolfo Novak","Roman Snitko","Ruben Somsen","Saifedean Ammous","Sean Neville","Sergej Kotliar","Sjors Provoost","Stepan Snigirev","Suhas Daftuar","Tadge Dryja","thecharlatan","Tone Vays","Vortex","Whalepanda","Yurii Rashkovskii"],"tags":["adaptor-signatures","assumeutxo","bitcoin-core","bitcoin-diseño","build-system","capa-2","cartera","cartera-hardware","channel-factories","cluster-mempool","consensus","consensus-cleanup","consensus-enforcement","contract-protocols","contratos-inteligentes","covenios","cryptography","custodia","developer-tools","eltoo","fee-management","hardware-wallet","history","investigación","libsecp256k1","lightning","mast","miniscript","op_checksigfromstack","op_checktemplateverify","p2c","p2p","privacidad","proof-systems","ptlc","quantum-resistance","reglamento","research","scalabilidad","scaling","schnorr-signatures","security","security-enhancements","security-problems","seguridad","segwit","sidechains","sighash_anyprevout","signature-aggregation","signet","soft-fork-activation","statechains","taproot","utreexo","validación","wallet","acc","accidental-confiscation","addr-v2","anchor-outputs","annex","anonymity-networks","ark","asicboost","async-payments","amp","bech32","bip70-payment-protocol","block-explorers","block-withholding","bls-signatures","channel-announcements","channel-commitment-upgrades","channel-jamming-attacks","client-side-validation","cltv-expiry-delta","codex32","coin-selection","coinjoin","coinswap","compact-block-filters","compact-block-relay","countersign","covenants","cpfp-carve-out","cpfp","cisa","cve-2018-17144","cves","dandelion","default-minimum-transaction-relay-feerates","dlc","dual-funding","duplicate-transactions","ecash","eclipse-attacks","ephemeral-anchors","erlay","exfiltration-resistant-signing","expiration-floods","fee-estimation","fee-sniping","fee-sourcing","fee-sponsorship","free-relay","gap-limits","generic-signmessage","bip32","hold-invoices","htlc-endorsement","htlc","hwi","inbound-forwarding-fees","jit-channels","jit-routing","joinpools","kindred-rbf","large-channels","liquidity-advertisements","lnurl","low-r-grinding","matt","merkle-tree-vulnerabilities","minisketch","multipath-payments","multisignature","musig","offers","onion-messages","op-cat","op-checksigfromstack","op-checktemplateverify","op-codeseparator","out-of-band-fees","output-linking","descriptors","package-relay","payjoin","payment-batching","payment-probes","payment-secrets","peer-storage","pooled-mining","proof-of-payment","proof-of-reserves","psbt","redundant-overpayments","rv-routing","rbf","replacement-cycling","reproducible-builds","responsible-disclosures","side-channels","sighash-anyprevout","signer-delegation","silent-payments","simple-taproot-channels","simplicity","splicing","spontaneous-payments","stateless-invoices","static-channel-backups","submarine-swaps","tapscript","testnet","threshold-signature","time-warp","timelocks","trampoline-payments","transaction-bloom-filtering","transaction-origin-privacy","transaction-pinning","trimmed-htlc","unannounced-channels","uneconomical-outputs","v2-p2p-transport","vaults","v3-transaction-relay","wallet-labels","watchtowers","x-only-public-keys","zero-conf-channels"]},"missing":{"categories":["https://btctranscripts.com/es/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/","https://btctranscripts.com/es/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/","https://btctranscripts.com/es/misc/2019-08-04-incomplete_history/","https://btctranscripts.com/es/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/","https://btctranscripts.com/es/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/","https://btctranscripts.com/es/misc/2017-09-20-ray-dillinger-if-id-known/","https://btctranscripts.com/es/misc/2017-08-29-bitcoin-academic-pedigree/","https://btctranscripts.com/es/misc/2016-11-13-lopp-bitcoin-security-model/","https://btctranscripts.com/es/greg-maxwell/2016-01-29-a-trip-to-the-moon/","https://btctranscripts.com/es/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/"],"date":["https://btctranscripts.com/es/bit-block-boom/2019/accumulating-bitcoin/","https://btctranscripts.com/es/baltic-honeybadger/2018/opening/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-github/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-custody/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-bitcoin-standard/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-lightning/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-maximalism-dissected/","https://btctranscripts.com/es/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/gavinandresen/","https://btctranscripts.com/es/baltic-honeybadger/2018/investing-in-bitcoin-businesses/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-reserve-currency-fallacy/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-b-foundation/","https://btctranscripts.com/es/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/","https://btctranscripts.com/es/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/","https://btctranscripts.com/es/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/","https://btctranscripts.com/es/baltic-honeybadger/2018/day-1-closing-panel/","https://btctranscripts.com/es/baltic-honeybadger/2018/trading-panel/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/research-and-development-goals/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/"],"media":["https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-assumeutxo/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-fuzzing/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-26-libbitcoin-kernel/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-25-mempool-clustering/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-asmap/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/","https://btctranscripts.com/es/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/","https://btctranscripts.com/es/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/","https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/","https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/","https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/","https://btctranscripts.com/es/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/","https://btctranscripts.com/es/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/","https://btctranscripts.com/es/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/","https://btctranscripts.com/es/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/","https://btctranscripts.com/es/misc/2019-08-04-incomplete_history/","https://btctranscripts.com/es/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-assumeutxo/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-statechains/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-great-consensus-cleanup/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-taproot/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-utreexo/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-10-signmessage/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-09-bitcoin-optech/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-09-wallet-stuff/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-utxo-accumulators-and-utreexo/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-efficient-p2p-transaction-relay/","https://btctranscripts.com/es/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/","https://btctranscripts.com/es/misc/2017-09-20-ray-dillinger-if-id-known/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/","https://btctranscripts.com/es/misc/2017-08-29-bitcoin-academic-pedigree/","https://btctranscripts.com/es/misc/2016-11-13-lopp-bitcoin-security-model/","https://btctranscripts.com/es/greg-maxwell/2016-01-29-a-trip-to-the-moon/","https://btctranscripts.com/es/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-github/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-bitcoin-standard/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-lightning/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-maximalism-dissected/","https://btctranscripts.com/es/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/gavinandresen/","https://btctranscripts.com/es/baltic-honeybadger/2018/investing-in-bitcoin-businesses/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-b-foundation/","https://btctranscripts.com/es/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/","https://btctranscripts.com/es/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/","https://btctranscripts.com/es/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/","https://btctranscripts.com/es/baltic-honeybadger/2018/day-1-closing-panel/","https://btctranscripts.com/es/baltic-honeybadger/2018/trading-panel/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/research-and-development-goals/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/"],"speakers":["https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/","https://btctranscripts.com/es/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/","https://btctranscripts.com/es/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/","https://btctranscripts.com/es/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/","https://btctranscripts.com/es/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/","https://btctranscripts.com/es/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/","https://btctranscripts.com/es/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-09-bitcoin-optech/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-09-wallet-stuff/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-efficient-p2p-transaction-relay/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/","https://btctranscripts.com/es/baltic-honeybadger/2018/opening/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-github/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/gavinandresen/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/"],"tags":["https://btctranscripts.com/es/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/","https://btctranscripts.com/es/bit-block-boom/2019/accumulating-bitcoin/","https://btctranscripts.com/es/baltic-honeybadger/2018/opening/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-bitcoin-standard/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-maximalism-dissected/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/gavinandresen/","https://btctranscripts.com/es/baltic-honeybadger/2018/investing-in-bitcoin-businesses/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-reserve-currency-fallacy/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-b-foundation/","https://btctranscripts.com/es/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/","https://btctranscripts.com/es/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/","https://btctranscripts.com/es/baltic-honeybadger/2018/trading-panel/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/"],"transcript_by":["https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-assumeutxo/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-fuzzing/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-26-libbitcoin-kernel/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-25-mempool-clustering/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-asmap/","https://btctranscripts.com/es/misc/2019-08-04-incomplete_history/","https://btctranscripts.com/es/misc/2017-09-20-ray-dillinger-if-id-known/","https://btctranscripts.com/es/misc/2017-08-29-bitcoin-academic-pedigree/","https://btctranscripts.com/es/misc/2016-11-13-lopp-bitcoin-security-model/","https://btctranscripts.com/es/greg-maxwell/2016-01-29-a-trip-to-the-moon/"]},"needs":{},"transcripts":{"en":90,"es":0,"pt":0,"zh":1}} \ No newline at end of file +{"existing":{"categories":["conference","conferencia","conferenciae","core-dev-tech","podcast","residency","reunión","taller"],"media":["https://www.youtube.com/watch?v=SHmEXPvN6t4","https://www.youtube.com/watch?v=oCPrjaw3YVI","https://www.youtube.com/watch?v=7ouVGgE75zg","https://www.youtube.com/watch?v=yQZb0RDyFCQ","\u003chttps://www.youtube.com/watch?v=p5nSibpfHYE\u003e","https://www.youtube.com/watch?v=xC25NzIjzog","https://www.youtube.com/watch?v=eTUuwASdUBE","https://www.advancingbitcoin.com/video/a-schnorr-taprooted-lightning,11/","https://youtu.be/2IpZWSWUIVE?t=23739","https://www.youtube.com/watch?v=rK0jUeHeDf0","https://www.youtube.com/watch?v=3ZjymCOmn_A","https://youtu.be/6gGcS4N5Rg4","https://www.youtube.com/watch?v=BH-qZhEZSrg","https://www.youtube.com/watch?v=w_To_bnXjvk","https://www.youtube.com/watch?v=3zNVDIz6Snw","https://www.youtube.com/watch?v=OrYDehC-8TU","https://www.youtube.com/watch?v=sbupEpL6-J4","https://www.youtube.com/watch?v=eDsK4OpB69Q","https://www.youtube.com/watch?v=66ZoGUAnY9s","https://www.youtube.com/watch?v=D2WXxgZ8h-0\u0026t=22160s","https://youtu.be/66ZoGUAnY9s?t=2181"],"speakers":["0xB10C","Aaron van Wirdum","Alena Vranova","Alex Petrov","Andreas Antonopoulos","Andrew Chow","Andrew Poelstra","Antoine Riard","Arvind Narayanan","Bruce Fenton","Bryan Bishop","Christian Decker","Cory Fields","Elizabeth Stark","Eric Lombrozo","Eric Voskuil","Fabian Jahr","Florian Maier","Gavin Andresen","Giacomo Zucco","Greg Maxwell","James Gatto","James O'Beirne","Jameson Lopp","Jeremy Allaire","Jeremy Clark","Jeremy Rubin","John Newbery","Jonas Nick","Kalle Alm","Lawrence Nahum","Luke Dashjr","Marco Santori","Matt Corallo","Matthew Mezinskis","Max Keidun","Nic Carter","Niklas Gögge","Olaoluwa Osuntokun","Patrick Murck","Paul Sztorc","Pavol Rusnak","Peter Todd","Pierre Rochard","Pieter Wuille","Ray Dillinger","Richard Bondi","Rodolfo Novak","Roman Snitko","Ruben Somsen","Saifedean Ammous","Sean Neville","Sergej Kotliar","Sjors Provoost","Stepan Snigirev","Suhas Daftuar","Tadge Dryja","thecharlatan","Tone Vays","Vortex","Whalepanda","Yurii Rashkovskii"],"tags":["adaptor-signatures","assumeutxo","bitcoin-core","bitcoin-diseño","build-system","capa-2","cartera","cartera-hardware","channel-factories","cluster-mempool","consensus","consensus-cleanup","consensus-enforcement","contract-protocols","contratos-inteligentes","covenios","cryptography","custodia","developer-tools","eltoo","fee-management","hardware-wallet","history","investigación","libsecp256k1","lightning","mast","miniscript","op_checksigfromstack","op_checktemplateverify","p2c","p2p","privacidad","proof-systems","ptlc","quantum-resistance","reglamento","research","scalabilidad","scaling","schnorr-signatures","security","security-enhancements","security-problems","seguridad","segwit","sidechains","sighash_anyprevout","signature-aggregation","signet","soft-fork-activation","statechains","taproot","utreexo","validación","wallet","acc","accidental-confiscation","addr-v2","anchor-outputs","annex","anonymity-networks","ark","asicboost","async-payments","amp","bech32","bip70-payment-protocol","block-explorers","block-withholding","bls-signatures","channel-announcements","channel-commitment-upgrades","channel-jamming-attacks","client-side-validation","cltv-expiry-delta","codex32","coin-selection","coinjoin","coinswap","compact-block-filters","compact-block-relay","countersign","covenants","cpfp-carve-out","cpfp","cisa","cve-2018-17144","cves","dandelion","default-minimum-transaction-relay-feerates","dlc","dual-funding","duplicate-transactions","ecash","eclipse-attacks","ephemeral-anchors","erlay","exfiltration-resistant-signing","expiration-floods","fee-estimation","fee-sniping","fee-sourcing","fee-sponsorship","free-relay","gap-limits","generic-signmessage","bip32","hold-invoices","htlc-endorsement","htlc","hwi","inbound-forwarding-fees","jit-channels","jit-routing","joinpools","kindred-rbf","large-channels","liquidity-advertisements","lnurl","low-r-grinding","matt","merkle-tree-vulnerabilities","minisketch","multipath-payments","multisignature","musig","offers","onion-messages","op-cat","op-checksigfromstack","op-checktemplateverify","op-codeseparator","out-of-band-fees","output-linking","descriptors","package-relay","payjoin","payment-batching","payment-probes","payment-secrets","peer-storage","pooled-mining","proof-of-payment","proof-of-reserves","psbt","redundant-overpayments","rv-routing","rbf","replacement-cycling","reproducible-builds","responsible-disclosures","side-channels","sighash-anyprevout","signer-delegation","silent-payments","simple-taproot-channels","simplicity","splicing","spontaneous-payments","stateless-invoices","static-channel-backups","submarine-swaps","tapscript","testnet","threshold-signature","time-warp","timelocks","trampoline-payments","transaction-bloom-filtering","transaction-origin-privacy","transaction-pinning","trimmed-htlc","unannounced-channels","uneconomical-outputs","v2-p2p-transport","vaults","v3-transaction-relay","wallet-labels","watchtowers","x-only-public-keys","zero-conf-channels"]},"missing":{"categories":["https://btctranscripts.com/es/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/","https://btctranscripts.com/es/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/","https://btctranscripts.com/es/misc/2019-08-04-incomplete_history/","https://btctranscripts.com/es/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/","https://btctranscripts.com/es/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/","https://btctranscripts.com/es/misc/2017-09-20-ray-dillinger-if-id-known/","https://btctranscripts.com/es/misc/2017-08-29-bitcoin-academic-pedigree/","https://btctranscripts.com/es/misc/2016-11-13-lopp-bitcoin-security-model/","https://btctranscripts.com/es/greg-maxwell/2016-01-29-a-trip-to-the-moon/","https://btctranscripts.com/es/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/"],"date":["https://btctranscripts.com/es/bit-block-boom/2019/accumulating-bitcoin/","https://btctranscripts.com/es/baltic-honeybadger/2018/opening/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-github/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-custody/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-bitcoin-standard/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-lightning/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-maximalism-dissected/","https://btctranscripts.com/es/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/gavinandresen/","https://btctranscripts.com/es/baltic-honeybadger/2018/investing-in-bitcoin-businesses/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-reserve-currency-fallacy/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-b-foundation/","https://btctranscripts.com/es/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/","https://btctranscripts.com/es/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/","https://btctranscripts.com/es/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/","https://btctranscripts.com/es/baltic-honeybadger/2018/day-1-closing-panel/","https://btctranscripts.com/es/baltic-honeybadger/2018/trading-panel/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/research-and-development-goals/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/"],"media":["https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-assumeutxo/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-fuzzing/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-26-libbitcoin-kernel/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-25-mempool-clustering/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-asmap/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/","https://btctranscripts.com/es/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/","https://btctranscripts.com/es/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/","https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/","https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/","https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/","https://btctranscripts.com/es/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/","https://btctranscripts.com/es/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/","https://btctranscripts.com/es/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/","https://btctranscripts.com/es/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/","https://btctranscripts.com/es/misc/2019-08-04-incomplete_history/","https://btctranscripts.com/es/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-assumeutxo/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-statechains/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-great-consensus-cleanup/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-taproot/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-utreexo/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-10-signmessage/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-09-bitcoin-optech/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-09-wallet-stuff/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-utxo-accumulators-and-utreexo/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-efficient-p2p-transaction-relay/","https://btctranscripts.com/es/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/","https://btctranscripts.com/es/misc/2017-09-20-ray-dillinger-if-id-known/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/","https://btctranscripts.com/es/misc/2017-08-29-bitcoin-academic-pedigree/","https://btctranscripts.com/es/misc/2016-11-13-lopp-bitcoin-security-model/","https://btctranscripts.com/es/greg-maxwell/2016-01-29-a-trip-to-the-moon/","https://btctranscripts.com/es/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-github/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-bitcoin-standard/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-lightning/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-maximalism-dissected/","https://btctranscripts.com/es/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/gavinandresen/","https://btctranscripts.com/es/baltic-honeybadger/2018/investing-in-bitcoin-businesses/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-b-foundation/","https://btctranscripts.com/es/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/","https://btctranscripts.com/es/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/","https://btctranscripts.com/es/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/","https://btctranscripts.com/es/baltic-honeybadger/2018/day-1-closing-panel/","https://btctranscripts.com/es/baltic-honeybadger/2018/trading-panel/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/research-and-development-goals/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/"],"speakers":["https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/","https://btctranscripts.com/es/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/","https://btctranscripts.com/es/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/","https://btctranscripts.com/es/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/","https://btctranscripts.com/es/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/","https://btctranscripts.com/es/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/","https://btctranscripts.com/es/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-09-bitcoin-optech/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-09-wallet-stuff/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-efficient-p2p-transaction-relay/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/","https://btctranscripts.com/es/baltic-honeybadger/2018/opening/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-11-github/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/gavinandresen/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/"],"tags":["https://btctranscripts.com/es/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/","https://btctranscripts.com/es/bit-block-boom/2019/accumulating-bitcoin/","https://btctranscripts.com/es/baltic-honeybadger/2018/opening/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-bitcoin-standard/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-maximalism-dissected/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2015-02/gavinandresen/","https://btctranscripts.com/es/baltic-honeybadger/2018/investing-in-bitcoin-businesses/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-reserve-currency-fallacy/","https://btctranscripts.com/es/baltic-honeybadger/2018/the-b-foundation/","https://btctranscripts.com/es/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/","https://btctranscripts.com/es/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/","https://btctranscripts.com/es/baltic-honeybadger/2018/trading-panel/","https://btctranscripts.com/es/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/"],"transcript_by":["https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-assumeutxo/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-fuzzing/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-26-libbitcoin-kernel/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-25-mempool-clustering/","https://btctranscripts.com/es/bitcoin-core-dev-tech/2023-04/2023-04-27-asmap/","https://btctranscripts.com/es/misc/2019-08-04-incomplete_history/","https://btctranscripts.com/es/misc/2017-09-20-ray-dillinger-if-id-known/","https://btctranscripts.com/es/misc/2017-08-29-bitcoin-academic-pedigree/","https://btctranscripts.com/es/misc/2016-11-13-lopp-bitcoin-security-model/","https://btctranscripts.com/es/greg-maxwell/2016-01-29-a-trip-to-the-moon/"]},"needs":{},"transcripts":{"en":91,"es":0,"pt":0,"zh":1}} \ No newline at end of file diff --git a/es/tags/signet/index.html b/es/tags/signet/index.html index c8b89b7978..60fd12a659 100644 --- a/es/tags/signet/index.html +++ b/es/tags/signet/index.html @@ -2,4 +2,4 @@ \ No newline at end of file + \ No newline at end of file diff --git a/es/tags/signet/index.xml b/es/tags/signet/index.xml index 091ddd9292..c04f491c12 100644 --- a/es/tags/signet/index.xml +++ b/es/tags/signet/index.xml @@ -1,4 +1,6 @@ signet on Transcripciones de ₿itcoinhttps://btctranscripts.com/es/tags/signet/Recent content in signet on Transcripciones de ₿itcoinHugo -- gohugo.ioesFri, 07 Feb 2020 00:00:00 +0000Taller Signethttps://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/Fri, 07 Feb 2020 00:00:00 +0000https://btctranscripts.com/es/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/Tema: Taller Signet Localización: El avance de Bitcoin Vídeo: No se ha publicado ningún vídeo en línea -Preparémonos mkdir workspace cd workspace git clone https://github.com/bitcoin/bitcoin.git cd bitcoin git remote add kallewoof https://github.com/kallewoof/bitcoin.git git fetch kallewoof git checkout signet ./autogen.sh ./configure -C --disable-bench --disable-test --without-gui make -j5 Cuando intentes ejecutar la parte de configuración vas a tener algunos problemas si no tienes las dependencias. Si no tienes las dependencias busca en Google tu sistema operativo y &ldquo;Bitcoin build&rdquo;. \ No newline at end of file +Preparémonos mkdir workspace cd workspace git clone https://github.com/bitcoin/bitcoin.git cd bitcoin git remote add kallewoof https://github.com/kallewoof/bitcoin.git git fetch kallewoof git checkout signet ./autogen.sh ./configure -C --disable-bench --disable-test --without-gui make -j5 Cuando intentes ejecutar la parte de configuración vas a tener algunos problemas si no tienes las dependencias. Si no tienes las dependencias busca en Google tu sistema operativo y &ldquo;Bitcoin build&rdquo;.Signethttps://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/Fri, 07 Jun 2019 00:00:00 +0000https://btctranscripts.com/es/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2019-March/016734.html +https://twitter.com/kanzure/status/1136980462524608512 +Introducción Voy a hablar un poco de signet. ¿Alguien no sabe lo que es signet? La idea es tener una firma del bloque o del bloque anterior. La idea es que testnet está horriblemente roto para probar cosas, especialmente para probar cosas a largo plazo. Hay grandes reorgs en testnet. ¿Qué pasa con testnet con un ajuste de dificultad menos roto? Testnet es realmente para probar mineros. Uno de los objetivos es que quieras una falta de fiabilidad predecible y no una falta de fiabilidad que destroce el mundo. \ No newline at end of file diff --git a/status.json b/status.json index d371c19a24..80ceea8a95 100644 --- a/status.json +++ b/status.json @@ -1 +1 @@ -{"existing":{"categories":["club","conference","core-dev-tech","developer-tools","hackathon","meeting","meetup","podcast","residency","video","workshop"],"media":["https://www.youtube.com/watch?v=zOZRRyboaYo","https://www.youtube.com/watch?v=HvI7NPI_Pk0","https://podcasters.spotify.com/pod/show/bitcoinbrink/episodes/Discussing-0-21-0-Bitcoin-Core-Vulnerability-Disclosures-e2mm5sr","https://podcasters.spotify.com/pod/show/bitcoinbrink/episodes/Discussing-Pre-0-21-0-Bitcoin-Core-Vulnerability-Disclosures-e2ltlkr","https://bitcoinexplainedpodcast.com/@nado/episodes/episode-94-silent-payments-part-2","https://www.youtube.com/watch?v=NrrD6ufaSrM","https://bitcoinexplainedpodcast.com/@nado/episodes/episode-93-the-great-consensus-cleanup-revival-and-an-update-on-the-tornado-cash-and-samourai-wallet-arrests-5bbxi","https://www.youtube.com/watch?v=Qas090xjdGw","https://bitcoinexplainedpodcast.com/@nado/episodes/episode-92-bitcoin-core-27-0-c4wla","https://twitter.com/i/spaces/1mnxepjZboAJX","https://www.youtube.com/watch?v=zk_EEKeAFuY","https://www.youtube.com/watch?v=Cqmk2cZ2IjM","https://www.youtube.com/watch?v=rCQKqe2XCqI","https://bitcoinexplainedpodcast.com/@nado/episodes/episode-88-hashcash-and-bit-gold-a5cjn","https://bitcoinexplainedpodcast.com/@nado/episodes/episode-87-the-block-1-983-702-problem-s7s3j","https://www.youtube.com/watch?v=yq_cOVHr8Pg","https://www.youtube.com/watch?v=F6qPuhsM5Ng","https://www.youtube.com/watch?v=d1HIBE4fCmE","https://bitcoinexplainedpodcast.com/@nado/episodes/episode-86-ocean-tides-hktbg","https://bitcoinexplainedpodcast.com/@nado/episodes/episode-85-bitcoin-core-26-0-and-f2pool-s-ofac-compliant-mining-policy-ainlt","https://www.youtube.com/watch?v=o8tjsVdiPUI","https://www.youtube.com/watch?v=8Z79CeBw3Nc","https://podcasters.spotify.com/pod/show/bitcoinbrink/episodes/Sebastian-Falbesoner-on-Code-Review-and-BIP324-e2909ue","https://podcasters.spotify.com/pod/show/chaincode/episodes/Rusty-Russell-and-privacy-and-robustness-in-Lightning---episode-34-e27t6go","https://www.youtube.com/watch?v=4oCwbRCuF7I","https://www.youtube.com/watch?v=E_z4hjvVzoQ","https://podcasters.spotify.com/pod/show/chaincode/episodes/Elle-Mouton--Oliver-Gugger-and-Simple-Taproot-Channels---Episode-33-e2724sl","https://www.youtube.com/watch?v=5yPVp6vNHiY","https://www.youtube.com/watch?v=C-jpZePiAcQ","https://www.youtube.com/watch?v=TN2P9xwd6ZU","https://www.youtube.com/watch?v=OBt1nS14Ac4","https://podcasters.spotify.com/pod/show/chaincode/episodes/Alekos-Filini--Daniela-Brozzoni-and-the-Bitcoin-Development-Kit-BDK---Episode-32-e24m4o1","https://www.youtube.com/watch?v=SjLPbjs9LkI","https://www.youtube.com/watch?v=h4ReIIapN8Y","https://www.youtube.com/watch?v=M40yzuv6DNY","https://www.youtube.com/watch?v=IvfmfcAX9wU","https://www.youtube.com/watch?v=BsWR94cbZ3Y","https://www.youtube.com/watch?v=jvFdPwssv_E","https://www.youtube.com/watch?v=-nzVYVcdk9M","https://podcasters.spotify.com/pod/show/chaincode/episodes/Tadge-Dryja-and-Lightning-History-and-everything-else---Episode-31-e20udtf","https://www.youtube.com/watch?v=OFMU1xV5uQk","https://www.youtube.com/watch?v=SOKNRHyGRvQ","https://podcasters.spotify.com/pod/show/chaincode/episodes/Andrew-Chow-and-the-Bitcoin-Core-Wallet---Episode-30-e204vdj","https://stephanlivera.com/download-episode/6040/463.mp3","https://www.youtube.com/watch?v=gqINXwsR33g","https://www.youtube.com/watch?v=abUF4MQ7j1w","https://www.youtube.com/watch?v=4jO-FDiFw4U","https://stephanlivera.com/download-episode/6034/462.mp3","https://stephanlivera.com/download-episode/6025/461.mp3","https://www.youtube.com/watch?v=uOhkN4nefpI","https://podcasters.spotify.com/pod/show/chaincode/episodes/Greg-Sanders--SIGHASH_ANYPREVOUT--ephemeral-anchors-and-LN-symmetry-ELTOO---Episode-29-e1v1dc3","https://www.youtube.com/watch?v=LC3lZ9dMRoA","https://www.youtube.com/watch?v=Js-5PZi6Uow","https://podcasters.spotify.com/pod/show/chaincode/episodes/Sergi-Delgado-and-Watchtowers--Lightning-Privacy---Episode-28-e1uce42","https://www.youtube.com/watch?v=mwKN3jD8dmU","https://anchor.fm/s/7d083a4/podcast/play/64348045/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2023-1-1%2Ff7fafb12-9441-7d85-d557-e9e5d18ab788.mp3","https://www.youtube.com/watch?v=Nq6WxJ0PgJ4","https://www.youtube.com/watch?v=D5Q7yB_txkU","https://www.youtube.com/watch?v=2WBhDxtxtSI","https://www.youtube.com/watch?v=Nq6WxJ0PgJ4","https://www.youtube.com/watch?v=66W6_AVSxME","https://podcasters.spotify.com/pod/show/chaincode/episodes/Pieter-Wuille-and-Tim-Ruffing---Nesting--ROAST--Half-Aggregation--Adaptor-Signatures-part-2-e1sdgjf","https://podcasters.spotify.com/pod/show/chaincode/episodes/Pieter-Wuille-and-Tim-Ruffing--Schnorr--MuSig--FROST-and-more---Episode-26-e1sav0l","https://www.youtube.com/watch?v=khmLiM9xhwk","https://podcasters.spotify.com/pod/show/chaincode/episodes/Clara-Shikhelman-and-Sergei-Tikhomirov-and-Channel-Jamming-on-the-Lightning-Network---Episode-25-e1r78n4","https://stephanlivera.com/download-episode/5607/433.mp3","https://www.youtube.com/watch?v=Bduon80-4CE","https://podcasters.spotify.com/pod/show/chaincode/episodes/Josibake--the-Bitcoin-Core-wallet-and-wrangling-bitcoin-data---episode-24-e1piaje","https://www.youtube.com/watch?v=s9KMRWkcwtE","https://www.youtube.com/watch?v=f2soc95MWWY","https://www.youtube.com/watch?v=xmvxR0FTrVE","https://www.youtube.com/watch?v=CFsUpyrS51k","https://www.youtube.com/watch?v=3UfrB7_ZOx0","https://podcasters.spotify.com/pod/show/chaincode/episodes/Steve-Lee-and-Lightning-updates--Stratum-V2---Episode-23-e1ofl4j","https://www.youtube.com/watch?v=8L725ufc-58","https://www.youtube.com/watch?v=s8dCyjpfS5E","https://www.youtube.com/watch?v=TpyK_ayKlj0","https://www.youtube.com/watch?v=a61lUwlOF80","https://youtu.be/tWopcFzSTas?t=11604","https://www.youtube.com/watch?v=sUpITup2igE","https://www.youtube.com/watch?v=lQ0dETyS28o","https://www.youtube.com/watch?v=NYj80OGlWGg","https://www.youtube.com/watch?v=FVW6Hgt_meg","https://www.youtube.com/watch?v=hlTfA42b_uI","https://www.youtube.com/watch?v=s_I_Nj5GMgk","https://www.youtube.com/watch?v=42PMLaz7Avk","https://www.youtube.com/watch?v=e0u59hSsmio","https://podcasters.spotify.com/pod/show/chaincode/episodes/0xB10C--Tracepoints-and-monitoring-the-Bitcoin-network-e1jipel","https://podcasters.spotify.com/pod/show/chaincode/episodes/Gloria-Zhao-and-Package-Relay---Episode-21-e1j0ii3","https://podcasters.spotify.com/pod/show/chaincode/episodes/Martin-Zumsande-and-Address-Relay---Episode-20-e1if91d","https://www.youtube.com/watch?v=UIkvHzPIgRM","https://www.youtube.com/watch?v=kf48oPoiHX0","https://www.youtube.com/watch?v=Ua3W9p1Z_RA","https://www.youtube.com/watch?v=bMMG91sJXpM","https://www.youtube.com/watch?v=MdxIkH6GCBs","https://www.youtube.com/watch?v=NtLCL9ztEuQ","https://rumble.com/vz3i3u-frost-the-future-of-schnorr-multisignatures-on-bitcoin.html","https://www.youtube.com/watch?v=CB7HM-Hqi4o","https://www.youtube.com/watch?v=WoVPkmT3gjY","https://www.youtube.com/watch?v=wjACBRJDfxc","https://www.youtube.com/watch?v=GYO5nzq4QoI","https://vimeo.com/703273144","https://www.youtube.com/watch?v=Bn1CWsqt3VQ","https://www.youtube.com/watch?v=WsSa00gUvZw","https://www.youtube.com/watch?v=Uo3uzofPlX0","https://www.youtube.com/watch?v=8uM-v1pSFgs","https://www.youtube.com/watch?v=8RNYhwEQKxM","https://www.youtube.com/watch?v=fqhioVxqmig","https://www.youtube.com/watch?v=C7wG2ngayy8","https://podcasters.spotify.com/pod/show/chaincode/episodes/Sergei-Tikhomirov-and-Lightning-privacy---Episode-19-e1egh3e","https://www.youtube.com/watch?v=5nhN8QMtDmU","https://podcasters.spotify.com/pod/show/chaincode/episodes/Block-Building-with-Clara-and-Murch---Episode-18-e1dmitu","https://www.youtube.com/watch?v=2cp2FoUgAYM","https://www.youtube.com/watch?v=5pmfNOUQg_s?t=285","https://www.youtube.com/watch?v=0D4nvailvWc","https://www.youtube.com/watch?v=pi64CNFu8h4","https://www.youtube.com/watch?v=5KbY4IX0-NQ","https://www.youtube.com/watch?v=ZxrXkprwxUM","https://stephanlivera.com/download-episode/4129/324.mp3","https://www.youtube.com/watch?v=SPOESGI4xnw","https://podcasters.spotify.com/pod/show/bitcoinbrink/episodes/Mempool-Ancestors-and-Descendants-e1ald5e","https://www.youtube.com/watch?v=gOiKlx9a1xg","https://www.youtube.com/watch?v=-uJSdfo4z7c","https://stephanlivera.com/download-episode/4089/321.mp3","https://www.youtube.com/watch?v=fbWSQvJjKFs","https://www.youtube.com/watch?v=ZLhCnehAeeQ","https://www.youtube.com/watch?v=XmKfOCUdH8k","https://podcasters.spotify.com/pod/show/chaincode/episodes/Sanket-Kanjalkar-and-Miniscript---Episode-17-e1a4pmc","https://podcasters.spotify.com/pod/show/bitcoinbrink/episodes/Mempool-Policy-e182ul0","https://www.youtube.com/watch?v=MGv8rTB63Mk","https://www.youtube.com/watch?v=Ubp29_DJ5rM","https://www.youtube.com/watch?v=yXemwW73W5Q","https://www.youtube.com/watch?v=mVihRFrbsbc\u0026t=6470s","https://www.youtube.com/watch?v=m-HiVEFqFZk","https://www.youtube.com/watch?v=W-ajI5YleIo","https://www.youtube.com/watch?v=W-Ev_MZAdgA","https://www.youtube.com/watch?v=xrdhtQPHg2o","https://www.youtube.com/watch?v=JottwT-kEdg","https://www.youtube.com/watch?v=3NA3ojAgw9Y","https://podcasters.spotify.com/pod/show/chaincode/episodes/Pieter-Wuille--Amiti-Uttarwar-and-the-P2P-network---Episode-16-e19bgv7","https://www.youtube.com/watch?v=rWdUOB_NgOo","https://podcasters.spotify.com/pod/show/chaincode/episodes/Amiti-Uttarwar-and-the-P2P-network---Episode-15-e18v7oq","https://www.youtube.com/watch?v=utH_obtgeLY","https://stephanlivera.com/download-episode/3793/307.mp3","https://www.youtube.com/watch?v=RUhI0R4FMEo","https://www.youtube.com/watch?v=xm3BjAKjCXM","https://www.youtube.com/watch?v=TAEQ2D3Npjc","https://www.youtube.com/watch?v=Dzqj236cVHk","https://www.youtube.com/watch?v=LSP0p_IPUIM","https://www.youtube.com/watch?v=h6SkBwOCFsA","https://www.youtube.com/watch?v=KqKzOVH8W9g","https://www.youtube.com/watch?v=GAkLuZNsZzw","https://www.youtube.com/watch?v=kGM3DNtd_iw","https://www.youtube.com/watch?v=K03UDeE1PeE","https://www.youtube.com/watch?v=BRkSE00aj5k\u0026list=PLPwc75tPMdsixsuhwau82Q0IfxECo0z_E\u0026index=18","https://podcasters.spotify.com/pod/show/chaincode/episodes/Chaincode-Decoded-Blockchain---Episode-14-e11n7tl","https://www.youtube.com/watch?v=u-W1wz6UNms","https://stephanlivera.com/download-episode/3343/276.mp3","https://www.youtube.com/watch?v=OHx55vjX_Ig","https://www.youtube.com/watch?v=fxRKMUXoCeE","https://podcast.chaincode.com/2021/05/12/matt-corallo-13.html","https://www.youtube.com/watch?v=RRkiSbHyGvQ","https://podcasters.spotify.com/pod/show/chaincode/episodes/Chaincode-Decoded-Mempool---Episode-12-evn0q1","https://www.youtube.com/watch?v=SHmEXPvN6t4","https://podcasters.spotify.com/pod/show/chaincode/episodes/Chaincode-Decoded-Bech32m---Episode-11-ev1jnc","https://www.youtube.com/watch?v=Gq6vRnJnbBM","https://www.youtube.com/watch?v=rSsPViajzQQ","https://www.youtube.com/watch?v=JoGYnAS_j0g","https://www.youtube.com/watch?v=i_GxmNZjwhk","https://www.youtube.com/watch?v=xxxEST18_p0","https://www.youtube.com/watch?v=_ZDungWdxzk","https://www.youtube.com/watch?v=DsyMUzhfG34","https://stephanlivera.com/episode/260/","https://www.youtube.com/watch?v=rspXF6Gp3-g","https://www.youtube.com/watch?v=3P5sQwiwscI","https://www.youtube.com/watch?v=oCPrjaw3YVI","https://www.youtube.com/watch?v=TXyi-G1Snx4","https://www.youtube.com/watch?v=SY-v2chnS9s","https://www.youtube.com/watch?v=7ouVGgE75zg","https://www.youtube.com/watch?v=gqDB0e5irdQ","https://www.youtube.com/watch?v=58LrQ0Q89x0","https://www.youtube.com/watch?v=R1kF1rnLvM8","https://anchor.fm/tales-from-the-crypt/episodes/228-UASFs--BIP-148--BIP-91--and-Taproot-Activation-with-Matt-Corallo-eq7cif","https://www.youtube.com/watch?v=E9L1CRP3W8k","https://www.youtube.com/watch?v=HGrdiwqlKhU","https://www.youtube.com/watch?v=kM4912dv39o","https://www.youtube.com/watch?v=JZE_UlvBBBk","https://stephanlivera.com/download-episode/2832/242.mp3","https://www.youtube.com/watch?v=DRzDDFetS3E","https://www.youtube.com/watch?v=_qdhc5WLd2A","https://podcasters.spotify.com/pod/show/chaincode/episodes/Carl-Dong-and-Modularizing-the-Bitcoin-Consensus-Engine---Episode-10-enra84","https://www.youtube.com/watch?v=dricwvjkhV0","https://www.youtube.com/watch?v=Y5Gfli3x6rI","https://www.youtube.com/watch?v=I2ZmAPI3ebQ","https://www.youtube.com/watch?v=UK9Yykf2aA4","https://www.youtube.com/watch?v=yy6Mt5-fl0g","https://www.youtube.com/watch?v=hUFNqD3DWWQ","https://www.reddit.com/r/Bitcoin/comments/jp2fp3/opinion_regarding_security/gbhojor?utm_source=share\u0026utm_medium=web2x\u0026context=3","https://www.reddit.com/r/Bitcoin/comments/jlwxpq/why_do_you_think_coldcard_doesnt_support_altcoins/gasoyuj?utm_source=share\u0026utm_medium=web2x\u0026context=3","https://www.youtube.com/watch?v=sWK7aqPjQLI","https://stephanlivera.com/episode/222/","https://www.youtube.com/watch?v=S9pk_NqKCBE","https://www.youtube.com/watch?v=KRPtbq8_1is","https://stephanlivera.com/download-episode/2559/219.mp3","https://www.youtube.com/watch?v=TtPXYPJ5_eE","https://www.youtube.com/watch?v=AyjU0EJZjR8","https://stephanlivera.com/download-episode/2526/216.mp3","https://stephanlivera.com/episode/215/","https://www.youtube.com/watch?v=lGJaIbpf6bk","https://stephanlivera.com/download-episode/2480/211.mp3","https://stephanlivera.com/download-episode/2433/205.mp3","https://www.youtube.com/watch?v=b0AiucAuX3E","https://stephanlivera.com/episode/200/","https://stephanlivera.com/download-episode/2396/200.mp3","https://stephanlivera.com/episode/199/","https://stephanlivera.com/download-episode/2385/199.mp3","https://www.youtube.com/watch?v=yQZb0RDyFCQ","https://www.youtube.com/watch?v=z84_5yhy8fs","https://stephanlivera.com/episode/195/","https://www.youtube.com/watch?v=mT0t8Jm0m5E","https://www.youtube.com/watch?v=2GgabBbEYo0","https://www.youtube.com/watch?v=bPcguc108QM","https://www.reddit.com/r/Bitcoin/comments/hrlpnc/technical_taproot_why_activate/fyqbn8s?utm_source=share\u0026utm_medium=web2x\u0026context=3","https://www.youtube.com/watch?v=4vDuttlImPc","https://www.reddit.com/r/Bitcoin/comments/ho0t1a/what_are_bitcoin_developers_currently_working_on/fxhwqli/?context=3","https://www.youtube.com/watch?v=wzYqkxBoNhw","https://www.youtube.com/watch?v=u7l6rP49hIA","https://www.youtube.com/watch?v=1EqUi4xRbr0","https://www.youtube.com/watch?v=CojixIMgg3c","https://www.youtube.com/watch?v=8Op0Glp9Eoo","https://www.youtube.com/watch?v=uE3lLsf38O4","https://www.youtube.com/watch?v=Pqz7_Eqw9jM","https://stephanlivera.com/download-episode/2153/179.mp3","https://www.youtube.com/watch?v=B3wn6JC0aWc","https://www.youtube.com/watch?v=7CE4aiFxh10","https://www.youtube.com/watch?v=Vkq9CVxMclE","https://www.youtube.com/watch?v=34jMGiCAmQM","https://www.youtube.com/watch?v=IW08RJUpzw0","https://www.youtube.com/watch?v=TlCxpdNScCA","https://www.youtube.com/watch?v=8lUTbfO94mM","https://www.youtube.com/watch?v=hX86rKyNB8I","https://www.youtube.com/watch?v=kGQF3wtzr04","https://www.youtube.com/watch?v=6tHnYyaw0qw","https://stephanlivera.com/download-episode/1969/168.mp3","https://www.youtube.com/watch?v=xDTCT75VwvU","https://stephanlivera.com/download-episode/1955/167.mp3","https://www.youtube.com/watch?v=h34fUGuDjMg","https://www.youtube.com/watch?v=8TaY730YlMg","https://www.youtube.com/watch?v=pgErjQSQQsg","https://youtu.be/H-wH6mY9pZo?t=2549","https://www.youtube.com/watch?v=RZNCk-nyx_A","https://www.youtube.com/watch?v=p5nSibpfHYE","https://stephanlivera.com/download-episode/1909/164.mp3","https://www.youtube.com/watch?v=Y2mTjCldRAU","https://www.youtube.com/watch?v=0uPDDELGjdo","https://www.youtube.com/watch?v=1VtQBVauvhw","https://www.youtube.com/watch?v=sNLbg9BUV4Y","https://youtube.com/watch?v=JhZUItnyQ0k","https://stephanlivera.com/download-episode/1769/149.mp3","https://www.youtube.com/watch?v=knBHvzKsIOY","https://www.youtube.com/watch?v=bCZFAqB3bnU","https://www.advancingbitcoin.com/video/a-schnorr-taprooted-lightning,11/","https://www.youtube.com/watch?v=xC25NzIjzog","https://www.youtube.com/watch?v=eTUuwASdUBE","https://www.advancingbitcoin.com/video/signet-in-practice-integrating-signet-into-your-software,5/","https://www.youtube.com/watch?v=8mdfygEzQjE","https://www.youtube.com/watch?v=srkY1mYI0IQ","https://www.youtube.com/watch?v=_v1lECxNDiM","https://www.youtube.com/watch?v=SMvoGkxMyYs","https://www.youtube.com/watch?v=Lqcpk5o1Y2E","https://www.youtube.com/watch?v=s0XopkGcN9U","https://www.youtube.com/watch?v=Q2lXSRcacAo","https://www.youtube.com/watch?v=dVZDeEfSdcI","https://www.youtube.com/watch?v=S0C-50QTteA","https://www.youtube.com/watch?v=XDCQI7hrB58","https://stephanlivera.com/download-episode/1707/139.mp3","https://stephanlivera.com/episode/137/","https://stephanlivera.com/download-episode/1699/137.mp3","https://stephanlivera.com/download-episode/1685/134.mp3","https://stephanlivera.com/download-episode/1649/128.mp3","https://stephanlivera.com/download-episode/1630/125.mp3","https://www.youtube.com/watch?v=ZUWs00Anpaw","https://stephanlivera.com/download-episode/1614/123.mp3","https://stephanlivera.com/download-episode/1599/120.mp3","https://stephanlivera.com/download-episode/1595/119.mp3","https://www.youtube.com/watch?v=TE65I9E8Q5k","https://www.youtube.com/watch?v=q6a1On5pirk","https://www.youtube.com/watch?v=1E-KhLA6Gck","https://www.youtube.com/watch?v=Wq75pGWmMd4","https://www.youtube.com/watch?v=14GKUfxfPMU\u0026feature=youtu.be\u0026t=1201","https://www.youtube.com/watch?v=p8toOF-imk4","https://www.youtube.com/watch?v=Pn5rySgyTQ0","https://youtu.be/qKNEUfnYue0","https://www.youtube.com/watch?v=Wy5jpgmmqAg","https://www.reddit.com/r/Bitcoin/comments/ddddfl/comment/f2g9e7b/?utm_source=share\u0026utm_medium=web2x\u0026context=3","https://bitcoinops.org/en/schnorr-taproot-workshop/","https://youtu.be/2IpZWSWUIVE?t=23739","https://www.youtube.com/watch?v=Uh6Ywxrobzw\u0026t=4480s","https://www.youtube.com/watch?v=Uh6Ywxrobzw\u0026t=1022s","https://www.youtube.com/watch?v=Uh6Ywxrobzw\u0026t=2799s","https://www.youtube.com/watch?v=Uh6Ywxrobzw\u0026t=11607s","https://www.youtube.com/watch?v=Uh6Ywxrobzw\u0026t=7850s","https://www.youtube.com/watch?v=-gdfxNalDIc\u0026t=1752s","https://www.youtube.com/watch?v=YxsjdIl0034\u0026t=8723s","https://www.youtube.com/watch?v=YxsjdIl0034\u0026t=2453s","https://www.youtube.com/watch?v=-gdfxNalDIc\u0026t=5542s","https://www.youtube.com/watch?v=-gdfxNalDIc\u0026t=8538s","https://www.youtube.com/watch?v=tie0Gpq2eJI","https://www.youtube.com/watch?v=gr75ubfNQ20","https://www.youtube.com/watch?v=hqxuWFpQlqY","https://www.youtube.com/watch?v=8bea0bdoFG0","https://www.youtube.com/watch?v=j2l_Ut4k1qI","https://www.youtube.com/watch?v=btzLev5bO_M","https://www.youtube.com/watch?v=xlKQP9J88uA","https://youtu.be/1O-bhcbh9vE","https://www.youtube.com/watch?v=v4TXfwwz_VI","https://www.youtube.com/watch?v=r7Un8FZYlS4\u0026list=PLseHpvCI1BjAfUx8zjJXadlBh_eKV9zJi\u0026index=8","https://www.youtube.com/watch?v=6aPSCDAiqVI","https://www.youtube.com/watch?v=EdRm_mnoCWc","https://www.youtube.com/watch?v=XKatSGCZ-gE","https://stephanlivera.com/episode/97/","https://www.youtube.com/watch?v=TtPXYPJ5_eE","https://www.youtube.com/watch?v=fab4P3BIZxk","https://stephanlivera.com/download-episode/1348/94.mp3","https://stephanlivera.com/download-episode/1289/92.mp3","https://www.youtube.com/watch?v=eB_HkYb7Y2M","https://www.youtube.com/watch?v=rK0jUeHeDf0","https://youtu.be/PUDWGH_MvmQ","https://youtu.be/Ms2WwRzBdkM","https://youtu.be/ULVItljEiFE","https://www.youtube.com/watch?v=NT_dMqB1xuA","https://youtu.be/ZzSveBMtUGI","https://youtu.be/SoFlRCNdqDg","https://youtu.be/R5cSrftd8nc","https://www.youtube.com/watch?v=3ZjymCOmn_A","https://youtu.be/Og4TGERPZMY","https://youtu.be/D4kX0gR-H0Y","https://youtu.be/z5vEyvc2vrE","https://www.youtube.com/watch?v=wyri7cc83kQ","https://www.youtube.com/watch?v=P7I-C0_sijg","https://www.youtube.com/watch?v=j0V8elTzYAA","https://youtu.be/JgNgnwF9hfY","https://youtu.be/6gGcS4N5Rg4","https://www.youtube.com/watch?v=jOEq9PvN-7A","https://www.youtube.com/watch?v=StnOVBbIpD8","https://www.youtube.com/watch?v=mcJa1YvzrFs","https://www.youtube.com/watch?v=Mznn1uVyTUQ","https://www.youtube.com/watch?v=JdvVKRTMwz8","https://www.youtube.com/watch?v=BH-qZhEZSrg","https://www.whatbitcoindid.com/podcast/bitcoin-block-reorgs-explained-with-adam-back-and-bryan-bishop","https://youtu.be/zFN__b6ARH4?t=12523","https://youtu.be/mRl3c9ppO78","https://www.youtube.com/watch?v=k_z-FBAil6k","https://youtu.be/tJOI2i6h3HM","https://youtu.be/eGpa45y4_HQ","https://youtu.be/CyieujRFk3g?t=8077","https://youtu.be/CyieujRFk3g","https://youtu.be/wd-dNd2Wck4","https://youtu.be/OzpfiieV5C4","https://youtu.be/0MnuvKybuo0?t=1463","https://soundcloud.com/noded-bitcoin-podcast/noded-0490-with-andrew-poelstra","https://youtu.be/kk2dUD6QXgw","https://youtu.be/SCxaV2HCQ5o","https://youtu.be/A4i5cEI1jnc","https://www.youtube.com/watch?v=XkyPw2_l6YE","https://www.youtube.com/watch?v=P5PI5MZ_2yo","https://www.youtube.com/watch?v=sNB1N7FyMHA","https://www.youtube.com/watch?v=ctx-oAIhhSY\u0026list=PLC_AgDAr0m6QhwqPDrqMfjX64oHGmwDMk\u0026index=4","https://www.youtube.com/watch?v=2tyr05tLF4g\u0026list=PLC_AgDAr0m6QhwqPDrqMfjX64oHGmwDMk\u0026index=4","https://www.youtube.com/watch?v=sPgJqAdKkhY","https://www.youtube.com/watch?v=H6xZSRDXUiU\u0026feature=youtu.be","https://stephanlivera.com/episode/59/","https://stephanlivera.com/download-episode/1014/58.mp3","https://www.youtube.com/watch?v=0gc1DSk8wlw","https://stephanlivera.com/download-episode/975/52.mp3","https://vimeo.com/316301424","https://www.youtube.com/watch?v=w_To_bnXjvk","https://www.youtube.com/watch?v=0lGO5I74qJM","https://www.youtube.com/watch?v=j9Wvz7zI_Ac","https://www.youtube.com/watch?v=dN-1q8c50q0","https://www.youtube.com/watch?v=3zNVDIz6Snw","https://www.youtube.com/watch?v=HCd4fF9u664","https://www.youtube.com/watch?v=9mJV3dSs6kc","https://www.youtube.com/watch?v=QAqBRbbbMSw","https://www.youtube.com/watch?v=MTSwKzmMTbk","https://www.youtube.com/watch?v=ggvqmb7np9w","https://stephanlivera.com/download-episode/1276/91.mp3","https://stephanlivera.com/download-episode/955/48.mp3","https://www.youtube.com/watch?v=1iAfJnlGJ6c","https://www.youtube.com/watch?v=OhRPZs0cWwQ","https://www.youtube.com/watch?v=CWIskx9KmAg\u0026t=0s\u0026list=PLYLOctWdUBtYBle_aU4WWJJaTekm8bhct\u0026index=5","https://www.youtube.com/watch?v=AXeUZrS-8mE\u0026t=0s\u0026list=PLpLH33TRghT2jmuP9YQRo-e8gk969Q2F_\u0026index=10","https://www.youtube.com/watch?v=l8OLD7or0DA","https://www.youtube.com/watch?v=OrYDehC-8TU","https://www.youtube.com/watch?v=qX4Z3JY1094","https://www.youtube.com/watch?v=JhRIWc9zPjA","https://www.youtube.com/watch?v=HlPIB6jt6ww","https://youtu.be/HauP9F16mUM","https://youtu.be/8lMLo-7yF5k","https://www.youtube.com/watch?v=1R5DNUcCYRg","https://www.youtube.com/watch?v=nwSuctrzV7Y\u0026t=637s","https://www.youtube.com/watch?v=FI9cwksTrQs\u0026t=1025s","https://www.youtube.com/watch?v=IMzLa9B1_3E\u0026t=3520","https://www.youtube.com/watch?v=YgtF7psIKWg\u0026t=2256","https://www.youtube.com/watch?v=IMzLa9B1_3E\u0026t=1610","https://www.youtube.com/watch?v=YgtF7psIKWg\u0026t=3700","https://www.youtube.com/watch?v=IMzLa9B1_3E\u0026t=1610","https://www.youtube.com/watch?v=3mJURLD2XS8\u0026t=3623s","https://www.youtube.com/watch?v=3mJURLD2XS8\u0026t=1717s","https://www.youtube.com/watch?v=INku7GsxhXY","https://www.youtube.com/watch?v=ZJ2t84trKVo","https://www.youtube.com/watch?v=NedW6AhImKg","https://www.youtube.com/watch?v=WbSaGEfuRlw","https://www.youtube.com/watch?v=wtTQ_1WyUoY","https://www.youtube.com/watch?v=JnBOO1zjm4I","https://www.youtube.com/watch?v=6J5jd7wf6aI","https://www.youtube.com/watch?v=L_sI_tXmy2U","https://www.youtube.com/watch?v=ZrZlCpmcvBU","https://www.youtube.com/watch?v=3Y25x3yAfpA","https://www.youtube.com/watch?v=YslQUkiEMXc","https://www.youtube.com/watch?v=ZMzVIi1lgyw","https://www.youtube.com/watch?v=DcGm_4-ig1o","https://www.youtube.com/watch?v=OVvue2dXkJo","https://www.youtube.com/watch?v=nrYOMjVmqi8","https://www.youtube.com/watch?v=iJR9Lg1jyJg","https://www.youtube.com/watch?v=np-SCwkqVy4","https://www.youtube.com/watch?v=nNKP6lxo1RA","https://www.youtube.com/watch?v=h2bvOal1u5k","https://www.youtube.com/watch?v=KLvWfUKoz9s","https://www.youtube.com/watch?v=286EmFqGMb8","https://bitcointalk.org/index.php?topic=5035144.msg46080218#msg46080218","https://www.youtube.com/watch?v=D2WXxgZ8h-0\u0026t=22160s","https://www.youtube.com/watch?v=SUDkYbkcTsQ","https://youtu.be/lByQUr7zPr0","https://www.youtube.com/watch?v=uo58zmyXqFY","https://www.youtube.com/watch?v=sbupEpL6-J4","https://www.youtube.com/watch?v=Ysj2yobFMF4","https://www.youtube.com/watch?v=qzbdNefsA-0","https://www.youtube.com/watch?v=YSUVRj8iznU","https://www.youtube.com/watch?v=nmqniwbwCg0","https://www.youtube.com/watch?v=xHWxtmgQP94","https://www.youtube.com/watch?v=gXDR4tjaGQc","https://www.youtube.com/watch?v=QtB4YUneiEE","https://www.youtube.com/watch?v=QiySI4-MWww","https://www.youtube.com/watch?v=_1dcU70zhqs","https://www.youtube.com/watch?v=YS0MksuMl9k","https://www.youtube.com/watch?v=59Igv-zQE7Y","https://www.youtube.com/watch?v=CO2NXDWJa08","https://www.youtube.com/watch?v=SrE6KdBgI1o","https://www.youtube.com/watch?v=0UiMhpz9eLA","https://www.youtube.com/watch?v=1U-1xkhJeEo","https://www.youtube.com/watch?v=fjtmyaH6MG8","https://www.youtube.com/watch?v=A4l4waikDso","https://www.youtube.com/watch?v=mLZ7qVwKalE","https://www.youtube.com/watch?v=8dxpcgRIpIs","https://www.youtube.com/watch?v=jzoS0tPUAiQ\u0026t=3h36m","https://www.youtube.com/watch?v=jzoS0tPUAiQ\u0026t=15m10s","https://www.youtube.com/watch?v=PKzJktErUdk","https://www.youtube.com/watch?v=LXY0L8eeG3k","https://www.pscp.tv/w/1mnxerNaNkLKX","https://www.youtube.com/watch?v=iqxkO7C-cyk","https://www.youtube.com/watch?v=oTsjMz3DaLs","https://www.youtube.com/watch?v=V3f4yYVCxpk","https://www.youtube.com/watch?v=VOeUq3oR2fk","https://www.youtube.com/watch?v=VABppufTdpA","https://www.youtube.com/watch?v=E9sbWKbfyJU","https://www.youtube.com/watch?v=ovCBT1gyk9c","https://www.youtube.com/watch?v=EHIuuKCm53o","https://www.youtube.com/watch?v=3pd6xHjLbhs\u0026t=3785s","https://www.youtube.com/watch?v=3pd6xHjLbhs\u0026t=10020s","https://www.youtube.com/watch?v=3pd6xHjLbhs\u0026t=866s","https://www.youtube.com/watch?v=3pd6xHjLbhs\u0026t=8351s","https://www.youtube.com/watch?v=QkYXPJMqBNk\u0026t=4965s","https://www.youtube.com/watch?v=LDF8bOEqXt4\u0026t=8612s","https://www.youtube.com/watch?v=BPNs9EVxWrA\u0026t=12082s","https://www.youtube.com/watch?v=BPNs9EVxWrA\u0026t=3630s","https://www.youtube.com/watch?v=LDF8bOEqXt4\u0026t=3981s","https://www.youtube.com/watch?v=BPNs9EVxWrA\u0026t=5065s","https://www.youtube.com/watch?v=k-Cv8Q3zWNQ","https://www.youtube.com/watch?v=0WCaoGiAOHE\u0026t=32min9s","https://youtu.be/0WCaoGiAOHE?t=9000","https://www.youtube.com/watch?v=0WCaoGiAOHE\u0026t=1h58m3s","https://www.youtube.com/watch?v=0WCaoGiAOHE\u0026t=1m33s","https://www.youtube.com/watch?v=eCE2OzKIab8\u0026t=6h42m30s","https://www.youtube.com/watch?v=eCE2OzKIab8\u0026t=1h12m10s","https://www.youtube.com/watch?v=eCE2OzKIab8\u0026t=5h9m","https://www.youtube.com/watch?v=eCE2OzKIab8\u0026t=5m11s","https://www.youtube.com/watch?v=eCE2OzKIab8\u0026t=4h8m","https://www.youtube.com/watch?v=nSRoEeqYtJA","https://www.youtube.com/watch?v=52FVkHlCh7Y","https://www.youtube.com/watch?v=7FWKc8lM4Ek","https://letstalkbitcoin.com/blog/post/lets-talk-bitcoin-333-on-consensus-and-all-kinds-of-forks","http://web.archive.org/web/20171115183423/https://www.youtube.com/watch?v=LHPYNZ8i1cU\u0026feature=youtu.be\u0026t=1m","https://www.youtube.com/watch?v=yU3Sr07Qnxg","https://www.youtube.com/watch?v=NqiN9VFE4CU","https://www.youtube.com/watch?v=0mVOq1jaR1U\u0026t=2h22m11s","https://www.youtube.com/watch?v=0mVOq1jaR1U\u0026t=3h15m","https://www.youtube.com/watch?v=0mVOq1jaR1U\u0026t=56m20s","https://www.youtube.com/watch?v=0mVOq1jaR1U\u0026t=39m8s","https://www.youtube.com/watch?v=0mVOq1jaR1U\u0026feature=youtu.be\u0026t=1h20m","https://youtu.be/7BA7f5vk3jQ","https://www.youtube.com/watch?v=Eq_eY8iWrKI","https://www.youtube.com/watch?v=r7xN7K0OqaA","https://www.youtube.com/watch?v=xdxs7VJTqns","https://www.youtube.com/watch?v=TGE6jrVmt_I","https://letstalkbitcoin.com/blog/post/lets-talk-bitcoin-319-barnacles-of-consensus","https://soundcloud.com/elux-2/the-great-stakehodler-debate-lombroso-petrov-potter-ver","https://www.youtube.com/watch?v=_Z0ID-0DOnc\u0026feature=youtu.be\u0026t=2297","https://www.youtube.com/watch?v=_Z0ID-0DOnc\u0026t=10241s","https://www.youtube.com/watch?v=_Z0ID-0DOnc\u0026t=863","https://www.youtube.com/watch?v=_Z0ID-0DOnc\u0026t=8857s","https://www.youtube.com/watch?v=uO-1rQbdZuk\u0026t=6198s","https://www.youtube.com/watch?v=Gzg_u9gHc5Q\u0026t=1680s","https://www.youtube.com/watch?v=8BLWUUPfh2Q\u0026t=500s","https://www.youtube.com/watch?v=8BLWUUPfh2Q\u0026t=2196s","https://www.youtube.com/watch?v=8BLWUUPfh2Q\u0026t=5368s","https://www.youtube.com/watch?v=Gzg_u9gHc5Q\u0026t=164s","https://www.youtube.com/watch?v=8BLWUUPfh2Q\u0026t=3787s","https://www.youtube.com/watch?v=MGm54LZ1T50","http://web.archive.org/web/20200926001539/https://soundcloud.com/heryptohow/mimblewimble-andrew-poelstra-peter-wuille-brian-deery-and-chris-odom","https://www.youtube.com/watch?v=tLZc-NLmV20","https://www.youtube.com/watch?v=-lgYYz3y_hY","https://www.youtube.com/watch?v=HEZAlNBJjA0","https://www.youtube.com/watch?v=UVuUZm4l-ss\u0026t=24270s","https://www.youtube.com/watch?v=fst1IK_mrng\u0026t=1h29m38s","https://youtube.com/watch?v=aQ1--w4uEMM\u0026t=2443","https://www.youtube.com/watch?v=ivgxcEOyWNs\u0026t=1h40m20s","http://web.archive.org/web/20160704124220/https://www.youtube.com/watch?v=RguZ0_nmSPw","http://youtube.com/watch?v=TgjrS-BPWDQ\u0026t=2h02m06s","https://www.youtube.com/watch?v=TgjrS-BPWDQ\u0026t=10110s","https://www.youtube.com/watch?v=iKDC2DpzNbw\u0026t=770s","https://www.youtube.com/watch?v=gpJrGuZEJsY\u0026t=858s","https://www.youtube.com/watch?v=iKDC2DpzNbw\u0026t=2453s","https://youtube.com/watch?v=wYHyR2E5Pic","https://www.youtube.com/watch?v=gcQLWeFmpYg","https://www.youtube.com/watch?v=8WDOpzxpnTE\u0026list=PLgO7JBj821uGZTXEXBLckChu70kl7Celh\u0026index=21","https://s3-us-west-1.amazonaws.com/blkstrm/video/elements-gmaxwell.mp4","https://www.youtube.com/watch?v=2QH5EV_Io0E","https://www.youtube.com/watch?v=Gs9lJTRZCDc","https://www.youtube.com/watch?v=96ULlHhia_Q\u0026t=15308","https://www.youtube.com/watch?v=8zVzw912wPo","https://www.youtube.com/watch?v=jE_elgnIw3M","https://www.reddit.com/r/Bitcoin/comments/2rrxq7/on_why_010s_release_notes_say_we_have_reason_to","https://np.reddit.com/r/programming/comments/2rrc64/openssl_security_advisory_new_openssl_releases/cnilq2w/?context=3","https://www.youtube.com/watch?v=3dAdI3Gzodo","https://www.youtube.com/watch?v=fst1IK_mrng\u0026t=3h52m35s","https://www.youtube.com/watch?v=fst1IK_mrng\u0026t=4h27m53s","https://www.youtube.com/watch?v=eDsK4OpB69Q","https://www.youtube.com/watch?v=JlvZPSEFmNE","https://www.youtube.com/watch?v=SdeyEnv4FRU","https://www.youtube.com/watch?v=ivgxcEOyWNs\u0026t=2h25m20s","https://youtube.com/watch?v=aQ1--w4uEMM\u0026t=1121","https://www.youtube.com/watch?v=f33HlAvJUFw","https://youtu.be/eVerdR2hOMw","https://youtu.be/8B1fX2i4dMY","https://www.youtube.com/watch?v=mhAsnzidtZ8\u0026t=1346s","https://www.youtube.com/watch?v=SikWfFObBIg","https://youtu.be/5Fim6g2BMZI","https://www.youtube.com/watch?v=QWaCr_tKjRk","https://www.youtube.com/watch?v=fst1IK_mrng\u0026feature=youtu.be\u0026t=2h17m20s","https://www.youtube.com/watch?v=9mvm-tdxv7o","https://www.youtube.com/watch?v=MyxW8eCA9BI","https://www.youtube.com/watch?v=8BLWUUPfh2Q\u0026t=2h29m19","https://www.youtube.com/watch?v=gZjDKgR4dw8","https://www.youtube.com/watch?v=NadhhH_eQBQ","https://www.youtube.com/watch?v=TgjrS-BPWDQ\u0026t=6843s","https://youtu.be/YHieWJWwVbE","https://www.youtube.com/watch?v=LDF8bOEqXt4\u0026t=10570s","https://www.pscp.tv/w/1PlJQmRZWnZJE","https://www.youtube.com/watch?v=S2TgCUU_WDo","https://www.youtube.com/watch?v=FU-rA5dkTHI","https://www.youtube.com/watch?v=FU-rA5dkTHI","https://www.youtube.com/watch?v=9gdm6C_xnFI","https://www.youtube.com/watch?v=qEkEoRL3I00","https://www.youtube.com/watch?v=wiA1bT4ObVo","https://www.youtube.com/watch?v=bT4cKwBROno\u0026list=PLgO7JBj821uGZTXEXBLckChu70kl7Celh\u0026index=7","https://youtu.be/r8S3iELg9_U","https://www.youtube.com/watch?v=ZnvAYDEUVlg","https://www.youtube.com/watch?v=n5xS9liL8Sk","https://www.youtube.com/watch?v=BPNs9EVxWrA\u0026t=8400s","https://www.youtube.com/watch?v=B-3eZiZ5HPE","https://www.youtube.com/watch?v=UVuUZm4l-ss\u0026t=4h29m10s","https://www.youtube.com/watch?v=LA_nPzX1Mz8","https://www.youtube.com/watch?v=PBAuHv5cPl8","https://www.youtube.com/watch?v=i-0NUqIVVV4\u0026t=53m14s","https://www.youtube.com/watch?v=ivgxcEOyWNs\u0026t=30m35s","https://youtube.com/watch?v=qdghS32TeZU","https://www.youtube.com/watch?v=-gdfxNalDIc","https://www.youtube.com/watch?v=uO-1rQbdZuk\u0026t=4575s","https://www.youtube.com/watch?v=CGE8I8L7BAc","https://www.youtube.com/watch?v=orWfkdDWQzo","https://livestream.com/accounts/1973198/Blockchain2019","https://www.youtube.com/watch?v=sQOfnsW6PTY\u0026t=22540","https://www.youtube.com/watch?v=ABPOYFw9zAQ","https://www.youtube.com/watch?v=iwe1NxbX40A","https://www.youtube.com/watch?v=iUmacjDTrCU","https://www.youtube.com/watch?v=66ZoGUAnY9s","https://www.youtube.com/watch?v=fst1IK_mrng\u0026t=1h5m50s","https://www.youtube.com/watch?v=y8hJ0VTPE34\u0026t=13s","https://www.youtube.com/watch?v=dFUJmzcj0iw\u0026list=PLgO7JBj821uGZTXEXBLckChu70kl7Celh\u0026index=15","https://www.youtube.com/watch?v=NWG7HZVT00M","https://www.youtube.com/watch?v=Q9w9VCOrego","https://www.youtube.com/watch?v=ivgxcEOyWNs\u0026t=9m20s","https://www.youtube.com/watch?v=fst1IK_mrng\u0026t=36m","https://www.youtube.com/watch?v=Rm-p8rrR9c8","https://www.youtube.com/watch?v=J1CP7qbnpqA","https://www.youtube.com/watch?v=xrReq7V7oJU","https://www.youtube.com/watch?v=yWEbIkytDJs","https://www.youtube.com/watch?v=OxX_LFgdYa0","https://www.youtube.com/watch?v=3Hksieg5GdM\u0026t=1807s","https://youtu.be/66ZoGUAnY9s?t=2181","https://www.youtube.com/watch?v=QUB7U-R527g","https://www.youtube.com/watch?v=mztdh1J6Lpc","https://www.youtube.com/watch?t=5757\u0026v=3pd6xHjLbhs","https://www.youtube.com/watch?v=edRun-6ubCc","https://www.youtube.com/watch?v=fst1IK_mrng\u0026t=4h52m35s","https://www.youtube.com/watch?v=lIgjogLipvk","https://youtu.be/JJF5Gnro1GU","https://www.youtube.com/watch?v=ivgxcEOyWNs\u0026t=1h30s","https://www.youtube.com/watch?v=96ULlHhia_Q\u0026t=5037","https://www.youtube.com/watch?v=J4TKHuTmHsg","https://youtube.com/watch?v=aQ1--w4uEMM\u0026t=4133","https://www.youtube.com/watch?v=u3Mn27on03A"],"speakers":["0xB10C","Aaron van Wirdum","Adam Back","Adam Ficsor","Adam Fiscor","Adam Gibson","Adam Jonas","Adam Ludwin","Adlai Chandrasekhar","Aki Balogh","Akio Nakamura","Alan Reiner","Alberto Sonnino","Alejandro De La Torre","Alekos Filini","Alena Vranova","Alessandro Chiesa","Alex Bosworth","Alex Myers","Alex Petrov","Alex Zinder","Alexander Chepurnoy","Alexander Zaidelson","Alexandra Moxin","Alexei Zamyatin","Alicia Bendhan","Allen Piscitello","Amiti Uttarwar","Anant Tapadia","Andreas Antonopoulos","Andrew Chow","Andrew Miller","Andrew Poelstra","Andrew Stone","Andy Ofiesh","Anthony Potdevin","Anthony Ronning","Anthony Towns","Antoine Le Calvez","Antoine Poinsot","Antoine Riard","Anton Yemelyanov","Ari Juels","Ariel Gabizon","Arik Sosman","Arthur Gervais","Arvind Narayanan","Assimakis Kattis","Austin Hill","Ava Chow","Aviv Milner","Aviv Zohar","Baker Marquart","Balaji Srinivasan","Barnabás Bágyi","Barry Silbert","Bart Suichies","Bastien Teinturier","Ben Carman","Ben Fisch","Ben Kaufman","Ben Maurer","Benedikt Bünz","Benjamin Chan","Benjamin Lawsky","Benjamin Livshits","Bob McElrath","Bobby Cho","Bobby Lee","Boyma Fahnbulleh","Brad Peterson","Bram Cohen","Brandon Black","Brandon Goodell","Brett Seyler","Brian Deery","Brian Kelly","Brian Klein","Brian N. Levine","Brian O’Keefe","Britt Kelly","Bruce Fenton","Bryan Bishop","Burak Keceli","Byron Gibson","Caleb DeLisle","Calle","Calvin Kim","Carl Dong","Carla Kirk-Cohen","Casey Rodarmor","Cathie Yun","Charles Cascarilla","Charles Guillemet","Charlie Lee","Chelsea Komlo","Chris Belcher","Chris Church","Chris Odom","Chris Stewart","Chris Tse","Christian Decker","Christian Lewe","Christian Moss","Christoph Ono","Christopher Allen","Christopher Jeffrey","Clara Shikhelman","Come Plooy","Conner Fromknecht","Constance Choi","Cory Fields","Craig Raw","Dahlia Malkhi","Dan Boneh","Dan Robinson","Daniel Cline","Daniel Hinton","Daniel J. Bernstein","Daniel Lehnberg","Daniel Marquez","Daniel Perez","Daniel Robinson","Daniela Brozzoni","Daniele Micciancio","Dave Harding","Dave Levin","David Bailey","David Rutter","David Schwartz","David Tse","David Vorick","Dhruv","Dhruv Bansal","Doug Schepers","Duc V. Le","Dustin Trammell","Dusty Daemon","Dusty Dettmer","Ed Felten","Edward Budd","Elaine Ou","Elaine Shi","Eleftherios Kokoris-Kogias","Eli Ben-Sasson","Elichai Turkel","Elizabeth Crites","Elizabeth Stark","Elle Mouton","Emin Gun Sirer","Eran Tromer","Ergo","Eric Lombrozo","Eric Martindale","Eric Sirion","Eric Voskuil","Ethan Heilman","Fabian Jahr","Fabrice Drouin","Fan Zhang","Felix Maurer","Florian Maier","Florian Tramer","Gavin Andresen","Georgia Avarikioti","Georgios Konstantopoulos","Ghost43","Giacomo Zucco","Gideon Powell","Giulia Fanti","Giulio Malavolta","Gleb Naumenko","Gloria Zhao","Graham Krizek","Greg Maxwell","Greg Sanders","Harry Kalodner","Henry de Valence","Hutchins","Ian Lee","Ian Miers","Igor Korsakov","Ishaana Misra","Istvan Andras Seres","Ittai Abraham","Ittay Eyal","J. Christopher Giancarlo","Jack Dorsey","Jack Mallers","Jacob Leshno","James Chiang","James D'Angelo","James Gatto","James Hilliard","James O'Beirne","James Smith","Jameson Lopp","Jan Čapek","Jarl Fransson","Jason Potts","Jason Teutsch","Jeff Czyz","Jeff Garzik","Jeremy Allaire","Jeremy Rubin","Jeremy Wilson","Jerry Brito","Jerry Cuomo","Jesse Posner","Jihan Wu","Jim Posen","Jimmy Song","Jinglan Wang","Joachim Breitner","Joachim Neu","Joe Gerber","Joe Netti","John Cantrell","John Light","John Newbery","John Woeltz","Johnson Lau","Joi Ito","Jon Atack","Jonas Nick","Jonas Schnelli","Jonathan Bier","Jonathan Harvey Buschel","Jonathan Metzman","Jonathan Tomim","Joost Jager","Jorge Timón","Joseph Poon","Joshua Lim","Josibake","Jun Muai","Justin Camarena","Justin Moon","Juthica Chou","K3tan","Kalle Alm","Kalle Rosenbaum","Kanta Matsuura","Karl Floersch","Katherine Wu","Kathleen Breitman","Kenji Saito","Kevin Loaec","Kim Hamilton Duffy","Kostya Serebryany","Kris Merkel","Kristov Atlas","Kukks","Kulpreet Singh","Lata Varghese","Lawrence H. Summers","Lawrence Nahum","Leen AlShenibr","Lei Yang","Leigh Cuen","Lisa Neigut","Lloyd Fournier","Lous Parker","Lucas Ontivero","Luke Dashjr","Madars Virza","Mahnush Movahedi","Marco Falke","Marco Santori","Marek Olszewski","Mark Erhardt","Mark Erhart","Mark Friedenbach","Mark Wetjen","Marshall Long","Martin Lundfall","Martin Zumsande","Marty Bent","Matt Corallo","Matt Odell","Matt Weinberg","Matt Weiss","Matteo Maffei","Matthew Mezinskis","Maurice Herlihy","Max Hillebrand","Max Keidun","Megan Chen","Melanie Shapiro","Meltem Demirors","Meni Rosenfeld","Michael Flaxman","Michael Folkson","Michael Ford","Michael Goldstein","Michael Haase","Michael More","Michael Straka","Michael Walfish","Mikael Dubrovsky","Mike Schmidt","Miles Carlsten","Mitchell Dong","Mogashni","Mooly Sagiv","Mustafa Al-Bassam","Nadav Kohen","Nathan Wilcox","Neha Narula","Nic Carter","Nicholas Gregory","Nick Spooner","Nick Szabo","Nico Preti","Nicolas Bacca","Nicolas Dorier","Nicolas Gailly","Niklas Gögge","nixbitcoindev","NVK","Olaoluwa Osuntokun","Oleg Andreev","Oliver Gugger","Omer Shlomovits","Openoms","Or Sattath","Owen Kemeys","Parker Lewis","Patricia Estevao","Patrick McCorry","Patrick Murck","Patrick Strateman","Paul Sztorc","Paul Vigna","Pavel Moravec","Pavel Prihodko","Pavol Rusnak","Pedro Moreno-Sanchez","Pete Rizzo","Peter Rizun","Peter Todd","Phil Chen","Philip Glazman","Pierre Roberge","Pierre Rochard","Pieter Wuille","Pindar Wong","Prakash Santhana","Pramod Viswanath","Prastudy Fauzi","Quentin Le Sceller","Rachel Rybarczyk","Ranjit Kumaresan","Raphael","Rene Pickhardt","Ricardo Perez-Marco","Riccardo Casatta","Richard Bondi","Richard Myers","Richard Safier","Rijndael","Rob Hamilton","Robert Schwinker","Rodolfo Novak","Rodrigo Buenaventura","Roger Ver","Roman Snitko","Ron Paul","Ron Rivest","Rootzoll","Roy Sheinfeld","Ruben Somsen","Russell O’Connor","Rusty Russell","Ryan Selkis","Ryosuke Ushida","Saifedean Ammous","Salvatore Ingala","Samir Menon","Sandra Ro","Sanket Kanjalkar","Scott Manuel","Sean Neville","Sebastian Falbesoner","Sebastián Reca","Sergei Tikhomirov","Sergej Kotliar","Sergi Delgado","Sergi Delgado Segura","Sergio Lerner","Shafi Goldwasser","Shayan Eskandari","Shehzan Maredia","Shin'ichiro Matsuo","Simon","Simon Peffers","Sjors Provoost","Skot 9000","Soumya Basu","Sreeram Kannan","Stacy Herbert","Stefan Dziembowski","Stefano Lande","Stepan Snigirev","Stephan Livera","Stephanie Hurder","Stephen DeLorme","Steve Lee","Suhas Daftuar","Swanand Kadhe","Taariq Lewis","Tadge Dryja","Tarun Chitra","Thang N. Dinh","thecharlatan","Thomas Eizinger","Thomas Jestopher","Thomas Kerin","Thomas Voegtlin","Tim Roughgarden","Tim Ruffing","Tom Kirkpatrick","Tone Vays","Tony Giorgio","Tuur Demeester","Udi Wertheimer","Vitalik Buterin","Vivek","Vivek Bagaria","Vlad Zamfir","Vortex","Warren Togami","Wendy Seltzer","Whalepanda","Will Clark","Will O'Beirne","William Mougayar","Wiz","Wladimir van der Laan","Yashraj","Yonatan Sompolinsky","Yorke Rhodes","Yoshinori Hashimoto","Yurii Rashkovskii","Yuta Takanashi","Yuval Kogman","Zeta Avarikioti"],"tags":["adaptor-signatures","altcoin","altcoins","amp","anchor-outputs","anonymity-networks","ark","assumeutxo","bandwidth-reduction","bech32","bip32","bitcoin-core","bls-signatures","build-system","build-systems","c-lightning","career","channel-factories","channel-factory","cisa","client-side-validation","cluster-mempool","codex32","coin-selection","coinjoin","coinswap","compact-block-filters","compact-block-relay","consensus-cleanup","consensus-enforcement","contract-protocols","covenants","cpfp","cpfp-carve-out","cryptography","cves","dandelion","descriptors","developer-tools","dlc","dual-funding","ecash","eclipse-attacks","eltoo","ephemeral-anchors","erlay","ethereum","fee-management","generic-signmessage","hardware-wallet","hold-invoices","htlc","hwi","incentives","libsecp256k1","lightning","lightweight-client","lnd","lnurl","mast","mining","miniscript","minisketch","multiparty-channel","multipath-payments","multisignature","musig","offers","op-cat","op-checksigfromstack","op-checktemplateverify","op_checksigfromstack","op_checktemplateverify","output-linking","p2c","p2p","package-relay","pathfinding","payjoin","payment-batching","pooled-mining","privacy","privacy-enhancements","privacy-problems","proof-of-payment","proof-of-stake","proof-systems","psbt","ptlc","quantum-resistance","rbf","regulation","reproducible-builds","research","routing","rv-routing","scalability","schnorr-signatures","scripts-addresses","security","security-enhancements","security-problems","segwit","sidechains","sighash-anyprevout","sighash_anyprevout","signature-aggregation","signet","silent-payments","simple-taproot-channels","simplicity","soft-fork-activation","splicing","statechains","stratum-v2","submarine-swaps","taproot","tapscript","threshold-signature","timelocks","topology","trampoline-payments","transaction-pinning","transaction-relay-policy","trimmed-htlc","utreexo","ux","v2-p2p-transport","vaults","wallet","watchtowers","zero-conf-channels","acc","accidental-confiscation","addr-v2","annex","asicboost","async-payments","bip70-payment-protocol","block-explorers","block-withholding","channel-announcements","channel-commitment-upgrades","channel-jamming-attacks","cltv-expiry-delta","countersign","cve-2018-17144","default-minimum-transaction-relay-feerates","duplicate-transactions","exfiltration-resistant-signing","expiration-floods","fee-estimation","fee-sniping","fee-sourcing","fee-sponsorship","free-relay","gap-limits","htlc-endorsement","inbound-forwarding-fees","jit-channels","jit-routing","joinpools","kindred-rbf","large-channels","liquidity-advertisements","low-r-grinding","matt","merkle-tree-vulnerabilities","onion-messages","op-codeseparator","out-of-band-fees","payment-probes","payment-secrets","peer-storage","proof-of-reserves","redundant-overpayments","replacement-cycling","responsible-disclosures","side-channels","signer-delegation","spontaneous-payments","stateless-invoices","static-channel-backups","testnet","time-warp","transaction-bloom-filtering","transaction-origin-privacy","unannounced-channels","uneconomical-outputs","v3-transaction-relay","wallet-labels","x-only-public-keys"]},"missing":{"categories":["https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/the-state-of-bitcoin-core-development/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/making-bitcoin-more-private-with-cisa/","https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/covenants-part-2/","https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/silent-payments/","https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/covenants/","https://btctranscripts.com/lightning-specification/lightning-2024-01-15-specification-call/","https://btctranscripts.com/lightning-specification/2023-11-20-specification-call/","https://btctranscripts.com/lightning-specification/2023-11-06-specification-call/","https://btctranscripts.com/lightning-specification/2023-10-23-specification-call/","https://btctranscripts.com/lightning-specification/2023-09-25-specification-call/","https://btctranscripts.com/lightning-specification/2023-08-28-specification-call/","https://btctranscripts.com/lightning-specification/2023-08-14-specification-call/","https://btctranscripts.com/lightning-specification/2023-07-31-specification-call/","https://btctranscripts.com/lightning-specification/2023-07-17-specification-call/","https://btctranscripts.com/lightning-specification/2023-06-19-specification-call/","https://btctranscripts.com/lightning-specification/2023-06-05-specification-call/","https://btctranscripts.com/lightning-specification/2023-05-22-specification-call/","https://btctranscripts.com/lightning-specification/2023-05-08-specification-call/","https://btctranscripts.com/lightning-specification/2023-04-24-specification-call/","https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/fedimint/","https://btctranscripts.com/greg-maxwell/2022-05-05-covenants-bip119/","https://btctranscripts.com/misc/2022-04-12-carl-dong-libbitcoinkernel/","https://btctranscripts.com/munich-meetup/2021-02-21-daniela-brozzoni-stratumv2/","https://btctranscripts.com/greg-maxwell/2020-11-25-greg-maxwell-replacing-pgp/","https://btctranscripts.com/greg-maxwell/2020-11-05-greg-maxwell-yubikey-security/","https://btctranscripts.com/greg-maxwell/2020-11-01-greg-maxwell-hardware-wallets-altcoins/","https://btctranscripts.com/greg-maxwell/2020-10-26-greg-maxwell-bitcoin-core-github/","https://btctranscripts.com/greg-maxwell/2020-08-27-greg-maxwell-checkmultisig-bug/","https://btctranscripts.com/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/","https://btctranscripts.com/greg-maxwell/2020-07-20-greg-maxwell-taproot-pace/","https://btctranscripts.com/misc/2020-07-10-what-am-i-working-on/","https://btctranscripts.com/greg-maxwell/2020-07-05-greg-maxwell-useful-proof-of-work/","https://btctranscripts.com/greg-maxwell/2020-06-08-greg-maxwell-liquid-censorship-resistance/","https://btctranscripts.com/ruben-somsen/2020-05-11-ruben-somsen-succinct-atomic-swap/","https://btctranscripts.com/misc/2020-04-08-john-newbery-contracts-in-bitcoin/","https://btctranscripts.com/blockstream-webinars/2020-04-08-adam-back-simplicity/","https://btctranscripts.com/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/","https://btctranscripts.com/greg-maxwell/2019-10-04-majority-miner-attack/","https://btctranscripts.com/blockstream-webinars/2019-09-04-christian-decker-c-lightning-questions/","https://btctranscripts.com/blockstream-webinars/2019-07-31-rusty-russell-getting-started-with-c-lightning/","https://btctranscripts.com/misc/2019-02-09-mcelrath-on-chain-defense-in-depth/","https://btctranscripts.com/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/","https://btctranscripts.com/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/","https://btctranscripts.com/greg-maxwell/2018-09-23-greg-maxwell-bitcoin-core-testing/","https://btctranscripts.com/greg-maxwell/2018-09-23-greg-maxwell-multiple-implementations/","https://btctranscripts.com/andreas-antonopoulos/2018-08-30-andreas-antonopoulos-home-network-security/","https://btctranscripts.com/misc/2018-01-24-rusty-russell-future-bitcoin-tech-directions/","https://btctranscripts.com/greg-maxwell/2017-12-22-bech32-design/","https://btctranscripts.com/greg-maxwell/2017-11-27-gmaxwell-advances-in-block-propagation/","https://btctranscripts.com/greg-maxwell/2017-08-28-gmaxwell-deep-dive-bitcoin-core-v0.15/","https://btctranscripts.com/greg-maxwell/2017-04-28-gmaxwell-confidential-transactions/","https://btctranscripts.com/misc/2016-12-14-whalepool/","https://btctranscripts.com/greg-maxwell/2015-11-09-gmaxwell-mining-and-block-size-etc/","https://btctranscripts.com/greg-maxwell/2015-06-08-gmaxwell-sidechains-elements/","https://btctranscripts.com/greg-maxwell/2015-04-29-gmaxwell-bitcoin-selection-cryptography/","https://btctranscripts.com/greg-maxwell/2015-01-08-libsecp256k1-testing/","https://btctranscripts.com/greg-maxwell/2015-01-08-openssl-bug/","https://btctranscripts.com/misc/nydfs-bitlicense-lawsky-update/","https://btctranscripts.com/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/","https://btctranscripts.com/misc/bitcoin-adam3us-fungibility-privacy/","https://btctranscripts.com/style/","https://btctranscripts.com/misc/cftc-bitcoin/","https://btctranscripts.com/misc/ctv-bip-review-workshop/","https://btctranscripts.com/misc/discreet-log-contracts/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/discreet-log-contracts-oracles-loans-stablecoins-and-more/","https://btctranscripts.com/misc/failures-of-secret-key-cryptography/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/open-source-mining/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/unlocking-expressivity-with-op-cat/"],"date":["https://btctranscripts.com/style/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/a-bevy-of-block-size-proposals-bip100-bip102-and-more/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/a-flexible-limit-trading-subsidy-for-larger-blocks/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/scaling-oblivious-read-write/","https://btctranscripts.com/simons-institute/a-wishlist-for-verifiable-computation/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/abstract-groups/","https://btctranscripts.com/bit-block-boom/2019/accumulating-bitcoin/","https://btctranscripts.com/stanford-blockchain-conference/2019/accumulators/","https://btctranscripts.com/cryptoeconomic-systems/2019/all-about-decentralized-trust/","https://btctranscripts.com/scalingbitcoin/montreal-2015/alternatives-to-block-size-as-aggregate-resource-limits/","https://btctranscripts.com/scalingbitcoin/montreal-2015/amiko-pay/","https://btctranscripts.com/stanford-blockchain-conference/2020/arbitrum-v2/","https://btctranscripts.com/w3-blockchain-workshop-2016/archival-science/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/armory-proof-of-payment/","https://btctranscripts.com/w3-blockchain-workshop-2016/arvind-narayanan/","https://btctranscripts.com/stanford-blockchain-conference/2019/asics/","https://btctranscripts.com/scalingbitcoin/stanford-2017/atomically-trading-with-roger-gambling-on-the-success-of-a-hard-fork/","https://btctranscripts.com/stanford-blockchain-conference/2019/aurora-transparent-succinct-arguments-r1cs/","https://btctranscripts.com/stanford-blockchain-conference/2019/vulnerability-detection/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/backpackers/","https://btctranscripts.com/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/bip101-block-propagation-data-from-testnet/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/bip99-and-uncontroversial-hard-forks/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/","https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-block-propagation-iblt-rusty-russell/","https://btctranscripts.com/london-bitcoin-devs/jnewbery-bitcoin-core-v0.17/","https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-developers/","https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-failure-modes-and-the-role-of-the-lightning-network/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-financing-and-trading/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/","https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-load-spike-simulation/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-maximalism-dissected/","https://btctranscripts.com/stanford-blockchain-conference/2019/bitcoin-payment-economic-analysis/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/","https://btctranscripts.com/edgedevplusplus/2017/p2p-john-newbery/","https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-protocol-development-panel/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-regulation-landscape/","https://btctranscripts.com/scalingbitcoin/montreal-2015/relay-network/","https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-security/","https://btctranscripts.com/breaking-bitcoin/2019/selfish-mining/","https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-without-internet/","https://btctranscripts.com/bit-block-boom/2019/there-can-only-be-one/","https://btctranscripts.com/stanford-blockchain-conference/2020/block-rewards/","https://btctranscripts.com/coindesk-consensus-2016/blockchain-database-technology-in-a-global-context/","https://btctranscripts.com/w3-blockchain-workshop-2016/blockchain-hub/","https://btctranscripts.com/scalingbitcoin/montreal-2015/blockchain-testbed/","https://btctranscripts.com/stanford-blockchain-conference/2020/blockchains-for-multiplayer-games/","https://btctranscripts.com/stanford-blockchain-conference/2019/bloxroute/","https://btctranscripts.com/stanford-blockchain-conference/2020/boomerang/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/braiding-the-blockchain/","https://btctranscripts.com/breaking-bitcoin/2019/breaking-bitcoin-privacy/","https://btctranscripts.com/scalingbitcoin/milan-2016/breaking-the-chain/","https://btctranscripts.com/breaking-bitcoin/2019/breaking-wasabi/","https://btctranscripts.com/stanford-blockchain-conference/2020/brick-async-state-channels/","https://btctranscripts.com/scalingbitcoin/milan-2016/build-scale-operate/","https://btctranscripts.com/stanford-blockchain-conference/2019/building-bulletproofs/","https://btctranscripts.com/bit-block-boom/2019/building-vibrant-bitcoin-communities/","https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/bulletproofs/","https://btctranscripts.com/stanford-blockchain-conference/2019/casper/","https://btctranscripts.com/stanford-blockchain-conference/2020/celo-ultralight-client/","https://btctranscripts.com/misc/cftc-bitcoin/","https://btctranscripts.com/scalingbitcoin/milan-2016/chainbreak/","https://btctranscripts.com/scalingbitcoin/stanford-2017/changes-without-unanimous-consent/","https://btctranscripts.com/w3-blockchain-workshop-2016/christopher-allen/","https://btctranscripts.com/coindesk-consensus-2016/clearing-and-settlement-for-global-financial-institutions/","https://btctranscripts.com/stanford-blockchain-conference/2020/clockwork-nonfrontrunning/","https://btctranscripts.com/scalingbitcoin/milan-2016/coin-selection/","https://btctranscripts.com/scalingbitcoin/montreal-2015/coinscope-andrew-miller/","https://btctranscripts.com/verifiable-delay-functions/vdf-day-2019/comments-and-observations-about-timelocks-ron-rivest/","https://btctranscripts.com/scalingbitcoin/montreal-2015/competitive-fee-market-urgency/","https://btctranscripts.com/decentralized-financial-architecture-workshop/compliance-and-confidentiality/","https://btctranscripts.com/scalingbitcoin/stanford-2017/concurrency-and-privacy-with-payment-channel-networks/","https://btctranscripts.com/stanford-blockchain-conference/2019/coordinated-upgrades/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/cory-fields/","https://btctranscripts.com/cryptoeconomic-systems/2019/cross-chain-deals-and-adversarial-commerce/","https://btctranscripts.com/magicalcryptoconference/2019/cryptographic-hocus-pocus/","https://btctranscripts.com/grincon/2019/cryptography-audit/","https://btctranscripts.com/scalingbitcoin/stanford-2017/state-of-cryptography/","https://btctranscripts.com/misc/ctv-bip-review-workshop/","https://btctranscripts.com/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/","https://btctranscripts.com/baltic-honeybadger/2018/day-1-closing-panel/","https://btctranscripts.com/scalingbitcoin/milan-2016/day-1-group-summaries/","https://btctranscripts.com/scalingbitcoin/milan-2016/day-2-group-summaries/","https://btctranscripts.com/w3-blockchain-workshop-2016/day-2-groups/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/day-2-opening/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/decentralization-through-game-theory/","https://btctranscripts.com/stanford-blockchain-conference/2020/decentralized-oracles-tls/","https://btctranscripts.com/coindesk-consensus-2016/marco-santori-delaware-initiative/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/deploying-blockchain-at-scale-lessons-from-the-internet-deployment-in-japan/","https://btctranscripts.com/building-on-bitcoin/2018/lightning-wallet-design/","https://btctranscripts.com/w3-blockchain-workshop-2016/deterministic-signatures-group/","https://btctranscripts.com/w3-blockchain-workshop-2016/petertodd-dex/","https://btctranscripts.com/misc/discreet-log-contracts/","https://btctranscripts.com/scalingbitcoin/stanford-2017/discreet-log-contracts/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/discreet-log-contracts-oracles-loans-stablecoins-and-more/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/economic-risks/","https://btctranscripts.com/stanford-blockchain-conference/2019/threshold-signatures/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/elastic-block-caps/","https://btctranscripts.com/scalingbitcoin/milan-2016/collective-signing/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/erlay/","https://btctranscripts.com/w3-blockchain-workshop-2016/ethcore/","https://btctranscripts.com/stanford-blockchain-conference/2019/ethereum2/","https://btctranscripts.com/cryptoeconomic-systems/2019/everything-is-broken/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/extensibility/","https://btctranscripts.com/breaking-bitcoin/2019/extracting-seeds-from-hardware-wallets/","https://btctranscripts.com/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/","https://btctranscripts.com/misc/failures-of-secret-key-cryptography/","https://btctranscripts.com/scalingbitcoin/milan-2016/fast-difficulty-adjustment/","https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-fabrice-drouin-fee-management/","https://btctranscripts.com/scalingbitcoin/montreal-2015/peter-r/","https://btctranscripts.com/bit-block-boom/2019/fiat-money-fiat-food/","https://btctranscripts.com/stanford-blockchain-conference/2020/smart-contract-bug-hunting/","https://btctranscripts.com/breaking-bitcoin/2019/defense-of-bitcoin/","https://btctranscripts.com/cryptoeconomic-systems/2019/flash-boys-v2/","https://btctranscripts.com/scalingbitcoin/stanford-2017/flyclient-super-light-clients-for-cryptocurrencies/","https://btctranscripts.com/stanford-blockchain-conference/2019/formal-verification/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/forward-blocks/","https://btctranscripts.com/stanford-blockchain-conference/2020/fractal/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/fraud-proofs-petertodd/","https://btctranscripts.com/breaking-bitcoin/2019/fud-perceived-vs-real-bitcoin-risks/","https://btctranscripts.com/cryptoeconomic-systems/2019/funding/","https://btctranscripts.com/coindesk-consensus-2016/future-of-blockchains/","https://btctranscripts.com/coindesk-consensus-2016/future-of-regulation/","https://btctranscripts.com/scalingbitcoin/montreal-2015/future-of-spv-tech/","https://btctranscripts.com/decentralized-financial-architecture-workshop/g20-discussion/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/gavinandresen/","https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/jihan-wu-google-tech-talk/","https://btctranscripts.com/texas-bitcoin-conference-2014/gox/","https://btctranscripts.com/scalingbitcoin/stanford-2017/graphene-set-reconciliation/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/group-updates/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/groups/","https://btctranscripts.com/w3-blockchain-workshop-2016/groups-identity/","https://btctranscripts.com/coindesk-consensus-2016/hackathon-intro/","https://btctranscripts.com/stanford-blockchain-conference/2020/hardware-accelerated-rsa/","https://btctranscripts.com/dallas-bitcoin-symposium/history-and-extrapolation/","https://btctranscripts.com/coindesk-consensus-2016/how-tech-companies-are-embracing-blockchain-database-technology/","https://btctranscripts.com/coindesk-consensus-2016/how-to-get-bitcoin/","https://btctranscripts.com/bit-block-boom/2019/how-to-meme-bitcoin-to-the-moon/","https://btctranscripts.com/scalingbitcoin/montreal-2015/how-to-mine-bitcoin-profitably/","https://btctranscripts.com/stanford-blockchain-conference/2019/htlcs-considered-harmful/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/human-side-trust-workshop/","https://btctranscripts.com/decentralized-financial-architecture-workshop/implications/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/maaku-panel/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2018/improving-bitcoin-smart-contract-efficiency/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/in-adversarial-environments-blockchains-dont-scale/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/incentivizing-payment-channel-watchtowers/","https://btctranscripts.com/coindesk-consensus-2016/internal-approaches-blockchain-database-technology-strategies/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/internet-of-value/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/intro/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/intro/","https://btctranscripts.com/scalingbitcoin/milan-2016/intro/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/intro/","https://btctranscripts.com/w3-blockchain-workshop-2016/wendy/","https://btctranscripts.com/cryptoeconomic-systems/2019/introduction/","https://btctranscripts.com/scalingbitcoin/stanford-2017/intro/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/introduction/","https://btctranscripts.com/baltic-honeybadger/2018/investing-in-bitcoin-businesses/","https://btctranscripts.com/w3-blockchain-workshop-2016/ipfs/","https://btctranscripts.com/scalingbitcoin/montreal-2015/issues-impacting-block-size-proposals/","https://btctranscripts.com/cryptoeconomic-systems/2019/journal-review/","https://btctranscripts.com/cryptoeconomic-systems/2019/journals-as-clubs/","https://btctranscripts.com/scalingbitcoin/milan-2016/jute-braiding/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote-gavin-andresen/","https://btctranscripts.com/coindesk-consensus-2016/law-enforcement-and-anonymous-transactions/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/lessons-for-bitcoin-from-150-years-of-decentralization/","https://btctranscripts.com/cryptoeconomic-systems/2019/libra/","https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-24-fabrice-drouin-the-transfer-layer/","https://btctranscripts.com/edgedevplusplus/2019/lightning-network-routing/","https://btctranscripts.com/breaking-bitcoin/2019/lightning-network-security-panel/","https://btctranscripts.com/stanford-blockchain-conference/2019/links/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/linq/","https://btctranscripts.com/stanford-blockchain-conference/2020/lower-bounds-limits-plasma/","https://btctranscripts.com/w3-blockchain-workshop-2016/matsuo/","https://btctranscripts.com/cryptoeconomic-systems/2019/mechanism-design/","https://btctranscripts.com/decentralized-financial-architecture-workshop/metadata/","https://btctranscripts.com/edgedevplusplus/2019/metadata/","https://btctranscripts.com/stanford-blockchain-conference/2019/miniscript/","https://btctranscripts.com/stanford-blockchain-conference/2020/mixicles/","https://btctranscripts.com/scalingbitcoin/montreal-2015/more-core-devs/","https://btctranscripts.com/stanford-blockchain-conference/2020/motoko-language/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/multi-party-channels-in-the-utxo-model-challenges-and-opportunities/","https://btctranscripts.com/cryptoeconomic-systems/2019/near-misses/","https://btctranscripts.com/breaking-bitcoin/2019/neutrino/","https://btctranscripts.com/stanford-blockchain-conference/2019/thundercore/","https://btctranscripts.com/stanford-blockchain-conference/2020/no-incentive/","https://btctranscripts.com/scalingbitcoin/montreal-2015/non-currency-applications/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/omniledger/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/eric-martindale/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/open-source-mining/","https://btctranscripts.com/baltic-honeybadger/2018/opening/","https://btctranscripts.com/breaking-bitcoin/2019/opening-remarks/","https://btctranscripts.com/stanford-blockchain-conference/2019/opening-remarks/","https://btctranscripts.com/coindesk-consensus-2016/opening-remarks-state-of-blockchain-ryan-selkis/","https://btctranscripts.com/scalingbitcoin/stanford-2017/optimizing-fee-estimation-via-mempool-state/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/overview-of-bips-necessary-for-lightning/","https://btctranscripts.com/decentralized-financial-architecture-workshop/perspective/","https://btctranscripts.com/w3-blockchain-workshop-2016/physical-assets/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/playing-with-fire-adjusting-bitcoin-block-subsidy/","https://btctranscripts.com/stanford-blockchain-conference/2020/plonk/","https://btctranscripts.com/baltic-honeybadger/2018/present-and-future-tech-challenges-in-bitcoin/","https://btctranscripts.com/stanford-blockchain-conference/2020/prism/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/prism/","https://btctranscripts.com/scalingbitcoin/montreal-2015/privacy-and-fungibility/","https://btctranscripts.com/w3-blockchain-workshop-2016/privacy-anonymity-and-identity-group/","https://btctranscripts.com/stanford-blockchain-conference/2019/privacy-preserving-multi-hop-locks/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/proof-of-necessary-work/","https://btctranscripts.com/stanford-blockchain-conference/2020/proof-of-necessary-work/","https://btctranscripts.com/w3-blockchain-workshop-2016/provenance-groups/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/research-and-development-goals/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/r3/","https://btctranscripts.com/coindesk-consensus-2016/reaching-consensus-open-blockchains/","https://btctranscripts.com/scalingbitcoin/stanford-2017/redesigning-bitcoin-fee-market/","https://btctranscripts.com/cryptoeconomic-systems/2019/reproducible-builds/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/reproducible-lightning-benchmark/","https://btctranscripts.com/scalingbitcoin/montreal-2015/reworking-bitcoin-core-p2p-code-for-robustness-and-event-driven/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/rootstock/","https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-1/","https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-2/","https://btctranscripts.com/w3-blockchain-workshop-2016/royalties/","https://btctranscripts.com/misc/safecurves-choosing-safe-curves-for-elliptic-curve-cryptography-2014/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/peter-todd-scalability/","https://btctranscripts.com/scalingbitcoin/milan-2016/timestamping/","https://btctranscripts.com/stanford-blockchain-conference/2020/scalable-rsa-modulus-generation/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/scaling-debate-is-a-proxy-battle-over-centralization/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/scriptless-lotteries/","https://btctranscripts.com/grincon/2019/scriptless-scripts-with-mimblewimble/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/secure-fountain-architecture/","https://btctranscripts.com/breaking-bitcoin/2019/security-attacks-decentralized-mining-pools/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/security-and-usability/","https://btctranscripts.com/breaking-bitcoin/2019/lightning-network-routing-security/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/security-assumptions/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/segregated-witness-and-its-impact-on-scalability/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/self-reproducing-coins-as-universal-turing-machine/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/self-sovereign-identity-ideology-and-architecture/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/shamir-secret-sharing/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/siacoin/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/matt-corallo-sidechains/","https://btctranscripts.com/scalingbitcoin/milan-2016/sidechains/","https://btctranscripts.com/w3-blockchain-workshop-2016/smart-signatures/","https://btctranscripts.com/scalingbitcoin/montreal-2015/snarks/","https://btctranscripts.com/simons-institute/snarks-and-their-practical-applications/","https://btctranscripts.com/stanford-blockchain-conference/2020/solving-data-availability-attacks-using-coded-merkle-trees/","https://btctranscripts.com/cryptoeconomic-systems/2019/solving-the-blockchain-trilemma/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/some-questions-for-bitcoiners/","https://btctranscripts.com/dallas-bitcoin-symposium/sound-money/","https://btctranscripts.com/stanford-blockchain-conference/2019/spork-probabilistic-bitcoin-soft-forks/","https://btctranscripts.com/stanford-blockchain-conference/2020/stark-for-developers/","https://btctranscripts.com/stanford-blockchain-conference/2019/state-channels/","https://btctranscripts.com/coindesk-consensus-2016/state-of-blockchain/","https://btctranscripts.com/bit-block-boom/2019/state-of-multisig/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/statechains/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/andrew-miller/","https://btctranscripts.com/stanford-blockchain-conference/2020/streamlet/","https://btctranscripts.com/scalingbitcoin/montreal-2015/stroem-payment-channels/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/swashbuckling-safety-training/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/","https://btctranscripts.com/bit-block-boom/2019/taproot-schnorr-soft-fork/","https://btctranscripts.com/dallas-bitcoin-symposium/texas-energy-market/","https://btctranscripts.com/baltic-honeybadger/2018/the-b-foundation/","https://btctranscripts.com/baltic-honeybadger/2018/the-bitcoin-standard/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/bitcoin-script/","https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/","https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/","https://btctranscripts.com/breaking-bitcoin/2019/future-of-hardware-wallets/","https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-lightning/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/ghostdag/","https://btctranscripts.com/stanford-blockchain-conference/2020/libra-blockchain-intro/","https://btctranscripts.com/stanford-blockchain-conference/2020/optimistic-vm/","https://btctranscripts.com/baltic-honeybadger/2018/the-reserve-currency-fallacy/","https://btctranscripts.com/stanford-blockchain-conference/2019/stark-dex/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/threshold-scriptless-scripts/","https://btctranscripts.com/stanford-blockchain-conference/2019/proofs-of-space-and-replication/","https://btctranscripts.com/simons-institute/todo/","https://btctranscripts.com/cryptoeconomic-systems/2019/token-journal/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/topics/","https://btctranscripts.com/baltic-honeybadger/2018/trading-panel/","https://btctranscripts.com/stanford-blockchain-conference/2020/transparent-dishonesty/","https://btctranscripts.com/stanford-blockchain-conference/2020/transparent-snarks-from-dark-compilers/","https://btctranscripts.com/cryptoeconomic-systems/2019/trust-and-blockchain-marketplaces/","https://btctranscripts.com/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/txprobe/","https://btctranscripts.com/scalingbitcoin/milan-2016/unlinkable-outsourced-channel-monitoring/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/unlocking-expressivity-with-op-cat/","https://btctranscripts.com/coindesk-consensus-2016/upgrading-capital-markets-for-digital-asset-trading/","https://btctranscripts.com/stanford-blockchain-conference/2019/urkel-trees/","https://btctranscripts.com/scalingbitcoin/stanford-2017/using-the-chain-for-what-chains-are-good-for/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2019/utreexo/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/validation-cost-metric/","https://btctranscripts.com/scalingbitcoin/montreal-2015/validation-costs/","https://btctranscripts.com/coindesk-consensus-2016/visa-chain/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/weak-signals/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/welcome/","https://btctranscripts.com/coindesk-consensus-2016/why-bitcoin-still-matters/","https://btctranscripts.com/magicalcryptoconference/2019/why-block-sizes-should-not-be-too-big/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/why-miners-will-not-voluntarily-individually-produce-smaller-blocks/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/arvind-narayanan/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/work-in-progress/","https://btctranscripts.com/simons-institute/zero-knowledge-probabilistic-proof-systems/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/zero-knowledge-proofs-for-bitcoin-scalability-and-beyond/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/zerolink-sudoku/","https://btctranscripts.com/cryptoeconomic-systems/2019/zksharks/"],"media":["https://btctranscripts.com/lightning-specification/2024-07-29-specification-call/","https://btctranscripts.com/lightning-specification/2024-07-15-specification-call/","https://btctranscripts.com/lightning-specification/2024-05-06-specification-call/","https://btctranscripts.com/lightning-specification/2024-04-22-specification-call/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/asmap/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/assumeutxo-mainnet-readiness/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/gui-discussions/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/kernel/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/signet-testnet4/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/p2p-monitoring/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/silent-payment-descriptors/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/coin-selection/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/cross-input-signature-aggregation/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/great-consensus-cleanup/","https://btctranscripts.com/lightning-specification/2024-04-08-specification-call/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/private-tx-broadcast/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/silent-payments-libsecp/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/stratumv2/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/weak-blocks/","https://btctranscripts.com/lightning-specification/2024-03-25-specification-call/","https://btctranscripts.com/lightning-specification/2024-03-11-specification-call/","https://btctranscripts.com/lightning-specification/2024-02-26-specification-call/","https://btctranscripts.com/lightning-specification/lightning-2024-01-15-specification-call/","https://btctranscripts.com/lightning-specification/2023-11-20-specification-call/","https://btctranscripts.com/lightning-specification/2023-11-06-specification-call/","https://btctranscripts.com/lightning-specification/2023-10-23-specification-call/","https://btctranscripts.com/lightning-specification/2023-09-25-specification-call/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/cmake/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/wallet-legacy-upgrade/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/signature-aggregation/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/assumeutxo-update/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/kernel-planning/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/libsecp256k1-meeting/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-design-goals/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/package-relay-planning/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/privacy-metrics/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/wallet-coin-selection/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-working-session/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/kernel-update/","https://btctranscripts.com/lightning-specification/2023-08-28-specification-call/","https://btctranscripts.com/lightning-specification/2023-08-14-specification-call/","https://btctranscripts.com/lightning-specification/2023-07-31-specification-call/","https://btctranscripts.com/lightning-specification/2023-07-17-specification-call/","https://btctranscripts.com/lightning-specification/2023-06-19-specification-call/","https://btctranscripts.com/lightning-specification/2023-06-05-specification-call/","https://btctranscripts.com/lightning-specification/2023-05-22-specification-call/","https://btctranscripts.com/lightning-specification/2023-05-08-specification-call/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-assumeutxo/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-fuzzing/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-libbitcoin-kernel/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-meta-discussion/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-asmap/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-mempool-clustering/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-package-relay-primer/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-refactors/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-silent-payments/","https://btctranscripts.com/lightning-specification/2023-04-24-specification-call/","https://btctranscripts.com/lightning-specification/2023-02-13-specification-call/","https://btctranscripts.com/lightning-specification/2023-01-30-specification-call/","https://btctranscripts.com/tabconf/2022/2022-10-15-braidpool/","https://btctranscripts.com/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/","https://btctranscripts.com/tabconf/2022/2022-10-15-silent-payments/","https://btctranscripts.com/tabconf/2022/2022-10-14-hac-spec/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-research-wishlist/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-merging/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-github/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-frost/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-hac-spec/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-package-relay/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-stratum-v2/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/","https://btctranscripts.com/greg-maxwell/2022-05-05-covenants-bip119/","https://btctranscripts.com/lightning-specification/2022-03-14-specification-call/","https://btctranscripts.com/c-lightning/2022-03-07-developer-call/","https://btctranscripts.com/lightning-specification/2022-02-14-specification-call/","https://btctranscripts.com/lightning-specification/2022-01-31-specification-call/","https://btctranscripts.com/c-lightning/2022-01-24-developer-call/","https://btctranscripts.com/c-lightning/2022-01-10-developer-call/","https://btctranscripts.com/lightning-specification/2022-01-03-specification-call/","https://btctranscripts.com/c-lightning/2021-12-13-developer-call/","https://btctranscripts.com/lightning-specification/2021-12-06-specification-call/","https://btctranscripts.com/c-lightning/2021-11-29-developer-call/","https://btctranscripts.com/lightning-specification/2021-11-22-specification-call/","https://btctranscripts.com/c-lightning/2021-11-15-developer-call/","https://btctranscripts.com/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/","https://btctranscripts.com/sydney-bitcoin-meetup/2021-11-02-socratic-seminar/","https://btctranscripts.com/c-lightning/2021-11-01-developer-call/","https://btctranscripts.com/c-lightning/2021-10-18-developer-call/","https://btctranscripts.com/c-lightning/2021-10-04-developer-call/","https://btctranscripts.com/c-lightning/2021-09-20-developer-call/","https://btctranscripts.com/c-lightning/2021-09-06-developer-call/","https://btctranscripts.com/c-lightning/2021-08-23-developer-call/","https://btctranscripts.com/c-lightning/2021-08-09-developer-call/","https://btctranscripts.com/sydney-bitcoin-meetup/2021-07-06-socratic-seminar/","https://btctranscripts.com/sydney-bitcoin-meetup/2021-06-01-socratic-seminar/","https://btctranscripts.com/lightning-hack-day/2021-03-27-alex-bosworth-lightning-routing/","https://btctranscripts.com/sydney-bitcoin-meetup/2021-02-23-socratic-seminar/","https://btctranscripts.com/sf-bitcoin-meetup/2020-11-30-socratic-seminar-20/","https://btctranscripts.com/greg-maxwell/2020-11-25-greg-maxwell-replacing-pgp/","https://btctranscripts.com/greg-maxwell/2020-10-26-greg-maxwell-bitcoin-core-github/","https://btctranscripts.com/greg-maxwell/2020-08-27-greg-maxwell-checkmultisig-bug/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-08-25-socratic-seminar/","https://btctranscripts.com/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/","https://btctranscripts.com/chicago-bitdevs/2020-08-12-socratic-seminar/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-07-21-socratic-seminar/","https://btctranscripts.com/chicago-bitdevs/2020-07-08-socratic-seminar/","https://btctranscripts.com/greg-maxwell/2020-07-05-greg-maxwell-useful-proof-of-work/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-06-23-socratic-seminar/","https://btctranscripts.com/greg-maxwell/2020-06-08-greg-maxwell-liquid-censorship-resistance/","https://btctranscripts.com/la-bitdevs/2020-05-21-alekos-filini-magical-bitcoin/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-05-19-socratic-seminar/","https://btctranscripts.com/london-bitcoin-devs/2020-04-22-socratic-seminar/","https://btctranscripts.com/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/","https://btctranscripts.com/stanford-blockchain-conference/2020/atomic-multi-channel-updates/","https://btctranscripts.com/stanford-blockchain-conference/2020/beyond-hashrate-majority-attacks/","https://btctranscripts.com/stanford-blockchain-conference/2020/competitive-equilibria-staking-lending/","https://btctranscripts.com/stanford-blockchain-conference/2020/proof-of-stake/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/consensus-protocol-risks-and-vulnerabilities/","https://btctranscripts.com/stanford-blockchain-conference/2020/linking-anonymous-transactions/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/communication-with-regulators/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/opening-remarks/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/regulatory-pain-points/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/risk-overview/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/stress-testing-decentralized-finance/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/technological-stability/","https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/","https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/","https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/","https://btctranscripts.com/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/","https://btctranscripts.com/sf-bitcoin-meetup/2019-12-16-bip-taproot-bip-tapscript/","https://btctranscripts.com/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/","https://btctranscripts.com/stephan-livera-podcast/2019-11-13-jon-atack/","https://btctranscripts.com/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/","https://btctranscripts.com/cryptoeconomic-systems/2019/knowledge-aggregation-and-propagation/","https://btctranscripts.com/stephan-livera-podcast/2019-09-22-bryan-bishop/","https://btctranscripts.com/edgedevplusplus/2019/blockchain-design-patterns/","https://btctranscripts.com/edgedevplusplus/2019/hardware-wallet-design-best-practices/","https://btctranscripts.com/edgedevplusplus/2019/libbitcoin/","https://btctranscripts.com/edgedevplusplus/2019/lightning-network-sphinx-and-onion-routing/","https://btctranscripts.com/edgedevplusplus/2019/mining-firmware-security/","https://btctranscripts.com/edgedevplusplus/2019/statechains/","https://btctranscripts.com/edgedevplusplus/2019/bitcoin-data-structures/","https://btctranscripts.com/edgedevplusplus/2019/taproot/","https://btctranscripts.com/edgedevplusplus/2019/privacy-concepts/","https://btctranscripts.com/edgedevplusplus/2019/rebroadcasting/","https://btctranscripts.com/edgedevplusplus/2019/wallet-architecture/","https://btctranscripts.com/decentralized-financial-architecture-workshop/custody-group/","https://btctranscripts.com/decentralized-financial-architecture-workshop/introduction/","https://btctranscripts.com/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/","https://btctranscripts.com/dallas-bitcoin-symposium/intro/","https://btctranscripts.com/dallas-bitcoin-symposium/q-a/","https://btctranscripts.com/stephan-livera-podcast/2019-08-12-rusty-russell-joe-netti/","https://btctranscripts.com/stephan-livera-podcast/2019-07-31-roy-sheinfeld-stephan-livera/","https://btctranscripts.com/stephan-livera-podcast/2019-06-24-conner-fromknecht-stephan-livera/","https://btctranscripts.com/tftc-podcast/2019-06-18-andrew-poelstra-tftc/","https://btctranscripts.com/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-assumeutxo/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-statechains/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-hardware-wallets/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-great-consensus-cleanup/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-taproot/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-utreexo/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-code-review/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/","https://btctranscripts.com/stephan-livera-podcast/2019-04-11-james-obeirne/","https://btctranscripts.com/stanford-blockchain-conference/2020/attacking-evm-resource-metering/","https://btctranscripts.com/stanford-blockchain-conference/2019/plasma-cash/","https://btctranscripts.com/misc/2019-01-05-unchained-capital-socratic-seminar/","https://btctranscripts.com/noded-podcast/2018-12-14-laolu-conner-lnd/","https://btctranscripts.com/stephan-livera-podcast/2018-12-11-laolu-osuntokun-stephan-livera/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-10-signmessage/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-09-bitcoin-optech/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-09-wallet-stuff/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-efficient-p2p-transaction-relay/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-utxo-accumulators-and-utreexo/","https://btctranscripts.com/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/","https://btctranscripts.com/edgedevplusplus/2018/block-structure-and-headers-utxos-merkle-trees-segwit-bip141/","https://btctranscripts.com/edgedevplusplus/2018/introduction/","https://btctranscripts.com/greg-maxwell/2018-09-23-greg-maxwell-multiple-implementations/","https://btctranscripts.com/building-on-bitcoin/2018/bootstrapping-lightning-network/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/","https://btctranscripts.com/satoshi-roundtable/sr-004/ron-paul/","https://btctranscripts.com/greg-maxwell/2017-12-22-bech32-design/","https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/","https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/","https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/","https://btctranscripts.com/sf-bitcoin-meetup/2017-09-04-jonas-schnelli-bip150-bip151/","https://btctranscripts.com/sf-bitcoin-meetup/2016-11-21-mimblewimble/","https://btctranscripts.com/misc/2016-adam-back/","https://btctranscripts.com/scalingbitcoin/milan-2016/bip151-peer-encryption/","https://btctranscripts.com/scalingbitcoin/milan-2016/lightning/","https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/dan-boneh/","https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/cali2016/","https://btctranscripts.com/w3-blockchain-workshop-2016/lightning-network/","https://btctranscripts.com/w3-blockchain-workshop-2016/intro/","https://btctranscripts.com/scalingbitcoin/montreal-2015/systematizing-knowledge/","https://btctranscripts.com/scalingbitcoin/montreal-2015/overview-of-security-concerns/","https://btctranscripts.com/simons-institute/history-of-lattice-based-cryptography/","https://btctranscripts.com/misc/nydfs-bitlicense-lawsky-update/","https://btctranscripts.com/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/","https://btctranscripts.com/style/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/scaling-oblivious-read-write/","https://btctranscripts.com/simons-institute/a-wishlist-for-verifiable-computation/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/abstract-groups/","https://btctranscripts.com/cryptoeconomic-systems/2019/all-about-decentralized-trust/","https://btctranscripts.com/scalingbitcoin/montreal-2015/alternatives-to-block-size-as-aggregate-resource-limits/","https://btctranscripts.com/scalingbitcoin/montreal-2015/amiko-pay/","https://btctranscripts.com/stanford-blockchain-conference/2020/arbitrum-v2/","https://btctranscripts.com/w3-blockchain-workshop-2016/archival-science/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/armory-proof-of-payment/","https://btctranscripts.com/w3-blockchain-workshop-2016/arvind-narayanan/","https://btctranscripts.com/stanford-blockchain-conference/2019/asics/","https://btctranscripts.com/scalingbitcoin/stanford-2017/atomically-trading-with-roger-gambling-on-the-success-of-a-hard-fork/","https://btctranscripts.com/stanford-blockchain-conference/2019/aurora-transparent-succinct-arguments-r1cs/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/backpackers/","https://btctranscripts.com/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/","https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-block-propagation-iblt-rusty-russell/","https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-developers/","https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-failure-modes-and-the-role-of-the-lightning-network/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-financing-and-trading/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/","https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-load-spike-simulation/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-maximalism-dissected/","https://btctranscripts.com/stanford-blockchain-conference/2019/bitcoin-payment-economic-analysis/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-regulation-landscape/","https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-security/","https://btctranscripts.com/stanford-blockchain-conference/2020/block-rewards/","https://btctranscripts.com/coindesk-consensus-2016/blockchain-database-technology-in-a-global-context/","https://btctranscripts.com/w3-blockchain-workshop-2016/blockchain-hub/","https://btctranscripts.com/scalingbitcoin/montreal-2015/blockchain-testbed/","https://btctranscripts.com/stanford-blockchain-conference/2020/blockchains-for-multiplayer-games/","https://btctranscripts.com/stanford-blockchain-conference/2019/bloxroute/","https://btctranscripts.com/stanford-blockchain-conference/2020/boomerang/","https://btctranscripts.com/scalingbitcoin/milan-2016/breaking-the-chain/","https://btctranscripts.com/stanford-blockchain-conference/2020/brick-async-state-channels/","https://btctranscripts.com/stanford-blockchain-conference/2019/building-bulletproofs/","https://btctranscripts.com/bit-block-boom/2019/building-vibrant-bitcoin-communities/","https://btctranscripts.com/stanford-blockchain-conference/2019/casper/","https://btctranscripts.com/stanford-blockchain-conference/2020/celo-ultralight-client/","https://btctranscripts.com/misc/cftc-bitcoin/","https://btctranscripts.com/scalingbitcoin/milan-2016/chainbreak/","https://btctranscripts.com/scalingbitcoin/stanford-2017/changes-without-unanimous-consent/","https://btctranscripts.com/w3-blockchain-workshop-2016/christopher-allen/","https://btctranscripts.com/coindesk-consensus-2016/clearing-and-settlement-for-global-financial-institutions/","https://btctranscripts.com/stanford-blockchain-conference/2020/clockwork-nonfrontrunning/","https://btctranscripts.com/scalingbitcoin/milan-2016/coin-selection/","https://btctranscripts.com/scalingbitcoin/montreal-2015/coinscope-andrew-miller/","https://btctranscripts.com/decentralized-financial-architecture-workshop/compliance-and-confidentiality/","https://btctranscripts.com/scalingbitcoin/stanford-2017/concurrency-and-privacy-with-payment-channel-networks/","https://btctranscripts.com/stanford-blockchain-conference/2019/coordinated-upgrades/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/cory-fields/","https://btctranscripts.com/cryptoeconomic-systems/2019/cross-chain-deals-and-adversarial-commerce/","https://btctranscripts.com/grincon/2019/cryptography-audit/","https://btctranscripts.com/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/","https://btctranscripts.com/baltic-honeybadger/2018/day-1-closing-panel/","https://btctranscripts.com/scalingbitcoin/milan-2016/day-1-group-summaries/","https://btctranscripts.com/scalingbitcoin/milan-2016/day-2-group-summaries/","https://btctranscripts.com/w3-blockchain-workshop-2016/day-2-groups/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/day-2-opening/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/decentralization-through-game-theory/","https://btctranscripts.com/stanford-blockchain-conference/2020/decentralized-oracles-tls/","https://btctranscripts.com/coindesk-consensus-2016/marco-santori-delaware-initiative/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/deploying-blockchain-at-scale-lessons-from-the-internet-deployment-in-japan/","https://btctranscripts.com/w3-blockchain-workshop-2016/deterministic-signatures-group/","https://btctranscripts.com/w3-blockchain-workshop-2016/petertodd-dex/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/economic-risks/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/elastic-block-caps/","https://btctranscripts.com/scalingbitcoin/milan-2016/collective-signing/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/erlay/","https://btctranscripts.com/w3-blockchain-workshop-2016/ethcore/","https://btctranscripts.com/stanford-blockchain-conference/2019/ethereum2/","https://btctranscripts.com/cryptoeconomic-systems/2019/everything-is-broken/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/extensibility/","https://btctranscripts.com/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/","https://btctranscripts.com/scalingbitcoin/milan-2016/fast-difficulty-adjustment/","https://btctranscripts.com/scalingbitcoin/montreal-2015/peter-r/","https://btctranscripts.com/stanford-blockchain-conference/2020/smart-contract-bug-hunting/","https://btctranscripts.com/cryptoeconomic-systems/2019/flash-boys-v2/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/forward-blocks/","https://btctranscripts.com/stanford-blockchain-conference/2020/fractal/","https://btctranscripts.com/cryptoeconomic-systems/2019/funding/","https://btctranscripts.com/coindesk-consensus-2016/future-of-blockchains/","https://btctranscripts.com/coindesk-consensus-2016/future-of-regulation/","https://btctranscripts.com/scalingbitcoin/montreal-2015/future-of-spv-tech/","https://btctranscripts.com/decentralized-financial-architecture-workshop/g20-discussion/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/gavinandresen/","https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/jihan-wu-google-tech-talk/","https://btctranscripts.com/texas-bitcoin-conference-2014/gox/","https://btctranscripts.com/scalingbitcoin/stanford-2017/graphene-set-reconciliation/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/group-updates/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/groups/","https://btctranscripts.com/w3-blockchain-workshop-2016/groups-identity/","https://btctranscripts.com/coindesk-consensus-2016/hackathon-intro/","https://btctranscripts.com/stanford-blockchain-conference/2020/hardware-accelerated-rsa/","https://btctranscripts.com/dallas-bitcoin-symposium/history-and-extrapolation/","https://btctranscripts.com/coindesk-consensus-2016/how-tech-companies-are-embracing-blockchain-database-technology/","https://btctranscripts.com/coindesk-consensus-2016/how-to-get-bitcoin/","https://btctranscripts.com/scalingbitcoin/montreal-2015/how-to-mine-bitcoin-profitably/","https://btctranscripts.com/stanford-blockchain-conference/2019/htlcs-considered-harmful/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/human-side-trust-workshop/","https://btctranscripts.com/decentralized-financial-architecture-workshop/implications/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/maaku-panel/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/incentivizing-payment-channel-watchtowers/","https://btctranscripts.com/coindesk-consensus-2016/internal-approaches-blockchain-database-technology-strategies/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/internet-of-value/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/intro/","https://btctranscripts.com/scalingbitcoin/milan-2016/intro/","https://btctranscripts.com/w3-blockchain-workshop-2016/wendy/","https://btctranscripts.com/cryptoeconomic-systems/2019/introduction/","https://btctranscripts.com/scalingbitcoin/stanford-2017/intro/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/introduction/","https://btctranscripts.com/baltic-honeybadger/2018/investing-in-bitcoin-businesses/","https://btctranscripts.com/w3-blockchain-workshop-2016/ipfs/","https://btctranscripts.com/scalingbitcoin/montreal-2015/issues-impacting-block-size-proposals/","https://btctranscripts.com/cryptoeconomic-systems/2019/journal-review/","https://btctranscripts.com/cryptoeconomic-systems/2019/journals-as-clubs/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote-gavin-andresen/","https://btctranscripts.com/coindesk-consensus-2016/law-enforcement-and-anonymous-transactions/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/lessons-for-bitcoin-from-150-years-of-decentralization/","https://btctranscripts.com/cryptoeconomic-systems/2019/libra/","https://btctranscripts.com/edgedevplusplus/2019/lightning-network-routing/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/linq/","https://btctranscripts.com/stanford-blockchain-conference/2020/lower-bounds-limits-plasma/","https://btctranscripts.com/w3-blockchain-workshop-2016/matsuo/","https://btctranscripts.com/cryptoeconomic-systems/2019/mechanism-design/","https://btctranscripts.com/decentralized-financial-architecture-workshop/metadata/","https://btctranscripts.com/edgedevplusplus/2019/metadata/","https://btctranscripts.com/stanford-blockchain-conference/2020/mixicles/","https://btctranscripts.com/scalingbitcoin/montreal-2015/more-core-devs/","https://btctranscripts.com/stanford-blockchain-conference/2020/motoko-language/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/multi-party-channels-in-the-utxo-model-challenges-and-opportunities/","https://btctranscripts.com/cryptoeconomic-systems/2019/near-misses/","https://btctranscripts.com/stanford-blockchain-conference/2020/no-incentive/","https://btctranscripts.com/scalingbitcoin/montreal-2015/non-currency-applications/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/omniledger/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/eric-martindale/","https://btctranscripts.com/breaking-bitcoin/2019/opening-remarks/","https://btctranscripts.com/stanford-blockchain-conference/2019/opening-remarks/","https://btctranscripts.com/coindesk-consensus-2016/opening-remarks-state-of-blockchain-ryan-selkis/","https://btctranscripts.com/scalingbitcoin/stanford-2017/optimizing-fee-estimation-via-mempool-state/","https://btctranscripts.com/decentralized-financial-architecture-workshop/perspective/","https://btctranscripts.com/w3-blockchain-workshop-2016/physical-assets/","https://btctranscripts.com/stanford-blockchain-conference/2020/plonk/","https://btctranscripts.com/baltic-honeybadger/2018/present-and-future-tech-challenges-in-bitcoin/","https://btctranscripts.com/stanford-blockchain-conference/2020/prism/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/prism/","https://btctranscripts.com/scalingbitcoin/montreal-2015/privacy-and-fungibility/","https://btctranscripts.com/w3-blockchain-workshop-2016/privacy-anonymity-and-identity-group/","https://btctranscripts.com/stanford-blockchain-conference/2019/privacy-preserving-multi-hop-locks/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/proof-of-necessary-work/","https://btctranscripts.com/stanford-blockchain-conference/2020/proof-of-necessary-work/","https://btctranscripts.com/w3-blockchain-workshop-2016/provenance-groups/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/research-and-development-goals/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/r3/","https://btctranscripts.com/coindesk-consensus-2016/reaching-consensus-open-blockchains/","https://btctranscripts.com/scalingbitcoin/stanford-2017/redesigning-bitcoin-fee-market/","https://btctranscripts.com/cryptoeconomic-systems/2019/reproducible-builds/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/reproducible-lightning-benchmark/","https://btctranscripts.com/scalingbitcoin/montreal-2015/reworking-bitcoin-core-p2p-code-for-robustness-and-event-driven/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/rootstock/","https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-1/","https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-2/","https://btctranscripts.com/w3-blockchain-workshop-2016/royalties/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/peter-todd-scalability/","https://btctranscripts.com/scalingbitcoin/milan-2016/timestamping/","https://btctranscripts.com/stanford-blockchain-conference/2020/scalable-rsa-modulus-generation/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/scaling-debate-is-a-proxy-battle-over-centralization/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/scriptless-lotteries/","https://btctranscripts.com/grincon/2019/scriptless-scripts-with-mimblewimble/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/secure-fountain-architecture/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/security-and-usability/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/self-reproducing-coins-as-universal-turing-machine/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/self-sovereign-identity-ideology-and-architecture/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/shamir-secret-sharing/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/siacoin/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/matt-corallo-sidechains/","https://btctranscripts.com/scalingbitcoin/milan-2016/sidechains/","https://btctranscripts.com/w3-blockchain-workshop-2016/smart-signatures/","https://btctranscripts.com/scalingbitcoin/montreal-2015/snarks/","https://btctranscripts.com/stanford-blockchain-conference/2020/solving-data-availability-attacks-using-coded-merkle-trees/","https://btctranscripts.com/cryptoeconomic-systems/2019/solving-the-blockchain-trilemma/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/some-questions-for-bitcoiners/","https://btctranscripts.com/dallas-bitcoin-symposium/sound-money/","https://btctranscripts.com/stanford-blockchain-conference/2020/stark-for-developers/","https://btctranscripts.com/stanford-blockchain-conference/2019/state-channels/","https://btctranscripts.com/coindesk-consensus-2016/state-of-blockchain/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/statechains/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/andrew-miller/","https://btctranscripts.com/stanford-blockchain-conference/2020/streamlet/","https://btctranscripts.com/scalingbitcoin/montreal-2015/stroem-payment-channels/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/swashbuckling-safety-training/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/","https://btctranscripts.com/dallas-bitcoin-symposium/texas-energy-market/","https://btctranscripts.com/baltic-honeybadger/2018/the-b-foundation/","https://btctranscripts.com/baltic-honeybadger/2018/the-bitcoin-standard/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/bitcoin-script/","https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/","https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/","https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-lightning/","https://btctranscripts.com/stanford-blockchain-conference/2020/libra-blockchain-intro/","https://btctranscripts.com/stanford-blockchain-conference/2020/optimistic-vm/","https://btctranscripts.com/stanford-blockchain-conference/2019/stark-dex/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/threshold-scriptless-scripts/","https://btctranscripts.com/simons-institute/todo/","https://btctranscripts.com/cryptoeconomic-systems/2019/token-journal/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/topics/","https://btctranscripts.com/baltic-honeybadger/2018/trading-panel/","https://btctranscripts.com/stanford-blockchain-conference/2020/transparent-dishonesty/","https://btctranscripts.com/stanford-blockchain-conference/2020/transparent-snarks-from-dark-compilers/","https://btctranscripts.com/cryptoeconomic-systems/2019/trust-and-blockchain-marketplaces/","https://btctranscripts.com/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/txprobe/","https://btctranscripts.com/scalingbitcoin/milan-2016/unlinkable-outsourced-channel-monitoring/","https://btctranscripts.com/coindesk-consensus-2016/upgrading-capital-markets-for-digital-asset-trading/","https://btctranscripts.com/stanford-blockchain-conference/2019/urkel-trees/","https://btctranscripts.com/scalingbitcoin/montreal-2015/validation-costs/","https://btctranscripts.com/coindesk-consensus-2016/visa-chain/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/weak-signals/","https://btctranscripts.com/coindesk-consensus-2016/why-bitcoin-still-matters/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/work-in-progress/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/zerolink-sudoku/"],"speakers":["https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/asmap/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/assumeutxo-mainnet-readiness/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/gui-discussions/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/kernel/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/signet-testnet4/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/p2p-monitoring/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/silent-payment-descriptors/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/coin-selection/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/cross-input-signature-aggregation/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/great-consensus-cleanup/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/private-tx-broadcast/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/silent-payments-libsecp/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/stratumv2/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/weak-blocks/","https://btctranscripts.com/lightning-specification/lightning-2024-01-15-specification-call/","https://btctranscripts.com/lightning-specification/2023-11-20-specification-call/","https://btctranscripts.com/lightning-specification/2023-11-06-specification-call/","https://btctranscripts.com/lightning-specification/2023-10-23-specification-call/","https://btctranscripts.com/lightning-specification/2023-09-25-specification-call/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/signature-aggregation/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/assumeutxo-update/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/libsecp256k1-meeting/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-design-goals/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/wallet-coin-selection/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-working-session/","https://btctranscripts.com/lightning-specification/2023-08-28-specification-call/","https://btctranscripts.com/lightning-specification/2023-08-14-specification-call/","https://btctranscripts.com/lightning-specification/2023-07-31-specification-call/","https://btctranscripts.com/lightning-specification/2023-07-17-specification-call/","https://btctranscripts.com/lightning-specification/2023-06-19-specification-call/","https://btctranscripts.com/lightning-specification/2023-06-05-specification-call/","https://btctranscripts.com/lightning-specification/2023-05-22-specification-call/","https://btctranscripts.com/lightning-specification/2023-05-08-specification-call/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-meta-discussion/","https://btctranscripts.com/lightning-specification/2023-04-24-specification-call/","https://btctranscripts.com/lightning-specification/2023-02-13-specification-call/","https://btctranscripts.com/lightning-specification/2023-01-30-specification-call/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-research-wishlist/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-merging/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-github/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-frost/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-hac-spec/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-package-relay/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-stratum-v2/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/","https://btctranscripts.com/lightning-specification/2022-03-14-specification-call/","https://btctranscripts.com/c-lightning/2022-03-07-developer-call/","https://btctranscripts.com/lightning-specification/2022-02-14-specification-call/","https://btctranscripts.com/lightning-specification/2022-01-31-specification-call/","https://btctranscripts.com/c-lightning/2022-01-24-developer-call/","https://btctranscripts.com/c-lightning/2022-01-10-developer-call/","https://btctranscripts.com/lightning-specification/2022-01-03-specification-call/","https://btctranscripts.com/c-lightning/2021-12-13-developer-call/","https://btctranscripts.com/lightning-specification/2021-12-06-specification-call/","https://btctranscripts.com/c-lightning/2021-11-29-developer-call/","https://btctranscripts.com/lightning-specification/2021-11-22-specification-call/","https://btctranscripts.com/c-lightning/2021-11-15-developer-call/","https://btctranscripts.com/sydney-bitcoin-meetup/2021-11-02-socratic-seminar/","https://btctranscripts.com/c-lightning/2021-11-01-developer-call/","https://btctranscripts.com/c-lightning/2021-10-18-developer-call/","https://btctranscripts.com/c-lightning/2021-10-04-developer-call/","https://btctranscripts.com/c-lightning/2021-09-20-developer-call/","https://btctranscripts.com/c-lightning/2021-09-06-developer-call/","https://btctranscripts.com/stephan-livera-podcast/2021-08-24-seedsigner/","https://btctranscripts.com/c-lightning/2021-08-23-developer-call/","https://btctranscripts.com/london-bitcoin-devs/2021-08-10-socratic-seminar-dlcs/","https://btctranscripts.com/c-lightning/2021-08-09-developer-call/","https://btctranscripts.com/london-bitcoin-devs/2021-07-20-socratic-seminar-taproot-rollout/","https://btctranscripts.com/sydney-bitcoin-meetup/2021-07-06-socratic-seminar/","https://btctranscripts.com/sydney-bitcoin-meetup/2021-06-01-socratic-seminar/","https://btctranscripts.com/sf-bitcoin-meetup/2020-11-30-socratic-seminar-20/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-08-25-socratic-seminar/","https://btctranscripts.com/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/","https://btctranscripts.com/london-bitcoin-devs/2020-08-19-socratic-seminar-signet/","https://btctranscripts.com/chicago-bitdevs/2020-08-12-socratic-seminar/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-07-21-socratic-seminar/","https://btctranscripts.com/chicago-bitdevs/2020-07-08-socratic-seminar/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-06-23-socratic-seminar/","https://btctranscripts.com/wasabi/research-club/2020-06-15-coinswap/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-05-19-socratic-seminar/","https://btctranscripts.com/london-bitcoin-devs/2020-05-19-socratic-seminar-vaults/","https://btctranscripts.com/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/communication-with-regulators/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/technological-stability/","https://btctranscripts.com/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/","https://btctranscripts.com/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/","https://btctranscripts.com/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/","https://btctranscripts.com/bitcoinops/2019-09-27-schnorr-taproot-workshop/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/private-information-retrieval/","https://btctranscripts.com/decentralized-financial-architecture-workshop/custody-group/","https://btctranscripts.com/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-code-review/","https://btctranscripts.com/magicalcryptoconference/2019/intro/","https://btctranscripts.com/magicalcryptoconference/2019/mcf-episode/","https://btctranscripts.com/misc/2019-01-05-unchained-capital-socratic-seminar/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-09-bitcoin-optech/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-09-wallet-stuff/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-efficient-p2p-transaction-relay/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/","https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/","https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/","https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/","https://btctranscripts.com/scalingbitcoin/milan-2016/lightning/","https://btctranscripts.com/sf-bitcoin-meetup/2016-09-28-christopher-jeffrey-bcoin/","https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/cali2016/","https://btctranscripts.com/misc/nydfs-bitlicense-lawsky-update/","https://btctranscripts.com/style/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/abstract-groups/","https://btctranscripts.com/w3-blockchain-workshop-2016/archival-science/","https://btctranscripts.com/scalingbitcoin/milan-2016/chainbreak/","https://btctranscripts.com/scalingbitcoin/milan-2016/day-1-group-summaries/","https://btctranscripts.com/scalingbitcoin/milan-2016/day-2-group-summaries/","https://btctranscripts.com/w3-blockchain-workshop-2016/day-2-groups/","https://btctranscripts.com/w3-blockchain-workshop-2016/deterministic-signatures-group/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/economic-risks/","https://btctranscripts.com/w3-blockchain-workshop-2016/ethcore/","https://btctranscripts.com/scalingbitcoin/montreal-2015/future-of-spv-tech/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/gavinandresen/","https://btctranscripts.com/texas-bitcoin-conference-2014/gox/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/group-updates/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/groups/","https://btctranscripts.com/w3-blockchain-workshop-2016/groups-identity/","https://btctranscripts.com/dallas-bitcoin-symposium/history-and-extrapolation/","https://btctranscripts.com/scalingbitcoin/montreal-2015/how-to-mine-bitcoin-profitably/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/intro/","https://btctranscripts.com/w3-blockchain-workshop-2016/ipfs/","https://btctranscripts.com/cryptoeconomic-systems/2019/journal-review/","https://btctranscripts.com/stanford-blockchain-conference/2019/links/","https://btctranscripts.com/decentralized-financial-architecture-workshop/metadata/","https://btctranscripts.com/edgedevplusplus/2019/metadata/","https://btctranscripts.com/scalingbitcoin/montreal-2015/more-core-devs/","https://btctranscripts.com/baltic-honeybadger/2018/opening/","https://btctranscripts.com/breaking-bitcoin/2019/opening-remarks/","https://btctranscripts.com/decentralized-financial-architecture-workshop/perspective/","https://btctranscripts.com/w3-blockchain-workshop-2016/physical-assets/","https://btctranscripts.com/scalingbitcoin/montreal-2015/privacy-and-fungibility/","https://btctranscripts.com/w3-blockchain-workshop-2016/privacy-anonymity-and-identity-group/","https://btctranscripts.com/w3-blockchain-workshop-2016/provenance-groups/","https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-2/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/shamir-secret-sharing/","https://btctranscripts.com/coindesk-consensus-2016/state-of-blockchain/","https://btctranscripts.com/simons-institute/todo/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/topics/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/weak-signals/"],"tags":["https://btctranscripts.com/bitcoin-explained/hashcash-and-bit-gold/","https://btctranscripts.com/stephan-livera-podcast/2023-03-06-greg-sanders/","https://btctranscripts.com/stephan-livera-podcast/2023-02-27-craig-raw-bitcoin-multi-signature/","https://btctranscripts.com/stephan-livera-podcast/2023-02-23-matt-corallo/","https://btctranscripts.com/bitcoin-explained/inscriptions/","https://btctranscripts.com/stephan-livera-podcast/2023-02-02-casey-rodarmor/","https://btctranscripts.com/stephan-livera-podcast/2023-01-23-antoine-poinsot-and-salvatore-ingala/","https://btctranscripts.com/stephan-livera-podcast/2023-01-18-josibake/","https://btctranscripts.com/stephan-livera-podcast/2023-01-14-james-obeirne-a-new-way-to-hodl/","https://btctranscripts.com/stephan-livera-podcast/2022-11-13-dhruv-pieter-wuille-and-tim-ruffing/","https://btctranscripts.com/stephan-livera-podcast/2022-08-11-gloria-zhao/","https://btctranscripts.com/stephan-livera-podcast/2022-08-02-jonas-nick-tim-ruffing/","https://btctranscripts.com/stephan-livera-podcast/2022-04-01-max-hillebrand/","https://btctranscripts.com/stephan-livera-podcast/2022-03-27-rene-pickhardt/","https://btctranscripts.com/stephan-livera-podcast/2022-03-07-john-cantrell-sensei/","https://btctranscripts.com/stephan-livera-podcast/2022-02-15-chris-stewart/","https://btctranscripts.com/stephan-livera-podcast/2022-01-31-nvk-bitcoin-hardware-innovation/","https://btctranscripts.com/stephan-livera-podcast/2022-01-17-jeremy-rubin/","https://btctranscripts.com/stephan-livera-podcast/2022-01-11-salvatore-ingala/","https://btctranscripts.com/stephan-livera-podcast/2021-12-17-eric-sirion/","https://btctranscripts.com/stephan-livera-podcast/2021-11-27-lisa-neigut-alex-bosworth-graham-krizek-and-matt-corallo/","https://btctranscripts.com/stephan-livera-podcast/2021-11-16-pieter-wuille-andrew-poelstra-andrew-chow-mark-erhardt/","https://btctranscripts.com/stephan-livera-podcast/2021-11-12-nicholas-gregory/","https://btctranscripts.com/stephan-livera-podcast/2021-11-07-t-bast/","https://btctranscripts.com/stephan-livera-podcast/2021-10-27-k3tan-networking-for-bitcoiners/","https://btctranscripts.com/stephan-livera-podcast/2021-10-24-dustin-trammell/","https://btctranscripts.com/stephan-livera-podcast/2021-10-02-philip-glazman/","https://btctranscripts.com/stephan-livera-podcast/2021-09-29-thomas-jestopher-and-anthony-potdevin/","https://btctranscripts.com/stephan-livera-podcast/2021-08-24-seedsigner/","https://btctranscripts.com/stephan-livera-podcast/2021-08-09-rusty-russell/","https://btctranscripts.com/stephan-livera-podcast/2021-07-17-andrew-chow/","https://btctranscripts.com/stephan-livera-podcast/2021-07-13-nvk-bitcoin-security/","https://btctranscripts.com/stephan-livera-podcast/2021-05-24-alejandro-de-la-torre/","https://btctranscripts.com/stephan-livera-podcast/2021-05-21-anthony-ronning-bitcoin-lightning-privacy/","https://btctranscripts.com/stephan-livera-podcast/2021-05-13-pavel-moravec/","https://btctranscripts.com/stephan-livera-podcast/2021-04-28-pete-rizzo/","https://btctranscripts.com/stephan-livera-podcast/2021-03-24-craig-raw-bitcoin-multi-sig/","https://btctranscripts.com/stephan-livera-podcast/2021-03-17-luke-dashjr/","https://btctranscripts.com/stephan-livera-podcast/2021-03-04-matt-corallo/","https://btctranscripts.com/stephan-livera-podcast/2021-01-21-wiz-and-simon-mempool/","https://btctranscripts.com/stephan-livera-podcast/2021-01-14-jonas-schnelli-maintaining-bitcoin-core/","https://btctranscripts.com/sf-bitcoin-meetup/2020-11-30-socratic-seminar-20/","https://btctranscripts.com/greg-maxwell/2020-11-25-greg-maxwell-replacing-pgp/","https://btctranscripts.com/greg-maxwell/2020-10-26-greg-maxwell-bitcoin-core-github/","https://btctranscripts.com/stephan-livera-podcast/2020-10-15-nadav-kohen-bitcoin-dlcs/","https://btctranscripts.com/cppcon/2020/2020-10-09-barnabas-bagyi-fuzzing-class-interfaces/","https://btctranscripts.com/stephan-livera-podcast/2020-09-15-steve-lee-of-square-crypto/","https://btctranscripts.com/stephan-livera-podcast/2020-08-28-stepan-snigirev-and-ben-kaufman/","https://btctranscripts.com/greg-maxwell/2020-08-27-greg-maxwell-checkmultisig-bug/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-08-25-socratic-seminar/","https://btctranscripts.com/stephan-livera-podcast/2020-08-13-christian-decker/","https://btctranscripts.com/stephan-livera-podcast/2020-08-09-thomas-voegtlin-ghost43-electrum/","https://btctranscripts.com/stephan-livera-podcast/2020-08-09-thomas-voegtlin-and-ghost43/","https://btctranscripts.com/stephan-livera-podcast/2020-07-21-rootzoll-and-openoms-raspiblitz/","https://btctranscripts.com/chicago-bitdevs/2020-07-08-socratic-seminar/","https://btctranscripts.com/greg-maxwell/2020-07-05-greg-maxwell-useful-proof-of-work/","https://btctranscripts.com/stephan-livera-podcast/2020-06-30-john-cantrell-bruteforcing-bitcoin-seeds/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-06-23-socratic-seminar/","https://btctranscripts.com/lightning-hack-day/2020-06-21-rootzoll-openoms-raspiblitz/","https://btctranscripts.com/stephan-livera-podcast/2020-06-09-ergo-unwinding-bitcoin/","https://btctranscripts.com/greg-maxwell/2020-06-08-greg-maxwell-liquid-censorship-resistance/","https://btctranscripts.com/stephan-livera-podcast/2020-05-27-bitcoin-coin-selection/","https://btctranscripts.com/london-bitcoin-devs/2020-05-19-socratic-seminar-vaults/","https://btctranscripts.com/vr-bitcoin/2020-05-16-oliver-gugger-lsat/","https://btctranscripts.com/ruben-somsen/2020-05-11-ruben-somsen-succinct-atomic-swap/","https://btctranscripts.com/london-bitcoin-devs/2020-04-29-kalle-rosenbaum-grokking-bitcoin/","https://btctranscripts.com/stephan-livera-podcast/2020-04-24-lisa-neigut-lighting-network-channel/","https://btctranscripts.com/london-bitcoin-devs/2020-04-22-socratic-seminar/","https://btctranscripts.com/stephan-livera-podcast/2020-04-21-chris-belcher/","https://btctranscripts.com/stephan-livera-podcast/2020-04-07-gleb-naumenko-erlay/","https://btctranscripts.com/stanford-blockchain-conference/2020/welcome-remarks/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/communication-with-regulators/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/risk-overview/","https://btctranscripts.com/stephan-livera-podcast/2020-02-16-waxwing-or-adam-gibson/","https://btctranscripts.com/london-bitcoin-devs/2020-02-04-james-chiang-trace-net/","https://btctranscripts.com/stephan-livera-podcast/2020-01-06-andreas-antonopoulos/","https://btctranscripts.com/stephan-livera-podcast/2019-12-27-aj-townsschnorr-taproot-tapscript-bips/","https://btctranscripts.com/stephan-livera-podcast/2019-11-27-jan-capekstratum-v2/","https://btctranscripts.com/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/","https://btctranscripts.com/stephan-livera-podcast/2019-11-16-thomas-voegtlin-electrum-wallet/","https://btctranscripts.com/stephan-livera-podcast/2019-11-13-jon-atack/","https://btctranscripts.com/stephan-livera-podcast/2019-11-08-allen-piscitellosidechains/","https://btctranscripts.com/stephan-livera-podcast/2019-10-29-jack-mallers/","https://btctranscripts.com/stephan-livera-podcast/2019-10-24-alex-bosworth-submarine-swaps/","https://btctranscripts.com/lightning-conference/2019/2019-10-19-chris-stewart-private-key-management/","https://btctranscripts.com/stephan-livera-podcast/2019-09-22-bryan-bishop/","https://btctranscripts.com/edgedevplusplus/2019/debugging-bitcoin/","https://btctranscripts.com/edgedevplusplus/2019/libbitcoin/","https://btctranscripts.com/edgedevplusplus/2019/bitcoin-data-structures/","https://btctranscripts.com/decentralized-financial-architecture-workshop/introduction/","https://btctranscripts.com/dallas-bitcoin-symposium/intro/","https://btctranscripts.com/dallas-bitcoin-symposium/q-a/","https://btctranscripts.com/stephan-livera-podcast/2019-08-12-rusty-russell-joe-netti/","https://btctranscripts.com/stephan-livera-podcast/2019-08-08-michael-flaxman/","https://btctranscripts.com/stephan-livera-podcast/2019-07-31-roy-sheinfeld-lightning-network-services/","https://btctranscripts.com/stephan-livera-podcast/2019-07-31-roy-sheinfeld-stephan-livera/","https://btctranscripts.com/stephan-livera-podcast/2019-07-25-britt-kelly-btcpayserver-documentation/","https://btctranscripts.com/stephan-livera-podcast/2019-06-24-conner-fromknecht-stephan-livera/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-code-review/","https://btctranscripts.com/what-bitcoin-did-podcast/2019-05-14-adam-back-bryan-bishop-block-reorgs/","https://btctranscripts.com/magicalcryptoconference/2019/fork-dynamics/","https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-satellite-network/","https://btctranscripts.com/magicalcryptoconference/2019/htc/","https://btctranscripts.com/magicalcryptoconference/2019/intro/","https://btctranscripts.com/magicalcryptoconference/2019/mcf-episode/","https://btctranscripts.com/stephan-livera-podcast/2019-04-11-james-obeirne/","https://btctranscripts.com/stephan-livera-podcast/2019-03-11-chris-belcher/","https://btctranscripts.com/stephan-livera-podcast/2019-02-11-jack-dorsey-elizabeth-stark/","https://btctranscripts.com/stephan-livera-podcast/2019-07-21-kukks-btcpayserver-architecture/","https://btctranscripts.com/stephan-livera-podcast/2019-01-20-nicolas-dorier-and-btcpayserver/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/analysis-of-dust-in-utxo-based-cryptocurrencies/","https://btctranscripts.com/edgedevplusplus/2018/python-bitcoinlib/","https://btctranscripts.com/edgedevplusplus/2018/block-structure-and-headers-utxos-merkle-trees-segwit-bip141/","https://btctranscripts.com/edgedevplusplus/2018/introduction/","https://btctranscripts.com/noded-podcast/jnewbery-cve-2018-17144-bug/","https://btctranscripts.com/greg-maxwell/2018-09-23-greg-maxwell-multiple-implementations/","https://btctranscripts.com/building-on-bitcoin/2018/bitcoin-assets/","https://btctranscripts.com/building-on-bitcoin/2018/libbitcoin/","https://btctranscripts.com/building-on-bitcoin/2018/anonymous-bitcoin/","https://btctranscripts.com/building-on-bitcoin/2018/binary-transparency/","https://btctranscripts.com/layer2-summit/2018/scriptless-scripts/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/","https://btctranscripts.com/satoshi-roundtable/sr-004/ron-paul/","https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/proofs-of-space/","https://btctranscripts.com/misc/2018-01-24-rusty-russell-future-bitcoin-tech-directions/","https://btctranscripts.com/scalingbitcoin/stanford-2017/joi-ito/","https://btctranscripts.com/cppcon/2017/2017-10-11-kostya-serebryany-fuzzing/","https://btctranscripts.com/breaking-bitcoin/2017/2017-09-10-christopher-jeffrey-consensus-pitfalls/","https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/","https://btctranscripts.com/greg-maxwell/2017-08-28-gmaxwell-deep-dive-bitcoin-core-v0.15/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/ideal-number-of-full-bitcoin-nodes/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/scaling-and-utxos/","https://btctranscripts.com/misc/2016-adam-back/","https://btctranscripts.com/w3-blockchain-workshop-2016/intro/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/pindar-wong/","https://btctranscripts.com/scalingbitcoin/montreal-2015/block-synchronization-time/","https://btctranscripts.com/misc/2015-09-07-epicenter-bitcoin-adam3us-scalability/","https://btctranscripts.com/simons-institute/pairing-cryptography/","https://btctranscripts.com/style/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/a-bevy-of-block-size-proposals-bip100-bip102-and-more/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/abstract-groups/","https://btctranscripts.com/bit-block-boom/2019/accumulating-bitcoin/","https://btctranscripts.com/cryptoeconomic-systems/2019/all-about-decentralized-trust/","https://btctranscripts.com/w3-blockchain-workshop-2016/archival-science/","https://btctranscripts.com/w3-blockchain-workshop-2016/arvind-narayanan/","https://btctranscripts.com/scalingbitcoin/stanford-2017/atomically-trading-with-roger-gambling-on-the-success-of-a-hard-fork/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/backpackers/","https://btctranscripts.com/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/","https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-developers/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-financing-and-trading/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-maximalism-dissected/","https://btctranscripts.com/stanford-blockchain-conference/2019/bitcoin-payment-economic-analysis/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/","https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-without-internet/","https://btctranscripts.com/stanford-blockchain-conference/2020/block-rewards/","https://btctranscripts.com/coindesk-consensus-2016/blockchain-database-technology-in-a-global-context/","https://btctranscripts.com/w3-blockchain-workshop-2016/blockchain-hub/","https://btctranscripts.com/stanford-blockchain-conference/2020/blockchains-for-multiplayer-games/","https://btctranscripts.com/stanford-blockchain-conference/2020/brick-async-state-channels/","https://btctranscripts.com/scalingbitcoin/milan-2016/build-scale-operate/","https://btctranscripts.com/bit-block-boom/2019/building-vibrant-bitcoin-communities/","https://btctranscripts.com/misc/cftc-bitcoin/","https://btctranscripts.com/scalingbitcoin/milan-2016/chainbreak/","https://btctranscripts.com/w3-blockchain-workshop-2016/christopher-allen/","https://btctranscripts.com/coindesk-consensus-2016/clearing-and-settlement-for-global-financial-institutions/","https://btctranscripts.com/stanford-blockchain-conference/2020/clockwork-nonfrontrunning/","https://btctranscripts.com/scalingbitcoin/milan-2016/coin-selection/","https://btctranscripts.com/stanford-blockchain-conference/2019/coordinated-upgrades/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/cory-fields/","https://btctranscripts.com/cryptoeconomic-systems/2019/cross-chain-deals-and-adversarial-commerce/","https://btctranscripts.com/misc/ctv-bip-review-workshop/","https://btctranscripts.com/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/","https://btctranscripts.com/scalingbitcoin/milan-2016/day-2-group-summaries/","https://btctranscripts.com/w3-blockchain-workshop-2016/day-2-groups/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/day-2-opening/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/deploying-blockchain-at-scale-lessons-from-the-internet-deployment-in-japan/","https://btctranscripts.com/misc/discreet-log-contracts/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/economic-risks/","https://btctranscripts.com/cryptoeconomic-systems/2019/everything-is-broken/","https://btctranscripts.com/scalingbitcoin/milan-2016/fast-difficulty-adjustment/","https://btctranscripts.com/bit-block-boom/2019/fiat-money-fiat-food/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/forward-blocks/","https://btctranscripts.com/breaking-bitcoin/2019/fud-perceived-vs-real-bitcoin-risks/","https://btctranscripts.com/cryptoeconomic-systems/2019/funding/","https://btctranscripts.com/coindesk-consensus-2016/future-of-blockchains/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/gavinandresen/","https://btctranscripts.com/texas-bitcoin-conference-2014/gox/","https://btctranscripts.com/w3-blockchain-workshop-2016/groups-identity/","https://btctranscripts.com/coindesk-consensus-2016/hackathon-intro/","https://btctranscripts.com/dallas-bitcoin-symposium/history-and-extrapolation/","https://btctranscripts.com/coindesk-consensus-2016/how-tech-companies-are-embracing-blockchain-database-technology/","https://btctranscripts.com/coindesk-consensus-2016/how-to-get-bitcoin/","https://btctranscripts.com/bit-block-boom/2019/how-to-meme-bitcoin-to-the-moon/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/human-side-trust-workshop/","https://btctranscripts.com/coindesk-consensus-2016/internal-approaches-blockchain-database-technology-strategies/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/internet-of-value/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/intro/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/intro/","https://btctranscripts.com/scalingbitcoin/milan-2016/intro/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/intro/","https://btctranscripts.com/w3-blockchain-workshop-2016/wendy/","https://btctranscripts.com/cryptoeconomic-systems/2019/introduction/","https://btctranscripts.com/scalingbitcoin/stanford-2017/intro/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/introduction/","https://btctranscripts.com/baltic-honeybadger/2018/investing-in-bitcoin-businesses/","https://btctranscripts.com/w3-blockchain-workshop-2016/ipfs/","https://btctranscripts.com/cryptoeconomic-systems/2019/journal-review/","https://btctranscripts.com/cryptoeconomic-systems/2019/journals-as-clubs/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote-gavin-andresen/","https://btctranscripts.com/coindesk-consensus-2016/law-enforcement-and-anonymous-transactions/","https://btctranscripts.com/cryptoeconomic-systems/2019/libra/","https://btctranscripts.com/stanford-blockchain-conference/2019/links/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/linq/","https://btctranscripts.com/decentralized-financial-architecture-workshop/metadata/","https://btctranscripts.com/edgedevplusplus/2019/metadata/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/omniledger/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/eric-martindale/","https://btctranscripts.com/baltic-honeybadger/2018/opening/","https://btctranscripts.com/breaking-bitcoin/2019/opening-remarks/","https://btctranscripts.com/stanford-blockchain-conference/2019/opening-remarks/","https://btctranscripts.com/coindesk-consensus-2016/opening-remarks-state-of-blockchain-ryan-selkis/","https://btctranscripts.com/w3-blockchain-workshop-2016/physical-assets/","https://btctranscripts.com/stanford-blockchain-conference/2020/plonk/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/r3/","https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-1/","https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-2/","https://btctranscripts.com/w3-blockchain-workshop-2016/royalties/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/scaling-debate-is-a-proxy-battle-over-centralization/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/self-sovereign-identity-ideology-and-architecture/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/shamir-secret-sharing/","https://btctranscripts.com/w3-blockchain-workshop-2016/smart-signatures/","https://btctranscripts.com/scalingbitcoin/montreal-2015/snarks/","https://btctranscripts.com/stanford-blockchain-conference/2020/solving-data-availability-attacks-using-coded-merkle-trees/","https://btctranscripts.com/cryptoeconomic-systems/2019/solving-the-blockchain-trilemma/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/some-questions-for-bitcoiners/","https://btctranscripts.com/stanford-blockchain-conference/2019/state-channels/","https://btctranscripts.com/scalingbitcoin/montreal-2015/stroem-payment-channels/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/swashbuckling-safety-training/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/","https://btctranscripts.com/baltic-honeybadger/2018/the-b-foundation/","https://btctranscripts.com/baltic-honeybadger/2018/the-bitcoin-standard/","https://btctranscripts.com/baltic-honeybadger/2018/the-reserve-currency-fallacy/","https://btctranscripts.com/cryptoeconomic-systems/2019/token-journal/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/topics/","https://btctranscripts.com/baltic-honeybadger/2018/trading-panel/","https://btctranscripts.com/coindesk-consensus-2016/upgrading-capital-markets-for-digital-asset-trading/","https://btctranscripts.com/stanford-blockchain-conference/2019/urkel-trees/","https://btctranscripts.com/coindesk-consensus-2016/visa-chain/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/weak-signals/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/welcome/","https://btctranscripts.com/coindesk-consensus-2016/why-bitcoin-still-matters/","https://btctranscripts.com/magicalcryptoconference/2019/why-block-sizes-should-not-be-too-big/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/work-in-progress/","https://btctranscripts.com/simons-institute/zero-knowledge-probabilistic-proof-systems/"],"transcript_by":["https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/asmap/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/assumeutxo-mainnet-readiness/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/gui-discussions/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/kernel/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/signet-testnet4/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/p2p-monitoring/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/silent-payment-descriptors/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/coin-selection/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/cross-input-signature-aggregation/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/great-consensus-cleanup/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/private-tx-broadcast/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/silent-payments-libsecp/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/stratumv2/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/weak-blocks/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/cmake/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/wallet-legacy-upgrade/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/signature-aggregation/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/assumeutxo-update/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/kernel-planning/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/libsecp256k1-meeting/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-design-goals/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/package-relay-planning/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/privacy-metrics/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/wallet-coin-selection/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-working-session/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/kernel-update/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-assumeutxo/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-fuzzing/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-libbitcoin-kernel/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-meta-discussion/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-asmap/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-mempool-clustering/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-package-relay-primer/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-refactors/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-silent-payments/","https://btctranscripts.com/style/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/discreet-log-contracts-oracles-loans-stablecoins-and-more/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/open-source-mining/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/unlocking-expressivity-with-op-cat/"]},"needs":{"transcript":[{"categories":["conference"],"date":"2019-09-09","loc":"edgedevplusplus/2019","media":"https://www.youtube.com/watch?v=xlKQP9J88uA","source_file":"https://www.youtube.com/watch?v=xlKQP9J88uA","speakers":["Tadge Dryja"],"tags":["proof-systems","utreexo"],"title":"Acumulator Based Cryptography \u0026 UTreexo","url":"https://btctranscripts.com/edgedevplusplus/2019/accumulators/"},{"categories":["conference"],"date":"2019-09-09","loc":"edgedevplusplus/2019","media":null,"source_file":null,"speakers":["Elichai Turkel","James Chiang"],"tags":["taproot"],"title":"Build a Taproot","url":"https://btctranscripts.com/edgedevplusplus/2019/taproot/"},{"categories":null,"date":"","loc":"bitcoin-magazine/bitcoin-2024","media":"https://www.youtube.com/watch?v=9gdm6C_xnFI","source_file":"https://www.youtube.com/watch?v=9gdm6C_xnFI","speakers":["Aki Balogh","Shehzan Maredia","Daniel Hinton","Tadge Dryja"],"tags":["dlc"],"title":"Discreet Log Contracts, Oracles, Loans, Stablecoins, and More","url":"https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/discreet-log-contracts-oracles-loans-stablecoins-and-more/"},{"categories":null,"date":"","loc":"bitcoin-magazine/bitcoin-2024","media":"https://www.youtube.com/watch?v=iUmacjDTrCU","source_file":"https://www.youtube.com/watch?v=iUmacjDTrCU","speakers":["Kulpreet Singh","Matt Corallo","Skot 9000","Mark Erhart"],"tags":["mining"],"title":"Open Source Mining","url":"https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/open-source-mining/"},{"categories":null,"date":"","loc":"bitcoin-magazine/bitcoin-2024","media":"https://www.youtube.com/watch?v=mztdh1J6Lpc","source_file":"https://www.youtube.com/watch?v=mztdh1J6Lpc","speakers":["Andrew Poelstra","Brandon Black","Rijndael","Lisa Neigut"],"tags":["op-cat"],"title":"Unlocking Expressivity with OP_CAT","url":"https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/unlocking-expressivity-with-op-cat/"}]},"transcripts":{"en":1059,"es":84,"pt":1,"zh":13}} \ No newline at end of file +{"existing":{"categories":["club","conference","core-dev-tech","developer-tools","hackathon","meeting","meetup","podcast","residency","video","workshop"],"media":["https://www.youtube.com/watch?v=zOZRRyboaYo","https://www.youtube.com/watch?v=HvI7NPI_Pk0","https://podcasters.spotify.com/pod/show/bitcoinbrink/episodes/Discussing-0-21-0-Bitcoin-Core-Vulnerability-Disclosures-e2mm5sr","https://podcasters.spotify.com/pod/show/bitcoinbrink/episodes/Discussing-Pre-0-21-0-Bitcoin-Core-Vulnerability-Disclosures-e2ltlkr","https://bitcoinexplainedpodcast.com/@nado/episodes/episode-94-silent-payments-part-2","https://www.youtube.com/watch?v=NrrD6ufaSrM","https://bitcoinexplainedpodcast.com/@nado/episodes/episode-93-the-great-consensus-cleanup-revival-and-an-update-on-the-tornado-cash-and-samourai-wallet-arrests-5bbxi","https://www.youtube.com/watch?v=Qas090xjdGw","https://bitcoinexplainedpodcast.com/@nado/episodes/episode-92-bitcoin-core-27-0-c4wla","https://twitter.com/i/spaces/1mnxepjZboAJX","https://www.youtube.com/watch?v=zk_EEKeAFuY","https://www.youtube.com/watch?v=Cqmk2cZ2IjM","https://www.youtube.com/watch?v=rCQKqe2XCqI","https://bitcoinexplainedpodcast.com/@nado/episodes/episode-88-hashcash-and-bit-gold-a5cjn","https://bitcoinexplainedpodcast.com/@nado/episodes/episode-87-the-block-1-983-702-problem-s7s3j","https://www.youtube.com/watch?v=yq_cOVHr8Pg","https://www.youtube.com/watch?v=F6qPuhsM5Ng","https://www.youtube.com/watch?v=d1HIBE4fCmE","https://bitcoinexplainedpodcast.com/@nado/episodes/episode-86-ocean-tides-hktbg","https://bitcoinexplainedpodcast.com/@nado/episodes/episode-85-bitcoin-core-26-0-and-f2pool-s-ofac-compliant-mining-policy-ainlt","https://www.youtube.com/watch?v=o8tjsVdiPUI","https://www.youtube.com/watch?v=8Z79CeBw3Nc","https://podcasters.spotify.com/pod/show/bitcoinbrink/episodes/Sebastian-Falbesoner-on-Code-Review-and-BIP324-e2909ue","https://podcasters.spotify.com/pod/show/chaincode/episodes/Rusty-Russell-and-privacy-and-robustness-in-Lightning---episode-34-e27t6go","https://www.youtube.com/watch?v=4oCwbRCuF7I","https://www.youtube.com/watch?v=E_z4hjvVzoQ","https://podcasters.spotify.com/pod/show/chaincode/episodes/Elle-Mouton--Oliver-Gugger-and-Simple-Taproot-Channels---Episode-33-e2724sl","https://www.youtube.com/watch?v=5yPVp6vNHiY","https://www.youtube.com/watch?v=C-jpZePiAcQ","https://www.youtube.com/watch?v=TN2P9xwd6ZU","https://www.youtube.com/watch?v=OBt1nS14Ac4","https://podcasters.spotify.com/pod/show/chaincode/episodes/Alekos-Filini--Daniela-Brozzoni-and-the-Bitcoin-Development-Kit-BDK---Episode-32-e24m4o1","https://www.youtube.com/watch?v=SjLPbjs9LkI","https://www.youtube.com/watch?v=h4ReIIapN8Y","https://www.youtube.com/watch?v=M40yzuv6DNY","https://www.youtube.com/watch?v=IvfmfcAX9wU","https://www.youtube.com/watch?v=BsWR94cbZ3Y","https://www.youtube.com/watch?v=jvFdPwssv_E","https://www.youtube.com/watch?v=-nzVYVcdk9M","https://podcasters.spotify.com/pod/show/chaincode/episodes/Tadge-Dryja-and-Lightning-History-and-everything-else---Episode-31-e20udtf","https://www.youtube.com/watch?v=OFMU1xV5uQk","https://www.youtube.com/watch?v=SOKNRHyGRvQ","https://podcasters.spotify.com/pod/show/chaincode/episodes/Andrew-Chow-and-the-Bitcoin-Core-Wallet---Episode-30-e204vdj","https://stephanlivera.com/download-episode/6040/463.mp3","https://www.youtube.com/watch?v=gqINXwsR33g","https://www.youtube.com/watch?v=abUF4MQ7j1w","https://www.youtube.com/watch?v=4jO-FDiFw4U","https://stephanlivera.com/download-episode/6034/462.mp3","https://stephanlivera.com/download-episode/6025/461.mp3","https://www.youtube.com/watch?v=uOhkN4nefpI","https://podcasters.spotify.com/pod/show/chaincode/episodes/Greg-Sanders--SIGHASH_ANYPREVOUT--ephemeral-anchors-and-LN-symmetry-ELTOO---Episode-29-e1v1dc3","https://www.youtube.com/watch?v=LC3lZ9dMRoA","https://www.youtube.com/watch?v=Js-5PZi6Uow","https://podcasters.spotify.com/pod/show/chaincode/episodes/Sergi-Delgado-and-Watchtowers--Lightning-Privacy---Episode-28-e1uce42","https://www.youtube.com/watch?v=mwKN3jD8dmU","https://anchor.fm/s/7d083a4/podcast/play/64348045/https%3A%2F%2Fd3ctxlq1ktw2nl.cloudfront.net%2Fstaging%2F2023-1-1%2Ff7fafb12-9441-7d85-d557-e9e5d18ab788.mp3","https://www.youtube.com/watch?v=Nq6WxJ0PgJ4","https://www.youtube.com/watch?v=D5Q7yB_txkU","https://www.youtube.com/watch?v=2WBhDxtxtSI","https://www.youtube.com/watch?v=Nq6WxJ0PgJ4","https://www.youtube.com/watch?v=66W6_AVSxME","https://podcasters.spotify.com/pod/show/chaincode/episodes/Pieter-Wuille-and-Tim-Ruffing---Nesting--ROAST--Half-Aggregation--Adaptor-Signatures-part-2-e1sdgjf","https://podcasters.spotify.com/pod/show/chaincode/episodes/Pieter-Wuille-and-Tim-Ruffing--Schnorr--MuSig--FROST-and-more---Episode-26-e1sav0l","https://www.youtube.com/watch?v=khmLiM9xhwk","https://podcasters.spotify.com/pod/show/chaincode/episodes/Clara-Shikhelman-and-Sergei-Tikhomirov-and-Channel-Jamming-on-the-Lightning-Network---Episode-25-e1r78n4","https://stephanlivera.com/download-episode/5607/433.mp3","https://www.youtube.com/watch?v=Bduon80-4CE","https://podcasters.spotify.com/pod/show/chaincode/episodes/Josibake--the-Bitcoin-Core-wallet-and-wrangling-bitcoin-data---episode-24-e1piaje","https://www.youtube.com/watch?v=s9KMRWkcwtE","https://www.youtube.com/watch?v=f2soc95MWWY","https://www.youtube.com/watch?v=xmvxR0FTrVE","https://www.youtube.com/watch?v=CFsUpyrS51k","https://www.youtube.com/watch?v=3UfrB7_ZOx0","https://podcasters.spotify.com/pod/show/chaincode/episodes/Steve-Lee-and-Lightning-updates--Stratum-V2---Episode-23-e1ofl4j","https://www.youtube.com/watch?v=8L725ufc-58","https://www.youtube.com/watch?v=s8dCyjpfS5E","https://www.youtube.com/watch?v=TpyK_ayKlj0","https://www.youtube.com/watch?v=a61lUwlOF80","https://youtu.be/tWopcFzSTas?t=11604","https://www.youtube.com/watch?v=sUpITup2igE","https://www.youtube.com/watch?v=lQ0dETyS28o","https://www.youtube.com/watch?v=NYj80OGlWGg","https://www.youtube.com/watch?v=FVW6Hgt_meg","https://www.youtube.com/watch?v=hlTfA42b_uI","https://www.youtube.com/watch?v=s_I_Nj5GMgk","https://www.youtube.com/watch?v=42PMLaz7Avk","https://www.youtube.com/watch?v=e0u59hSsmio","https://podcasters.spotify.com/pod/show/chaincode/episodes/0xB10C--Tracepoints-and-monitoring-the-Bitcoin-network-e1jipel","https://podcasters.spotify.com/pod/show/chaincode/episodes/Gloria-Zhao-and-Package-Relay---Episode-21-e1j0ii3","https://podcasters.spotify.com/pod/show/chaincode/episodes/Martin-Zumsande-and-Address-Relay---Episode-20-e1if91d","https://www.youtube.com/watch?v=UIkvHzPIgRM","https://www.youtube.com/watch?v=kf48oPoiHX0","https://www.youtube.com/watch?v=Ua3W9p1Z_RA","https://www.youtube.com/watch?v=bMMG91sJXpM","https://www.youtube.com/watch?v=MdxIkH6GCBs","https://www.youtube.com/watch?v=NtLCL9ztEuQ","https://rumble.com/vz3i3u-frost-the-future-of-schnorr-multisignatures-on-bitcoin.html","https://www.youtube.com/watch?v=CB7HM-Hqi4o","https://www.youtube.com/watch?v=WoVPkmT3gjY","https://www.youtube.com/watch?v=wjACBRJDfxc","https://www.youtube.com/watch?v=GYO5nzq4QoI","https://vimeo.com/703273144","https://www.youtube.com/watch?v=Bn1CWsqt3VQ","https://www.youtube.com/watch?v=WsSa00gUvZw","https://www.youtube.com/watch?v=Uo3uzofPlX0","https://www.youtube.com/watch?v=8uM-v1pSFgs","https://www.youtube.com/watch?v=8RNYhwEQKxM","https://www.youtube.com/watch?v=fqhioVxqmig","https://www.youtube.com/watch?v=C7wG2ngayy8","https://podcasters.spotify.com/pod/show/chaincode/episodes/Sergei-Tikhomirov-and-Lightning-privacy---Episode-19-e1egh3e","https://www.youtube.com/watch?v=5nhN8QMtDmU","https://podcasters.spotify.com/pod/show/chaincode/episodes/Block-Building-with-Clara-and-Murch---Episode-18-e1dmitu","https://www.youtube.com/watch?v=2cp2FoUgAYM","https://www.youtube.com/watch?v=5pmfNOUQg_s?t=285","https://www.youtube.com/watch?v=0D4nvailvWc","https://www.youtube.com/watch?v=pi64CNFu8h4","https://www.youtube.com/watch?v=5KbY4IX0-NQ","https://www.youtube.com/watch?v=ZxrXkprwxUM","https://stephanlivera.com/download-episode/4129/324.mp3","https://www.youtube.com/watch?v=SPOESGI4xnw","https://podcasters.spotify.com/pod/show/bitcoinbrink/episodes/Mempool-Ancestors-and-Descendants-e1ald5e","https://www.youtube.com/watch?v=gOiKlx9a1xg","https://www.youtube.com/watch?v=-uJSdfo4z7c","https://stephanlivera.com/download-episode/4089/321.mp3","https://www.youtube.com/watch?v=fbWSQvJjKFs","https://www.youtube.com/watch?v=ZLhCnehAeeQ","https://www.youtube.com/watch?v=XmKfOCUdH8k","https://podcasters.spotify.com/pod/show/chaincode/episodes/Sanket-Kanjalkar-and-Miniscript---Episode-17-e1a4pmc","https://podcasters.spotify.com/pod/show/bitcoinbrink/episodes/Mempool-Policy-e182ul0","https://www.youtube.com/watch?v=MGv8rTB63Mk","https://www.youtube.com/watch?v=Ubp29_DJ5rM","https://www.youtube.com/watch?v=yXemwW73W5Q","https://www.youtube.com/watch?v=mVihRFrbsbc\u0026t=6470s","https://www.youtube.com/watch?v=m-HiVEFqFZk","https://www.youtube.com/watch?v=W-ajI5YleIo","https://www.youtube.com/watch?v=W-Ev_MZAdgA","https://www.youtube.com/watch?v=xrdhtQPHg2o","https://www.youtube.com/watch?v=JottwT-kEdg","https://www.youtube.com/watch?v=3NA3ojAgw9Y","https://podcasters.spotify.com/pod/show/chaincode/episodes/Pieter-Wuille--Amiti-Uttarwar-and-the-P2P-network---Episode-16-e19bgv7","https://www.youtube.com/watch?v=rWdUOB_NgOo","https://podcasters.spotify.com/pod/show/chaincode/episodes/Amiti-Uttarwar-and-the-P2P-network---Episode-15-e18v7oq","https://www.youtube.com/watch?v=utH_obtgeLY","https://stephanlivera.com/download-episode/3793/307.mp3","https://www.youtube.com/watch?v=RUhI0R4FMEo","https://www.youtube.com/watch?v=xm3BjAKjCXM","https://www.youtube.com/watch?v=TAEQ2D3Npjc","https://www.youtube.com/watch?v=Dzqj236cVHk","https://www.youtube.com/watch?v=LSP0p_IPUIM","https://www.youtube.com/watch?v=h6SkBwOCFsA","https://www.youtube.com/watch?v=KqKzOVH8W9g","https://www.youtube.com/watch?v=GAkLuZNsZzw","https://www.youtube.com/watch?v=kGM3DNtd_iw","https://www.youtube.com/watch?v=K03UDeE1PeE","https://www.youtube.com/watch?v=BRkSE00aj5k\u0026list=PLPwc75tPMdsixsuhwau82Q0IfxECo0z_E\u0026index=18","https://podcasters.spotify.com/pod/show/chaincode/episodes/Chaincode-Decoded-Blockchain---Episode-14-e11n7tl","https://www.youtube.com/watch?v=u-W1wz6UNms","https://stephanlivera.com/download-episode/3343/276.mp3","https://www.youtube.com/watch?v=OHx55vjX_Ig","https://www.youtube.com/watch?v=fxRKMUXoCeE","https://podcast.chaincode.com/2021/05/12/matt-corallo-13.html","https://www.youtube.com/watch?v=RRkiSbHyGvQ","https://podcasters.spotify.com/pod/show/chaincode/episodes/Chaincode-Decoded-Mempool---Episode-12-evn0q1","https://www.youtube.com/watch?v=SHmEXPvN6t4","https://podcasters.spotify.com/pod/show/chaincode/episodes/Chaincode-Decoded-Bech32m---Episode-11-ev1jnc","https://www.youtube.com/watch?v=Gq6vRnJnbBM","https://www.youtube.com/watch?v=rSsPViajzQQ","https://www.youtube.com/watch?v=JoGYnAS_j0g","https://www.youtube.com/watch?v=i_GxmNZjwhk","https://www.youtube.com/watch?v=xxxEST18_p0","https://www.youtube.com/watch?v=_ZDungWdxzk","https://www.youtube.com/watch?v=DsyMUzhfG34","https://stephanlivera.com/episode/260/","https://www.youtube.com/watch?v=rspXF6Gp3-g","https://www.youtube.com/watch?v=3P5sQwiwscI","https://www.youtube.com/watch?v=oCPrjaw3YVI","https://www.youtube.com/watch?v=TXyi-G1Snx4","https://www.youtube.com/watch?v=SY-v2chnS9s","https://www.youtube.com/watch?v=7ouVGgE75zg","https://www.youtube.com/watch?v=gqDB0e5irdQ","https://www.youtube.com/watch?v=58LrQ0Q89x0","https://www.youtube.com/watch?v=R1kF1rnLvM8","https://anchor.fm/tales-from-the-crypt/episodes/228-UASFs--BIP-148--BIP-91--and-Taproot-Activation-with-Matt-Corallo-eq7cif","https://www.youtube.com/watch?v=E9L1CRP3W8k","https://www.youtube.com/watch?v=HGrdiwqlKhU","https://www.youtube.com/watch?v=kM4912dv39o","https://www.youtube.com/watch?v=JZE_UlvBBBk","https://stephanlivera.com/download-episode/2832/242.mp3","https://www.youtube.com/watch?v=DRzDDFetS3E","https://www.youtube.com/watch?v=_qdhc5WLd2A","https://podcasters.spotify.com/pod/show/chaincode/episodes/Carl-Dong-and-Modularizing-the-Bitcoin-Consensus-Engine---Episode-10-enra84","https://www.youtube.com/watch?v=dricwvjkhV0","https://www.youtube.com/watch?v=Y5Gfli3x6rI","https://www.youtube.com/watch?v=I2ZmAPI3ebQ","https://www.youtube.com/watch?v=UK9Yykf2aA4","https://www.youtube.com/watch?v=yy6Mt5-fl0g","https://www.youtube.com/watch?v=hUFNqD3DWWQ","https://www.reddit.com/r/Bitcoin/comments/jp2fp3/opinion_regarding_security/gbhojor?utm_source=share\u0026utm_medium=web2x\u0026context=3","https://www.reddit.com/r/Bitcoin/comments/jlwxpq/why_do_you_think_coldcard_doesnt_support_altcoins/gasoyuj?utm_source=share\u0026utm_medium=web2x\u0026context=3","https://www.youtube.com/watch?v=sWK7aqPjQLI","https://stephanlivera.com/episode/222/","https://www.youtube.com/watch?v=S9pk_NqKCBE","https://www.youtube.com/watch?v=KRPtbq8_1is","https://stephanlivera.com/download-episode/2559/219.mp3","https://www.youtube.com/watch?v=TtPXYPJ5_eE","https://www.youtube.com/watch?v=AyjU0EJZjR8","https://stephanlivera.com/download-episode/2526/216.mp3","https://stephanlivera.com/episode/215/","https://www.youtube.com/watch?v=lGJaIbpf6bk","https://stephanlivera.com/download-episode/2480/211.mp3","https://stephanlivera.com/download-episode/2433/205.mp3","https://www.youtube.com/watch?v=b0AiucAuX3E","https://stephanlivera.com/episode/200/","https://stephanlivera.com/download-episode/2396/200.mp3","https://stephanlivera.com/episode/199/","https://stephanlivera.com/download-episode/2385/199.mp3","https://www.youtube.com/watch?v=yQZb0RDyFCQ","https://www.youtube.com/watch?v=z84_5yhy8fs","https://stephanlivera.com/episode/195/","https://www.youtube.com/watch?v=mT0t8Jm0m5E","https://www.youtube.com/watch?v=2GgabBbEYo0","https://www.youtube.com/watch?v=bPcguc108QM","https://www.reddit.com/r/Bitcoin/comments/hrlpnc/technical_taproot_why_activate/fyqbn8s?utm_source=share\u0026utm_medium=web2x\u0026context=3","https://www.youtube.com/watch?v=4vDuttlImPc","https://www.reddit.com/r/Bitcoin/comments/ho0t1a/what_are_bitcoin_developers_currently_working_on/fxhwqli/?context=3","https://www.youtube.com/watch?v=wzYqkxBoNhw","https://www.youtube.com/watch?v=u7l6rP49hIA","https://www.youtube.com/watch?v=1EqUi4xRbr0","https://www.youtube.com/watch?v=CojixIMgg3c","https://www.youtube.com/watch?v=8Op0Glp9Eoo","https://www.youtube.com/watch?v=uE3lLsf38O4","https://www.youtube.com/watch?v=Pqz7_Eqw9jM","https://stephanlivera.com/download-episode/2153/179.mp3","https://www.youtube.com/watch?v=B3wn6JC0aWc","https://www.youtube.com/watch?v=7CE4aiFxh10","https://www.youtube.com/watch?v=Vkq9CVxMclE","https://www.youtube.com/watch?v=34jMGiCAmQM","https://www.youtube.com/watch?v=IW08RJUpzw0","https://www.youtube.com/watch?v=TlCxpdNScCA","https://www.youtube.com/watch?v=8lUTbfO94mM","https://www.youtube.com/watch?v=hX86rKyNB8I","https://www.youtube.com/watch?v=kGQF3wtzr04","https://www.youtube.com/watch?v=6tHnYyaw0qw","https://stephanlivera.com/download-episode/1969/168.mp3","https://www.youtube.com/watch?v=xDTCT75VwvU","https://stephanlivera.com/download-episode/1955/167.mp3","https://www.youtube.com/watch?v=h34fUGuDjMg","https://www.youtube.com/watch?v=8TaY730YlMg","https://www.youtube.com/watch?v=pgErjQSQQsg","https://youtu.be/H-wH6mY9pZo?t=2549","https://www.youtube.com/watch?v=RZNCk-nyx_A","https://www.youtube.com/watch?v=p5nSibpfHYE","https://stephanlivera.com/download-episode/1909/164.mp3","https://www.youtube.com/watch?v=Y2mTjCldRAU","https://www.youtube.com/watch?v=0uPDDELGjdo","https://www.youtube.com/watch?v=1VtQBVauvhw","https://www.youtube.com/watch?v=sNLbg9BUV4Y","https://youtube.com/watch?v=JhZUItnyQ0k","https://stephanlivera.com/download-episode/1769/149.mp3","https://www.youtube.com/watch?v=knBHvzKsIOY","https://www.youtube.com/watch?v=bCZFAqB3bnU","https://www.advancingbitcoin.com/video/a-schnorr-taprooted-lightning,11/","https://www.youtube.com/watch?v=xC25NzIjzog","https://www.youtube.com/watch?v=eTUuwASdUBE","https://www.advancingbitcoin.com/video/signet-in-practice-integrating-signet-into-your-software,5/","https://www.youtube.com/watch?v=8mdfygEzQjE","https://www.youtube.com/watch?v=srkY1mYI0IQ","https://www.youtube.com/watch?v=_v1lECxNDiM","https://www.youtube.com/watch?v=SMvoGkxMyYs","https://www.youtube.com/watch?v=Lqcpk5o1Y2E","https://www.youtube.com/watch?v=s0XopkGcN9U","https://www.youtube.com/watch?v=Q2lXSRcacAo","https://www.youtube.com/watch?v=dVZDeEfSdcI","https://www.youtube.com/watch?v=S0C-50QTteA","https://www.youtube.com/watch?v=XDCQI7hrB58","https://stephanlivera.com/download-episode/1707/139.mp3","https://stephanlivera.com/episode/137/","https://stephanlivera.com/download-episode/1699/137.mp3","https://stephanlivera.com/download-episode/1685/134.mp3","https://stephanlivera.com/download-episode/1649/128.mp3","https://stephanlivera.com/download-episode/1630/125.mp3","https://www.youtube.com/watch?v=ZUWs00Anpaw","https://stephanlivera.com/download-episode/1614/123.mp3","https://stephanlivera.com/download-episode/1599/120.mp3","https://stephanlivera.com/download-episode/1595/119.mp3","https://www.youtube.com/watch?v=TE65I9E8Q5k","https://www.youtube.com/watch?v=q6a1On5pirk","https://www.youtube.com/watch?v=1E-KhLA6Gck","https://www.youtube.com/watch?v=Wq75pGWmMd4","https://www.youtube.com/watch?v=14GKUfxfPMU\u0026feature=youtu.be\u0026t=1201","https://www.youtube.com/watch?v=p8toOF-imk4","https://www.youtube.com/watch?v=Pn5rySgyTQ0","https://youtu.be/qKNEUfnYue0","https://www.youtube.com/watch?v=Wy5jpgmmqAg","https://www.reddit.com/r/Bitcoin/comments/ddddfl/comment/f2g9e7b/?utm_source=share\u0026utm_medium=web2x\u0026context=3","https://bitcoinops.org/en/schnorr-taproot-workshop/","https://youtu.be/2IpZWSWUIVE?t=23739","https://www.youtube.com/watch?v=Uh6Ywxrobzw\u0026t=4480s","https://www.youtube.com/watch?v=Uh6Ywxrobzw\u0026t=1022s","https://www.youtube.com/watch?v=Uh6Ywxrobzw\u0026t=2799s","https://www.youtube.com/watch?v=Uh6Ywxrobzw\u0026t=11607s","https://www.youtube.com/watch?v=Uh6Ywxrobzw\u0026t=7850s","https://www.youtube.com/watch?v=-gdfxNalDIc\u0026t=1752s","https://www.youtube.com/watch?v=YxsjdIl0034\u0026t=8723s","https://www.youtube.com/watch?v=YxsjdIl0034\u0026t=2453s","https://www.youtube.com/watch?v=-gdfxNalDIc\u0026t=5542s","https://www.youtube.com/watch?v=-gdfxNalDIc\u0026t=8538s","https://www.youtube.com/watch?v=tie0Gpq2eJI","https://www.youtube.com/watch?v=gr75ubfNQ20","https://www.youtube.com/watch?v=hqxuWFpQlqY","https://www.youtube.com/watch?v=8bea0bdoFG0","https://www.youtube.com/watch?v=j2l_Ut4k1qI","https://www.youtube.com/watch?v=btzLev5bO_M","https://www.youtube.com/watch?v=xlKQP9J88uA","https://youtu.be/1O-bhcbh9vE","https://www.youtube.com/watch?v=v4TXfwwz_VI","https://www.youtube.com/watch?v=r7Un8FZYlS4\u0026list=PLseHpvCI1BjAfUx8zjJXadlBh_eKV9zJi\u0026index=8","https://www.youtube.com/watch?v=6aPSCDAiqVI","https://www.youtube.com/watch?v=EdRm_mnoCWc","https://www.youtube.com/watch?v=XKatSGCZ-gE","https://stephanlivera.com/episode/97/","https://www.youtube.com/watch?v=TtPXYPJ5_eE","https://www.youtube.com/watch?v=fab4P3BIZxk","https://stephanlivera.com/download-episode/1348/94.mp3","https://stephanlivera.com/download-episode/1289/92.mp3","https://www.youtube.com/watch?v=eB_HkYb7Y2M","https://www.youtube.com/watch?v=rK0jUeHeDf0","https://youtu.be/PUDWGH_MvmQ","https://youtu.be/Ms2WwRzBdkM","https://youtu.be/ULVItljEiFE","https://www.youtube.com/watch?v=NT_dMqB1xuA","https://youtu.be/ZzSveBMtUGI","https://youtu.be/SoFlRCNdqDg","https://youtu.be/R5cSrftd8nc","https://www.youtube.com/watch?v=3ZjymCOmn_A","https://youtu.be/Og4TGERPZMY","https://youtu.be/D4kX0gR-H0Y","https://youtu.be/z5vEyvc2vrE","https://www.youtube.com/watch?v=wyri7cc83kQ","https://www.youtube.com/watch?v=P7I-C0_sijg","https://www.youtube.com/watch?v=j0V8elTzYAA","https://youtu.be/JgNgnwF9hfY","https://youtu.be/6gGcS4N5Rg4","https://www.youtube.com/watch?v=jOEq9PvN-7A","https://www.youtube.com/watch?v=StnOVBbIpD8","https://www.youtube.com/watch?v=mcJa1YvzrFs","https://www.youtube.com/watch?v=Mznn1uVyTUQ","https://www.youtube.com/watch?v=JdvVKRTMwz8","https://www.youtube.com/watch?v=BH-qZhEZSrg","https://www.whatbitcoindid.com/podcast/bitcoin-block-reorgs-explained-with-adam-back-and-bryan-bishop","https://youtu.be/zFN__b6ARH4?t=12523","https://youtu.be/mRl3c9ppO78","https://www.youtube.com/watch?v=k_z-FBAil6k","https://youtu.be/tJOI2i6h3HM","https://youtu.be/eGpa45y4_HQ","https://youtu.be/CyieujRFk3g?t=8077","https://youtu.be/CyieujRFk3g","https://youtu.be/wd-dNd2Wck4","https://youtu.be/OzpfiieV5C4","https://youtu.be/0MnuvKybuo0?t=1463","https://soundcloud.com/noded-bitcoin-podcast/noded-0490-with-andrew-poelstra","https://youtu.be/kk2dUD6QXgw","https://youtu.be/SCxaV2HCQ5o","https://youtu.be/A4i5cEI1jnc","https://www.youtube.com/watch?v=XkyPw2_l6YE","https://www.youtube.com/watch?v=P5PI5MZ_2yo","https://www.youtube.com/watch?v=sNB1N7FyMHA","https://www.youtube.com/watch?v=ctx-oAIhhSY\u0026list=PLC_AgDAr0m6QhwqPDrqMfjX64oHGmwDMk\u0026index=4","https://www.youtube.com/watch?v=2tyr05tLF4g\u0026list=PLC_AgDAr0m6QhwqPDrqMfjX64oHGmwDMk\u0026index=4","https://www.youtube.com/watch?v=sPgJqAdKkhY","https://www.youtube.com/watch?v=H6xZSRDXUiU\u0026feature=youtu.be","https://stephanlivera.com/episode/59/","https://stephanlivera.com/download-episode/1014/58.mp3","https://www.youtube.com/watch?v=0gc1DSk8wlw","https://stephanlivera.com/download-episode/975/52.mp3","https://vimeo.com/316301424","https://www.youtube.com/watch?v=w_To_bnXjvk","https://www.youtube.com/watch?v=0lGO5I74qJM","https://www.youtube.com/watch?v=j9Wvz7zI_Ac","https://www.youtube.com/watch?v=dN-1q8c50q0","https://www.youtube.com/watch?v=3zNVDIz6Snw","https://www.youtube.com/watch?v=HCd4fF9u664","https://www.youtube.com/watch?v=9mJV3dSs6kc","https://www.youtube.com/watch?v=QAqBRbbbMSw","https://www.youtube.com/watch?v=MTSwKzmMTbk","https://www.youtube.com/watch?v=ggvqmb7np9w","https://stephanlivera.com/download-episode/1276/91.mp3","https://stephanlivera.com/download-episode/955/48.mp3","https://www.youtube.com/watch?v=1iAfJnlGJ6c","https://www.youtube.com/watch?v=OhRPZs0cWwQ","https://www.youtube.com/watch?v=CWIskx9KmAg\u0026t=0s\u0026list=PLYLOctWdUBtYBle_aU4WWJJaTekm8bhct\u0026index=5","https://www.youtube.com/watch?v=AXeUZrS-8mE\u0026t=0s\u0026list=PLpLH33TRghT2jmuP9YQRo-e8gk969Q2F_\u0026index=10","https://www.youtube.com/watch?v=l8OLD7or0DA","https://www.youtube.com/watch?v=OrYDehC-8TU","https://www.youtube.com/watch?v=qX4Z3JY1094","https://www.youtube.com/watch?v=JhRIWc9zPjA","https://www.youtube.com/watch?v=HlPIB6jt6ww","https://youtu.be/HauP9F16mUM","https://youtu.be/8lMLo-7yF5k","https://www.youtube.com/watch?v=1R5DNUcCYRg","https://www.youtube.com/watch?v=nwSuctrzV7Y\u0026t=637s","https://www.youtube.com/watch?v=FI9cwksTrQs\u0026t=1025s","https://www.youtube.com/watch?v=IMzLa9B1_3E\u0026t=3520","https://www.youtube.com/watch?v=YgtF7psIKWg\u0026t=2256","https://www.youtube.com/watch?v=IMzLa9B1_3E\u0026t=1610","https://www.youtube.com/watch?v=YgtF7psIKWg\u0026t=3700","https://www.youtube.com/watch?v=IMzLa9B1_3E\u0026t=1610","https://www.youtube.com/watch?v=3mJURLD2XS8\u0026t=3623s","https://www.youtube.com/watch?v=3mJURLD2XS8\u0026t=1717s","https://www.youtube.com/watch?v=INku7GsxhXY","https://www.youtube.com/watch?v=ZJ2t84trKVo","https://www.youtube.com/watch?v=NedW6AhImKg","https://www.youtube.com/watch?v=WbSaGEfuRlw","https://www.youtube.com/watch?v=wtTQ_1WyUoY","https://www.youtube.com/watch?v=JnBOO1zjm4I","https://www.youtube.com/watch?v=6J5jd7wf6aI","https://www.youtube.com/watch?v=L_sI_tXmy2U","https://www.youtube.com/watch?v=ZrZlCpmcvBU","https://www.youtube.com/watch?v=3Y25x3yAfpA","https://www.youtube.com/watch?v=YslQUkiEMXc","https://www.youtube.com/watch?v=ZMzVIi1lgyw","https://www.youtube.com/watch?v=DcGm_4-ig1o","https://www.youtube.com/watch?v=OVvue2dXkJo","https://www.youtube.com/watch?v=nrYOMjVmqi8","https://www.youtube.com/watch?v=iJR9Lg1jyJg","https://www.youtube.com/watch?v=np-SCwkqVy4","https://www.youtube.com/watch?v=nNKP6lxo1RA","https://www.youtube.com/watch?v=h2bvOal1u5k","https://www.youtube.com/watch?v=KLvWfUKoz9s","https://www.youtube.com/watch?v=286EmFqGMb8","https://bitcointalk.org/index.php?topic=5035144.msg46080218#msg46080218","https://www.youtube.com/watch?v=D2WXxgZ8h-0\u0026t=22160s","https://www.youtube.com/watch?v=SUDkYbkcTsQ","https://youtu.be/lByQUr7zPr0","https://www.youtube.com/watch?v=uo58zmyXqFY","https://www.youtube.com/watch?v=sbupEpL6-J4","https://www.youtube.com/watch?v=Ysj2yobFMF4","https://www.youtube.com/watch?v=qzbdNefsA-0","https://www.youtube.com/watch?v=YSUVRj8iznU","https://www.youtube.com/watch?v=nmqniwbwCg0","https://www.youtube.com/watch?v=xHWxtmgQP94","https://www.youtube.com/watch?v=gXDR4tjaGQc","https://www.youtube.com/watch?v=QtB4YUneiEE","https://www.youtube.com/watch?v=QiySI4-MWww","https://www.youtube.com/watch?v=_1dcU70zhqs","https://www.youtube.com/watch?v=YS0MksuMl9k","https://www.youtube.com/watch?v=59Igv-zQE7Y","https://www.youtube.com/watch?v=CO2NXDWJa08","https://www.youtube.com/watch?v=SrE6KdBgI1o","https://www.youtube.com/watch?v=0UiMhpz9eLA","https://www.youtube.com/watch?v=1U-1xkhJeEo","https://www.youtube.com/watch?v=fjtmyaH6MG8","https://www.youtube.com/watch?v=A4l4waikDso","https://www.youtube.com/watch?v=mLZ7qVwKalE","https://www.youtube.com/watch?v=8dxpcgRIpIs","https://www.youtube.com/watch?v=jzoS0tPUAiQ\u0026t=3h36m","https://www.youtube.com/watch?v=jzoS0tPUAiQ\u0026t=15m10s","https://www.youtube.com/watch?v=PKzJktErUdk","https://www.youtube.com/watch?v=LXY0L8eeG3k","https://www.pscp.tv/w/1mnxerNaNkLKX","https://www.youtube.com/watch?v=iqxkO7C-cyk","https://www.youtube.com/watch?v=oTsjMz3DaLs","https://www.youtube.com/watch?v=V3f4yYVCxpk","https://www.youtube.com/watch?v=VOeUq3oR2fk","https://www.youtube.com/watch?v=VABppufTdpA","https://www.youtube.com/watch?v=E9sbWKbfyJU","https://www.youtube.com/watch?v=ovCBT1gyk9c","https://www.youtube.com/watch?v=EHIuuKCm53o","https://www.youtube.com/watch?v=3pd6xHjLbhs\u0026t=3785s","https://www.youtube.com/watch?v=3pd6xHjLbhs\u0026t=10020s","https://www.youtube.com/watch?v=3pd6xHjLbhs\u0026t=866s","https://www.youtube.com/watch?v=3pd6xHjLbhs\u0026t=8351s","https://www.youtube.com/watch?v=QkYXPJMqBNk\u0026t=4965s","https://www.youtube.com/watch?v=LDF8bOEqXt4\u0026t=8612s","https://www.youtube.com/watch?v=BPNs9EVxWrA\u0026t=12082s","https://www.youtube.com/watch?v=BPNs9EVxWrA\u0026t=3630s","https://www.youtube.com/watch?v=LDF8bOEqXt4\u0026t=3981s","https://www.youtube.com/watch?v=BPNs9EVxWrA\u0026t=5065s","https://www.youtube.com/watch?v=k-Cv8Q3zWNQ","https://www.youtube.com/watch?v=0WCaoGiAOHE\u0026t=32min9s","https://youtu.be/0WCaoGiAOHE?t=9000","https://www.youtube.com/watch?v=0WCaoGiAOHE\u0026t=1h58m3s","https://www.youtube.com/watch?v=0WCaoGiAOHE\u0026t=1m33s","https://www.youtube.com/watch?v=eCE2OzKIab8\u0026t=6h42m30s","https://www.youtube.com/watch?v=eCE2OzKIab8\u0026t=1h12m10s","https://www.youtube.com/watch?v=eCE2OzKIab8\u0026t=5h9m","https://www.youtube.com/watch?v=eCE2OzKIab8\u0026t=5m11s","https://www.youtube.com/watch?v=eCE2OzKIab8\u0026t=4h8m","https://www.youtube.com/watch?v=nSRoEeqYtJA","https://www.youtube.com/watch?v=52FVkHlCh7Y","https://www.youtube.com/watch?v=7FWKc8lM4Ek","https://letstalkbitcoin.com/blog/post/lets-talk-bitcoin-333-on-consensus-and-all-kinds-of-forks","http://web.archive.org/web/20171115183423/https://www.youtube.com/watch?v=LHPYNZ8i1cU\u0026feature=youtu.be\u0026t=1m","https://www.youtube.com/watch?v=yU3Sr07Qnxg","https://www.youtube.com/watch?v=NqiN9VFE4CU","https://www.youtube.com/watch?v=0mVOq1jaR1U\u0026t=2h22m11s","https://www.youtube.com/watch?v=0mVOq1jaR1U\u0026t=3h15m","https://www.youtube.com/watch?v=0mVOq1jaR1U\u0026t=56m20s","https://www.youtube.com/watch?v=0mVOq1jaR1U\u0026t=39m8s","https://www.youtube.com/watch?v=0mVOq1jaR1U\u0026feature=youtu.be\u0026t=1h20m","https://youtu.be/7BA7f5vk3jQ","https://www.youtube.com/watch?v=Eq_eY8iWrKI","https://www.youtube.com/watch?v=r7xN7K0OqaA","https://www.youtube.com/watch?v=xdxs7VJTqns","https://www.youtube.com/watch?v=TGE6jrVmt_I","https://letstalkbitcoin.com/blog/post/lets-talk-bitcoin-319-barnacles-of-consensus","https://soundcloud.com/elux-2/the-great-stakehodler-debate-lombroso-petrov-potter-ver","https://www.youtube.com/watch?v=_Z0ID-0DOnc\u0026feature=youtu.be\u0026t=2297","https://www.youtube.com/watch?v=_Z0ID-0DOnc\u0026t=10241s","https://www.youtube.com/watch?v=_Z0ID-0DOnc\u0026t=863","https://www.youtube.com/watch?v=_Z0ID-0DOnc\u0026t=8857s","https://www.youtube.com/watch?v=uO-1rQbdZuk\u0026t=6198s","https://www.youtube.com/watch?v=Gzg_u9gHc5Q\u0026t=1680s","https://www.youtube.com/watch?v=8BLWUUPfh2Q\u0026t=500s","https://www.youtube.com/watch?v=8BLWUUPfh2Q\u0026t=2196s","https://www.youtube.com/watch?v=8BLWUUPfh2Q\u0026t=5368s","https://www.youtube.com/watch?v=Gzg_u9gHc5Q\u0026t=164s","https://www.youtube.com/watch?v=8BLWUUPfh2Q\u0026t=3787s","https://www.youtube.com/watch?v=MGm54LZ1T50","http://web.archive.org/web/20200926001539/https://soundcloud.com/heryptohow/mimblewimble-andrew-poelstra-peter-wuille-brian-deery-and-chris-odom","https://www.youtube.com/watch?v=tLZc-NLmV20","https://www.youtube.com/watch?v=-lgYYz3y_hY","https://www.youtube.com/watch?v=HEZAlNBJjA0","https://www.youtube.com/watch?v=UVuUZm4l-ss\u0026t=24270s","https://www.youtube.com/watch?v=fst1IK_mrng\u0026t=1h29m38s","https://youtube.com/watch?v=aQ1--w4uEMM\u0026t=2443","https://www.youtube.com/watch?v=ivgxcEOyWNs\u0026t=1h40m20s","http://web.archive.org/web/20160704124220/https://www.youtube.com/watch?v=RguZ0_nmSPw","http://youtube.com/watch?v=TgjrS-BPWDQ\u0026t=2h02m06s","https://www.youtube.com/watch?v=TgjrS-BPWDQ\u0026t=10110s","https://www.youtube.com/watch?v=iKDC2DpzNbw\u0026t=770s","https://www.youtube.com/watch?v=gpJrGuZEJsY\u0026t=858s","https://www.youtube.com/watch?v=iKDC2DpzNbw\u0026t=2453s","https://youtube.com/watch?v=wYHyR2E5Pic","https://www.youtube.com/watch?v=gcQLWeFmpYg","https://www.youtube.com/watch?v=8WDOpzxpnTE\u0026list=PLgO7JBj821uGZTXEXBLckChu70kl7Celh\u0026index=21","https://s3-us-west-1.amazonaws.com/blkstrm/video/elements-gmaxwell.mp4","https://www.youtube.com/watch?v=2QH5EV_Io0E","https://www.youtube.com/watch?v=Gs9lJTRZCDc","https://www.youtube.com/watch?v=96ULlHhia_Q\u0026t=15308","https://www.youtube.com/watch?v=8zVzw912wPo","https://www.youtube.com/watch?v=jE_elgnIw3M","https://www.reddit.com/r/Bitcoin/comments/2rrxq7/on_why_010s_release_notes_say_we_have_reason_to","https://np.reddit.com/r/programming/comments/2rrc64/openssl_security_advisory_new_openssl_releases/cnilq2w/?context=3","https://www.youtube.com/watch?v=3dAdI3Gzodo","https://www.youtube.com/watch?v=fst1IK_mrng\u0026t=3h52m35s","https://www.youtube.com/watch?v=fst1IK_mrng\u0026t=4h27m53s","https://www.youtube.com/watch?v=eDsK4OpB69Q","https://www.youtube.com/watch?v=JlvZPSEFmNE","https://www.youtube.com/watch?v=SdeyEnv4FRU","https://www.youtube.com/watch?v=ivgxcEOyWNs\u0026t=2h25m20s","https://youtube.com/watch?v=aQ1--w4uEMM\u0026t=1121","https://www.youtube.com/watch?v=f33HlAvJUFw","https://youtu.be/eVerdR2hOMw","https://youtu.be/8B1fX2i4dMY","https://www.youtube.com/watch?v=mhAsnzidtZ8\u0026t=1346s","https://www.youtube.com/watch?v=SikWfFObBIg","https://youtu.be/5Fim6g2BMZI","https://www.youtube.com/watch?v=QWaCr_tKjRk","https://www.youtube.com/watch?v=fst1IK_mrng\u0026feature=youtu.be\u0026t=2h17m20s","https://www.youtube.com/watch?v=9mvm-tdxv7o","https://www.youtube.com/watch?v=MyxW8eCA9BI","https://www.youtube.com/watch?v=8BLWUUPfh2Q\u0026t=2h29m19","https://www.youtube.com/watch?v=gZjDKgR4dw8","https://www.youtube.com/watch?v=NadhhH_eQBQ","https://www.youtube.com/watch?v=TgjrS-BPWDQ\u0026t=6843s","https://youtu.be/YHieWJWwVbE","https://www.youtube.com/watch?v=LDF8bOEqXt4\u0026t=10570s","https://www.pscp.tv/w/1PlJQmRZWnZJE","https://www.youtube.com/watch?v=S2TgCUU_WDo","https://www.youtube.com/watch?v=FU-rA5dkTHI","https://www.youtube.com/watch?v=FU-rA5dkTHI","https://www.youtube.com/watch?v=9gdm6C_xnFI","https://www.youtube.com/watch?v=qEkEoRL3I00","https://www.youtube.com/watch?v=wiA1bT4ObVo","https://www.youtube.com/watch?v=bT4cKwBROno\u0026list=PLgO7JBj821uGZTXEXBLckChu70kl7Celh\u0026index=7","https://youtu.be/r8S3iELg9_U","https://www.youtube.com/watch?v=ZnvAYDEUVlg","https://www.youtube.com/watch?v=n5xS9liL8Sk","https://www.youtube.com/watch?v=BPNs9EVxWrA\u0026t=8400s","https://www.youtube.com/watch?v=B-3eZiZ5HPE","https://www.youtube.com/watch?v=UVuUZm4l-ss\u0026t=4h29m10s","https://www.youtube.com/watch?v=LA_nPzX1Mz8","https://www.youtube.com/watch?v=PBAuHv5cPl8","https://www.youtube.com/watch?v=i-0NUqIVVV4\u0026t=53m14s","https://www.youtube.com/watch?v=ivgxcEOyWNs\u0026t=30m35s","https://youtube.com/watch?v=qdghS32TeZU","https://www.youtube.com/watch?v=-gdfxNalDIc","https://www.youtube.com/watch?v=uO-1rQbdZuk\u0026t=4575s","https://www.youtube.com/watch?v=CGE8I8L7BAc","https://www.youtube.com/watch?v=orWfkdDWQzo","https://livestream.com/accounts/1973198/Blockchain2019","https://www.youtube.com/watch?v=sQOfnsW6PTY\u0026t=22540","https://www.youtube.com/watch?v=ABPOYFw9zAQ","https://www.youtube.com/watch?v=iwe1NxbX40A","https://www.youtube.com/watch?v=iUmacjDTrCU","https://www.youtube.com/watch?v=66ZoGUAnY9s","https://www.youtube.com/watch?v=fst1IK_mrng\u0026t=1h5m50s","https://www.youtube.com/watch?v=y8hJ0VTPE34\u0026t=13s","https://www.youtube.com/watch?v=dFUJmzcj0iw\u0026list=PLgO7JBj821uGZTXEXBLckChu70kl7Celh\u0026index=15","https://www.youtube.com/watch?v=NWG7HZVT00M","https://www.youtube.com/watch?v=Q9w9VCOrego","https://www.youtube.com/watch?v=ivgxcEOyWNs\u0026t=9m20s","https://www.youtube.com/watch?v=fst1IK_mrng\u0026t=36m","https://www.youtube.com/watch?v=Rm-p8rrR9c8","https://www.youtube.com/watch?v=J1CP7qbnpqA","https://www.youtube.com/watch?v=xrReq7V7oJU","https://www.youtube.com/watch?v=yWEbIkytDJs","https://www.youtube.com/watch?v=OxX_LFgdYa0","https://www.youtube.com/watch?v=3Hksieg5GdM\u0026t=1807s","https://youtu.be/66ZoGUAnY9s?t=2181","https://www.youtube.com/watch?v=QUB7U-R527g","https://www.youtube.com/watch?v=mztdh1J6Lpc","https://www.youtube.com/watch?t=5757\u0026v=3pd6xHjLbhs","https://www.youtube.com/watch?v=edRun-6ubCc","https://www.youtube.com/watch?v=fst1IK_mrng\u0026t=4h52m35s","https://www.youtube.com/watch?v=lIgjogLipvk","https://youtu.be/JJF5Gnro1GU","https://www.youtube.com/watch?v=ivgxcEOyWNs\u0026t=1h30s","https://www.youtube.com/watch?v=96ULlHhia_Q\u0026t=5037","https://www.youtube.com/watch?v=J4TKHuTmHsg","https://youtube.com/watch?v=aQ1--w4uEMM\u0026t=4133","https://www.youtube.com/watch?v=u3Mn27on03A"],"speakers":["0xB10C","Aaron van Wirdum","Adam Back","Adam Ficsor","Adam Fiscor","Adam Gibson","Adam Jonas","Adam Ludwin","Adlai Chandrasekhar","Aki Balogh","Akio Nakamura","Alan Reiner","Alberto Sonnino","Alejandro De La Torre","Alekos Filini","Alena Vranova","Alessandro Chiesa","Alex Bosworth","Alex Myers","Alex Petrov","Alex Zinder","Alexander Chepurnoy","Alexander Zaidelson","Alexandra Moxin","Alexei Zamyatin","Alicia Bendhan","Allen Piscitello","Amiti Uttarwar","Anant Tapadia","Andreas Antonopoulos","Andrew Chow","Andrew Miller","Andrew Poelstra","Andrew Stone","Andy Ofiesh","Anthony Potdevin","Anthony Ronning","Anthony Towns","Antoine Le Calvez","Antoine Poinsot","Antoine Riard","Anton Yemelyanov","Ari Juels","Ariel Gabizon","Arik Sosman","Arthur Gervais","Arvind Narayanan","Assimakis Kattis","Austin Hill","Ava Chow","Aviv Milner","Aviv Zohar","Baker Marquart","Balaji Srinivasan","Barnabás Bágyi","Barry Silbert","Bart Suichies","Bastien Teinturier","Ben Carman","Ben Fisch","Ben Kaufman","Ben Maurer","Benedikt Bünz","Benjamin Chan","Benjamin Lawsky","Benjamin Livshits","Bob McElrath","Bobby Cho","Bobby Lee","Boyma Fahnbulleh","Brad Peterson","Bram Cohen","Brandon Black","Brandon Goodell","Brett Seyler","Brian Deery","Brian Kelly","Brian Klein","Brian N. Levine","Brian O’Keefe","Britt Kelly","Bruce Fenton","Bryan Bishop","Burak Keceli","Byron Gibson","Caleb DeLisle","Calle","Calvin Kim","Carl Dong","Carla Kirk-Cohen","Casey Rodarmor","Cathie Yun","Charles Cascarilla","Charles Guillemet","Charlie Lee","Chelsea Komlo","Chris Belcher","Chris Church","Chris Odom","Chris Stewart","Chris Tse","Christian Decker","Christian Lewe","Christian Moss","Christoph Ono","Christopher Allen","Christopher Jeffrey","Clara Shikhelman","Come Plooy","Conner Fromknecht","Constance Choi","Cory Fields","Craig Raw","Dahlia Malkhi","Dan Boneh","Dan Robinson","Daniel Cline","Daniel Hinton","Daniel J. Bernstein","Daniel Lehnberg","Daniel Marquez","Daniel Perez","Daniel Robinson","Daniela Brozzoni","Daniele Micciancio","Dave Harding","Dave Levin","David Bailey","David Rutter","David Schwartz","David Tse","David Vorick","Dhruv","Dhruv Bansal","Doug Schepers","Duc V. Le","Dustin Trammell","Dusty Daemon","Dusty Dettmer","Ed Felten","Edward Budd","Elaine Ou","Elaine Shi","Eleftherios Kokoris-Kogias","Eli Ben-Sasson","Elichai Turkel","Elizabeth Crites","Elizabeth Stark","Elle Mouton","Emin Gun Sirer","Eran Tromer","Ergo","Eric Lombrozo","Eric Martindale","Eric Sirion","Eric Voskuil","Ethan Heilman","Fabian Jahr","Fabrice Drouin","Fan Zhang","Felix Maurer","Florian Maier","Florian Tramer","Gavin Andresen","Georgia Avarikioti","Georgios Konstantopoulos","Ghost43","Giacomo Zucco","Gideon Powell","Giulia Fanti","Giulio Malavolta","Gleb Naumenko","Gloria Zhao","Graham Krizek","Greg Maxwell","Greg Sanders","Harry Kalodner","Henry de Valence","Hutchins","Ian Lee","Ian Miers","Igor Korsakov","Ishaana Misra","Istvan Andras Seres","Ittai Abraham","Ittay Eyal","J. Christopher Giancarlo","Jack Dorsey","Jack Mallers","Jacob Leshno","James Chiang","James D'Angelo","James Gatto","James Hilliard","James O'Beirne","James Smith","Jameson Lopp","Jan Čapek","Jarl Fransson","Jason Potts","Jason Teutsch","Jeff Czyz","Jeff Garzik","Jeremy Allaire","Jeremy Rubin","Jeremy Wilson","Jerry Brito","Jerry Cuomo","Jesse Posner","Jihan Wu","Jim Posen","Jimmy Song","Jinglan Wang","Joachim Breitner","Joachim Neu","Joe Gerber","Joe Netti","John Cantrell","John Light","John Newbery","John Woeltz","Johnson Lau","Joi Ito","Jon Atack","Jonas Nick","Jonas Schnelli","Jonathan Bier","Jonathan Harvey Buschel","Jonathan Metzman","Jonathan Tomim","Joost Jager","Jorge Timón","Joseph Poon","Joshua Lim","Josibake","Jun Muai","Justin Camarena","Justin Moon","Juthica Chou","K3tan","Kalle Alm","Kalle Rosenbaum","Kanta Matsuura","Karl Floersch","Katherine Wu","Kathleen Breitman","Kenji Saito","Kevin Loaec","Kim Hamilton Duffy","Kostya Serebryany","Kris Merkel","Kristov Atlas","Kukks","Kulpreet Singh","Lata Varghese","Lawrence H. Summers","Lawrence Nahum","Leen AlShenibr","Lei Yang","Leigh Cuen","Lisa Neigut","Lloyd Fournier","Lous Parker","Lucas Ontivero","Luke Dashjr","Madars Virza","Mahnush Movahedi","Marco Falke","Marco Santori","Marek Olszewski","Mark Erhardt","Mark Erhart","Mark Friedenbach","Mark Wetjen","Marshall Long","Martin Lundfall","Martin Zumsande","Marty Bent","Matt Corallo","Matt Odell","Matt Weinberg","Matt Weiss","Matteo Maffei","Matthew Mezinskis","Maurice Herlihy","Max Hillebrand","Max Keidun","Megan Chen","Melanie Shapiro","Meltem Demirors","Meni Rosenfeld","Michael Flaxman","Michael Folkson","Michael Ford","Michael Goldstein","Michael Haase","Michael More","Michael Straka","Michael Walfish","Mikael Dubrovsky","Mike Schmidt","Miles Carlsten","Mitchell Dong","Mogashni","Mooly Sagiv","Mustafa Al-Bassam","Nadav Kohen","Nathan Wilcox","Neha Narula","Nic Carter","Nicholas Gregory","Nick Spooner","Nick Szabo","Nico Preti","Nicolas Bacca","Nicolas Dorier","Nicolas Gailly","Niklas Gögge","nixbitcoindev","NVK","Olaoluwa Osuntokun","Oleg Andreev","Oliver Gugger","Omer Shlomovits","Openoms","Or Sattath","Owen Kemeys","Parker Lewis","Patricia Estevao","Patrick McCorry","Patrick Murck","Patrick Strateman","Paul Sztorc","Paul Vigna","Pavel Moravec","Pavel Prihodko","Pavol Rusnak","Pedro Moreno-Sanchez","Pete Rizzo","Peter Rizun","Peter Todd","Phil Chen","Philip Glazman","Pierre Roberge","Pierre Rochard","Pieter Wuille","Pindar Wong","Prakash Santhana","Pramod Viswanath","Prastudy Fauzi","Quentin Le Sceller","Rachel Rybarczyk","Ranjit Kumaresan","Raphael","Rene Pickhardt","Ricardo Perez-Marco","Riccardo Casatta","Richard Bondi","Richard Myers","Richard Safier","Rijndael","Rob Hamilton","Robert Schwinker","Rodolfo Novak","Rodrigo Buenaventura","Roger Ver","Roman Snitko","Ron Paul","Ron Rivest","Rootzoll","Roy Sheinfeld","Ruben Somsen","Russell O’Connor","Rusty Russell","Ryan Selkis","Ryosuke Ushida","Saifedean Ammous","Salvatore Ingala","Samir Menon","Sandra Ro","Sanket Kanjalkar","Scott Manuel","Sean Neville","Sebastian Falbesoner","Sebastián Reca","Sergei Tikhomirov","Sergej Kotliar","Sergi Delgado","Sergi Delgado Segura","Sergio Lerner","Shafi Goldwasser","Shayan Eskandari","Shehzan Maredia","Shin'ichiro Matsuo","Simon","Simon Peffers","Sjors Provoost","Skot 9000","Soumya Basu","Sreeram Kannan","Stacy Herbert","Stefan Dziembowski","Stefano Lande","Stepan Snigirev","Stephan Livera","Stephanie Hurder","Stephen DeLorme","Steve Lee","Suhas Daftuar","Swanand Kadhe","Taariq Lewis","Tadge Dryja","Tarun Chitra","Thang N. Dinh","thecharlatan","Thomas Eizinger","Thomas Jestopher","Thomas Kerin","Thomas Voegtlin","Tim Roughgarden","Tim Ruffing","Tom Kirkpatrick","Tone Vays","Tony Giorgio","Tuur Demeester","Udi Wertheimer","Vitalik Buterin","Vivek","Vivek Bagaria","Vlad Zamfir","Vortex","Warren Togami","Wendy Seltzer","Whalepanda","Will Clark","Will O'Beirne","William Mougayar","Wiz","Wladimir van der Laan","Yashraj","Yonatan Sompolinsky","Yorke Rhodes","Yoshinori Hashimoto","Yurii Rashkovskii","Yuta Takanashi","Yuval Kogman","Zeta Avarikioti"],"tags":["adaptor-signatures","altcoin","altcoins","amp","anchor-outputs","anonymity-networks","ark","assumeutxo","bandwidth-reduction","bech32","bip32","bitcoin-core","bls-signatures","build-system","build-systems","c-lightning","career","channel-factories","channel-factory","cisa","client-side-validation","cluster-mempool","codex32","coin-selection","coinjoin","coinswap","compact-block-filters","compact-block-relay","consensus-cleanup","consensus-enforcement","contract-protocols","covenants","cpfp","cpfp-carve-out","cryptography","cves","dandelion","descriptors","developer-tools","dlc","dual-funding","ecash","eclipse-attacks","eltoo","ephemeral-anchors","erlay","ethereum","fee-management","generic-signmessage","hardware-wallet","hold-invoices","htlc","hwi","incentives","libsecp256k1","lightning","lightweight-client","lnd","lnurl","mast","mining","miniscript","minisketch","multiparty-channel","multipath-payments","multisignature","musig","offers","op-cat","op-checksigfromstack","op-checktemplateverify","op_checksigfromstack","op_checktemplateverify","output-linking","p2c","p2p","package-relay","pathfinding","payjoin","payment-batching","pooled-mining","privacy","privacy-enhancements","privacy-problems","proof-of-payment","proof-of-stake","proof-systems","psbt","ptlc","quantum-resistance","rbf","regulation","reproducible-builds","research","routing","rv-routing","scalability","schnorr-signatures","scripts-addresses","security","security-enhancements","security-problems","segwit","sidechains","sighash-anyprevout","sighash_anyprevout","signature-aggregation","signet","silent-payments","simple-taproot-channels","simplicity","soft-fork-activation","splicing","statechains","stratum-v2","submarine-swaps","taproot","tapscript","threshold-signature","timelocks","topology","trampoline-payments","transaction-pinning","transaction-relay-policy","trimmed-htlc","utreexo","ux","v2-p2p-transport","vaults","wallet","watchtowers","zero-conf-channels","acc","accidental-confiscation","addr-v2","annex","asicboost","async-payments","bip70-payment-protocol","block-explorers","block-withholding","channel-announcements","channel-commitment-upgrades","channel-jamming-attacks","cltv-expiry-delta","countersign","cve-2018-17144","default-minimum-transaction-relay-feerates","duplicate-transactions","exfiltration-resistant-signing","expiration-floods","fee-estimation","fee-sniping","fee-sourcing","fee-sponsorship","free-relay","gap-limits","htlc-endorsement","inbound-forwarding-fees","jit-channels","jit-routing","joinpools","kindred-rbf","large-channels","liquidity-advertisements","low-r-grinding","matt","merkle-tree-vulnerabilities","onion-messages","op-codeseparator","out-of-band-fees","payment-probes","payment-secrets","peer-storage","proof-of-reserves","redundant-overpayments","replacement-cycling","responsible-disclosures","side-channels","signer-delegation","spontaneous-payments","stateless-invoices","static-channel-backups","testnet","time-warp","transaction-bloom-filtering","transaction-origin-privacy","unannounced-channels","uneconomical-outputs","v3-transaction-relay","wallet-labels","x-only-public-keys"]},"missing":{"categories":["https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/the-state-of-bitcoin-core-development/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/making-bitcoin-more-private-with-cisa/","https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/covenants-part-2/","https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/silent-payments/","https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/covenants/","https://btctranscripts.com/lightning-specification/lightning-2024-01-15-specification-call/","https://btctranscripts.com/lightning-specification/2023-11-20-specification-call/","https://btctranscripts.com/lightning-specification/2023-11-06-specification-call/","https://btctranscripts.com/lightning-specification/2023-10-23-specification-call/","https://btctranscripts.com/lightning-specification/2023-09-25-specification-call/","https://btctranscripts.com/lightning-specification/2023-08-28-specification-call/","https://btctranscripts.com/lightning-specification/2023-08-14-specification-call/","https://btctranscripts.com/lightning-specification/2023-07-31-specification-call/","https://btctranscripts.com/lightning-specification/2023-07-17-specification-call/","https://btctranscripts.com/lightning-specification/2023-06-19-specification-call/","https://btctranscripts.com/lightning-specification/2023-06-05-specification-call/","https://btctranscripts.com/lightning-specification/2023-05-22-specification-call/","https://btctranscripts.com/lightning-specification/2023-05-08-specification-call/","https://btctranscripts.com/lightning-specification/2023-04-24-specification-call/","https://btctranscripts.com/bitcoin-design/learning-bitcoin-and-design/fedimint/","https://btctranscripts.com/greg-maxwell/2022-05-05-covenants-bip119/","https://btctranscripts.com/misc/2022-04-12-carl-dong-libbitcoinkernel/","https://btctranscripts.com/munich-meetup/2021-02-21-daniela-brozzoni-stratumv2/","https://btctranscripts.com/greg-maxwell/2020-11-25-greg-maxwell-replacing-pgp/","https://btctranscripts.com/greg-maxwell/2020-11-05-greg-maxwell-yubikey-security/","https://btctranscripts.com/greg-maxwell/2020-11-01-greg-maxwell-hardware-wallets-altcoins/","https://btctranscripts.com/greg-maxwell/2020-10-26-greg-maxwell-bitcoin-core-github/","https://btctranscripts.com/greg-maxwell/2020-08-27-greg-maxwell-checkmultisig-bug/","https://btctranscripts.com/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/","https://btctranscripts.com/greg-maxwell/2020-07-20-greg-maxwell-taproot-pace/","https://btctranscripts.com/misc/2020-07-10-what-am-i-working-on/","https://btctranscripts.com/greg-maxwell/2020-07-05-greg-maxwell-useful-proof-of-work/","https://btctranscripts.com/greg-maxwell/2020-06-08-greg-maxwell-liquid-censorship-resistance/","https://btctranscripts.com/ruben-somsen/2020-05-11-ruben-somsen-succinct-atomic-swap/","https://btctranscripts.com/misc/2020-04-08-john-newbery-contracts-in-bitcoin/","https://btctranscripts.com/blockstream-webinars/2020-04-08-adam-back-simplicity/","https://btctranscripts.com/andreas-antonopoulos/2020-04-08-andreas-antonopoulos-seed-splitting/","https://btctranscripts.com/greg-maxwell/2019-10-04-majority-miner-attack/","https://btctranscripts.com/blockstream-webinars/2019-09-04-christian-decker-c-lightning-questions/","https://btctranscripts.com/blockstream-webinars/2019-07-31-rusty-russell-getting-started-with-c-lightning/","https://btctranscripts.com/misc/2019-02-09-mcelrath-on-chain-defense-in-depth/","https://btctranscripts.com/andreas-antonopoulos/2019-02-01-andreas-antonopoulos-hardware-wallet-security/","https://btctranscripts.com/andreas-antonopoulos/2018-10-23-andreas-antonopoulos-initial-blockchain-download/","https://btctranscripts.com/greg-maxwell/2018-09-23-greg-maxwell-bitcoin-core-testing/","https://btctranscripts.com/greg-maxwell/2018-09-23-greg-maxwell-multiple-implementations/","https://btctranscripts.com/andreas-antonopoulos/2018-08-30-andreas-antonopoulos-home-network-security/","https://btctranscripts.com/misc/2018-01-24-rusty-russell-future-bitcoin-tech-directions/","https://btctranscripts.com/greg-maxwell/2017-12-22-bech32-design/","https://btctranscripts.com/greg-maxwell/2017-11-27-gmaxwell-advances-in-block-propagation/","https://btctranscripts.com/greg-maxwell/2017-08-28-gmaxwell-deep-dive-bitcoin-core-v0.15/","https://btctranscripts.com/greg-maxwell/2017-04-28-gmaxwell-confidential-transactions/","https://btctranscripts.com/misc/2016-12-14-whalepool/","https://btctranscripts.com/greg-maxwell/2015-11-09-gmaxwell-mining-and-block-size-etc/","https://btctranscripts.com/greg-maxwell/2015-06-08-gmaxwell-sidechains-elements/","https://btctranscripts.com/greg-maxwell/2015-04-29-gmaxwell-bitcoin-selection-cryptography/","https://btctranscripts.com/greg-maxwell/2015-01-08-libsecp256k1-testing/","https://btctranscripts.com/greg-maxwell/2015-01-08-openssl-bug/","https://btctranscripts.com/misc/nydfs-bitlicense-lawsky-update/","https://btctranscripts.com/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/","https://btctranscripts.com/misc/bitcoin-adam3us-fungibility-privacy/","https://btctranscripts.com/style/","https://btctranscripts.com/misc/cftc-bitcoin/","https://btctranscripts.com/misc/ctv-bip-review-workshop/","https://btctranscripts.com/misc/discreet-log-contracts/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/discreet-log-contracts-oracles-loans-stablecoins-and-more/","https://btctranscripts.com/misc/failures-of-secret-key-cryptography/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/open-source-mining/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/unlocking-expressivity-with-op-cat/"],"date":["https://btctranscripts.com/style/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/a-bevy-of-block-size-proposals-bip100-bip102-and-more/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/a-flexible-limit-trading-subsidy-for-larger-blocks/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/scaling-oblivious-read-write/","https://btctranscripts.com/simons-institute/a-wishlist-for-verifiable-computation/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/abstract-groups/","https://btctranscripts.com/bit-block-boom/2019/accumulating-bitcoin/","https://btctranscripts.com/stanford-blockchain-conference/2019/accumulators/","https://btctranscripts.com/cryptoeconomic-systems/2019/all-about-decentralized-trust/","https://btctranscripts.com/scalingbitcoin/montreal-2015/alternatives-to-block-size-as-aggregate-resource-limits/","https://btctranscripts.com/scalingbitcoin/montreal-2015/amiko-pay/","https://btctranscripts.com/stanford-blockchain-conference/2020/arbitrum-v2/","https://btctranscripts.com/w3-blockchain-workshop-2016/archival-science/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/armory-proof-of-payment/","https://btctranscripts.com/w3-blockchain-workshop-2016/arvind-narayanan/","https://btctranscripts.com/stanford-blockchain-conference/2019/asics/","https://btctranscripts.com/scalingbitcoin/stanford-2017/atomically-trading-with-roger-gambling-on-the-success-of-a-hard-fork/","https://btctranscripts.com/stanford-blockchain-conference/2019/aurora-transparent-succinct-arguments-r1cs/","https://btctranscripts.com/stanford-blockchain-conference/2019/vulnerability-detection/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/backpackers/","https://btctranscripts.com/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/bip101-block-propagation-data-from-testnet/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/bip99-and-uncontroversial-hard-forks/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/","https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-block-propagation-iblt-rusty-russell/","https://btctranscripts.com/london-bitcoin-devs/jnewbery-bitcoin-core-v0.17/","https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-developers/","https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-failure-modes-and-the-role-of-the-lightning-network/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-financing-and-trading/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/","https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-load-spike-simulation/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-maximalism-dissected/","https://btctranscripts.com/stanford-blockchain-conference/2019/bitcoin-payment-economic-analysis/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/","https://btctranscripts.com/edgedevplusplus/2017/p2p-john-newbery/","https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-protocol-development-panel/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-regulation-landscape/","https://btctranscripts.com/scalingbitcoin/montreal-2015/relay-network/","https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-security/","https://btctranscripts.com/breaking-bitcoin/2019/selfish-mining/","https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-without-internet/","https://btctranscripts.com/bit-block-boom/2019/there-can-only-be-one/","https://btctranscripts.com/stanford-blockchain-conference/2020/block-rewards/","https://btctranscripts.com/coindesk-consensus-2016/blockchain-database-technology-in-a-global-context/","https://btctranscripts.com/w3-blockchain-workshop-2016/blockchain-hub/","https://btctranscripts.com/scalingbitcoin/montreal-2015/blockchain-testbed/","https://btctranscripts.com/stanford-blockchain-conference/2020/blockchains-for-multiplayer-games/","https://btctranscripts.com/stanford-blockchain-conference/2019/bloxroute/","https://btctranscripts.com/stanford-blockchain-conference/2020/boomerang/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/braiding-the-blockchain/","https://btctranscripts.com/breaking-bitcoin/2019/breaking-bitcoin-privacy/","https://btctranscripts.com/scalingbitcoin/milan-2016/breaking-the-chain/","https://btctranscripts.com/breaking-bitcoin/2019/breaking-wasabi/","https://btctranscripts.com/stanford-blockchain-conference/2020/brick-async-state-channels/","https://btctranscripts.com/scalingbitcoin/milan-2016/build-scale-operate/","https://btctranscripts.com/stanford-blockchain-conference/2019/building-bulletproofs/","https://btctranscripts.com/bit-block-boom/2019/building-vibrant-bitcoin-communities/","https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/bulletproofs/","https://btctranscripts.com/stanford-blockchain-conference/2019/casper/","https://btctranscripts.com/stanford-blockchain-conference/2020/celo-ultralight-client/","https://btctranscripts.com/misc/cftc-bitcoin/","https://btctranscripts.com/scalingbitcoin/milan-2016/chainbreak/","https://btctranscripts.com/scalingbitcoin/stanford-2017/changes-without-unanimous-consent/","https://btctranscripts.com/w3-blockchain-workshop-2016/christopher-allen/","https://btctranscripts.com/coindesk-consensus-2016/clearing-and-settlement-for-global-financial-institutions/","https://btctranscripts.com/stanford-blockchain-conference/2020/clockwork-nonfrontrunning/","https://btctranscripts.com/scalingbitcoin/milan-2016/coin-selection/","https://btctranscripts.com/scalingbitcoin/montreal-2015/coinscope-andrew-miller/","https://btctranscripts.com/verifiable-delay-functions/vdf-day-2019/comments-and-observations-about-timelocks-ron-rivest/","https://btctranscripts.com/scalingbitcoin/montreal-2015/competitive-fee-market-urgency/","https://btctranscripts.com/decentralized-financial-architecture-workshop/compliance-and-confidentiality/","https://btctranscripts.com/scalingbitcoin/stanford-2017/concurrency-and-privacy-with-payment-channel-networks/","https://btctranscripts.com/stanford-blockchain-conference/2019/coordinated-upgrades/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/cory-fields/","https://btctranscripts.com/cryptoeconomic-systems/2019/cross-chain-deals-and-adversarial-commerce/","https://btctranscripts.com/magicalcryptoconference/2019/cryptographic-hocus-pocus/","https://btctranscripts.com/grincon/2019/cryptography-audit/","https://btctranscripts.com/scalingbitcoin/stanford-2017/state-of-cryptography/","https://btctranscripts.com/misc/ctv-bip-review-workshop/","https://btctranscripts.com/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/","https://btctranscripts.com/baltic-honeybadger/2018/day-1-closing-panel/","https://btctranscripts.com/scalingbitcoin/milan-2016/day-1-group-summaries/","https://btctranscripts.com/scalingbitcoin/milan-2016/day-2-group-summaries/","https://btctranscripts.com/w3-blockchain-workshop-2016/day-2-groups/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/day-2-opening/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/decentralization-through-game-theory/","https://btctranscripts.com/stanford-blockchain-conference/2020/decentralized-oracles-tls/","https://btctranscripts.com/coindesk-consensus-2016/marco-santori-delaware-initiative/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/deploying-blockchain-at-scale-lessons-from-the-internet-deployment-in-japan/","https://btctranscripts.com/building-on-bitcoin/2018/lightning-wallet-design/","https://btctranscripts.com/w3-blockchain-workshop-2016/deterministic-signatures-group/","https://btctranscripts.com/w3-blockchain-workshop-2016/petertodd-dex/","https://btctranscripts.com/misc/discreet-log-contracts/","https://btctranscripts.com/scalingbitcoin/stanford-2017/discreet-log-contracts/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/discreet-log-contracts-oracles-loans-stablecoins-and-more/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/economic-risks/","https://btctranscripts.com/stanford-blockchain-conference/2019/threshold-signatures/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/elastic-block-caps/","https://btctranscripts.com/scalingbitcoin/milan-2016/collective-signing/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/erlay/","https://btctranscripts.com/w3-blockchain-workshop-2016/ethcore/","https://btctranscripts.com/stanford-blockchain-conference/2019/ethereum2/","https://btctranscripts.com/cryptoeconomic-systems/2019/everything-is-broken/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/extensibility/","https://btctranscripts.com/breaking-bitcoin/2019/extracting-seeds-from-hardware-wallets/","https://btctranscripts.com/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/","https://btctranscripts.com/misc/failures-of-secret-key-cryptography/","https://btctranscripts.com/scalingbitcoin/milan-2016/fast-difficulty-adjustment/","https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-25-fabrice-drouin-fee-management/","https://btctranscripts.com/scalingbitcoin/montreal-2015/peter-r/","https://btctranscripts.com/bit-block-boom/2019/fiat-money-fiat-food/","https://btctranscripts.com/stanford-blockchain-conference/2020/smart-contract-bug-hunting/","https://btctranscripts.com/breaking-bitcoin/2019/defense-of-bitcoin/","https://btctranscripts.com/cryptoeconomic-systems/2019/flash-boys-v2/","https://btctranscripts.com/scalingbitcoin/stanford-2017/flyclient-super-light-clients-for-cryptocurrencies/","https://btctranscripts.com/stanford-blockchain-conference/2019/formal-verification/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/forward-blocks/","https://btctranscripts.com/stanford-blockchain-conference/2020/fractal/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/fraud-proofs-petertodd/","https://btctranscripts.com/breaking-bitcoin/2019/fud-perceived-vs-real-bitcoin-risks/","https://btctranscripts.com/cryptoeconomic-systems/2019/funding/","https://btctranscripts.com/coindesk-consensus-2016/future-of-blockchains/","https://btctranscripts.com/coindesk-consensus-2016/future-of-regulation/","https://btctranscripts.com/scalingbitcoin/montreal-2015/future-of-spv-tech/","https://btctranscripts.com/decentralized-financial-architecture-workshop/g20-discussion/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/gavinandresen/","https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/jihan-wu-google-tech-talk/","https://btctranscripts.com/texas-bitcoin-conference-2014/gox/","https://btctranscripts.com/scalingbitcoin/stanford-2017/graphene-set-reconciliation/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/group-updates/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/groups/","https://btctranscripts.com/w3-blockchain-workshop-2016/groups-identity/","https://btctranscripts.com/coindesk-consensus-2016/hackathon-intro/","https://btctranscripts.com/stanford-blockchain-conference/2020/hardware-accelerated-rsa/","https://btctranscripts.com/dallas-bitcoin-symposium/history-and-extrapolation/","https://btctranscripts.com/coindesk-consensus-2016/how-tech-companies-are-embracing-blockchain-database-technology/","https://btctranscripts.com/coindesk-consensus-2016/how-to-get-bitcoin/","https://btctranscripts.com/bit-block-boom/2019/how-to-meme-bitcoin-to-the-moon/","https://btctranscripts.com/scalingbitcoin/montreal-2015/how-to-mine-bitcoin-profitably/","https://btctranscripts.com/stanford-blockchain-conference/2019/htlcs-considered-harmful/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/human-side-trust-workshop/","https://btctranscripts.com/decentralized-financial-architecture-workshop/implications/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/maaku-panel/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2018/improving-bitcoin-smart-contract-efficiency/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/in-adversarial-environments-blockchains-dont-scale/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/incentivizing-payment-channel-watchtowers/","https://btctranscripts.com/coindesk-consensus-2016/internal-approaches-blockchain-database-technology-strategies/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/internet-of-value/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/intro/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/intro/","https://btctranscripts.com/scalingbitcoin/milan-2016/intro/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/intro/","https://btctranscripts.com/w3-blockchain-workshop-2016/wendy/","https://btctranscripts.com/cryptoeconomic-systems/2019/introduction/","https://btctranscripts.com/scalingbitcoin/stanford-2017/intro/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/introduction/","https://btctranscripts.com/baltic-honeybadger/2018/investing-in-bitcoin-businesses/","https://btctranscripts.com/w3-blockchain-workshop-2016/ipfs/","https://btctranscripts.com/scalingbitcoin/montreal-2015/issues-impacting-block-size-proposals/","https://btctranscripts.com/cryptoeconomic-systems/2019/journal-review/","https://btctranscripts.com/cryptoeconomic-systems/2019/journals-as-clubs/","https://btctranscripts.com/scalingbitcoin/milan-2016/jute-braiding/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote-gavin-andresen/","https://btctranscripts.com/coindesk-consensus-2016/law-enforcement-and-anonymous-transactions/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/lessons-for-bitcoin-from-150-years-of-decentralization/","https://btctranscripts.com/cryptoeconomic-systems/2019/libra/","https://btctranscripts.com/chaincode-labs/chaincode-residency/2019-06-24-fabrice-drouin-the-transfer-layer/","https://btctranscripts.com/edgedevplusplus/2019/lightning-network-routing/","https://btctranscripts.com/breaking-bitcoin/2019/lightning-network-security-panel/","https://btctranscripts.com/stanford-blockchain-conference/2019/links/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/linq/","https://btctranscripts.com/stanford-blockchain-conference/2020/lower-bounds-limits-plasma/","https://btctranscripts.com/w3-blockchain-workshop-2016/matsuo/","https://btctranscripts.com/cryptoeconomic-systems/2019/mechanism-design/","https://btctranscripts.com/decentralized-financial-architecture-workshop/metadata/","https://btctranscripts.com/edgedevplusplus/2019/metadata/","https://btctranscripts.com/stanford-blockchain-conference/2019/miniscript/","https://btctranscripts.com/stanford-blockchain-conference/2020/mixicles/","https://btctranscripts.com/scalingbitcoin/montreal-2015/more-core-devs/","https://btctranscripts.com/stanford-blockchain-conference/2020/motoko-language/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/multi-party-channels-in-the-utxo-model-challenges-and-opportunities/","https://btctranscripts.com/cryptoeconomic-systems/2019/near-misses/","https://btctranscripts.com/breaking-bitcoin/2019/neutrino/","https://btctranscripts.com/stanford-blockchain-conference/2019/thundercore/","https://btctranscripts.com/stanford-blockchain-conference/2020/no-incentive/","https://btctranscripts.com/scalingbitcoin/montreal-2015/non-currency-applications/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/omniledger/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/eric-martindale/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/open-source-mining/","https://btctranscripts.com/baltic-honeybadger/2018/opening/","https://btctranscripts.com/breaking-bitcoin/2019/opening-remarks/","https://btctranscripts.com/stanford-blockchain-conference/2019/opening-remarks/","https://btctranscripts.com/coindesk-consensus-2016/opening-remarks-state-of-blockchain-ryan-selkis/","https://btctranscripts.com/scalingbitcoin/stanford-2017/optimizing-fee-estimation-via-mempool-state/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/overview-of-bips-necessary-for-lightning/","https://btctranscripts.com/decentralized-financial-architecture-workshop/perspective/","https://btctranscripts.com/w3-blockchain-workshop-2016/physical-assets/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/playing-with-fire-adjusting-bitcoin-block-subsidy/","https://btctranscripts.com/stanford-blockchain-conference/2020/plonk/","https://btctranscripts.com/baltic-honeybadger/2018/present-and-future-tech-challenges-in-bitcoin/","https://btctranscripts.com/stanford-blockchain-conference/2020/prism/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/prism/","https://btctranscripts.com/scalingbitcoin/montreal-2015/privacy-and-fungibility/","https://btctranscripts.com/w3-blockchain-workshop-2016/privacy-anonymity-and-identity-group/","https://btctranscripts.com/stanford-blockchain-conference/2019/privacy-preserving-multi-hop-locks/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/proof-of-necessary-work/","https://btctranscripts.com/stanford-blockchain-conference/2020/proof-of-necessary-work/","https://btctranscripts.com/w3-blockchain-workshop-2016/provenance-groups/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/research-and-development-goals/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/r3/","https://btctranscripts.com/coindesk-consensus-2016/reaching-consensus-open-blockchains/","https://btctranscripts.com/scalingbitcoin/stanford-2017/redesigning-bitcoin-fee-market/","https://btctranscripts.com/cryptoeconomic-systems/2019/reproducible-builds/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/reproducible-lightning-benchmark/","https://btctranscripts.com/scalingbitcoin/montreal-2015/reworking-bitcoin-core-p2p-code-for-robustness-and-event-driven/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/rootstock/","https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-1/","https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-2/","https://btctranscripts.com/w3-blockchain-workshop-2016/royalties/","https://btctranscripts.com/misc/safecurves-choosing-safe-curves-for-elliptic-curve-cryptography-2014/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/peter-todd-scalability/","https://btctranscripts.com/scalingbitcoin/milan-2016/timestamping/","https://btctranscripts.com/stanford-blockchain-conference/2020/scalable-rsa-modulus-generation/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/scaling-debate-is-a-proxy-battle-over-centralization/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/scriptless-lotteries/","https://btctranscripts.com/grincon/2019/scriptless-scripts-with-mimblewimble/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/secure-fountain-architecture/","https://btctranscripts.com/breaking-bitcoin/2019/security-attacks-decentralized-mining-pools/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/security-and-usability/","https://btctranscripts.com/breaking-bitcoin/2019/lightning-network-routing-security/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/security-assumptions/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/segregated-witness-and-its-impact-on-scalability/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/self-reproducing-coins-as-universal-turing-machine/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/self-sovereign-identity-ideology-and-architecture/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/shamir-secret-sharing/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/siacoin/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/matt-corallo-sidechains/","https://btctranscripts.com/scalingbitcoin/milan-2016/sidechains/","https://btctranscripts.com/w3-blockchain-workshop-2016/smart-signatures/","https://btctranscripts.com/scalingbitcoin/montreal-2015/snarks/","https://btctranscripts.com/simons-institute/snarks-and-their-practical-applications/","https://btctranscripts.com/stanford-blockchain-conference/2020/solving-data-availability-attacks-using-coded-merkle-trees/","https://btctranscripts.com/cryptoeconomic-systems/2019/solving-the-blockchain-trilemma/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/some-questions-for-bitcoiners/","https://btctranscripts.com/dallas-bitcoin-symposium/sound-money/","https://btctranscripts.com/stanford-blockchain-conference/2019/spork-probabilistic-bitcoin-soft-forks/","https://btctranscripts.com/stanford-blockchain-conference/2020/stark-for-developers/","https://btctranscripts.com/stanford-blockchain-conference/2019/state-channels/","https://btctranscripts.com/coindesk-consensus-2016/state-of-blockchain/","https://btctranscripts.com/bit-block-boom/2019/state-of-multisig/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/statechains/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/andrew-miller/","https://btctranscripts.com/stanford-blockchain-conference/2020/streamlet/","https://btctranscripts.com/scalingbitcoin/montreal-2015/stroem-payment-channels/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/swashbuckling-safety-training/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/","https://btctranscripts.com/bit-block-boom/2019/taproot-schnorr-soft-fork/","https://btctranscripts.com/dallas-bitcoin-symposium/texas-energy-market/","https://btctranscripts.com/baltic-honeybadger/2018/the-b-foundation/","https://btctranscripts.com/baltic-honeybadger/2018/the-bitcoin-standard/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/bitcoin-script/","https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/","https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/","https://btctranscripts.com/breaking-bitcoin/2019/future-of-hardware-wallets/","https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-lightning/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/ghostdag/","https://btctranscripts.com/stanford-blockchain-conference/2020/libra-blockchain-intro/","https://btctranscripts.com/stanford-blockchain-conference/2020/optimistic-vm/","https://btctranscripts.com/baltic-honeybadger/2018/the-reserve-currency-fallacy/","https://btctranscripts.com/stanford-blockchain-conference/2019/stark-dex/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/threshold-scriptless-scripts/","https://btctranscripts.com/stanford-blockchain-conference/2019/proofs-of-space-and-replication/","https://btctranscripts.com/simons-institute/todo/","https://btctranscripts.com/cryptoeconomic-systems/2019/token-journal/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/topics/","https://btctranscripts.com/baltic-honeybadger/2018/trading-panel/","https://btctranscripts.com/stanford-blockchain-conference/2020/transparent-dishonesty/","https://btctranscripts.com/stanford-blockchain-conference/2020/transparent-snarks-from-dark-compilers/","https://btctranscripts.com/cryptoeconomic-systems/2019/trust-and-blockchain-marketplaces/","https://btctranscripts.com/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/txprobe/","https://btctranscripts.com/scalingbitcoin/milan-2016/unlinkable-outsourced-channel-monitoring/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/unlocking-expressivity-with-op-cat/","https://btctranscripts.com/coindesk-consensus-2016/upgrading-capital-markets-for-digital-asset-trading/","https://btctranscripts.com/stanford-blockchain-conference/2019/urkel-trees/","https://btctranscripts.com/scalingbitcoin/stanford-2017/using-the-chain-for-what-chains-are-good-for/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2019/utreexo/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/validation-cost-metric/","https://btctranscripts.com/scalingbitcoin/montreal-2015/validation-costs/","https://btctranscripts.com/coindesk-consensus-2016/visa-chain/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/weak-signals/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/welcome/","https://btctranscripts.com/coindesk-consensus-2016/why-bitcoin-still-matters/","https://btctranscripts.com/magicalcryptoconference/2019/why-block-sizes-should-not-be-too-big/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/why-miners-will-not-voluntarily-individually-produce-smaller-blocks/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/arvind-narayanan/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/work-in-progress/","https://btctranscripts.com/simons-institute/zero-knowledge-probabilistic-proof-systems/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/zero-knowledge-proofs-for-bitcoin-scalability-and-beyond/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/zerolink-sudoku/","https://btctranscripts.com/cryptoeconomic-systems/2019/zksharks/"],"media":["https://btctranscripts.com/lightning-specification/2024-07-29-specification-call/","https://btctranscripts.com/lightning-specification/2024-07-15-specification-call/","https://btctranscripts.com/lightning-specification/2024-05-06-specification-call/","https://btctranscripts.com/lightning-specification/2024-04-22-specification-call/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/asmap/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/assumeutxo-mainnet-readiness/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/gui-discussions/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/kernel/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/signet-testnet4/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/p2p-monitoring/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/silent-payment-descriptors/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/coin-selection/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/cross-input-signature-aggregation/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/great-consensus-cleanup/","https://btctranscripts.com/lightning-specification/2024-04-08-specification-call/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/private-tx-broadcast/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/silent-payments-libsecp/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/stratumv2/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/weak-blocks/","https://btctranscripts.com/lightning-specification/2024-03-25-specification-call/","https://btctranscripts.com/lightning-specification/2024-03-11-specification-call/","https://btctranscripts.com/lightning-specification/2024-02-26-specification-call/","https://btctranscripts.com/lightning-specification/lightning-2024-01-15-specification-call/","https://btctranscripts.com/lightning-specification/2023-11-20-specification-call/","https://btctranscripts.com/lightning-specification/2023-11-06-specification-call/","https://btctranscripts.com/lightning-specification/2023-10-23-specification-call/","https://btctranscripts.com/lightning-specification/2023-09-25-specification-call/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/cmake/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/wallet-legacy-upgrade/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/signature-aggregation/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/assumeutxo-update/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/kernel-planning/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/libsecp256k1-meeting/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-design-goals/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/package-relay-planning/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/privacy-metrics/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/wallet-coin-selection/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-working-session/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/kernel-update/","https://btctranscripts.com/lightning-specification/2023-08-28-specification-call/","https://btctranscripts.com/lightning-specification/2023-08-14-specification-call/","https://btctranscripts.com/lightning-specification/2023-07-31-specification-call/","https://btctranscripts.com/lightning-specification/2023-07-17-specification-call/","https://btctranscripts.com/lightning-specification/2023-06-19-specification-call/","https://btctranscripts.com/lightning-specification/2023-06-05-specification-call/","https://btctranscripts.com/lightning-specification/2023-05-22-specification-call/","https://btctranscripts.com/lightning-specification/2023-05-08-specification-call/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-assumeutxo/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-fuzzing/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-libbitcoin-kernel/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-meta-discussion/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-asmap/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-mempool-clustering/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-package-relay-primer/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-refactors/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-silent-payments/","https://btctranscripts.com/lightning-specification/2023-04-24-specification-call/","https://btctranscripts.com/lightning-specification/2023-02-13-specification-call/","https://btctranscripts.com/lightning-specification/2023-01-30-specification-call/","https://btctranscripts.com/tabconf/2022/2022-10-15-braidpool/","https://btctranscripts.com/tabconf/2022/2022-10-15-segwit-vbytes-misconceptions/","https://btctranscripts.com/tabconf/2022/2022-10-15-silent-payments/","https://btctranscripts.com/tabconf/2022/2022-10-14-hac-spec/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-research-wishlist/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-merging/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-github/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-frost/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-hac-spec/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-package-relay/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-stratum-v2/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/","https://btctranscripts.com/greg-maxwell/2022-05-05-covenants-bip119/","https://btctranscripts.com/lightning-specification/2022-03-14-specification-call/","https://btctranscripts.com/c-lightning/2022-03-07-developer-call/","https://btctranscripts.com/lightning-specification/2022-02-14-specification-call/","https://btctranscripts.com/lightning-specification/2022-01-31-specification-call/","https://btctranscripts.com/c-lightning/2022-01-24-developer-call/","https://btctranscripts.com/c-lightning/2022-01-10-developer-call/","https://btctranscripts.com/lightning-specification/2022-01-03-specification-call/","https://btctranscripts.com/c-lightning/2021-12-13-developer-call/","https://btctranscripts.com/lightning-specification/2021-12-06-specification-call/","https://btctranscripts.com/c-lightning/2021-11-29-developer-call/","https://btctranscripts.com/lightning-specification/2021-11-22-specification-call/","https://btctranscripts.com/c-lightning/2021-11-15-developer-call/","https://btctranscripts.com/tabconf/2021/2021-11-05-jeremy-rubin-andrew-poelstra-covenants/","https://btctranscripts.com/sydney-bitcoin-meetup/2021-11-02-socratic-seminar/","https://btctranscripts.com/c-lightning/2021-11-01-developer-call/","https://btctranscripts.com/c-lightning/2021-10-18-developer-call/","https://btctranscripts.com/c-lightning/2021-10-04-developer-call/","https://btctranscripts.com/c-lightning/2021-09-20-developer-call/","https://btctranscripts.com/c-lightning/2021-09-06-developer-call/","https://btctranscripts.com/c-lightning/2021-08-23-developer-call/","https://btctranscripts.com/c-lightning/2021-08-09-developer-call/","https://btctranscripts.com/sydney-bitcoin-meetup/2021-07-06-socratic-seminar/","https://btctranscripts.com/sydney-bitcoin-meetup/2021-06-01-socratic-seminar/","https://btctranscripts.com/lightning-hack-day/2021-03-27-alex-bosworth-lightning-routing/","https://btctranscripts.com/sydney-bitcoin-meetup/2021-02-23-socratic-seminar/","https://btctranscripts.com/sf-bitcoin-meetup/2020-11-30-socratic-seminar-20/","https://btctranscripts.com/greg-maxwell/2020-11-25-greg-maxwell-replacing-pgp/","https://btctranscripts.com/greg-maxwell/2020-10-26-greg-maxwell-bitcoin-core-github/","https://btctranscripts.com/greg-maxwell/2020-08-27-greg-maxwell-checkmultisig-bug/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-08-25-socratic-seminar/","https://btctranscripts.com/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/","https://btctranscripts.com/chicago-bitdevs/2020-08-12-socratic-seminar/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-07-21-socratic-seminar/","https://btctranscripts.com/chicago-bitdevs/2020-07-08-socratic-seminar/","https://btctranscripts.com/greg-maxwell/2020-07-05-greg-maxwell-useful-proof-of-work/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-06-23-socratic-seminar/","https://btctranscripts.com/greg-maxwell/2020-06-08-greg-maxwell-liquid-censorship-resistance/","https://btctranscripts.com/la-bitdevs/2020-05-21-alekos-filini-magical-bitcoin/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-05-19-socratic-seminar/","https://btctranscripts.com/london-bitcoin-devs/2020-04-22-socratic-seminar/","https://btctranscripts.com/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/","https://btctranscripts.com/stanford-blockchain-conference/2020/atomic-multi-channel-updates/","https://btctranscripts.com/stanford-blockchain-conference/2020/beyond-hashrate-majority-attacks/","https://btctranscripts.com/stanford-blockchain-conference/2020/competitive-equilibria-staking-lending/","https://btctranscripts.com/stanford-blockchain-conference/2020/proof-of-stake/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/consensus-protocol-risks-and-vulnerabilities/","https://btctranscripts.com/stanford-blockchain-conference/2020/linking-anonymous-transactions/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/communication-with-regulators/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/opening-remarks/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/regulatory-pain-points/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/risk-overview/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/stress-testing-decentralized-finance/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/technological-stability/","https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-fabian-jahr-debugging-workshop/","https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-andrew-poelstra-miniscript/","https://btctranscripts.com/advancing-bitcoin/2020/2020-02-07-kalle-alm-signet-workshop/","https://btctranscripts.com/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/","https://btctranscripts.com/sf-bitcoin-meetup/2019-12-16-bip-taproot-bip-tapscript/","https://btctranscripts.com/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/","https://btctranscripts.com/stephan-livera-podcast/2019-11-13-jon-atack/","https://btctranscripts.com/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/","https://btctranscripts.com/cryptoeconomic-systems/2019/knowledge-aggregation-and-propagation/","https://btctranscripts.com/stephan-livera-podcast/2019-09-22-bryan-bishop/","https://btctranscripts.com/edgedevplusplus/2019/blockchain-design-patterns/","https://btctranscripts.com/edgedevplusplus/2019/hardware-wallet-design-best-practices/","https://btctranscripts.com/edgedevplusplus/2019/libbitcoin/","https://btctranscripts.com/edgedevplusplus/2019/lightning-network-sphinx-and-onion-routing/","https://btctranscripts.com/edgedevplusplus/2019/mining-firmware-security/","https://btctranscripts.com/edgedevplusplus/2019/statechains/","https://btctranscripts.com/edgedevplusplus/2019/bitcoin-data-structures/","https://btctranscripts.com/edgedevplusplus/2019/taproot/","https://btctranscripts.com/edgedevplusplus/2019/privacy-concepts/","https://btctranscripts.com/edgedevplusplus/2019/rebroadcasting/","https://btctranscripts.com/edgedevplusplus/2019/wallet-architecture/","https://btctranscripts.com/decentralized-financial-architecture-workshop/custody-group/","https://btctranscripts.com/decentralized-financial-architecture-workshop/introduction/","https://btctranscripts.com/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/","https://btctranscripts.com/dallas-bitcoin-symposium/intro/","https://btctranscripts.com/dallas-bitcoin-symposium/q-a/","https://btctranscripts.com/stephan-livera-podcast/2019-08-12-rusty-russell-joe-netti/","https://btctranscripts.com/stephan-livera-podcast/2019-07-31-roy-sheinfeld-stephan-livera/","https://btctranscripts.com/stephan-livera-podcast/2019-06-24-conner-fromknecht-stephan-livera/","https://btctranscripts.com/tftc-podcast/2019-06-18-andrew-poelstra-tftc/","https://btctranscripts.com/lets-talk-bitcoin-podcast/2019-06-09-ltb-pieter-wuille-jonas-nick/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-assumeutxo/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-statechains/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-hardware-wallets/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-noinput-etc/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-great-consensus-cleanup/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-taproot/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-utreexo/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-code-review/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-wallet-architecture/","https://btctranscripts.com/stephan-livera-podcast/2019-04-11-james-obeirne/","https://btctranscripts.com/stanford-blockchain-conference/2020/attacking-evm-resource-metering/","https://btctranscripts.com/stanford-blockchain-conference/2019/plasma-cash/","https://btctranscripts.com/misc/2019-01-05-unchained-capital-socratic-seminar/","https://btctranscripts.com/noded-podcast/2018-12-14-laolu-conner-lnd/","https://btctranscripts.com/stephan-livera-podcast/2018-12-11-laolu-osuntokun-stephan-livera/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-10-signmessage/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-09-bitcoin-optech/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-09-wallet-stuff/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-efficient-p2p-transaction-relay/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-script-descriptors/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-utxo-accumulators-and-utreexo/","https://btctranscripts.com/andreas-antonopoulos/2018-10-07-andreas-antonopoulos-schnorr-signatures/","https://btctranscripts.com/edgedevplusplus/2018/block-structure-and-headers-utxos-merkle-trees-segwit-bip141/","https://btctranscripts.com/edgedevplusplus/2018/introduction/","https://btctranscripts.com/greg-maxwell/2018-09-23-greg-maxwell-multiple-implementations/","https://btctranscripts.com/building-on-bitcoin/2018/bootstrapping-lightning-network/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/","https://btctranscripts.com/satoshi-roundtable/sr-004/ron-paul/","https://btctranscripts.com/greg-maxwell/2017-12-22-bech32-design/","https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/","https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/","https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/","https://btctranscripts.com/sf-bitcoin-meetup/2017-09-04-jonas-schnelli-bip150-bip151/","https://btctranscripts.com/sf-bitcoin-meetup/2016-11-21-mimblewimble/","https://btctranscripts.com/misc/2016-adam-back/","https://btctranscripts.com/scalingbitcoin/milan-2016/bip151-peer-encryption/","https://btctranscripts.com/scalingbitcoin/milan-2016/lightning/","https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/dan-boneh/","https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/cali2016/","https://btctranscripts.com/w3-blockchain-workshop-2016/lightning-network/","https://btctranscripts.com/w3-blockchain-workshop-2016/intro/","https://btctranscripts.com/scalingbitcoin/montreal-2015/systematizing-knowledge/","https://btctranscripts.com/scalingbitcoin/montreal-2015/overview-of-security-concerns/","https://btctranscripts.com/simons-institute/history-of-lattice-based-cryptography/","https://btctranscripts.com/misc/nydfs-bitlicense-lawsky-update/","https://btctranscripts.com/andreas-antonopoulos/2014-10-08-andreas-antonopolous-canada-senate-bitcoin/","https://btctranscripts.com/style/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/scaling-oblivious-read-write/","https://btctranscripts.com/simons-institute/a-wishlist-for-verifiable-computation/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/abstract-groups/","https://btctranscripts.com/cryptoeconomic-systems/2019/all-about-decentralized-trust/","https://btctranscripts.com/scalingbitcoin/montreal-2015/alternatives-to-block-size-as-aggregate-resource-limits/","https://btctranscripts.com/scalingbitcoin/montreal-2015/amiko-pay/","https://btctranscripts.com/stanford-blockchain-conference/2020/arbitrum-v2/","https://btctranscripts.com/w3-blockchain-workshop-2016/archival-science/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/armory-proof-of-payment/","https://btctranscripts.com/w3-blockchain-workshop-2016/arvind-narayanan/","https://btctranscripts.com/stanford-blockchain-conference/2019/asics/","https://btctranscripts.com/scalingbitcoin/stanford-2017/atomically-trading-with-roger-gambling-on-the-success-of-a-hard-fork/","https://btctranscripts.com/stanford-blockchain-conference/2019/aurora-transparent-succinct-arguments-r1cs/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/backpackers/","https://btctranscripts.com/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/","https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-block-propagation-iblt-rusty-russell/","https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-developers/","https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-failure-modes-and-the-role-of-the-lightning-network/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-financing-and-trading/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/","https://btctranscripts.com/scalingbitcoin/montreal-2015/bitcoin-load-spike-simulation/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-maximalism-dissected/","https://btctranscripts.com/stanford-blockchain-conference/2019/bitcoin-payment-economic-analysis/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-regulation-landscape/","https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-security/","https://btctranscripts.com/stanford-blockchain-conference/2020/block-rewards/","https://btctranscripts.com/coindesk-consensus-2016/blockchain-database-technology-in-a-global-context/","https://btctranscripts.com/w3-blockchain-workshop-2016/blockchain-hub/","https://btctranscripts.com/scalingbitcoin/montreal-2015/blockchain-testbed/","https://btctranscripts.com/stanford-blockchain-conference/2020/blockchains-for-multiplayer-games/","https://btctranscripts.com/stanford-blockchain-conference/2019/bloxroute/","https://btctranscripts.com/stanford-blockchain-conference/2020/boomerang/","https://btctranscripts.com/scalingbitcoin/milan-2016/breaking-the-chain/","https://btctranscripts.com/stanford-blockchain-conference/2020/brick-async-state-channels/","https://btctranscripts.com/stanford-blockchain-conference/2019/building-bulletproofs/","https://btctranscripts.com/bit-block-boom/2019/building-vibrant-bitcoin-communities/","https://btctranscripts.com/stanford-blockchain-conference/2019/casper/","https://btctranscripts.com/stanford-blockchain-conference/2020/celo-ultralight-client/","https://btctranscripts.com/misc/cftc-bitcoin/","https://btctranscripts.com/scalingbitcoin/milan-2016/chainbreak/","https://btctranscripts.com/scalingbitcoin/stanford-2017/changes-without-unanimous-consent/","https://btctranscripts.com/w3-blockchain-workshop-2016/christopher-allen/","https://btctranscripts.com/coindesk-consensus-2016/clearing-and-settlement-for-global-financial-institutions/","https://btctranscripts.com/stanford-blockchain-conference/2020/clockwork-nonfrontrunning/","https://btctranscripts.com/scalingbitcoin/milan-2016/coin-selection/","https://btctranscripts.com/scalingbitcoin/montreal-2015/coinscope-andrew-miller/","https://btctranscripts.com/decentralized-financial-architecture-workshop/compliance-and-confidentiality/","https://btctranscripts.com/scalingbitcoin/stanford-2017/concurrency-and-privacy-with-payment-channel-networks/","https://btctranscripts.com/stanford-blockchain-conference/2019/coordinated-upgrades/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/cory-fields/","https://btctranscripts.com/cryptoeconomic-systems/2019/cross-chain-deals-and-adversarial-commerce/","https://btctranscripts.com/grincon/2019/cryptography-audit/","https://btctranscripts.com/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/","https://btctranscripts.com/baltic-honeybadger/2018/day-1-closing-panel/","https://btctranscripts.com/scalingbitcoin/milan-2016/day-1-group-summaries/","https://btctranscripts.com/scalingbitcoin/milan-2016/day-2-group-summaries/","https://btctranscripts.com/w3-blockchain-workshop-2016/day-2-groups/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/day-2-opening/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/decentralization-through-game-theory/","https://btctranscripts.com/stanford-blockchain-conference/2020/decentralized-oracles-tls/","https://btctranscripts.com/coindesk-consensus-2016/marco-santori-delaware-initiative/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/deploying-blockchain-at-scale-lessons-from-the-internet-deployment-in-japan/","https://btctranscripts.com/w3-blockchain-workshop-2016/deterministic-signatures-group/","https://btctranscripts.com/w3-blockchain-workshop-2016/petertodd-dex/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/economic-risks/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/elastic-block-caps/","https://btctranscripts.com/scalingbitcoin/milan-2016/collective-signing/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/erlay/","https://btctranscripts.com/w3-blockchain-workshop-2016/ethcore/","https://btctranscripts.com/stanford-blockchain-conference/2019/ethereum2/","https://btctranscripts.com/cryptoeconomic-systems/2019/everything-is-broken/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/extensibility/","https://btctranscripts.com/baltic-honeybadger/2018/extreme-opsec-for-the-modern-cypherpunk/","https://btctranscripts.com/scalingbitcoin/milan-2016/fast-difficulty-adjustment/","https://btctranscripts.com/scalingbitcoin/montreal-2015/peter-r/","https://btctranscripts.com/stanford-blockchain-conference/2020/smart-contract-bug-hunting/","https://btctranscripts.com/cryptoeconomic-systems/2019/flash-boys-v2/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/forward-blocks/","https://btctranscripts.com/stanford-blockchain-conference/2020/fractal/","https://btctranscripts.com/cryptoeconomic-systems/2019/funding/","https://btctranscripts.com/coindesk-consensus-2016/future-of-blockchains/","https://btctranscripts.com/coindesk-consensus-2016/future-of-regulation/","https://btctranscripts.com/scalingbitcoin/montreal-2015/future-of-spv-tech/","https://btctranscripts.com/decentralized-financial-architecture-workshop/g20-discussion/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/gavinandresen/","https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/jihan-wu-google-tech-talk/","https://btctranscripts.com/texas-bitcoin-conference-2014/gox/","https://btctranscripts.com/scalingbitcoin/stanford-2017/graphene-set-reconciliation/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/group-updates/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/groups/","https://btctranscripts.com/w3-blockchain-workshop-2016/groups-identity/","https://btctranscripts.com/coindesk-consensus-2016/hackathon-intro/","https://btctranscripts.com/stanford-blockchain-conference/2020/hardware-accelerated-rsa/","https://btctranscripts.com/dallas-bitcoin-symposium/history-and-extrapolation/","https://btctranscripts.com/coindesk-consensus-2016/how-tech-companies-are-embracing-blockchain-database-technology/","https://btctranscripts.com/coindesk-consensus-2016/how-to-get-bitcoin/","https://btctranscripts.com/scalingbitcoin/montreal-2015/how-to-mine-bitcoin-profitably/","https://btctranscripts.com/stanford-blockchain-conference/2019/htlcs-considered-harmful/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/human-side-trust-workshop/","https://btctranscripts.com/decentralized-financial-architecture-workshop/implications/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/maaku-panel/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/incentivizing-payment-channel-watchtowers/","https://btctranscripts.com/coindesk-consensus-2016/internal-approaches-blockchain-database-technology-strategies/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/internet-of-value/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/intro/","https://btctranscripts.com/scalingbitcoin/milan-2016/intro/","https://btctranscripts.com/w3-blockchain-workshop-2016/wendy/","https://btctranscripts.com/cryptoeconomic-systems/2019/introduction/","https://btctranscripts.com/scalingbitcoin/stanford-2017/intro/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/introduction/","https://btctranscripts.com/baltic-honeybadger/2018/investing-in-bitcoin-businesses/","https://btctranscripts.com/w3-blockchain-workshop-2016/ipfs/","https://btctranscripts.com/scalingbitcoin/montreal-2015/issues-impacting-block-size-proposals/","https://btctranscripts.com/cryptoeconomic-systems/2019/journal-review/","https://btctranscripts.com/cryptoeconomic-systems/2019/journals-as-clubs/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote-gavin-andresen/","https://btctranscripts.com/coindesk-consensus-2016/law-enforcement-and-anonymous-transactions/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/lessons-for-bitcoin-from-150-years-of-decentralization/","https://btctranscripts.com/cryptoeconomic-systems/2019/libra/","https://btctranscripts.com/edgedevplusplus/2019/lightning-network-routing/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/linq/","https://btctranscripts.com/stanford-blockchain-conference/2020/lower-bounds-limits-plasma/","https://btctranscripts.com/w3-blockchain-workshop-2016/matsuo/","https://btctranscripts.com/cryptoeconomic-systems/2019/mechanism-design/","https://btctranscripts.com/decentralized-financial-architecture-workshop/metadata/","https://btctranscripts.com/edgedevplusplus/2019/metadata/","https://btctranscripts.com/stanford-blockchain-conference/2020/mixicles/","https://btctranscripts.com/scalingbitcoin/montreal-2015/more-core-devs/","https://btctranscripts.com/stanford-blockchain-conference/2020/motoko-language/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/multi-party-channels-in-the-utxo-model-challenges-and-opportunities/","https://btctranscripts.com/cryptoeconomic-systems/2019/near-misses/","https://btctranscripts.com/stanford-blockchain-conference/2020/no-incentive/","https://btctranscripts.com/scalingbitcoin/montreal-2015/non-currency-applications/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/omniledger/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/eric-martindale/","https://btctranscripts.com/breaking-bitcoin/2019/opening-remarks/","https://btctranscripts.com/stanford-blockchain-conference/2019/opening-remarks/","https://btctranscripts.com/coindesk-consensus-2016/opening-remarks-state-of-blockchain-ryan-selkis/","https://btctranscripts.com/scalingbitcoin/stanford-2017/optimizing-fee-estimation-via-mempool-state/","https://btctranscripts.com/decentralized-financial-architecture-workshop/perspective/","https://btctranscripts.com/w3-blockchain-workshop-2016/physical-assets/","https://btctranscripts.com/stanford-blockchain-conference/2020/plonk/","https://btctranscripts.com/baltic-honeybadger/2018/present-and-future-tech-challenges-in-bitcoin/","https://btctranscripts.com/stanford-blockchain-conference/2020/prism/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/prism/","https://btctranscripts.com/scalingbitcoin/montreal-2015/privacy-and-fungibility/","https://btctranscripts.com/w3-blockchain-workshop-2016/privacy-anonymity-and-identity-group/","https://btctranscripts.com/stanford-blockchain-conference/2019/privacy-preserving-multi-hop-locks/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/proof-of-necessary-work/","https://btctranscripts.com/stanford-blockchain-conference/2020/proof-of-necessary-work/","https://btctranscripts.com/w3-blockchain-workshop-2016/provenance-groups/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/research-and-development-goals/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/r3/","https://btctranscripts.com/coindesk-consensus-2016/reaching-consensus-open-blockchains/","https://btctranscripts.com/scalingbitcoin/stanford-2017/redesigning-bitcoin-fee-market/","https://btctranscripts.com/cryptoeconomic-systems/2019/reproducible-builds/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/reproducible-lightning-benchmark/","https://btctranscripts.com/scalingbitcoin/montreal-2015/reworking-bitcoin-core-p2p-code-for-robustness-and-event-driven/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/rootstock/","https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-1/","https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-2/","https://btctranscripts.com/w3-blockchain-workshop-2016/royalties/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/peter-todd-scalability/","https://btctranscripts.com/scalingbitcoin/milan-2016/timestamping/","https://btctranscripts.com/stanford-blockchain-conference/2020/scalable-rsa-modulus-generation/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/scaling-debate-is-a-proxy-battle-over-centralization/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/scriptless-lotteries/","https://btctranscripts.com/grincon/2019/scriptless-scripts-with-mimblewimble/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/secure-fountain-architecture/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/security-and-usability/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/self-reproducing-coins-as-universal-turing-machine/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/self-sovereign-identity-ideology-and-architecture/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/shamir-secret-sharing/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/siacoin/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/matt-corallo-sidechains/","https://btctranscripts.com/scalingbitcoin/milan-2016/sidechains/","https://btctranscripts.com/w3-blockchain-workshop-2016/smart-signatures/","https://btctranscripts.com/scalingbitcoin/montreal-2015/snarks/","https://btctranscripts.com/stanford-blockchain-conference/2020/solving-data-availability-attacks-using-coded-merkle-trees/","https://btctranscripts.com/cryptoeconomic-systems/2019/solving-the-blockchain-trilemma/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/some-questions-for-bitcoiners/","https://btctranscripts.com/dallas-bitcoin-symposium/sound-money/","https://btctranscripts.com/stanford-blockchain-conference/2020/stark-for-developers/","https://btctranscripts.com/stanford-blockchain-conference/2019/state-channels/","https://btctranscripts.com/coindesk-consensus-2016/state-of-blockchain/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/statechains/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/andrew-miller/","https://btctranscripts.com/stanford-blockchain-conference/2020/streamlet/","https://btctranscripts.com/scalingbitcoin/montreal-2015/stroem-payment-channels/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/swashbuckling-safety-training/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/","https://btctranscripts.com/dallas-bitcoin-symposium/texas-energy-market/","https://btctranscripts.com/baltic-honeybadger/2018/the-b-foundation/","https://btctranscripts.com/baltic-honeybadger/2018/the-bitcoin-standard/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/bitcoin-script/","https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-smart-contracts/","https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-bitcoin-wallets/","https://btctranscripts.com/baltic-honeybadger/2018/the-future-of-lightning/","https://btctranscripts.com/stanford-blockchain-conference/2020/libra-blockchain-intro/","https://btctranscripts.com/stanford-blockchain-conference/2020/optimistic-vm/","https://btctranscripts.com/stanford-blockchain-conference/2019/stark-dex/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/threshold-scriptless-scripts/","https://btctranscripts.com/simons-institute/todo/","https://btctranscripts.com/cryptoeconomic-systems/2019/token-journal/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/topics/","https://btctranscripts.com/baltic-honeybadger/2018/trading-panel/","https://btctranscripts.com/stanford-blockchain-conference/2020/transparent-dishonesty/","https://btctranscripts.com/stanford-blockchain-conference/2020/transparent-snarks-from-dark-compilers/","https://btctranscripts.com/cryptoeconomic-systems/2019/trust-and-blockchain-marketplaces/","https://btctranscripts.com/baltic-honeybadger/2018/trustlessness-scalability-and-directions-in-security-models/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/txprobe/","https://btctranscripts.com/scalingbitcoin/milan-2016/unlinkable-outsourced-channel-monitoring/","https://btctranscripts.com/coindesk-consensus-2016/upgrading-capital-markets-for-digital-asset-trading/","https://btctranscripts.com/stanford-blockchain-conference/2019/urkel-trees/","https://btctranscripts.com/scalingbitcoin/montreal-2015/validation-costs/","https://btctranscripts.com/coindesk-consensus-2016/visa-chain/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/weak-signals/","https://btctranscripts.com/coindesk-consensus-2016/why-bitcoin-still-matters/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/work-in-progress/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/zerolink-sudoku/"],"speakers":["https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/asmap/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/assumeutxo-mainnet-readiness/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/gui-discussions/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/kernel/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/signet-testnet4/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/p2p-monitoring/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/silent-payment-descriptors/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/coin-selection/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/cross-input-signature-aggregation/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/great-consensus-cleanup/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/private-tx-broadcast/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/silent-payments-libsecp/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/stratumv2/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/weak-blocks/","https://btctranscripts.com/lightning-specification/lightning-2024-01-15-specification-call/","https://btctranscripts.com/lightning-specification/2023-11-20-specification-call/","https://btctranscripts.com/lightning-specification/2023-11-06-specification-call/","https://btctranscripts.com/lightning-specification/2023-10-23-specification-call/","https://btctranscripts.com/lightning-specification/2023-09-25-specification-call/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/signature-aggregation/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/assumeutxo-update/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/libsecp256k1-meeting/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-design-goals/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/wallet-coin-selection/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-working-session/","https://btctranscripts.com/lightning-specification/2023-08-28-specification-call/","https://btctranscripts.com/lightning-specification/2023-08-14-specification-call/","https://btctranscripts.com/lightning-specification/2023-07-31-specification-call/","https://btctranscripts.com/lightning-specification/2023-07-17-specification-call/","https://btctranscripts.com/lightning-specification/2023-06-19-specification-call/","https://btctranscripts.com/lightning-specification/2023-06-05-specification-call/","https://btctranscripts.com/lightning-specification/2023-05-22-specification-call/","https://btctranscripts.com/lightning-specification/2023-05-08-specification-call/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-meta-discussion/","https://btctranscripts.com/lightning-specification/2023-04-24-specification-call/","https://btctranscripts.com/lightning-specification/2023-02-13-specification-call/","https://btctranscripts.com/lightning-specification/2023-01-30-specification-call/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-libsecp256k1/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-research-wishlist/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-12-merging/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-github/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-fee-market/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-frost/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-hac-spec/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-package-relay/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-11-stratum-v2/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-p2p-encryption/","https://btctranscripts.com/bitcoin-core-dev-tech/2022-10/2022-10-10-misc/","https://btctranscripts.com/lightning-specification/2022-03-14-specification-call/","https://btctranscripts.com/c-lightning/2022-03-07-developer-call/","https://btctranscripts.com/lightning-specification/2022-02-14-specification-call/","https://btctranscripts.com/lightning-specification/2022-01-31-specification-call/","https://btctranscripts.com/c-lightning/2022-01-24-developer-call/","https://btctranscripts.com/c-lightning/2022-01-10-developer-call/","https://btctranscripts.com/lightning-specification/2022-01-03-specification-call/","https://btctranscripts.com/c-lightning/2021-12-13-developer-call/","https://btctranscripts.com/lightning-specification/2021-12-06-specification-call/","https://btctranscripts.com/c-lightning/2021-11-29-developer-call/","https://btctranscripts.com/lightning-specification/2021-11-22-specification-call/","https://btctranscripts.com/c-lightning/2021-11-15-developer-call/","https://btctranscripts.com/sydney-bitcoin-meetup/2021-11-02-socratic-seminar/","https://btctranscripts.com/c-lightning/2021-11-01-developer-call/","https://btctranscripts.com/c-lightning/2021-10-18-developer-call/","https://btctranscripts.com/c-lightning/2021-10-04-developer-call/","https://btctranscripts.com/c-lightning/2021-09-20-developer-call/","https://btctranscripts.com/c-lightning/2021-09-06-developer-call/","https://btctranscripts.com/stephan-livera-podcast/2021-08-24-seedsigner/","https://btctranscripts.com/c-lightning/2021-08-23-developer-call/","https://btctranscripts.com/london-bitcoin-devs/2021-08-10-socratic-seminar-dlcs/","https://btctranscripts.com/c-lightning/2021-08-09-developer-call/","https://btctranscripts.com/london-bitcoin-devs/2021-07-20-socratic-seminar-taproot-rollout/","https://btctranscripts.com/sydney-bitcoin-meetup/2021-07-06-socratic-seminar/","https://btctranscripts.com/sydney-bitcoin-meetup/2021-06-01-socratic-seminar/","https://btctranscripts.com/sf-bitcoin-meetup/2020-11-30-socratic-seminar-20/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-08-25-socratic-seminar/","https://btctranscripts.com/bitcoin-design/misc/2020-08-20-bitcoin-core-gui/","https://btctranscripts.com/london-bitcoin-devs/2020-08-19-socratic-seminar-signet/","https://btctranscripts.com/chicago-bitdevs/2020-08-12-socratic-seminar/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-07-21-socratic-seminar/","https://btctranscripts.com/chicago-bitdevs/2020-07-08-socratic-seminar/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-06-23-socratic-seminar/","https://btctranscripts.com/wasabi/research-club/2020-06-15-coinswap/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-05-19-socratic-seminar/","https://btctranscripts.com/london-bitcoin-devs/2020-05-19-socratic-seminar-vaults/","https://btctranscripts.com/austin-bitcoin-developers/2020-02-24-socratic-seminar-6/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/communication-with-regulators/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/technological-stability/","https://btctranscripts.com/austin-bitcoin-developers/2020-01-21-socratic-seminar-5/","https://btctranscripts.com/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/","https://btctranscripts.com/austin-bitcoin-developers/2019-10-14-socratic-seminar-3/","https://btctranscripts.com/bitcoinops/2019-09-27-schnorr-taproot-workshop/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/private-information-retrieval/","https://btctranscripts.com/decentralized-financial-architecture-workshop/custody-group/","https://btctranscripts.com/austin-bitcoin-developers/2019-08-22-socratic-seminar-2/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-p2p-encryption/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-07-signet/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-code-review/","https://btctranscripts.com/magicalcryptoconference/2019/intro/","https://btctranscripts.com/magicalcryptoconference/2019/mcf-episode/","https://btctranscripts.com/misc/2019-01-05-unchained-capital-socratic-seminar/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-09-bitcoin-optech/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-09-wallet-stuff/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-10/2018-10-08-efficient-p2p-transaction-relay/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-merkleized-abstract-syntax-trees-mast/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-06-taproot-graftroot-etc/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-bellare-neven/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-05-cross-curve-atomic-swaps/","https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-07-merkleized-abstract-syntax-trees/","https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-06-signature-aggregation/","https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/","https://btctranscripts.com/scalingbitcoin/milan-2016/lightning/","https://btctranscripts.com/sf-bitcoin-meetup/2016-09-28-christopher-jeffrey-bcoin/","https://btctranscripts.com/bitcoin-developers-miners-meeting-2016/cali2016/","https://btctranscripts.com/misc/nydfs-bitlicense-lawsky-update/","https://btctranscripts.com/style/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/abstract-groups/","https://btctranscripts.com/w3-blockchain-workshop-2016/archival-science/","https://btctranscripts.com/scalingbitcoin/milan-2016/chainbreak/","https://btctranscripts.com/scalingbitcoin/milan-2016/day-1-group-summaries/","https://btctranscripts.com/scalingbitcoin/milan-2016/day-2-group-summaries/","https://btctranscripts.com/w3-blockchain-workshop-2016/day-2-groups/","https://btctranscripts.com/w3-blockchain-workshop-2016/deterministic-signatures-group/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/economic-risks/","https://btctranscripts.com/w3-blockchain-workshop-2016/ethcore/","https://btctranscripts.com/scalingbitcoin/montreal-2015/future-of-spv-tech/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/gavinandresen/","https://btctranscripts.com/texas-bitcoin-conference-2014/gox/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/group-updates/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/groups/","https://btctranscripts.com/w3-blockchain-workshop-2016/groups-identity/","https://btctranscripts.com/dallas-bitcoin-symposium/history-and-extrapolation/","https://btctranscripts.com/scalingbitcoin/montreal-2015/how-to-mine-bitcoin-profitably/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/intro/","https://btctranscripts.com/w3-blockchain-workshop-2016/ipfs/","https://btctranscripts.com/cryptoeconomic-systems/2019/journal-review/","https://btctranscripts.com/stanford-blockchain-conference/2019/links/","https://btctranscripts.com/decentralized-financial-architecture-workshop/metadata/","https://btctranscripts.com/edgedevplusplus/2019/metadata/","https://btctranscripts.com/scalingbitcoin/montreal-2015/more-core-devs/","https://btctranscripts.com/baltic-honeybadger/2018/opening/","https://btctranscripts.com/breaking-bitcoin/2019/opening-remarks/","https://btctranscripts.com/decentralized-financial-architecture-workshop/perspective/","https://btctranscripts.com/w3-blockchain-workshop-2016/physical-assets/","https://btctranscripts.com/scalingbitcoin/montreal-2015/privacy-and-fungibility/","https://btctranscripts.com/w3-blockchain-workshop-2016/privacy-anonymity-and-identity-group/","https://btctranscripts.com/w3-blockchain-workshop-2016/provenance-groups/","https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-2/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/shamir-secret-sharing/","https://btctranscripts.com/coindesk-consensus-2016/state-of-blockchain/","https://btctranscripts.com/simons-institute/todo/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/topics/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/weak-signals/"],"tags":["https://btctranscripts.com/bitcoin-explained/hashcash-and-bit-gold/","https://btctranscripts.com/stephan-livera-podcast/2023-03-06-greg-sanders/","https://btctranscripts.com/stephan-livera-podcast/2023-02-27-craig-raw-bitcoin-multi-signature/","https://btctranscripts.com/stephan-livera-podcast/2023-02-23-matt-corallo/","https://btctranscripts.com/bitcoin-explained/inscriptions/","https://btctranscripts.com/stephan-livera-podcast/2023-02-02-casey-rodarmor/","https://btctranscripts.com/stephan-livera-podcast/2023-01-23-antoine-poinsot-and-salvatore-ingala/","https://btctranscripts.com/stephan-livera-podcast/2023-01-18-josibake/","https://btctranscripts.com/stephan-livera-podcast/2023-01-14-james-obeirne-a-new-way-to-hodl/","https://btctranscripts.com/stephan-livera-podcast/2022-11-13-dhruv-pieter-wuille-and-tim-ruffing/","https://btctranscripts.com/stephan-livera-podcast/2022-08-11-gloria-zhao/","https://btctranscripts.com/stephan-livera-podcast/2022-08-02-jonas-nick-tim-ruffing/","https://btctranscripts.com/stephan-livera-podcast/2022-04-01-max-hillebrand/","https://btctranscripts.com/stephan-livera-podcast/2022-03-27-rene-pickhardt/","https://btctranscripts.com/stephan-livera-podcast/2022-03-07-john-cantrell-sensei/","https://btctranscripts.com/stephan-livera-podcast/2022-02-15-chris-stewart/","https://btctranscripts.com/stephan-livera-podcast/2022-01-31-nvk-bitcoin-hardware-innovation/","https://btctranscripts.com/stephan-livera-podcast/2022-01-17-jeremy-rubin/","https://btctranscripts.com/stephan-livera-podcast/2022-01-11-salvatore-ingala/","https://btctranscripts.com/stephan-livera-podcast/2021-12-17-eric-sirion/","https://btctranscripts.com/stephan-livera-podcast/2021-11-27-lisa-neigut-alex-bosworth-graham-krizek-and-matt-corallo/","https://btctranscripts.com/stephan-livera-podcast/2021-11-16-pieter-wuille-andrew-poelstra-andrew-chow-mark-erhardt/","https://btctranscripts.com/stephan-livera-podcast/2021-11-12-nicholas-gregory/","https://btctranscripts.com/stephan-livera-podcast/2021-11-07-t-bast/","https://btctranscripts.com/stephan-livera-podcast/2021-10-27-k3tan-networking-for-bitcoiners/","https://btctranscripts.com/stephan-livera-podcast/2021-10-24-dustin-trammell/","https://btctranscripts.com/stephan-livera-podcast/2021-10-02-philip-glazman/","https://btctranscripts.com/stephan-livera-podcast/2021-09-29-thomas-jestopher-and-anthony-potdevin/","https://btctranscripts.com/stephan-livera-podcast/2021-08-24-seedsigner/","https://btctranscripts.com/stephan-livera-podcast/2021-08-09-rusty-russell/","https://btctranscripts.com/stephan-livera-podcast/2021-07-17-andrew-chow/","https://btctranscripts.com/stephan-livera-podcast/2021-07-13-nvk-bitcoin-security/","https://btctranscripts.com/stephan-livera-podcast/2021-05-24-alejandro-de-la-torre/","https://btctranscripts.com/stephan-livera-podcast/2021-05-21-anthony-ronning-bitcoin-lightning-privacy/","https://btctranscripts.com/stephan-livera-podcast/2021-05-13-pavel-moravec/","https://btctranscripts.com/stephan-livera-podcast/2021-04-28-pete-rizzo/","https://btctranscripts.com/stephan-livera-podcast/2021-03-24-craig-raw-bitcoin-multi-sig/","https://btctranscripts.com/stephan-livera-podcast/2021-03-17-luke-dashjr/","https://btctranscripts.com/stephan-livera-podcast/2021-03-04-matt-corallo/","https://btctranscripts.com/stephan-livera-podcast/2021-01-21-wiz-and-simon-mempool/","https://btctranscripts.com/stephan-livera-podcast/2021-01-14-jonas-schnelli-maintaining-bitcoin-core/","https://btctranscripts.com/sf-bitcoin-meetup/2020-11-30-socratic-seminar-20/","https://btctranscripts.com/greg-maxwell/2020-11-25-greg-maxwell-replacing-pgp/","https://btctranscripts.com/greg-maxwell/2020-10-26-greg-maxwell-bitcoin-core-github/","https://btctranscripts.com/stephan-livera-podcast/2020-10-15-nadav-kohen-bitcoin-dlcs/","https://btctranscripts.com/cppcon/2020/2020-10-09-barnabas-bagyi-fuzzing-class-interfaces/","https://btctranscripts.com/stephan-livera-podcast/2020-09-15-steve-lee-of-square-crypto/","https://btctranscripts.com/stephan-livera-podcast/2020-08-28-stepan-snigirev-and-ben-kaufman/","https://btctranscripts.com/greg-maxwell/2020-08-27-greg-maxwell-checkmultisig-bug/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-08-25-socratic-seminar/","https://btctranscripts.com/stephan-livera-podcast/2020-08-13-christian-decker/","https://btctranscripts.com/stephan-livera-podcast/2020-08-09-thomas-voegtlin-ghost43-electrum/","https://btctranscripts.com/stephan-livera-podcast/2020-08-09-thomas-voegtlin-and-ghost43/","https://btctranscripts.com/stephan-livera-podcast/2020-07-21-rootzoll-and-openoms-raspiblitz/","https://btctranscripts.com/chicago-bitdevs/2020-07-08-socratic-seminar/","https://btctranscripts.com/greg-maxwell/2020-07-05-greg-maxwell-useful-proof-of-work/","https://btctranscripts.com/stephan-livera-podcast/2020-06-30-john-cantrell-bruteforcing-bitcoin-seeds/","https://btctranscripts.com/sydney-bitcoin-meetup/2020-06-23-socratic-seminar/","https://btctranscripts.com/lightning-hack-day/2020-06-21-rootzoll-openoms-raspiblitz/","https://btctranscripts.com/stephan-livera-podcast/2020-06-09-ergo-unwinding-bitcoin/","https://btctranscripts.com/greg-maxwell/2020-06-08-greg-maxwell-liquid-censorship-resistance/","https://btctranscripts.com/stephan-livera-podcast/2020-05-27-bitcoin-coin-selection/","https://btctranscripts.com/london-bitcoin-devs/2020-05-19-socratic-seminar-vaults/","https://btctranscripts.com/vr-bitcoin/2020-05-16-oliver-gugger-lsat/","https://btctranscripts.com/ruben-somsen/2020-05-11-ruben-somsen-succinct-atomic-swap/","https://btctranscripts.com/london-bitcoin-devs/2020-04-29-kalle-rosenbaum-grokking-bitcoin/","https://btctranscripts.com/stephan-livera-podcast/2020-04-24-lisa-neigut-lighting-network-channel/","https://btctranscripts.com/london-bitcoin-devs/2020-04-22-socratic-seminar/","https://btctranscripts.com/stephan-livera-podcast/2020-04-21-chris-belcher/","https://btctranscripts.com/stephan-livera-podcast/2020-04-07-gleb-naumenko-erlay/","https://btctranscripts.com/stanford-blockchain-conference/2020/welcome-remarks/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/communication-with-regulators/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/risk-overview/","https://btctranscripts.com/stephan-livera-podcast/2020-02-16-waxwing-or-adam-gibson/","https://btctranscripts.com/london-bitcoin-devs/2020-02-04-james-chiang-trace-net/","https://btctranscripts.com/stephan-livera-podcast/2020-01-06-andreas-antonopoulos/","https://btctranscripts.com/stephan-livera-podcast/2019-12-27-aj-townsschnorr-taproot-tapscript-bips/","https://btctranscripts.com/stephan-livera-podcast/2019-11-27-jan-capekstratum-v2/","https://btctranscripts.com/austin-bitcoin-developers/2019-11-19-socratic-seminar-4/","https://btctranscripts.com/stephan-livera-podcast/2019-11-16-thomas-voegtlin-electrum-wallet/","https://btctranscripts.com/stephan-livera-podcast/2019-11-13-jon-atack/","https://btctranscripts.com/stephan-livera-podcast/2019-11-08-allen-piscitellosidechains/","https://btctranscripts.com/stephan-livera-podcast/2019-10-29-jack-mallers/","https://btctranscripts.com/stephan-livera-podcast/2019-10-24-alex-bosworth-submarine-swaps/","https://btctranscripts.com/lightning-conference/2019/2019-10-19-chris-stewart-private-key-management/","https://btctranscripts.com/stephan-livera-podcast/2019-09-22-bryan-bishop/","https://btctranscripts.com/edgedevplusplus/2019/debugging-bitcoin/","https://btctranscripts.com/edgedevplusplus/2019/libbitcoin/","https://btctranscripts.com/edgedevplusplus/2019/bitcoin-data-structures/","https://btctranscripts.com/decentralized-financial-architecture-workshop/introduction/","https://btctranscripts.com/dallas-bitcoin-symposium/intro/","https://btctranscripts.com/dallas-bitcoin-symposium/q-a/","https://btctranscripts.com/stephan-livera-podcast/2019-08-12-rusty-russell-joe-netti/","https://btctranscripts.com/stephan-livera-podcast/2019-08-08-michael-flaxman/","https://btctranscripts.com/stephan-livera-podcast/2019-07-31-roy-sheinfeld-lightning-network-services/","https://btctranscripts.com/stephan-livera-podcast/2019-07-31-roy-sheinfeld-stephan-livera/","https://btctranscripts.com/stephan-livera-podcast/2019-07-25-britt-kelly-btcpayserver-documentation/","https://btctranscripts.com/stephan-livera-podcast/2019-06-24-conner-fromknecht-stephan-livera/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-06-maintainers/","https://btctranscripts.com/bitcoin-core-dev-tech/2019-06/2019-06-05-code-review/","https://btctranscripts.com/what-bitcoin-did-podcast/2019-05-14-adam-back-bryan-bishop-block-reorgs/","https://btctranscripts.com/magicalcryptoconference/2019/fork-dynamics/","https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-satellite-network/","https://btctranscripts.com/magicalcryptoconference/2019/htc/","https://btctranscripts.com/magicalcryptoconference/2019/intro/","https://btctranscripts.com/magicalcryptoconference/2019/mcf-episode/","https://btctranscripts.com/stephan-livera-podcast/2019-04-11-james-obeirne/","https://btctranscripts.com/stephan-livera-podcast/2019-03-11-chris-belcher/","https://btctranscripts.com/stephan-livera-podcast/2019-02-11-jack-dorsey-elizabeth-stark/","https://btctranscripts.com/stephan-livera-podcast/2019-07-21-kukks-btcpayserver-architecture/","https://btctranscripts.com/stephan-livera-podcast/2019-01-20-nicolas-dorier-and-btcpayserver/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/analysis-of-dust-in-utxo-based-cryptocurrencies/","https://btctranscripts.com/edgedevplusplus/2018/python-bitcoinlib/","https://btctranscripts.com/edgedevplusplus/2018/block-structure-and-headers-utxos-merkle-trees-segwit-bip141/","https://btctranscripts.com/edgedevplusplus/2018/introduction/","https://btctranscripts.com/noded-podcast/jnewbery-cve-2018-17144-bug/","https://btctranscripts.com/greg-maxwell/2018-09-23-greg-maxwell-multiple-implementations/","https://btctranscripts.com/building-on-bitcoin/2018/bitcoin-assets/","https://btctranscripts.com/building-on-bitcoin/2018/libbitcoin/","https://btctranscripts.com/building-on-bitcoin/2018/anonymous-bitcoin/","https://btctranscripts.com/building-on-bitcoin/2018/binary-transparency/","https://btctranscripts.com/layer2-summit/2018/scriptless-scripts/","https://btctranscripts.com/bitcoin-core-dev-tech/2018-03/2018-03-07-priorities/","https://btctranscripts.com/satoshi-roundtable/sr-004/ron-paul/","https://btctranscripts.com/blockchain-protocol-analysis-security-engineering/2018/proofs-of-space/","https://btctranscripts.com/misc/2018-01-24-rusty-russell-future-bitcoin-tech-directions/","https://btctranscripts.com/scalingbitcoin/stanford-2017/joi-ito/","https://btctranscripts.com/cppcon/2017/2017-10-11-kostya-serebryany-fuzzing/","https://btctranscripts.com/breaking-bitcoin/2017/2017-09-10-christopher-jeffrey-consensus-pitfalls/","https://btctranscripts.com/bitcoin-core-dev-tech/2017-09/2017-09-05-meeting-notes/","https://btctranscripts.com/greg-maxwell/2017-08-28-gmaxwell-deep-dive-bitcoin-core-v0.15/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/ideal-number-of-full-bitcoin-nodes/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2017/scaling-and-utxos/","https://btctranscripts.com/misc/2016-adam-back/","https://btctranscripts.com/w3-blockchain-workshop-2016/intro/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/pindar-wong/","https://btctranscripts.com/scalingbitcoin/montreal-2015/block-synchronization-time/","https://btctranscripts.com/misc/2015-09-07-epicenter-bitcoin-adam3us-scalability/","https://btctranscripts.com/simons-institute/pairing-cryptography/","https://btctranscripts.com/style/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/a-bevy-of-block-size-proposals-bip100-bip102-and-more/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/abstract-groups/","https://btctranscripts.com/bit-block-boom/2019/accumulating-bitcoin/","https://btctranscripts.com/cryptoeconomic-systems/2019/all-about-decentralized-trust/","https://btctranscripts.com/w3-blockchain-workshop-2016/archival-science/","https://btctranscripts.com/w3-blockchain-workshop-2016/arvind-narayanan/","https://btctranscripts.com/scalingbitcoin/stanford-2017/atomically-trading-with-roger-gambling-on-the-success-of-a-hard-fork/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/backpackers/","https://btctranscripts.com/baltic-honeybadger/2018/beyond-bitcoin-decentralized-collaboration/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-as-a-novel-market-institution/","https://btctranscripts.com/dallas-bitcoin-symposium/bitcoin-developers/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/bitcoin-financing-and-trading/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/james-gatto-marco-santori-bitcoin-law-for-developers/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-maximalism-dissected/","https://btctranscripts.com/stanford-blockchain-conference/2019/bitcoin-payment-economic-analysis/","https://btctranscripts.com/baltic-honeybadger/2018/bitcoin-payment-processing-and-merchants/","https://btctranscripts.com/magicalcryptoconference/2019/bitcoin-without-internet/","https://btctranscripts.com/stanford-blockchain-conference/2020/block-rewards/","https://btctranscripts.com/coindesk-consensus-2016/blockchain-database-technology-in-a-global-context/","https://btctranscripts.com/w3-blockchain-workshop-2016/blockchain-hub/","https://btctranscripts.com/stanford-blockchain-conference/2020/blockchains-for-multiplayer-games/","https://btctranscripts.com/stanford-blockchain-conference/2020/brick-async-state-channels/","https://btctranscripts.com/scalingbitcoin/milan-2016/build-scale-operate/","https://btctranscripts.com/bit-block-boom/2019/building-vibrant-bitcoin-communities/","https://btctranscripts.com/misc/cftc-bitcoin/","https://btctranscripts.com/scalingbitcoin/milan-2016/chainbreak/","https://btctranscripts.com/w3-blockchain-workshop-2016/christopher-allen/","https://btctranscripts.com/coindesk-consensus-2016/clearing-and-settlement-for-global-financial-institutions/","https://btctranscripts.com/stanford-blockchain-conference/2020/clockwork-nonfrontrunning/","https://btctranscripts.com/scalingbitcoin/milan-2016/coin-selection/","https://btctranscripts.com/stanford-blockchain-conference/2019/coordinated-upgrades/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/cory-fields/","https://btctranscripts.com/cryptoeconomic-systems/2019/cross-chain-deals-and-adversarial-commerce/","https://btctranscripts.com/misc/ctv-bip-review-workshop/","https://btctranscripts.com/baltic-honeybadger/2018/current-state-of-the-market-and-institutional-investors/","https://btctranscripts.com/scalingbitcoin/milan-2016/day-2-group-summaries/","https://btctranscripts.com/w3-blockchain-workshop-2016/day-2-groups/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/day-2-opening/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/deploying-blockchain-at-scale-lessons-from-the-internet-deployment-in-japan/","https://btctranscripts.com/misc/discreet-log-contracts/","https://btctranscripts.com/coordination-of-decentralized-finance-workshop/2020-stanford/economic-risks/","https://btctranscripts.com/cryptoeconomic-systems/2019/everything-is-broken/","https://btctranscripts.com/scalingbitcoin/milan-2016/fast-difficulty-adjustment/","https://btctranscripts.com/bit-block-boom/2019/fiat-money-fiat-food/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/forward-blocks/","https://btctranscripts.com/breaking-bitcoin/2019/fud-perceived-vs-real-bitcoin-risks/","https://btctranscripts.com/cryptoeconomic-systems/2019/funding/","https://btctranscripts.com/coindesk-consensus-2016/future-of-blockchains/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/gavinandresen/","https://btctranscripts.com/texas-bitcoin-conference-2014/gox/","https://btctranscripts.com/w3-blockchain-workshop-2016/groups-identity/","https://btctranscripts.com/coindesk-consensus-2016/hackathon-intro/","https://btctranscripts.com/dallas-bitcoin-symposium/history-and-extrapolation/","https://btctranscripts.com/coindesk-consensus-2016/how-tech-companies-are-embracing-blockchain-database-technology/","https://btctranscripts.com/coindesk-consensus-2016/how-to-get-bitcoin/","https://btctranscripts.com/bit-block-boom/2019/how-to-meme-bitcoin-to-the-moon/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/human-side-trust-workshop/","https://btctranscripts.com/coindesk-consensus-2016/internal-approaches-blockchain-database-technology-strategies/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/internet-of-value/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/intro/","https://btctranscripts.com/scalingbitcoin/hong-kong-2015/intro/","https://btctranscripts.com/scalingbitcoin/milan-2016/intro/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/intro/","https://btctranscripts.com/w3-blockchain-workshop-2016/wendy/","https://btctranscripts.com/cryptoeconomic-systems/2019/introduction/","https://btctranscripts.com/scalingbitcoin/stanford-2017/intro/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/introduction/","https://btctranscripts.com/baltic-honeybadger/2018/investing-in-bitcoin-businesses/","https://btctranscripts.com/w3-blockchain-workshop-2016/ipfs/","https://btctranscripts.com/cryptoeconomic-systems/2019/journal-review/","https://btctranscripts.com/cryptoeconomic-systems/2019/journals-as-clubs/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/keynote-gavin-andresen/","https://btctranscripts.com/coindesk-consensus-2016/law-enforcement-and-anonymous-transactions/","https://btctranscripts.com/cryptoeconomic-systems/2019/libra/","https://btctranscripts.com/stanford-blockchain-conference/2019/links/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/linq/","https://btctranscripts.com/decentralized-financial-architecture-workshop/metadata/","https://btctranscripts.com/edgedevplusplus/2019/metadata/","https://btctranscripts.com/scalingbitcoin/tokyo-2018/omniledger/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/eric-martindale/","https://btctranscripts.com/baltic-honeybadger/2018/opening/","https://btctranscripts.com/breaking-bitcoin/2019/opening-remarks/","https://btctranscripts.com/stanford-blockchain-conference/2019/opening-remarks/","https://btctranscripts.com/coindesk-consensus-2016/opening-remarks-state-of-blockchain-ryan-selkis/","https://btctranscripts.com/w3-blockchain-workshop-2016/physical-assets/","https://btctranscripts.com/stanford-blockchain-conference/2020/plonk/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/r3/","https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-1/","https://btctranscripts.com/scalingbitcoin/montreal-2015/roundgroup-roundup-2/","https://btctranscripts.com/w3-blockchain-workshop-2016/royalties/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2016/scaling-debate-is-a-proxy-battle-over-centralization/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/self-sovereign-identity-ideology-and-architecture/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/shamir-secret-sharing/","https://btctranscripts.com/w3-blockchain-workshop-2016/smart-signatures/","https://btctranscripts.com/scalingbitcoin/montreal-2015/snarks/","https://btctranscripts.com/stanford-blockchain-conference/2020/solving-data-availability-attacks-using-coded-merkle-trees/","https://btctranscripts.com/cryptoeconomic-systems/2019/solving-the-blockchain-trilemma/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/some-questions-for-bitcoiners/","https://btctranscripts.com/stanford-blockchain-conference/2019/state-channels/","https://btctranscripts.com/scalingbitcoin/montreal-2015/stroem-payment-channels/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/swashbuckling-safety-training/","https://btctranscripts.com/bitcoin-core-dev-tech/2015-02/jeremy-allaire-circle/","https://btctranscripts.com/baltic-honeybadger/2018/the-b-foundation/","https://btctranscripts.com/baltic-honeybadger/2018/the-bitcoin-standard/","https://btctranscripts.com/baltic-honeybadger/2018/the-reserve-currency-fallacy/","https://btctranscripts.com/cryptoeconomic-systems/2019/token-journal/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/topics/","https://btctranscripts.com/baltic-honeybadger/2018/trading-panel/","https://btctranscripts.com/coindesk-consensus-2016/upgrading-capital-markets-for-digital-asset-trading/","https://btctranscripts.com/stanford-blockchain-conference/2019/urkel-trees/","https://btctranscripts.com/coindesk-consensus-2016/visa-chain/","https://btctranscripts.com/rebooting-web-of-trust/2019-prague/weak-signals/","https://btctranscripts.com/mit-bitcoin-expo/mit-bitcoin-expo-2015/welcome/","https://btctranscripts.com/coindesk-consensus-2016/why-bitcoin-still-matters/","https://btctranscripts.com/magicalcryptoconference/2019/why-block-sizes-should-not-be-too-big/","https://btctranscripts.com/scalingbitcoin/tel-aviv-2019/work-in-progress/","https://btctranscripts.com/simons-institute/zero-knowledge-probabilistic-proof-systems/"],"transcript_by":["https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/asmap/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/assumeutxo-mainnet-readiness/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/gui-discussions/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/kernel/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/signet-testnet4/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/p2p-monitoring/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/silent-payment-descriptors/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/coin-selection/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/cross-input-signature-aggregation/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/great-consensus-cleanup/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/private-tx-broadcast/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/silent-payments-libsecp/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/stratumv2/","https://btctranscripts.com/bitcoin-core-dev-tech/2024-04/weak-blocks/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/cmake/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/wallet-legacy-upgrade/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/signature-aggregation/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/assumeutxo-update/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/kernel-planning/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/libsecp256k1-meeting/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-design-goals/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/package-relay-planning/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/privacy-metrics/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/wallet-coin-selection/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/p2p-working-session/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-09/kernel-update/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-assumeutxo/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-fuzzing/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-libbitcoin-kernel/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-meta-discussion/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-27-asmap/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-mempool-clustering/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-package-relay-primer/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-25-refactors/","https://btctranscripts.com/bitcoin-core-dev-tech/2023-04/2023-04-26-silent-payments/","https://btctranscripts.com/style/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/discreet-log-contracts-oracles-loans-stablecoins-and-more/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/open-source-mining/","https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/unlocking-expressivity-with-op-cat/"]},"needs":{"transcript":[{"categories":["conference"],"date":"2019-09-09","loc":"edgedevplusplus/2019","media":"https://www.youtube.com/watch?v=xlKQP9J88uA","source_file":"https://www.youtube.com/watch?v=xlKQP9J88uA","speakers":["Tadge Dryja"],"tags":["proof-systems","utreexo"],"title":"Acumulator Based Cryptography \u0026 UTreexo","url":"https://btctranscripts.com/edgedevplusplus/2019/accumulators/"},{"categories":["conference"],"date":"2019-09-09","loc":"edgedevplusplus/2019","media":null,"source_file":null,"speakers":["Elichai Turkel","James Chiang"],"tags":["taproot"],"title":"Build a Taproot","url":"https://btctranscripts.com/edgedevplusplus/2019/taproot/"},{"categories":null,"date":"","loc":"bitcoin-magazine/bitcoin-2024","media":"https://www.youtube.com/watch?v=9gdm6C_xnFI","source_file":"https://www.youtube.com/watch?v=9gdm6C_xnFI","speakers":["Aki Balogh","Shehzan Maredia","Daniel Hinton","Tadge Dryja"],"tags":["dlc"],"title":"Discreet Log Contracts, Oracles, Loans, Stablecoins, and More","url":"https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/discreet-log-contracts-oracles-loans-stablecoins-and-more/"},{"categories":null,"date":"","loc":"bitcoin-magazine/bitcoin-2024","media":"https://www.youtube.com/watch?v=iUmacjDTrCU","source_file":"https://www.youtube.com/watch?v=iUmacjDTrCU","speakers":["Kulpreet Singh","Matt Corallo","Skot 9000","Mark Erhart"],"tags":["mining"],"title":"Open Source Mining","url":"https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/open-source-mining/"},{"categories":null,"date":"","loc":"bitcoin-magazine/bitcoin-2024","media":"https://www.youtube.com/watch?v=mztdh1J6Lpc","source_file":"https://www.youtube.com/watch?v=mztdh1J6Lpc","speakers":["Andrew Poelstra","Brandon Black","Rijndael","Lisa Neigut"],"tags":["op-cat"],"title":"Unlocking Expressivity with OP_CAT","url":"https://btctranscripts.com/bitcoin-magazine/bitcoin-2024/unlocking-expressivity-with-op-cat/"}]},"transcripts":{"en":1059,"es":85,"pt":1,"zh":13}} \ No newline at end of file