{"id":3010,"date":"2021-05-25T13:58:35","date_gmt":"2021-05-25T20:58:35","guid":{"rendered":"https:\/\/www.opennode.com\/blog\/?p=3010"},"modified":"2021-07-31T09:17:12","modified_gmt":"2021-07-31T16:17:12","slug":"what-is-taproot","status":"publish","type":"post","link":"https:\/\/blog.opennode.com\/blog\/what-is-taproot\/","title":{"rendered":"What is Taproot and how does it affect Bitcoin?"},"content":{"rendered":"<span class=\"span-reading-time rt-reading-time\" style=\"display: block;\"><span class=\"rt-label rt-prefix\">Reading Time: <\/span> <span class=\"rt-time\"> 4<\/span> <span class=\"rt-label rt-postfix\">minutes<\/span><\/span>\n<p>Taproot is the most looked forward technological upgrade to Bitcoin since <a href=\"https:\/\/www.opennode.com\/blog\/glossary\/segwit\/\">segwit<\/a>. The goal of taproot is to improve Bitcoin\u2019s privacy, scalability, performance, and security. By adding the Schnorr signature scheme with MAST (Merklized Alternative Script Tree) and a new scripting language called Tapscript, Taproot will allow greater privacy and efficiency by enabling users to conceal complex smart contracts as a regular bitcoin transaction.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Schnor Signatures\u00a0<\/strong><\/h2>\n\n\n\n<p>In Bitcoin, transactions are pseudo-anonymous, and all transactions are recorded in a public ledger. Under the existing design with ECDSA contracts, multisig transactions record the signature of each multisig participant individually. When such a transaction is signed using ECDSA (Bitcoin\u2019s current signature algorithm), it produces a different signature for each person. Due to the complexity, they take up a lot of data and block space, making them very expensive to execute. Additionally, with ECDSA, outsiders can monitor and distinguish multisig transactions, making it a privacy concern. Thus, a new type of signature scheme called the Schnoor Digital scheme (SDSS) has been developing and growing in popularity in the space. One of the most notable advantages of using the Schnoor signature scheme is the increase in the privacy of bitcoin transactions. Schnorr signatures allow us to take multiple keys from a bitcoin transaction and create a single unique Schnoor signature. Therefore signatures from various parties are aggregated together to form a single unique signature. Schnoor signature scheme makes multi-signature and single-signature transactions indistinguishable&nbsp;<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/1gBJDpKaJRIo5-TXl06jstz3M6h9d1dGg21aegvInLeCp_tXDc919zCkjgxw62HdRjbRhRtqZmlpDkky4ceJ_CQuTqn-QRceabxatHj53KZIQVbdyQGiNsa_fQ1fNNoQsyq-BO62\" alt=\"\"\/><\/figure><\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Merkalized Alternative Script Trees (MAST )<\/strong><\/h3>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.opennode.com\/blog\/wp-content\/uploads\/2021\/05\/Screen-Shot-2021-05-26-at-2.43.03-AM-1024x253.png\" alt=\"\" class=\"wp-image-3020\" width=\"452\" height=\"111\" srcset=\"https:\/\/blog.opennode.com\/blog\/wp-content\/uploads\/2021\/05\/Screen-Shot-2021-05-26-at-2.43.03-AM-1024x253.png 1024w, https:\/\/blog.opennode.com\/blog\/wp-content\/uploads\/2021\/05\/Screen-Shot-2021-05-26-at-2.43.03-AM-300x74.png 300w, https:\/\/blog.opennode.com\/blog\/wp-content\/uploads\/2021\/05\/Screen-Shot-2021-05-26-at-2.43.03-AM-768x189.png 768w, https:\/\/blog.opennode.com\/blog\/wp-content\/uploads\/2021\/05\/Screen-Shot-2021-05-26-at-2.43.03-AM.png 1038w\" sizes=\"auto, (max-width: 452px) 100vw, 452px\" \/><\/figure><\/div>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\"><\/div><\/div>\n\n\n\n<p>The above script shows an example of a Bitcoin script where if Alice doesn&#8217;t spend her bitcoin in 3 months, then Bob and Charlie can use it. All of this script must be added to the blockchain with the current system. Imagine more complex scripts, much bigger than this. The more complex the script becomes, the more costly it is. MAST allows us to remove the unused parts of the script from the blockchain, directly saving a lot of space.<\/p>\n\n\n\n<p>In MAST, all the different conditions of the bitcoin transaction are separately hashed into individual parts and included in a Merkle tree, which produces a single hash called the Merkle root. The Merkle root \u201clocks up\u201d the coins to avoid taking up large amounts of space by including many scripts in the transaction. In this way, MAST is similar to a P2SH script, except that the script hash of a MAST transaction represents multiple scripts. When bitcoin is sent to a MAST output, the bitcoin is locked to the Merkle root of all the scripts. To spend the bitcoin, the spender must reveal the script they are using to unlock the bitcoin and prove that this script is included in the Merkle root of the previous transaction. This means that the spender of the output does not need to reveal all the scripts but only the ones they used. This greatly improves the privacy and performance of such outputs. Additionally, complex scripts, like HTLCs, can be hidden in a Taproot output. For example, the output can have a key spend branch that is an n-of-n of all participants, with hidden scripts that encode the conditions under which the output can be spent. The hidden SCRIPTs ensure that the protocol is followed. If one of the participants acts dishonestly, the rest of the participants can reveal the hidden script and follow their conditions.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/eKKlM-F-b_qXklqjKfOCV_oXqKZpPtoU0xwVNaSp8mmb_IGV3POC3CwhGVhMUhCjRx7B3KqWl-fnyYjJE0V1nDamYWj-FYqsz_8kRvl2q8u43ILlzwOVg87s82CCJB-01fXt0jP_\" alt=\"\" width=\"-49\" height=\"-18\"\/><\/figure><\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Tapscript<\/strong><\/h3>\n\n\n\n<p>Bitcoin uses a scripting language called Bitcoin Script. Bitcoin Script can be considered a list of instructions recorded with each transaction that defines how the receiver of the funds can gain access to them. This scripting language allows us to do many things like hashed time-locked contracts, multi transactions. Tapscript is an updated scripting language used to enable a variety of new transaction types as part of the <a href=\"https:\/\/river.com\/learn\/terms\/t\/taproot\/\">Taproot<\/a> upgrade. As an upgraded version of Bitcoin\u2019s programming language (Script), &nbsp;Tapscript enables more accessible addition of new features and builds on the batch verifiability of Schnorr signatures.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Benefits of Taproot<\/strong><\/h2>\n\n\n\n<ol class=\"wp-block-list\"><li><strong>Increased Privacy<\/strong>: With Taproot and Schnorr signatures, Bitcoin wallets with more complex spending conditions, like a multisig wallet or one that uses time-locking, will no longer be distinguishable from simple single signature wallets. This will let more complex multisig wallets appear similar to other on-chain transactions.<\/li><\/ol>\n\n\n\n<ol class=\"wp-block-list\" start=\"2\"><li>Higher TPS &amp; Lower fees: With Taproot multisignature, complex scripts can be packed down when spending, rather than putting large scripts into the blockchain, which can be costly. As Bitcoin transaction fees are reliant on the amount of data it takes up in a block, this will be a significant improvement.<\/li><\/ol>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Activation Method<\/strong><\/h3>\n\n\n\n<p>In order for Taproot to take effect 90% of mined blocks during that period must include data from the miners known as a &#8220;signal bit.&#8221; This is also a new activation method called speedy trial. The signalling method is called Speedy Trial and it works in periods of 2016 blocks, meaning that within a 2016 block period, 90%, or 1815 of the 2016 blocks have to signal for readiness. It\u2019s not necessarily over if one period fails to reach 90%, it just means that the upgrade will have to wait until the next period. If the threshold is reached, then activation takes place after a six-month \u201clocked-in\u201d period. During this time frame, the upgrade will take place, but the activation is delayed to make sure there are no problems.<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-rich is-provider-twitter wp-block-embed-twitter\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\" data-width=\"550\" data-dnt=\"true\"><p lang=\"en\" dir=\"ltr\">95% of all <a href=\"https:\/\/twitter.com\/hashtag\/Bitcoin?src=hash&amp;ref_src=twsrc%5Etfw\">#Bitcoin<\/a> hashrate is now signalling for Taproot.<\/p>&mdash; Documenting Bitcoin \ud83d\udcc4 (@DocumentingBTC) <a href=\"https:\/\/twitter.com\/DocumentingBTC\/status\/1394277637099606018?ref_src=twsrc%5Etfw\">May 17, 2021<\/a><\/blockquote><script async src=\"https:\/\/platform.twitter.com\/widgets.js\" charset=\"utf-8\"><\/script>\n<\/div><\/figure>\n","protected":false},"excerpt":{"rendered":"<p><span class=\"span-reading-time rt-reading-time\" style=\"display: block;\"><span class=\"rt-label rt-prefix\">Reading Time: <\/span> <span class=\"rt-time\"> 4<\/span> <span class=\"rt-label rt-postfix\">minutes<\/span><\/span>Taproot is the most looked forward technological upgrade to Bitcoin since segwit. The goal of taproot is to improve Bitcoin\u2019s privacy, scalability, performance, and security. By adding the Schnorr signature scheme with MAST (Merklized Alternative Script Tree) and a new scripting language called Tapscript, Taproot will allow greater privacy and efficiency by enabling users to  &#8230;<\/p>\n","protected":false},"author":3,"featured_media":3013,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[42],"tags":[110],"class_list":["post-3010","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-articles","tag-bitcoin-explained"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What is Taproot and how does it affect Bitcoin? - OpenNode Blog<\/title>\n<meta name=\"description\" content=\"The Taproot soft-fork will change how the Bitcoin blockchain continues to scale transactions and will improve its flexibility with payments.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.opennode.com\/blog\/what-is-taproot\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Taproot and how does it affect Bitcoin? - OpenNode Blog\" \/>\n<meta property=\"og:description\" content=\"The Taproot soft-fork will change how the Bitcoin blockchain continues to scale transactions and will improve its flexibility with payments.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.opennode.com\/blog\/what-is-taproot\/\" \/>\n<meta property=\"og:site_name\" content=\"OpenNode Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/OpenNodeco\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-05-25T20:58:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-31T16:17:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.opennode.com\/blog\/wp-content\/uploads\/2021\/05\/emma-gossett-B645igbiKCw-unsplash-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1920\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"OpenNode Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@opennode\" \/>\n<meta name=\"twitter:site\" content=\"@opennode\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"OpenNode Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/what-is-taproot\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/what-is-taproot\\\/\"},\"author\":{\"name\":\"OpenNode Team\",\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/#\\\/schema\\\/person\\\/3ea68a71ea55af9c1229054eec6e4e46\"},\"headline\":\"What is Taproot and how does it affect Bitcoin?\",\"datePublished\":\"2021-05-25T20:58:35+00:00\",\"dateModified\":\"2021-07-31T16:17:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/what-is-taproot\\\/\"},\"wordCount\":898,\"publisher\":{\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/what-is-taproot\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/05\\\/emma-gossett-B645igbiKCw-unsplash-scaled.jpg\",\"keywords\":[\"Bitcoin Explained\"],\"articleSection\":[\"Articles\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/what-is-taproot\\\/\",\"url\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/what-is-taproot\\\/\",\"name\":\"What is Taproot and how does it affect Bitcoin? - OpenNode Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/what-is-taproot\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/what-is-taproot\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/05\\\/emma-gossett-B645igbiKCw-unsplash-scaled.jpg\",\"datePublished\":\"2021-05-25T20:58:35+00:00\",\"dateModified\":\"2021-07-31T16:17:12+00:00\",\"description\":\"The Taproot soft-fork will change how the Bitcoin blockchain continues to scale transactions and will improve its flexibility with payments.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/what-is-taproot\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/what-is-taproot\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/what-is-taproot\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/05\\\/emma-gossett-B645igbiKCw-unsplash-scaled.jpg\",\"contentUrl\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/05\\\/emma-gossett-B645igbiKCw-unsplash-scaled.jpg\",\"width\":2560,\"height\":1920},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/what-is-taproot\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Main\",\"item\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is Taproot and how does it affect Bitcoin?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/\",\"name\":\"OpenNode Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/#organization\",\"name\":\"OpenNode\",\"url\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.opennode.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/04\\\/Logomark-1.png\",\"contentUrl\":\"https:\\\/\\\/www.opennode.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/04\\\/Logomark-1.png\",\"width\":1920,\"height\":1920,\"caption\":\"OpenNode\"},\"image\":{\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/OpenNodeco\\\/\",\"https:\\\/\\\/x.com\\\/opennode\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/#\\\/schema\\\/person\\\/3ea68a71ea55af9c1229054eec6e4e46\",\"name\":\"OpenNode Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6a36992e530039b94e53ecf5d90c1027c8ae3b5d3bf377f10a30476a1278f90c?s=96&d=identicon&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6a36992e530039b94e53ecf5d90c1027c8ae3b5d3bf377f10a30476a1278f90c?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6a36992e530039b94e53ecf5d90c1027c8ae3b5d3bf377f10a30476a1278f90c?s=96&d=identicon&r=g\",\"caption\":\"OpenNode Team\"},\"url\":\"https:\\\/\\\/blog.opennode.com\\\/blog\\\/author\\\/opennode_self\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Taproot and how does it affect Bitcoin? - OpenNode Blog","description":"The Taproot soft-fork will change how the Bitcoin blockchain continues to scale transactions and will improve its flexibility with payments.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/blog.opennode.com\/blog\/what-is-taproot\/","og_locale":"en_US","og_type":"article","og_title":"What is Taproot and how does it affect Bitcoin? - OpenNode Blog","og_description":"The Taproot soft-fork will change how the Bitcoin blockchain continues to scale transactions and will improve its flexibility with payments.","og_url":"https:\/\/blog.opennode.com\/blog\/what-is-taproot\/","og_site_name":"OpenNode Blog","article_publisher":"https:\/\/www.facebook.com\/OpenNodeco\/","article_published_time":"2021-05-25T20:58:35+00:00","article_modified_time":"2021-07-31T16:17:12+00:00","og_image":[{"width":2560,"height":1920,"url":"https:\/\/blog.opennode.com\/blog\/wp-content\/uploads\/2021\/05\/emma-gossett-B645igbiKCw-unsplash-scaled.jpg","type":"image\/jpeg"}],"author":"OpenNode Team","twitter_card":"summary_large_image","twitter_creator":"@opennode","twitter_site":"@opennode","twitter_misc":{"Written by":"OpenNode Team","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.opennode.com\/blog\/what-is-taproot\/#article","isPartOf":{"@id":"https:\/\/blog.opennode.com\/blog\/what-is-taproot\/"},"author":{"name":"OpenNode Team","@id":"https:\/\/blog.opennode.com\/blog\/#\/schema\/person\/3ea68a71ea55af9c1229054eec6e4e46"},"headline":"What is Taproot and how does it affect Bitcoin?","datePublished":"2021-05-25T20:58:35+00:00","dateModified":"2021-07-31T16:17:12+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.opennode.com\/blog\/what-is-taproot\/"},"wordCount":898,"publisher":{"@id":"https:\/\/blog.opennode.com\/blog\/#organization"},"image":{"@id":"https:\/\/blog.opennode.com\/blog\/what-is-taproot\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.opennode.com\/blog\/wp-content\/uploads\/2021\/05\/emma-gossett-B645igbiKCw-unsplash-scaled.jpg","keywords":["Bitcoin Explained"],"articleSection":["Articles"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/blog.opennode.com\/blog\/what-is-taproot\/","url":"https:\/\/blog.opennode.com\/blog\/what-is-taproot\/","name":"What is Taproot and how does it affect Bitcoin? - OpenNode Blog","isPartOf":{"@id":"https:\/\/blog.opennode.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blog.opennode.com\/blog\/what-is-taproot\/#primaryimage"},"image":{"@id":"https:\/\/blog.opennode.com\/blog\/what-is-taproot\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.opennode.com\/blog\/wp-content\/uploads\/2021\/05\/emma-gossett-B645igbiKCw-unsplash-scaled.jpg","datePublished":"2021-05-25T20:58:35+00:00","dateModified":"2021-07-31T16:17:12+00:00","description":"The Taproot soft-fork will change how the Bitcoin blockchain continues to scale transactions and will improve its flexibility with payments.","breadcrumb":{"@id":"https:\/\/blog.opennode.com\/blog\/what-is-taproot\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.opennode.com\/blog\/what-is-taproot\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.opennode.com\/blog\/what-is-taproot\/#primaryimage","url":"https:\/\/blog.opennode.com\/blog\/wp-content\/uploads\/2021\/05\/emma-gossett-B645igbiKCw-unsplash-scaled.jpg","contentUrl":"https:\/\/blog.opennode.com\/blog\/wp-content\/uploads\/2021\/05\/emma-gossett-B645igbiKCw-unsplash-scaled.jpg","width":2560,"height":1920},{"@type":"BreadcrumbList","@id":"https:\/\/blog.opennode.com\/blog\/what-is-taproot\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Main","item":"https:\/\/blog.opennode.com\/blog\/"},{"@type":"ListItem","position":2,"name":"What is Taproot and how does it affect Bitcoin?"}]},{"@type":"WebSite","@id":"https:\/\/blog.opennode.com\/blog\/#website","url":"https:\/\/blog.opennode.com\/blog\/","name":"OpenNode Blog","description":"","publisher":{"@id":"https:\/\/blog.opennode.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.opennode.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/blog.opennode.com\/blog\/#organization","name":"OpenNode","url":"https:\/\/blog.opennode.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blog.opennode.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.opennode.com\/blog\/wp-content\/uploads\/2019\/04\/Logomark-1.png","contentUrl":"https:\/\/www.opennode.com\/blog\/wp-content\/uploads\/2019\/04\/Logomark-1.png","width":1920,"height":1920,"caption":"OpenNode"},"image":{"@id":"https:\/\/blog.opennode.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/OpenNodeco\/","https:\/\/x.com\/opennode"]},{"@type":"Person","@id":"https:\/\/blog.opennode.com\/blog\/#\/schema\/person\/3ea68a71ea55af9c1229054eec6e4e46","name":"OpenNode Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/6a36992e530039b94e53ecf5d90c1027c8ae3b5d3bf377f10a30476a1278f90c?s=96&d=identicon&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/6a36992e530039b94e53ecf5d90c1027c8ae3b5d3bf377f10a30476a1278f90c?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6a36992e530039b94e53ecf5d90c1027c8ae3b5d3bf377f10a30476a1278f90c?s=96&d=identicon&r=g","caption":"OpenNode Team"},"url":"https:\/\/blog.opennode.com\/blog\/author\/opennode_self\/"}]}},"_links":{"self":[{"href":"https:\/\/blog.opennode.com\/blog\/wp-json\/wp\/v2\/posts\/3010","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.opennode.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.opennode.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.opennode.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.opennode.com\/blog\/wp-json\/wp\/v2\/comments?post=3010"}],"version-history":[{"count":7,"href":"https:\/\/blog.opennode.com\/blog\/wp-json\/wp\/v2\/posts\/3010\/revisions"}],"predecessor-version":[{"id":3172,"href":"https:\/\/blog.opennode.com\/blog\/wp-json\/wp\/v2\/posts\/3010\/revisions\/3172"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.opennode.com\/blog\/wp-json\/wp\/v2\/media\/3013"}],"wp:attachment":[{"href":"https:\/\/blog.opennode.com\/blog\/wp-json\/wp\/v2\/media?parent=3010"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.opennode.com\/blog\/wp-json\/wp\/v2\/categories?post=3010"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.opennode.com\/blog\/wp-json\/wp\/v2\/tags?post=3010"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}