{"id":7162,"date":"2025-01-10T08:30:43","date_gmt":"2025-01-10T07:30:43","guid":{"rendered":"https:\/\/wsj-crypto.com\/?p=7162"},"modified":"2025-01-10T08:30:43","modified_gmt":"2025-01-10T07:30:43","slug":"proving-the-unprovable-the-art-of-code-merkleization","status":"publish","type":"post","link":"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/","title":{"rendered":"Proving the Unprovable: The Art of Code Merkleization"},"content":{"rendered":"<p><\/p>\n<div id=\"\">\n<blockquote class=\"chakra-code css-1cl98my\"><p>\n<!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\"><strong>A remark regarding the Stateless Ethereum project:<!-- --><\/strong><br \/>\nResearch efforts have (understandably) diminished in the latter part of 2020 as all participants have adapted to life on the unusual timeline. Nevertheless, as the environment gradually approaches Serenity and the Eth1\/Eth2 integration, Stateless Ethereum initiatives will gain more significance and influence. Anticipate a more comprehensive year-end review of Stateless Ethereum in the upcoming weeks.<!-- --><\/p>\n<p><!-- --><\/p><\/blockquote>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Let&#8217;s revisit the recap once more: The primary aim of Stateless Ethereum is to eliminate the <!-- --><em class=\"chakra-text css-0\">necessity<!-- --><\/em> for an Ethereum node to maintain a complete copy of the updated state trie at all times, and to allow state modifications to depend on a (much smaller) piece of information that verifies a specific transaction is enacting a valid change. Achieving this addresses a significant challenge for Ethereum; a challenge that has thus far only been deferred by enhanced client software: <!-- --><a class=\"chakra-link css-ug8vf0\" href=\"https:\/\/blog.ethereum.org\/2019\/12\/30\/eth1x-files-state-of-stateless-ethereum\">State expansion<!-- --><\/a>.<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">The Merkle proof required for Stateless Ethereum is termed a &#8216;witness&#8217;, and it validates a state transition by offering all the <!-- --><em class=\"chakra-text css-0\">constant<!-- --><\/em> intermediate hashes necessary to attain a new valid state root. Witnesses are theoretically much smaller than the complete Ethereum state (which requires 6 hours at most to sync), yet they remain <!-- --><em class=\"chakra-text css-0\">considerably larger<!-- --><\/em> than a block (which must disseminate throughout the entire network in just a few seconds). Therefore, minimizing the size of witnesses is crucial for establishing Stateless Ethereum&#8217;s minimum viable utility.<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Much like the Ethereum state itself, a substantial portion of the additional (digital) mass in witnesses originates from smart contract code. If a transaction invokes a specific contract, the witness will by default have to encompass the contract bytecode <!-- --><em class=\"chakra-text css-0\">in full<!-- --><\/em> within the witness. Code Merkelization is a general method aimed at alleviating the load of smart contract code within witnesses, enabling contract calls to only include the segments of code that they &#8216;interact&#8217; with to validate their correctness. With this approach alone, we may observe a considerable decrease in witness size, but there are numerous factors to evaluate when dividing smart contract code into manageable byte-sized portions.<!-- --><\/p>\n<p><!-- --><\/p>\n<h2 class=\"chakra-heading css-1w54o5f\" id=\"what-is-bytecode\">What constitutes Bytecode?<!-- --><\/h2>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">There are certain trade-offs to consider when fragmenting contract bytecode. The inquiry we will ultimately need to make is &#8220;what size will the code segments be?&#8221; \u2013 but for the moment, let\u2019s examine some actual bytecode in a very elementary smart contract to grasp what it entails:<!-- --><\/p>\n<p><!-- --><\/p>\n<div class=\"chakra-stack css-1uyok63\">\n<pre><pre style=\"color:white;font-family:Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;font-size:1em;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none;padding:1em;margin:0.5em 0;overflow:auto;background:#011627\"><code class=\"language-bash\" style=\"color:#d6deeb;font-family:Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;font-size:1em;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none\"><span>pragma solidity <!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">&gt;=<!-- --><\/span><span class=\"token\" style=\"color:rgb(247, 140, 108)\">0.4<!-- --><\/span><span>.22 <!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\"\/><span class=\"token\" style=\"color:rgb(247, 140, 108)\">0.7<!-- --><\/span><span>.0<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">;<!-- --><\/span><span>\n<!-- --><\/span>\n<!-- --><span>contract Storage <!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">{<!-- --><\/span><span>\n<!-- --><\/span>\n<!-- --><span>    uint256 number<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">;<!-- --><\/span><span>\n<!-- --><\/span>\n<!-- --><span>    <!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">function<!-- --><\/span><span> store<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">(<!-- --><\/span><span>uint256 num<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">)<!-- --><\/span><span> public <!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">{<!-- --><\/span><span>\n<!-- --><\/span><span>        number <!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">=<!-- --><\/span><span> num<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">;<!-- --><\/span><span>\n<!-- --><\/span><span>    <!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">}<!-- --><\/span><span>\n<!-- --><\/span>\n<!-- --><span>    <!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">function<!-- --><\/span><span> retrieve<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">(<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">)<!-- --><\/span><span> public view returns <!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">(<!-- --><\/span><span>uint256<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">)<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">{<!-- --><\/span><span>\n<!-- --><\/span><span>        <!-- --><\/span><span class=\"token\" style=\"color:rgb(255, 203, 139)\">return<!-- --><\/span><span> number<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">;<!-- --><\/span><span>\n<!-- --><\/span><span>    <!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">}<!-- --><\/span><span>\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(199, 146, 234)\">}<!-- --><\/span><span>\n<!-- --><\/span><\/code><\/pre>\n<\/div>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">When this basic storage contract is compiled, it converts into the machine instructions designed to operate &#8216;within&#8217; the EVM. Here, you can observe the same basic storage contract depicted above, but compiled into individual EVM operation codes (opcodes):<!-- --><\/p>\n<p><!-- --><\/p>\n<div class=\"chakra-stack css-1uyok63\">\n<pre><pre style=\"color:white;font-family:Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;font-size:1em;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none;padding:1em;margin:0.5em 0;overflow:auto;background:#011627\"><code class=\"language-bash\" style=\"color:#d6deeb;font-family:Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;font-size:1em;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none\"><span>PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH1 0x32 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH1 0x37 JUMPI DUP1 PUSH4 0x6057361D EQ PUSH1 0x53 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x3D PUSH1 0x7E JUMP```asm\nJUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x7C PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x20 DUP2 LT ISZERO PUSH1 0x67 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 CALLDATALOAD SWAP1 PUSH1 0x20 ADD SWAP1 SWAP3 SWAP2 SWAP1 POP POP POP PUSH1 0x87 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP13 PUSH7 0x1368BFFE1FF61A 0x29 0x4C CALLER 0x1F 0x5C DUP8 PUSH18 0xA3F10C9539C716CF2DF6E04FC192E3906473 PUSH16 0x6C634300060600330000000000000000\n<!-- --><\/span><\/code><\/pre>\n<\/div>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">As stated in <!-- --><a class=\"chakra-link css-ug8vf0\" href=\"https:\/\/blog.ethereum.org\/2020\/07\/28\/the-1x-files-ghost-in-the-stack-machine\">a prior article<!-- --><\/a>, these opcode directives comprise the fundamental functions of the EVM&#8217;s stack framework. They outline the basic storage contract, along with all the operations it encompasses. This contract can be located as one of the sample solidity contracts in the <!-- --><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"https:\/\/remix.ethereum.org\/\">Remix IDE<!-- --><\/a> (It is essential to note that the machine code presented above represents the storage.sol <!-- --><em class=\"chakra-text css-0\">after it has already been deployed<!-- --><\/em>, rather than the output from the Solidity compiler, which includes additional &#8216;bootstrapping&#8217; opcodes). If you allow your gaze to blur and envision a tangible stack machine steadily processing one opcode card at a time, the rapid motion of the stack almost allows you to perceive the shapes of functions arranged within the Solidity contract.<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Each time the contract receives a message call, this code is executed within every Ethereum node verifying new blocks in the network. To issue a legitimate transaction on Ethereum today, one must possess a complete copy of the contract&#8217;s bytecode, as running that code from start to finish is the sole method to achieve the (deterministic) output state and the corresponding hash.<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Stateless Ethereum, keep in mind, seeks to modify this requirement. Suppose all you intend to do is invoke the function <!-- --><span class=\"chakra-text css-ons8vw\">retrieve()<\/span> and nothing else. The logic explaining that function is merely a fraction of the entire contract, and in this scenario the EVM fundamentally requires only two of the <!-- --><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"https:\/\/en.wikipedia.org\/wiki\/Basic_block\">core blocks<!-- --><\/a> of opcode instructions to return the desired result:<!-- --><\/p>\n<p><!-- --><\/p>\n<div class=\"chakra-stack css-1uyok63\">\n<pre><pre style=\"color:white;font-family:Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;font-size:1em;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none;padding:1em;margin:0.5em 0;overflow:auto;background:#011627\"><code class=\"language-bash\" style=\"color:#d6deeb;font-family:Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;font-size:1em;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none\"><span>PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP,\n<!-- --><\/span>\n<!-- -->JUMPDEST PUSH1 0x40 MLOAD DUP1 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN\n<!-- --><\/code><\/pre>\n<\/div>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Within the Stateless framework, similarly to how a witness supplies the absent hashes of untouched state, a witness ought to furnish the lacking hashes for unexecuted segments of machine code, so that a stateless client only demands the portion of the contract it is executing.<!-- --><\/p>\n<p><!-- --><\/p>\n<h2 class=\"chakra-heading css-1w54o5f\" id=\"the-codes-witness\">The Code\u2019s Witness<!-- --><\/h2>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Smart contracts in Ethereum reside in the same location as externally-owned accounts: as leaf nodes within the vast single-rooted state trie. Contracts, in various respects, are no different from the externally-owned accounts that individuals utilize. They possess an address, can initiate transactions, and maintain a balance of Ether and any other token. However, contract accounts are unique because they are required to contain their own program logic (code), or a hash of it. Another corresponding Merkle-Patricia Trie, known as the <!-- --><span class=\"chakra-text css-ons8vw\">storageTrie<\/span>, preserves any variables or persistent state that an operational contract employs to function during execution.<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">This witness visualization offers a valuable perspective on how vital code merklization may be in minimizing the size of witnesses. Observe that substantial block of colored squares and how its volume exceeds all the other elements in the trie? That constitutes an entire serving of smart contract bytecode.<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Adjacent to it and somewhat lower are the components of persistent state within the <!-- --><span class=\"chakra-text css-ons8vw\">storageTrie<\/span>, such as ERC20 balance mappings or ERC721 digital item ownership records. As this instance is a witness rather than a complete state snapshot, those too are chiefly composed of intermediate hashes, and solely include the alterations a stateless client would need to validate the next block.<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Code merkleization aims to dissect that immense block of code and replace the field <!-- --><span class=\"chakra-text css-ons8vw\">codeHash<\/span> within an Ethereum account with the root of another Merkle Trie, aptly designated the <!-- --><span class=\"chakra-text css-ons8vw\">codeTrie<\/span>.<!-- --><\/p>\n<p><!-- --><\/p>\n<h2 class=\"chakra-heading css-1w54o5f\" id=\"worth-its-weight-in-hashes\">Worth its Weight in Hashes<!-- --><\/h2>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Let\u2019s examine an illustration from <!-- --><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"https:\/\/youtu.be\/44PEl-GIlmw?t=852\">this Ethereum Engineering Group video<!-- --><\/a>, which evaluates several approaches to code chunking via an <!-- --><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"https:\/\/docs.openzeppelin.com\/contracts\/3.x\/erc20\">ERC20 token<!-- --><\/a> contract. Since a number of the tokens you are familiar with conform to the ERC-20 standard, this presents a suitable real-world context to comprehend code merkleization.<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Due to bytecode being lengthy and unwieldy, let\u2019s implement a straightforward shorthand by substituting four bytes of code (8 hexadecimal characters) with either a <!-- --><span class=\"chakra-text css-ons8vw\">.<\/span> or <!-- --><span class=\"chakra-text css-ons8vw\">X<\/span> character, with the latter denoting bytecode necessary for the execution of a particular function (in this scenario, the <!-- --><span class=\"chakra-text css-ons8vw\">ERC20.transfer()<\/span> function is utilized consistently).<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">In the ERC20 example, invoking the <!-- --><span class=\"chakra-text css-ons8vw\">transfer()<\/span> function utilizes just under half of the entire smart contract:<!-- --><\/p>\n<p><!-- --><\/p>\n<div class=\"chakra-stack css-1uyok63\">\n<pre>\n```<pre style=\"color:white;font-family:Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;font-size:1em;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none;padding:1em;margin:0.5em 0;overflow:auto;background:#011627\"><code class=\"language-bash\" style=\"color:#d6deeb;font-family:Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;font-size:1em;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none\"><span>XXX.XXXXXXXXXXXXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>XXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>.XX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>XXXXXXXXXX\n<!-- --><\/span><span>XXXXXXXXXXXXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\n<!-- --><\/span><span>XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>.XXXXXXXXX\n<!-- --><\/span><span>XXXXXXXXXXXXXXXXXXXXXXXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span>```html\n<span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><\/code><\/pre>\n<\/div>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">If we aim to divide that code into segments of 64 bytes, merely 19 out of the 41 segments would be necessary to perform a stateless <!-- --><span class=\"chakra-text css-ons8vw\">transfer()<\/span> operation, with the remaining data sourced from a witness.<!-- --><\/p>\n<p><!-- --><\/p>\n<div class=\"chakra-stack css-1uyok63\">\n<pre><pre style=\"color:white;font-family:Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;font-size:1em;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none;padding:1em;margin:0.5em 0;overflow:auto;background:#011627\"><code class=\"language-bash\" style=\"color:#d6deeb;font-family:Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;font-size:1em;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none\"><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXX.XXXXXXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>.XXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>.<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>XXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..\n``````html\n<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>XXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>.<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>XX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>XXXXXXXXXX\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXXXXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>.XXXXXXXXXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXXXXXXXXXX\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXXXXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..  \n``````html\n<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>.XXXXXXXXX\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXXXXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>.<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><\/code><\/pre>\n<\/div>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Contrast this with 31 out of 81 segments in a 32 byte segmentation method:<!-- --><\/p>\n<p><!-- --><\/p>\n<div class=\"chakra-stack css-1uyok63\">\n<pre><pre style=\"color:white;font-family:Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;font-size:1em;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none;padding:1em;margin:0.5em 0;overflow:auto;background:#011627\"><code class=\"language-bash\" style=\"color:#d6deeb;font-family:Consolas, Monaco, &quot;Andale Mono&quot;, &quot;Ubuntu Mono&quot;, monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;font-size:1em;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none\"><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXX.XXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span>\n```<span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>.XXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>.<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>.<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- -->```html\n<\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>XX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXX\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>.XXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXX\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span>\n```<span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>.X<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXX\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>.<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>.X\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span>XXXXXXXX<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><span\/><span class=\"token\" style=\"color:rgb(127, 219, 202)\">|<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span class=\"token\" style=\"color:rgb(199, 146, 234)\">..<!-- --><\/span><span>\n<!-- --><\/span><\/code><\/pre>\n<\/div>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">At first glance, it appears that smaller segments are more effective than larger ones, since the <!-- --><em class=\"chakra-text css-0\">largely-empty<!-- --><\/em> segments show up less frequently. Yet, it is crucial to keep in mind that unutilized code also incurs a cost: each non-executed code segment gets substituted by a hash of <!-- --><em class=\"chakra-text css-0\">fixed dimensions<!-- --><\/em>. When using smaller code segments, the total number of hashes for unused code rises, and those hashes can range from 8 bytes to as large as 32 bytes. You might be tempted to think, &#8220;Hold up! If the hash of code segments is consistently sized at 32 bytes, how does substituting 32 bytes of code with 32 bytes of hash make a difference!?&#8221;<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Remember that the contract code is <!-- --><em class=\"chakra-text css-0\">merkleized<!-- --><\/em>, implying that all hashes are interconnected within the <!-- --><span class=\"chakra-text css-ons8vw\">codeTrie<\/span> &#8212; the root hash of which is necessary for validating a block. In this arrangement, any <!-- --><em class=\"chakra-text css-0\">sequential<!-- --><\/em> unexecuted segments only call for a single hash, regardless of their quantity. In essence, one hash can represent a potentially extensive limb filled with sequential segment hashes on the merkleized code trie, as long as none of them are needed for code execution.<!-- --><\/p>\n<p><!-- --><\/p>\n<h2 class=\"chakra-heading css-1w54o5f\" id=\"we-must-collect-additional-data\">We Must Gather Additional Data<!-- --><\/h2>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">The conclusion we are arriving at feels somewhat anticlimactic: There is no absolutely &#8216;optimal&#8217; approach for code merkleization. Design choices such as fixing the dimensions of code segments and hashes <!-- --><strong>hinge on data gathered regarding the &#8216;real world&#8217;<!-- --><\/strong>. Each smart contract will merkleize in its own unique manner, thus researchers hold the responsibility to select the format that yields the highest efficiency improvements for observed activity on the mainnet. What does this imply, specifically?<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\"><img decoding=\"async\" alt=\"overhead\" src=\"https:\/\/blog.ethereum.org\/images\/posts\/upload_748dc2f141713514ecbf6daa3dd02af4.png\" class=\"chakra-image css-hw6q2r\"\/><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">One aspect that may indicate the efficiency of a code merkleization scheme is <!-- --><em class=\"chakra-text css-0\">Merkleization overhead<!-- --><\/em>, which addresses the inquiry, &#8220;how much supplementary information aside from executed code is being incorporated in this witness?&#8221;<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Already, we have <!-- --><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"https:\/\/ethresear.ch\/t\/optimal-chunking-size-for-code-merklization\/8185\">some encouraging results<!-- --><\/a>, obtained through <!-- --><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"https:\/\/github.com\/ConsenSys\/code_merklization_of_traces\">a specialized instrument<!-- --><\/a> created by Horacio Mijail from Consensys&#8217; TeamX research group, demonstrating overheads as minor as 25% &#8212; quite impressive!<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">In summary, the data indicates that, generally, smaller segment sizes are more effective than larger sizes, particularly when smaller hashes (8 bytes) are utilized. However, these initial statistics are by no means exhaustive, as they reflect merely about 100 recent blocks. If you happen to be reading this and are keen on supporting the Stateless Ethereum endeavor by gathering more robust data related to code merkleization, please introduce yourself on the ethresear.ch forums, or join the #code-merkleization channel on the Eth1x\/2 research discord!<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">And as always, for inquiries, suggestions, or requests related to &#8220;The 1.X Files&#8221; and Stateless Ethereum, feel free to DM or @gichiba on twitter.<!-- --><\/p>\n<\/div>\n<p><br \/>\n<br \/><a href=\"https:\/\/blog.ethereum.org\/en\/2020\/11\/30\/the-1x-files-code-merkleization\">Source link <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>A remark regarding the Stateless Ethereum project: Research efforts have (understandably) diminished in the latter part of 2020 as all participants have adapted to life on the unusual timeline. Nevertheless, as the environment gradually approaches Serenity and the Eth1\/Eth2 integration, Stateless Ethereum initiatives will gain more significance and influence. Anticipate a more comprehensive year-end review<\/p>\n","protected":false},"author":3,"featured_media":7163,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[23],"tags":[792],"class_list":["post-7162","post","type-post","status-publish","format-standard","has-post-thumbnail","category-ethereum","tag-return-a-list-of-comma-separated-tags-from-this-title-the-burden-of-proofs-code-merkleization"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Proving the Unprovable: The Art of Code Merkleization - WSJ-Crypto<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Proving the Unprovable: The Art of Code Merkleization - WSJ-Crypto\" \/>\n<meta property=\"og:description\" content=\"A remark regarding the Stateless Ethereum project: Research efforts have (understandably) diminished in the latter part of 2020 as all participants have adapted to life on the unusual timeline. Nevertheless, as the environment gradually approaches Serenity and the Eth1\/Eth2 integration, Stateless Ethereum initiatives will gain more significance and influence. Anticipate a more comprehensive year-end review\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/\" \/>\n<meta property=\"og:site_name\" content=\"WSJ-Crypto\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-10T07:30:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wsj-crypto.com\/wp-content\/uploads\/2025\/01\/the1xfiles-black.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1400\" \/>\n\t<meta property=\"og:image:height\" content=\"550\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"wsjcrypto\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Scritto da\" \/>\n\t<meta name=\"twitter:data1\" content=\"wsjcrypto\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tempo di lettura stimato\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minuti\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/\",\"url\":\"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/\",\"name\":\"Proving the Unprovable: The Art of Code Merkleization - WSJ-Crypto\",\"isPartOf\":{\"@id\":\"https:\/\/wsj-crypto.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/wsj-crypto.com\/wp-content\/uploads\/2025\/01\/the1xfiles-black.png\",\"datePublished\":\"2025-01-10T07:30:43+00:00\",\"author\":{\"@id\":\"https:\/\/wsj-crypto.com\/#\/schema\/person\/88a93723b30416db1a352d5a0096c4a7\"},\"breadcrumb\":{\"@id\":\"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/#primaryimage\",\"url\":\"https:\/\/wsj-crypto.com\/wp-content\/uploads\/2025\/01\/the1xfiles-black.png\",\"contentUrl\":\"https:\/\/wsj-crypto.com\/wp-content\/uploads\/2025\/01\/the1xfiles-black.png\",\"width\":1400,\"height\":550},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/wsj-crypto.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Proving the Unprovable: The Art of Code Merkleization\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/wsj-crypto.com\/#website\",\"url\":\"https:\/\/wsj-crypto.com\/\",\"name\":\"WSJ-Crypto\",\"description\":\"Just Another Crypto News Website\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/wsj-crypto.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"it-IT\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/wsj-crypto.com\/#\/schema\/person\/88a93723b30416db1a352d5a0096c4a7\",\"name\":\"wsjcrypto\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\/\/wsj-crypto.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/86fe8af82ea089646d6639ca2f87e0243d8688d957bd8e3ec22ec3c457cc16d4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/86fe8af82ea089646d6639ca2f87e0243d8688d957bd8e3ec22ec3c457cc16d4?s=96&d=mm&r=g\",\"caption\":\"wsjcrypto\"},\"url\":\"https:\/\/wsj-crypto.com\/index.php\/author\/wsjcrypto\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Proving the Unprovable: The Art of Code Merkleization - WSJ-Crypto","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:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/","og_locale":"it_IT","og_type":"article","og_title":"Proving the Unprovable: The Art of Code Merkleization - WSJ-Crypto","og_description":"A remark regarding the Stateless Ethereum project: Research efforts have (understandably) diminished in the latter part of 2020 as all participants have adapted to life on the unusual timeline. Nevertheless, as the environment gradually approaches Serenity and the Eth1\/Eth2 integration, Stateless Ethereum initiatives will gain more significance and influence. Anticipate a more comprehensive year-end review","og_url":"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/","og_site_name":"WSJ-Crypto","article_published_time":"2025-01-10T07:30:43+00:00","og_image":[{"width":1400,"height":550,"url":"https:\/\/wsj-crypto.com\/wp-content\/uploads\/2025\/01\/the1xfiles-black.png","type":"image\/png"}],"author":"wsjcrypto","twitter_card":"summary_large_image","twitter_misc":{"Scritto da":"wsjcrypto","Tempo di lettura stimato":"9 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/","url":"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/","name":"Proving the Unprovable: The Art of Code Merkleization - WSJ-Crypto","isPartOf":{"@id":"https:\/\/wsj-crypto.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/#primaryimage"},"image":{"@id":"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/#primaryimage"},"thumbnailUrl":"https:\/\/wsj-crypto.com\/wp-content\/uploads\/2025\/01\/the1xfiles-black.png","datePublished":"2025-01-10T07:30:43+00:00","author":{"@id":"https:\/\/wsj-crypto.com\/#\/schema\/person\/88a93723b30416db1a352d5a0096c4a7"},"breadcrumb":{"@id":"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/"]}]},{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/#primaryimage","url":"https:\/\/wsj-crypto.com\/wp-content\/uploads\/2025\/01\/the1xfiles-black.png","contentUrl":"https:\/\/wsj-crypto.com\/wp-content\/uploads\/2025\/01\/the1xfiles-black.png","width":1400,"height":550},{"@type":"BreadcrumbList","@id":"https:\/\/wsj-crypto.com\/index.php\/2025\/01\/10\/proving-the-unprovable-the-art-of-code-merkleization\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wsj-crypto.com\/"},{"@type":"ListItem","position":2,"name":"Proving the Unprovable: The Art of Code Merkleization"}]},{"@type":"WebSite","@id":"https:\/\/wsj-crypto.com\/#website","url":"https:\/\/wsj-crypto.com\/","name":"WSJ-Crypto","description":"Just Another Crypto News Website","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wsj-crypto.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"it-IT"},{"@type":"Person","@id":"https:\/\/wsj-crypto.com\/#\/schema\/person\/88a93723b30416db1a352d5a0096c4a7","name":"wsjcrypto","image":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/wsj-crypto.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/86fe8af82ea089646d6639ca2f87e0243d8688d957bd8e3ec22ec3c457cc16d4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/86fe8af82ea089646d6639ca2f87e0243d8688d957bd8e3ec22ec3c457cc16d4?s=96&d=mm&r=g","caption":"wsjcrypto"},"url":"https:\/\/wsj-crypto.com\/index.php\/author\/wsjcrypto\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/wsj-crypto.com\/index.php\/wp-json\/wp\/v2\/posts\/7162","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wsj-crypto.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wsj-crypto.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wsj-crypto.com\/index.php\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/wsj-crypto.com\/index.php\/wp-json\/wp\/v2\/comments?post=7162"}],"version-history":[{"count":2,"href":"https:\/\/wsj-crypto.com\/index.php\/wp-json\/wp\/v2\/posts\/7162\/revisions"}],"predecessor-version":[{"id":7168,"href":"https:\/\/wsj-crypto.com\/index.php\/wp-json\/wp\/v2\/posts\/7162\/revisions\/7168"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wsj-crypto.com\/index.php\/wp-json\/wp\/v2\/media\/7163"}],"wp:attachment":[{"href":"https:\/\/wsj-crypto.com\/index.php\/wp-json\/wp\/v2\/media?parent=7162"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wsj-crypto.com\/index.php\/wp-json\/wp\/v2\/categories?post=7162"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wsj-crypto.com\/index.php\/wp-json\/wp\/v2\/tags?post=7162"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}