{"id":8370,"date":"2020-01-23T10:20:58","date_gmt":"2020-01-23T10:20:58","guid":{"rendered":"https:\/\/staging.heliossolutions.co\/blog\/?p=8370"},"modified":"2020-01-28T09:29:57","modified_gmt":"2020-01-28T09:29:57","slug":"deep-dive-into-the-blockchain-architecture","status":"publish","type":"post","link":"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/","title":{"rendered":"A Deep Dive into the Blockchain Architecture"},"content":{"rendered":"<p>Ever wondered what\u2019s inside blockchain?<\/p>\n<p>Well, we know that <strong>blockchain technology<\/strong> is all about linear chain of blocks that contain data, which is extremely difficult to change, i.e. immutable. The thing that is unclear is how the data is made immutable.<\/p>\n<p>The mystery lies in the architecture of blockchain.<\/p>\n<p><em>The following article discusses all you need to know about <strong>how blockchain works<\/strong> and makes data immutable.<\/em><\/p>\n<p>&nbsp;<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-8373\" src=\"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Deep-Explanation-Of-Blockchain-Architecture.jpg\" alt=\"Deep-Explanation-Of-Blockchain-Architecture\" width=\"930\" height=\"409\" srcset=\"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Deep-Explanation-Of-Blockchain-Architecture.jpg 930w, https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Deep-Explanation-Of-Blockchain-Architecture-768x338.jpg 768w\" sizes=\"auto, (max-width: 930px) 100vw, 930px\" \/><\/p>\n<p>Organizations spend billions on cyber-security solutions in order to keep their sensitive business data tamper-free. But often it happens that their data gets manipulated, replaced, or falsified. In most of the cases, this is due to the lack of security in data transfer and storage.<\/p>\n<p>With <strong><a href=\"https:\/\/www.heliossolutions.co\/blockchain-development\/\" target=\"_blank\" rel=\"noopener noreferrer\">blockchain development<\/a><\/strong>, organizations can bring immutability into play!<\/p>\n<p>This is because blockchain is structured in a way that once data is recorded on it, that data can\u2019t be technically altered. Organizations can leverage this and ensure that no one can intrude in their system or modify their valuable data.<\/p>\n<p>So what does blockchain architecture look like?<\/p>\n<p>Before we dive into the architecture of blockchain, it is important to logically understand what type of data is stored by blockchain.<\/p>\n<h2><strong>What data is stored by blockchain?<\/strong><\/h2>\n<p>Blockchain is a write-once, read-only database that stores data in uniform-sized blocks \u2013 it is an ever-growing database where new blocks are added constantly over time.<\/p>\n<p>Usually, each block contains the following key pieces of data:<br \/>\n\u2022 Version<br \/>\n\u2022 Timestamp<br \/>\n\u2022 Hash<br \/>\n\u2022 Difficulty-Level<br \/>\n\u2022 Nonce<br \/>\n\u2022 Merkle Root<br \/>\n\u2022 Transaction Data<\/p>\n<p>\u2022 <strong>Version:<\/strong> It refers to the version number of the block.<\/p>\n<p>\u2022 <strong>Timestamp:<\/strong> The timestamp marks the time of each transaction. In a way, it proves when and what has happened on the block.<\/p>\n<p>\u2022 <strong>Block Differentiator or Hash:<\/strong> Each block stores a unique code known as \u201chash,\u201d which uniquely identifies data or transaction. It can be called as the backbone of a blockchain network. (Detailed explanation is provided in the next section)<\/p>\n<p><strong>\u2022 Difficulty-Level:<\/strong> It refers to the level of difficulty of how hard it is for miners to solve the block.<\/p>\n<p>\u2022 <strong>Nonce (or \u201cNumber Only Used Once\u201d):<\/strong> It is a one-time code that is used to modify the output of a function \u2013 it ensures that the same encrypted value (like username and password) can&#8217;t be submitted to the server again. Even with the same data, the server will expect a different value due to the modification made by the nonce. (Detailed explanation is provided in the next section)<\/p>\n<p>\u2022 <strong>Merkle Root:<\/strong> As mentioned above, every transaction has a hash associated with it. In a block, all of the transaction-hashes are themselves hashed and the result is the Merkle root. In simple words, the Merkle root is the hash of all the hashes of all the transactions in the block. (Detailed explanation is provided in the next section)<\/p>\n<p>\u2022 <strong>Transaction Data:<\/strong> Each block holds a list of transactions. The order of transactions present in every block is based on the course of the addition of a transaction to the block.<\/p>\n<p>Now that you have a basic idea about what sort of data is stored in each block, let\u2019s move to the architecture, i.e. the container that holds all of the above pieces of data.<\/p>\n<div class =\"postad row\">\n                    <div class=\"postleft  col-xs-12 col-sm-12 col-md-8\">\n                      <h5>Looking for scalable Blockchain development services?<\/h5>\n                      <h5 class=\"dbplus_last(relation, tuple)\"><\/h5>\n                      <p>Send us your inquiry.<\/p>\n                    <\/div>\n                    <div class =\"postright col-xs-12 col-sm-12 col-md-4 align-self-center\">\n                      <a  class=\"ctn-link\" target=\"_blank\" href=\"https:\/\/www.heliossolutions.co\/connect-with-us\/request-for-services\/\">get in touch<\/a>\n                    <\/div>\n                <\/div>\n<h4><strong>Architecture of Blockchain Explained<\/strong><\/h4>\n<p>In a blockchain network, transactions are validated by a group of nodes and then recorded in a block. Each block inside the blockchain is composed of a header and a body.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-8374\" src=\"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Architecture-Of-Blockchain.jpg\" alt=\"Understanding of Blockchain-Architecture\" width=\"930\" height=\"542\" srcset=\"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Architecture-Of-Blockchain.jpg 930w, https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Architecture-Of-Blockchain-768x448.jpg 768w\" sizes=\"auto, (max-width: 930px) 100vw, 930px\" \/><\/p>\n<h4><strong>What is a Block Header?<\/strong><\/h4>\n<p>The block header is made up of metadata (data about data). It helps to verify the validity of a block.<br \/>\nAs you can see in the architecture diagram, the block header of a block consists of:<br \/>\n\u2022 Version<br \/>\n\u2022 Timestamp<br \/>\n\u2022 Hash<br \/>\n\u2022 Difficulty-Level<br \/>\n\u2022 Nonce<br \/>\n\u2022 Merkle Root<\/p>\n<p><strong>What is a Hash? Why it is called as \u201cthe backbone\u201d of a blockchain network?<\/strong><br \/>\nA hash is a cryptographic algorithm or function that converts an input string (numbers, alphabets, media files etc.) of any length into an encrypted output or \u201cchecksum\u201d of a fixed length. The process of applying a hash algorithm to any data is called hashing.<\/p>\n<p>The checksum points at the exact data input\u200a\u2014\u200aif just a single byte differs between two files, the outputs after hashing will be two completely strings. This means that a small change in your input can drastically change your output.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-8376\" src=\"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/What-is-hashing-in-Blockchain.jpg\" alt=\"what-is-hashing\" width=\"930\" height=\"348\" srcset=\"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/What-is-hashing-in-Blockchain.jpg 930w, https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/What-is-hashing-in-Blockchain-768x287.jpg 768w\" sizes=\"auto, (max-width: 930px) 100vw, 930px\" \/><\/p>\n<p>Different blockchains use different hashing algorithms. For example, if we talk about Bitcoin, it uses the Secure Hashing Algorithm 256 (aka SHA256), which produces a 32-byte hash.<\/p>\n<p>The usefulness of the hashing process is that you can\u2019t reverse-engineer a hash, i.e. you won\u2019t be able to work backward from an output string to determine the input data.<\/p>\n<p>Hashing is indeed an integral part of the blockchain. It is essentially a feature that gives security capabilities to the processed transactions, making them immutable. That is why it is called as the backbone of a blockchain network.<\/p>\n<p><strong>Previous Hash<\/strong><br \/>\nHashing of a particular block involves using the meta-data of the previous block while producing a new hash for it. This creates a link between the block and the chain and thus it becomes technically \u201cunbreakable.&#8221; Hereafter, no one can delete or modify the data of the block stored in the blockchain; if someone attempts this, the successive block rejects the modification (as the hash of block won&#8217;t be valid any longer) \u2013 thus, if data is tampered with, the blockchain will break; this characteristic is not found in traditional databases, where information can be modified or deleted with ease.<\/p>\n<p><strong>What is a Nonce?<\/strong><br \/>\nAs discussed above, nonce is an abbreviation for &#8220;number only used once.&#8221; Technically, it is a pseudo-random number that is utilized as a counter during the process of mining.<\/p>\n<p>As the hash value is the same no matter how many times it is calculated, the nonce is utilized to change the value and search for a number which is lower than the difficulty.<\/p>\n<p>Too much technical? Well, here\u2019s a simplified explanation:<\/p>\n<p>In proof-of-work systems like blockchain, a nonce is used to make the task of generating a valid hash more difficult. This means that blockchain miners need to find a nonce value that, when merged with the hashing algorithm, generates an output that meets certain requirements.<\/p>\n<p><strong>What is a Merkle Root?<\/strong><br \/>\nIn order to understand what a Merkle Root is, you need to first understand the concept of Merkle Tree.<\/p>\n<p><strong>Merkle Tree<\/strong><br \/>\nA Merkle Tree, or binary hash tree, is used to encrypt the blockchain data in a secure and efficient way. It facilitates quick verification and fast movement of large sets of blockchain data (from one node to the other on the blockchain network).<\/p>\n<p>A Merkle Tree is constructed through bottom-up approach by repeatedly calculating hashing pairs of nodes until there is only one hash left.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-8377\" src=\"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/What-is-a-Merkle-Root.jpg\" alt=\"concept of Merkle Tree\" width=\"930\" height=\"784\" srcset=\"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/What-is-a-Merkle-Root.jpg 930w, https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/What-is-a-Merkle-Root-768x647.jpg 768w\" sizes=\"auto, (max-width: 930px) 100vw, 930px\" \/><\/p>\n<p>In the above tree diagram, we can observe that input of data is broken up into blocks labelled B1 though B4. The first step is to hash each data block using a particular hashing algorithm (e.g. MD5, SHA256, SHA1, and SHA512). With this, the blocks Hash 0-0, Hash 0-1, Hash 1-0, and Hash 1-1 are created. This is the primary step for developing a Merkle Tree. These blocks can be referred as leaves of the Merkle Tree. There must be at least two leaves (there isn\u2019t any upper limit).<\/p>\n<p>Next, two adjacent hashes are merged into a single hash. So, Hash 0-0 is chained with Hash 0-1 and is hashed again by means of a hashing algorithm. The result is Hash 0. Similarly, Hash 1-0 and Hash 1-1 blocks yield Hash 1. The process continues until a single hash is generated. The final hash what you get is referred to as Merkle Root.<\/p>\n<p>Hence, we can say that a Merkle Tree formation is the process of making a single hash from a group of hashes.<\/p>\n<p><strong>Merkle Root<\/strong><br \/>\nThe single hash that is produced by the Merkle Tree is called the Merkle Root. Each block in a blockchain has exactly one of it \u2013 it is like a fingerprint for all the transactions in a block.<\/p>\n<p>A Merkle Root is used as one of the fields in a block header in order to have a short representation of every transaction inside the block.<\/p>\n<h3><strong>What is a Block Body?<\/strong><\/h3>\n<p>The block body is composed of a transaction counter and transactions. The maximum number of transactions that a block can hold depends on the block size and the size of each transaction.<\/p>\n<p><strong>Conclusion<\/strong><br \/>\nIt is the blockchain architecture that makes it the most difficult thing to change \u2013 it is developed such that in order to tamper the data without following protocol rules would require someone to have access to an energy source and to computer power that exceeds that of the entire network, which is almost impossible. That is why we can say that blockchain is structured to guarantee immutability.<\/p>\n<p><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;&lt;div class =&quot;postad row&quot;&gt;\n                    &lt;div class=&quot;postleft  col-xs-12 col-sm-12 col-md-8&quot;&gt;\n                      &lt;h5&gt;&quot;Planning&lt;\/h5&gt;\n                      &lt;h5 class=&quot;dbplus_last(relation, tuple)&quot;&gt;&quot;&quot;&lt;\/h5&gt;\n                      &lt;p&gt;&quot;Talk&lt;\/p&gt;\n                    &lt;\/div&gt;\n                    &lt;div class =&quot;postright col-xs-12 col-sm-12 col-md-4 align-self-center&quot;&gt;\n                      &lt;a  class=&quot;ctn-link&quot; target=&quot;_blank&quot; href=&quot;https:\/\/www.heliossolutions.co\/connect-with-us\/request-for-services\/&quot;&gt;&quot;get&lt;\/a&gt;\n                    &lt;\/div&gt;\n                &lt;\/div&gt;&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:961,&quot;3&quot;:{&quot;1&quot;:0},&quot;9&quot;:0,&quot;10&quot;:1,&quot;11&quot;:4,&quot;12&quot;:0}\"><div class =\"postad row\">\n                    <div class=\"postleft  col-xs-12 col-sm-12 col-md-8\">\n                      <h5>Planning to leverage the capabilities of Blockchain?<\/h5>\n                      <h5 class=\"dbplus_last(relation, tuple)\"><\/h5>\n                      <p>Talk with one of our solution architects.<\/p>\n                    <\/div>\n                    <div class =\"postright col-xs-12 col-sm-12 col-md-4 align-self-center\">\n                      <a  class=\"ctn-link\" target=\"_blank\" href=\"https:\/\/www.heliossolutions.co\/connect-with-us\/request-for-services\/\">get in touch<\/a>\n                    <\/div>\n                <\/div><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Ever wondered what\u2019s inside blockchain? Well, we know that blockchain technology is all about linear chain of blocks that contain\u2026<\/p>\n","protected":false},"author":2,"featured_media":8373,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1086,2,1075,947,352],"tags":[],"class_list":["post-8370","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blockchain","category-blog","category-digital-transformation","category-innovation","category-software-development"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>A Deep Dive into the Blockchain Architecture - Helios Blog<\/title>\n<meta name=\"description\" content=\"What makes Blockchain data immutable? The mystery lies behind the blockchain architechture. Check out this blog to learn more.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"A Deep Dive into the Blockchain Architecture - Helios Blog\" \/>\n<meta property=\"og:description\" content=\"What makes Blockchain data immutable? The mystery lies behind the blockchain architechture. Check out this blog to learn more.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/\" \/>\n<meta property=\"og:site_name\" content=\"Helios Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-01-23T10:20:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-01-28T09:29:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Deep-Explanation-Of-Blockchain-Architecture.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"930\" \/>\n\t<meta property=\"og:image:height\" content=\"409\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Helios Solutions\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Helios Solutions\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/\"},\"author\":{\"name\":\"Helios Solutions\",\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/#\/schema\/person\/a354dccaf02b85a3b12face8f0556220\"},\"headline\":\"A Deep Dive into the Blockchain Architecture\",\"datePublished\":\"2020-01-23T10:20:58+00:00\",\"dateModified\":\"2020-01-28T09:29:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/\"},\"wordCount\":1512,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Deep-Explanation-Of-Blockchain-Architecture.jpg\",\"articleSection\":[\"Blockchain\",\"Blog\",\"Digital Transformation\",\"Innovation\",\"Software Development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/\",\"url\":\"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/\",\"name\":\"A Deep Dive into the Blockchain Architecture - Helios Blog\",\"isPartOf\":{\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Deep-Explanation-Of-Blockchain-Architecture.jpg\",\"datePublished\":\"2020-01-23T10:20:58+00:00\",\"dateModified\":\"2020-01-28T09:29:57+00:00\",\"description\":\"What makes Blockchain data immutable? The mystery lies behind the blockchain architechture. Check out this blog to learn more.\",\"breadcrumb\":{\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/#primaryimage\",\"url\":\"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Deep-Explanation-Of-Blockchain-Architecture.jpg\",\"contentUrl\":\"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Deep-Explanation-Of-Blockchain-Architecture.jpg\",\"width\":930,\"height\":409,\"caption\":\"Deep-Explanation-Of-Blockchain-Architecture\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/staging.heliossolutions.co\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A Deep Dive into the Blockchain Architecture\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/#website\",\"url\":\"https:\/\/staging.heliossolutions.co\/blog\/\",\"name\":\"Helios Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/staging.heliossolutions.co\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/#organization\",\"name\":\"Helios\",\"url\":\"https:\/\/staging.heliossolutions.co\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2023\/01\/Helios-blue-website.png\",\"contentUrl\":\"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2023\/01\/Helios-blue-website.png\",\"width\":250,\"height\":47,\"caption\":\"Helios\"},\"image\":{\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/#\/schema\/person\/a354dccaf02b85a3b12face8f0556220\",\"name\":\"Helios Solutions\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/staging.heliossolutions.co\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/742f9b827d31c5aeac43d4a144a8ce28?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/742f9b827d31c5aeac43d4a144a8ce28?s=96&d=mm&r=g\",\"caption\":\"Helios Solutions\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"A Deep Dive into the Blockchain Architecture - Helios Blog","description":"What makes Blockchain data immutable? The mystery lies behind the blockchain architechture. Check out this blog to learn more.","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:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/","og_locale":"en_US","og_type":"article","og_title":"A Deep Dive into the Blockchain Architecture - Helios Blog","og_description":"What makes Blockchain data immutable? The mystery lies behind the blockchain architechture. Check out this blog to learn more.","og_url":"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/","og_site_name":"Helios Blog","article_published_time":"2020-01-23T10:20:58+00:00","article_modified_time":"2020-01-28T09:29:57+00:00","og_image":[{"width":930,"height":409,"url":"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Deep-Explanation-Of-Blockchain-Architecture.jpg","type":"image\/jpeg"}],"author":"Helios Solutions","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Helios Solutions","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/#article","isPartOf":{"@id":"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/"},"author":{"name":"Helios Solutions","@id":"https:\/\/staging.heliossolutions.co\/blog\/#\/schema\/person\/a354dccaf02b85a3b12face8f0556220"},"headline":"A Deep Dive into the Blockchain Architecture","datePublished":"2020-01-23T10:20:58+00:00","dateModified":"2020-01-28T09:29:57+00:00","mainEntityOfPage":{"@id":"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/"},"wordCount":1512,"commentCount":0,"publisher":{"@id":"https:\/\/staging.heliossolutions.co\/blog\/#organization"},"image":{"@id":"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/#primaryimage"},"thumbnailUrl":"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Deep-Explanation-Of-Blockchain-Architecture.jpg","articleSection":["Blockchain","Blog","Digital Transformation","Innovation","Software Development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/","url":"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/","name":"A Deep Dive into the Blockchain Architecture - Helios Blog","isPartOf":{"@id":"https:\/\/staging.heliossolutions.co\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/#primaryimage"},"image":{"@id":"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/#primaryimage"},"thumbnailUrl":"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Deep-Explanation-Of-Blockchain-Architecture.jpg","datePublished":"2020-01-23T10:20:58+00:00","dateModified":"2020-01-28T09:29:57+00:00","description":"What makes Blockchain data immutable? The mystery lies behind the blockchain architechture. Check out this blog to learn more.","breadcrumb":{"@id":"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/#primaryimage","url":"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Deep-Explanation-Of-Blockchain-Architecture.jpg","contentUrl":"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Deep-Explanation-Of-Blockchain-Architecture.jpg","width":930,"height":409,"caption":"Deep-Explanation-Of-Blockchain-Architecture"},{"@type":"BreadcrumbList","@id":"https:\/\/staging.heliossolutions.co\/blog\/deep-dive-into-the-blockchain-architecture\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/staging.heliossolutions.co\/blog\/"},{"@type":"ListItem","position":2,"name":"A Deep Dive into the Blockchain Architecture"}]},{"@type":"WebSite","@id":"https:\/\/staging.heliossolutions.co\/blog\/#website","url":"https:\/\/staging.heliossolutions.co\/blog\/","name":"Helios Blog","description":"","publisher":{"@id":"https:\/\/staging.heliossolutions.co\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/staging.heliossolutions.co\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/staging.heliossolutions.co\/blog\/#organization","name":"Helios","url":"https:\/\/staging.heliossolutions.co\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/staging.heliossolutions.co\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2023\/01\/Helios-blue-website.png","contentUrl":"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2023\/01\/Helios-blue-website.png","width":250,"height":47,"caption":"Helios"},"image":{"@id":"https:\/\/staging.heliossolutions.co\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/staging.heliossolutions.co\/blog\/#\/schema\/person\/a354dccaf02b85a3b12face8f0556220","name":"Helios Solutions","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/staging.heliossolutions.co\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/742f9b827d31c5aeac43d4a144a8ce28?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/742f9b827d31c5aeac43d4a144a8ce28?s=96&d=mm&r=g","caption":"Helios Solutions"}}]}},"feat_image_thumb":"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Deep-Explanation-Of-Blockchain-Architecture-550x250.jpg","mainsite_thumb":"https:\/\/staging.heliossolutions.co\/blog\/wp-content\/uploads\/2020\/01\/Deep-Explanation-Of-Blockchain-Architecture-150x170.jpg","alt_text":"Deep-Explanation-Of-Blockchain-Architecture","_links":{"self":[{"href":"https:\/\/staging.heliossolutions.co\/blog\/wp-json\/wp\/v2\/posts\/8370","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/staging.heliossolutions.co\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/staging.heliossolutions.co\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/staging.heliossolutions.co\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/staging.heliossolutions.co\/blog\/wp-json\/wp\/v2\/comments?post=8370"}],"version-history":[{"count":1,"href":"https:\/\/staging.heliossolutions.co\/blog\/wp-json\/wp\/v2\/posts\/8370\/revisions"}],"predecessor-version":[{"id":8479,"href":"https:\/\/staging.heliossolutions.co\/blog\/wp-json\/wp\/v2\/posts\/8370\/revisions\/8479"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/staging.heliossolutions.co\/blog\/wp-json\/wp\/v2\/media\/8373"}],"wp:attachment":[{"href":"https:\/\/staging.heliossolutions.co\/blog\/wp-json\/wp\/v2\/media?parent=8370"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/staging.heliossolutions.co\/blog\/wp-json\/wp\/v2\/categories?post=8370"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/staging.heliossolutions.co\/blog\/wp-json\/wp\/v2\/tags?post=8370"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}