{"id":8923,"date":"2025-02-23T18:12:42","date_gmt":"2025-02-23T17:12:42","guid":{"rendered":"https:\/\/wsj-crypto.com\/?p=8923"},"modified":"2025-02-23T18:12:42","modified_gmt":"2025-02-23T17:12:42","slug":"c-development-highlights-july-edition","status":"publish","type":"post","link":"https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/","title":{"rendered":"C++ Development Highlights &#8211; July Edition"},"content":{"rendered":"<p> &#8220;`html<br \/>\n<\/p>\n<div id=\"\">\n<p class=\"chakra-text css-gi02ar\">Since the previous C++ DEV Update, numerous developments have taken place in the engine room that were not particularly apparent externally. This article aims to provide a summary of our ongoing projects.<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Besides the features aspect, Bob has been focused on a suggested process for re-licensing the C++ runtime client code to Apache 2.0, as mentioned on several occasions in the past month or two. Anticipate further updates on that shortly.<!-- --><\/p>\n<p><!-- --><\/p>\n<h2 class=\"chakra-heading css-1w54o5f\" id=\"eth-unit-test-mode\">Eth Unit-Test Mode<!-- --><\/h2>\n<p>Not only is it crucial for executing our Solidity end-to-end tests through IPC, but Dimitry Khoklov and others have also introduced new RPC endpoints to the eth client, enabling significantly greater flexibility for smart contract testing. If you utilize eth &#8211;test -d \/tmp\/test and connect to the ipc port at \/tmp\/test\/geth.ipc (we suggest using <!-- --><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"https:\/\/github.com\/ethereum\/ethereum-console\">ethereum-console<!-- --><\/a> as it already incorporates these features), you can:<br \/>\n<!-- --><\/p>\n<ul role=\"list\" class=\"css-1onhfjo\">\n<li class=\"css-cvpopp\">alter the blockchain settings (e.g., eliminate proof of work verification and pre-fund specific accounts)<!-- --><\/li>\n<li class=\"css-cvpopp\">mine a specified number of blocks (at roughly 30 blocks per second)<!-- --><\/li>\n<li class=\"css-cvpopp\">adjust the timestamp of the current block (to test timeouts in your contracts, for instance)<!-- --><\/li>\n<li class=\"css-cvpopp\">revert the blockchain to a specific block number<!-- --><\/li>\n<\/ul>\n<p>This functionality allows us to execute our existing 305 Solidity end-to-end tests in approximately 46 seconds on a standard computer. Each of these tests consists of at least two (often more) transactions, along with an equivalent number of mined blocks.<br \/>\n<!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Additional details regarding these features can be found at <!-- --><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"https:\/\/github.com\/ethereum\/ethereum-console\"\/><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"https:\/\/github.com\/ethereum\/ethereum-console\">https:\/\/github.com\/ethereum\/ethereum-console<!-- --><\/a>.<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Please be aware that this is presently only available for the binary provided via the <!-- --><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"https:\/\/launchpad.net\/~ethereum\/+archive\/ubuntu\/ethereum-dev\">ubuntu dev ppa<!-- --><\/a>.<!-- --><\/p>\n<p><!-- --><\/p>\n<h2 class=\"chakra-heading css-1w54o5f\" id=\"virtual-machine-speedup\">Virtual Machine Speedup<!-- --><\/h2>\n<p>Greg Colvin has spent recent months enhancing the C++ implementation of the EVM interpreter. He seized the opportunities he refers to as low-hanging fruits (having previously worked for Oracle on the Java interpreter\u2026). The key enhancements thus far involve substituting 256-bit calculations with 64-bit calculations for gas metering and ensuring that no more metering calculations occur for each VM operation than are necessary. These and other modifications have contributed to the following outcomes for Pawe\u0142 Bylica\u2019s emerging <!-- --><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"https:\/\/github.com\/ethereum\/test-tools\">benchmark suite<!-- --><\/a>. The chart below depicts the speed improvements relative to the previous cpp ethereum interpreter (cpp int (old)).<br \/>\n<!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\"><a class=\"chakra-link css-ug8vf0\" href=\"https:\/\/blog.ethereum.org\/images\/posts\/2016\/07\/relative_speedup.png\"><\/a><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">To be fair, it&#8217;s important to clarify what these benchmarks reflect. The first benchmark (where the evmjit shows an astounding speedup of 472x) consists of a million empty loops and highlights the sluggishness of the EVM\u2019s computed goto compared to the direct jump of a JIT &#8211; addressing that is the next item on the agenda. The second benchmark involves a poorly performing random number generator that executes a million loops with four multiplications and four additions per loop. It is primarily affected by 256-bit calculations, rendering a JIT less impactful. (Note that the Go JIT compiles to a faster interpreted representation rather than native code.)<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\"><em class=\"chakra-text css-0\">In practice<!-- --><\/em>, these enhancements will strictly be significant for &#8220;number-crunching&#8221; contracts as the computation duration is typically dominated by storage access. Conversely, the &#8220;rng&#8221; benchmark closely resembles cryptographic operations, tugging such matters further into the territory of legitimate on-chain implementations.<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Pawe\u0142 Bylica is developing a <!-- --><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"http:\/\/ethereum.github.io\/evmjit\/docs\/group__EVMC.html\">C-language interface<!-- --><\/a> connecting the virtual machine implementation and the hosting client, aiming to enable the integration of various VMs into an Ethereum client. Consequently, geth could potentially reap the benefits from our tweaks to the C++ virtual machine and particularly from the LLVM just-in-time compiler.<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">It is important to note that these modifications have not yet been released, but they are included in the <!-- --><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"https:\/\/launchpad.net\/~ethereum\/+archive\/ubuntu\/ethereum-dev\">ubuntu dev ppa<!-- --><\/a>.<!-- --><\/p>\n<p><!-- --><\/p>\n<h2 class=\"chakra-heading css-1w54o5f\" id=\"remix\">Remix<!-- --><\/h2>\n<p>Yann Levreau and Liana Husikyan are engaged in our new EVM debugger remix. We launched the alpha version a few days ago:<br \/>\n<!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\"><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"http:\/\/ethereum.github.io\/remix\/\">Application<!-- --><\/a> &#8211; <!-- --><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"https:\/\/github.com\/ethereum\/remix\">Instructions<!-- --><\/a><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Currently, you can \u201conly\u201d use it to scrutinize every single step in the execution of any transaction on the blockchain, observe the current stack, memory and storage contents, and see the sequence of commands. The subsequent phase will involve enabling source-level debugging, allowing you to see the current position in the source code, progress at line or instruction level, and view the decoded values of the variables (rather than just the raw hex values).<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">The debugger is designed for you, the community, and we were thrilled to learn that etherscan has already integrated Remix into their <!-- --><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"http:\/\/etherscan.io\/remix?txhash=0x7a45da60e04d397897f43b254a25bb96ee694ab07f3dd73d7d65e66f524a5a94\">blockchain explorer<!-- --><\/a>.<!-- --><\/p>\n<p><!-- --><\/p>\n<h2 class=\"chakra-heading css-1w54o5f\" id=\"repository-reorganisation\">Repository Reorganisation<!-- --><\/h2>\n<p>Bob Summerwill is committed to returning C++-Ethereum to its original location, https:\/\/github.com\/ethereum\/cpp-ethereum, thereby eliminating the unnecessary and perplexing division into multiple sub-repositories. We are making excellent strides in this area; one of the first noticeable actions was to decouple the Solidity testing infrastructure from the virtual machine implementation. The Solidity tests can now be compiled independently of the virtual machine and executed by interacting with a specifically configured eth process (the one referenced above) over the standard IPC interface.<br \/>\n<!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">The next steps involve untangling the remaining code, adjusting the test automation and continuous integration accordingly, and executing the actual transition.<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">Alongside this action, we regrettably have to <!-- --><b>part ways<\/b><!-- --><\/p>\n<p>&#8220;`to Mix and AlethZero<!-- --><\/b> (the essence of mix will persist in the upcoming remix initiative). The load they carry would be excessively large, as it encompasses Qt and a strong dependency on Solidity. As previously detailed in earlier communications, a flexible IPC-based association of these utilities to a compact client implementation grants us significantly greater adaptability, and the community backing that accompanies a transition to JavaScript and web-centric tools like remix and browser-solidity is simply unparalleled in comparison.<!-- --><\/p>\n<p><!-- --><\/p>\n<h2 class=\"chakra-heading css-1w54o5f\" id=\"formal-verification\">Formal Verification<!-- --><\/h2>\n<p>We are enhancing the current formal verification instruments incorporated with Solidity to accommodate cross-contract interactions. This would facilitate automated proofs that, for instance, a recursive call assault is infeasible against a specific contract. Additionally, since why3 (the utility we rely on for substantial processing) has recently been adapted for <!-- --><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"http:\/\/lists.gforge.inria.fr\/pipermail\/why3-club\/2016-June\/001350.html\">browsers<!-- --><\/a>, we can likely anticipate its availability directly within browser-solidity and other utilities like blockchain explorers!<br \/>\n<!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">A preliminary <!-- --><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"https:\/\/gist.github.com\/chriseth\/c4a53f201cd17fc3dd5f8ddea2aa3ff9\">proof of concept<!-- --><\/a> accompanied by explanations demonstrates how automated verification can be utilized to confirm that it is impossible to misappropriate funds from a Solidity contract, even if recursive calls are permitted.<!-- --><\/p>\n<p><!-- --><\/p>\n<p class=\"chakra-text css-gi02ar\">This proof of concept is expected to develop into a practical tool in the coming weeks.<!-- --><\/p>\n<p><!-- --><br \/>\nNumerous individuals from the community as well as from within the Foundation are presently engaged in developing tools for Solidity or the EVM in general. These encompass:<br \/>\n<!-- --><\/p>\n<ol role=\"list\" class=\"css-13a5a39\">\n<li class=\"css-cvpopp\">Solidity AST analysis for alerts by Dave Hoover (@redsquirrel)<!-- --><\/li>\n<li class=\"css-cvpopp\">A Read-Eval-Print variant of Solidity by raineorshine: <!-- --><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"https:\/\/github.com\/raineorshine\/solidity-repl\">Solidity-repl<!-- --><\/a><\/li>\n<li class=\"css-cvpopp\"><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"https:\/\/github.com\/raineorshine\/solgraph\">Control-flow analysis diagram<!-- --><\/a> also by raineorshine<!-- --><\/li>\n<li class=\"css-cvpopp\"><a target=\"_blank\" rel=\"noopener\" class=\"chakra-link css-ug8vf0\" href=\"https:\/\/github.com\/arachnid\/evmdis\">EVM disassembler<!-- --><\/a> by Nick Johnson<!-- --><\/li>\n<\/ol>\n<\/div>\n<p><br \/>\n<br \/><a href=\"https:\/\/blog.ethereum.org\/en\/2016\/07\/08\/c-dev-update-summer-edition\">Source link <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>&#8220;`html Since the previous C++ DEV Update, numerous developments have taken place in the engine room that were not particularly apparent externally. This article aims to provide a summary of our ongoing projects. Besides the features aspect, Bob has been focused on a suggested process for re-licensing the C++ runtime client code to Apache 2.0,<\/p>\n","protected":false},"author":3,"featured_media":8282,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[23],"tags":[1428],"class_list":["post-8923","post","type-post","status-publish","format-standard","has-post-thumbnail","category-ethereum","tag-return-a-list-of-comma-separated-tags-from-this-title-c-dev-update-july-edition"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>C++ Development Highlights - July Edition - 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\/02\/23\/c-development-highlights-july-edition\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C++ Development Highlights - July Edition - WSJ-Crypto\" \/>\n<meta property=\"og:description\" content=\"&#8220;`html Since the previous C++ DEV Update, numerous developments have taken place in the engine room that were not particularly apparent externally. This article aims to provide a summary of our ongoing projects. Besides the features aspect, Bob has been focused on a suggested process for re-licensing the C++ runtime client code to Apache 2.0,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/\" \/>\n<meta property=\"og:site_name\" content=\"WSJ-Crypto\" \/>\n<meta property=\"article:published_time\" content=\"2025-02-23T17:12:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wsj-crypto.com\/wp-content\/uploads\/2025\/02\/eth-org.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"2100\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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=\"5 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\/02\/23\/c-development-highlights-july-edition\/\",\"url\":\"https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/\",\"name\":\"C++ Development Highlights - July Edition - WSJ-Crypto\",\"isPartOf\":{\"@id\":\"https:\/\/wsj-crypto.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/wsj-crypto.com\/wp-content\/uploads\/2025\/02\/eth-org.jpeg\",\"datePublished\":\"2025-02-23T17:12:42+00:00\",\"author\":{\"@id\":\"https:\/\/wsj-crypto.com\/#\/schema\/person\/88a93723b30416db1a352d5a0096c4a7\"},\"breadcrumb\":{\"@id\":\"https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/#primaryimage\",\"url\":\"https:\/\/wsj-crypto.com\/wp-content\/uploads\/2025\/02\/eth-org.jpeg\",\"contentUrl\":\"https:\/\/wsj-crypto.com\/wp-content\/uploads\/2025\/02\/eth-org.jpeg\",\"width\":2100,\"height\":900},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/wsj-crypto.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C++ Development Highlights &#8211; July Edition\"}]},{\"@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":"C++ Development Highlights - July Edition - 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\/02\/23\/c-development-highlights-july-edition\/","og_locale":"it_IT","og_type":"article","og_title":"C++ Development Highlights - July Edition - WSJ-Crypto","og_description":"&#8220;`html Since the previous C++ DEV Update, numerous developments have taken place in the engine room that were not particularly apparent externally. This article aims to provide a summary of our ongoing projects. Besides the features aspect, Bob has been focused on a suggested process for re-licensing the C++ runtime client code to Apache 2.0,","og_url":"https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/","og_site_name":"WSJ-Crypto","article_published_time":"2025-02-23T17:12:42+00:00","og_image":[{"width":2100,"height":900,"url":"https:\/\/wsj-crypto.com\/wp-content\/uploads\/2025\/02\/eth-org.jpeg","type":"image\/jpeg"}],"author":"wsjcrypto","twitter_card":"summary_large_image","twitter_misc":{"Scritto da":"wsjcrypto","Tempo di lettura stimato":"5 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/","url":"https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/","name":"C++ Development Highlights - July Edition - WSJ-Crypto","isPartOf":{"@id":"https:\/\/wsj-crypto.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/#primaryimage"},"image":{"@id":"https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/#primaryimage"},"thumbnailUrl":"https:\/\/wsj-crypto.com\/wp-content\/uploads\/2025\/02\/eth-org.jpeg","datePublished":"2025-02-23T17:12:42+00:00","author":{"@id":"https:\/\/wsj-crypto.com\/#\/schema\/person\/88a93723b30416db1a352d5a0096c4a7"},"breadcrumb":{"@id":"https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/"]}]},{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/#primaryimage","url":"https:\/\/wsj-crypto.com\/wp-content\/uploads\/2025\/02\/eth-org.jpeg","contentUrl":"https:\/\/wsj-crypto.com\/wp-content\/uploads\/2025\/02\/eth-org.jpeg","width":2100,"height":900},{"@type":"BreadcrumbList","@id":"https:\/\/wsj-crypto.com\/index.php\/2025\/02\/23\/c-development-highlights-july-edition\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wsj-crypto.com\/"},{"@type":"ListItem","position":2,"name":"C++ Development Highlights &#8211; July Edition"}]},{"@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\/8923","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=8923"}],"version-history":[{"count":2,"href":"https:\/\/wsj-crypto.com\/index.php\/wp-json\/wp\/v2\/posts\/8923\/revisions"}],"predecessor-version":[{"id":8925,"href":"https:\/\/wsj-crypto.com\/index.php\/wp-json\/wp\/v2\/posts\/8923\/revisions\/8925"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wsj-crypto.com\/index.php\/wp-json\/wp\/v2\/media\/8282"}],"wp:attachment":[{"href":"https:\/\/wsj-crypto.com\/index.php\/wp-json\/wp\/v2\/media?parent=8923"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wsj-crypto.com\/index.php\/wp-json\/wp\/v2\/categories?post=8923"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wsj-crypto.com\/index.php\/wp-json\/wp\/v2\/tags?post=8923"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}