<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: @Vlad@</title>
    <description>The latest articles on DEV Community by @Vlad@ (@vladchernenko).</description>
    <link>https://dev.to/vladchernenko</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F864072%2F44f16df1-1b68-48c9-8462-56616e85d052.jpeg</url>
      <title>DEV Community: @Vlad@</title>
      <link>https://dev.to/vladchernenko</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vladchernenko"/>
    <language>en</language>
    <item>
      <title>KLYNTAR Virtual Machines. Part 0: KLY-EVM — shardable, low-level managed, mutable, and WASM-improved EVM.</title>
      <dc:creator>@Vlad@</dc:creator>
      <pubDate>Sun, 05 Mar 2023 23:39:45 +0000</pubDate>
      <link>https://dev.to/klyntar/klyntar-virtual-machines-part-0-kly-evm-shardable-low-level-managed-mutable-and-wasm-improved-evm-15cd</link>
      <guid>https://dev.to/klyntar/klyntar-virtual-machines-part-0-kly-evm-shardable-low-level-managed-mutable-and-wasm-improved-evm-15cd</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--xI15yN1p--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1r95uawm3p94u4turj09.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--xI15yN1p--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1r95uawm3p94u4turj09.png" alt="Image description" width="439" height="93"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--jT_xmWLD--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qcdurkc095rnlro7twqt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--jT_xmWLD--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qcdurkc095rnlro7twqt.png" alt="Image description" width="500" height="394"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Intro
&lt;/h2&gt;

&lt;p&gt;Hi, we're back in touch! With this story, we start a new cycle of articles about KLY. Here we'll discuss virtual machines available on KLYNTAR. You can find much interesting information about low-level management, the workflow of VMs execution, cross-vm interaction, and so on! Also, we'll publish a set of articles about different use cases of how to write contracts, and how to use KLY features available for different VMs( EVM &amp;amp; WASM &amp;amp; others) - predeployed contracts, special logs, WORA principle, mutations, and much more!&lt;/p&gt;

&lt;h2&gt;
  
  
  KLY-EVM
&lt;/h2&gt;

&lt;p&gt;Definitely, the most popular VM in the blockchain industry is EVM. Projects with EVM compatibility propose a well-known set of tools for developers for a quick start with their ecosystem. You even shouldn't learn new languages or work with docs - just use solidity docs, web3 library, and life is good!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--aeJ8h0x9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/buy2c013idse8tw0769y.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--aeJ8h0x9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/buy2c013idse8tw0769y.gif" alt="Image description" width="480" height="270"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Not all of the projects propose new features for their EVM port. But, it's not true in the case of KLYNTAR.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--hCXQSMgB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l89d4p40ptwz27ox579m.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--hCXQSMgB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l89d4p40ptwz27ox579m.png" alt="Image description" width="500" height="714"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Multi-level sharding - the implementation on EVM level🔥🔥🔥
&lt;/h2&gt;

&lt;p&gt;Probably, it's the hottest part of this article. As you remember from previous articles in our blog, we've discussed multi-level sharding implementation on KLY. It's here&lt;/p&gt;


&lt;div class="ltag__link"&gt;
  &lt;a href="https://klyntar.medium.com/klyntar-basics-part-0-architecture-%EF%B8%8F-fb948f89d73f" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s---fTOwCLw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://miro.medium.com/v2/resize:fill:88:88/1%2ALYF1mYjq5_c6anAtncEq5A.png" alt="KLYNTAR"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://klyntar.medium.com/klyntar-basics-part-0-architecture-%EF%B8%8F-fb948f89d73f" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;KLYNTAR Basics. Part 0: Architecture | by KLYNTAR | Medium&lt;/h2&gt;
      &lt;h3&gt;KLYNTAR ・ &lt;time&gt;Feb 21, 2023&lt;/time&gt; ・ 
      &lt;div class="ltag__link__servicename"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--YjpYcCMa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev.to/assets/medium-f709f79cf29704f9f4c2a83f950b2964e95007a3e311b77f686915c71574fef2.svg" alt="Medium Logo"&gt;
        klyntar.Medium
      &lt;/div&gt;
    &lt;/h3&gt;
&lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


&lt;p&gt;In the article about basics, you can get information about the first level of sharding - the whole ecosystem consists of a set of independent chains named symbiotes. Also, we're working on the next article in this cycle where you'll find out how sharding works on a single symbiote level, how the pool-per-chain principle works, and so on!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--lMbw3i9l--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wfi21sonplpyzddpl1fp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--lMbw3i9l--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wfi21sonplpyzddpl1fp.png" alt="Image description" width="423" height="76"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In this (still not published😅) article you can find the explanation of sharding inside a single symbiote and this illustration can help you.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--JChU-Uyn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/nvdynf89w0qc1ubevw9w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--JChU-Uyn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/nvdynf89w0qc1ubevw9w.png" alt="Image description" width="667" height="635"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Since all the subchains here are related to a single symbiote - all of them are part of a single system of accounts. Also, each symbiote will have its own &lt;em&gt;&lt;strong&gt;chainID&lt;/strong&gt;&lt;/em&gt; (the number for the EVM registry and 256/512-bit BLAKE3 hash for the KLY ecosystem).&lt;br&gt;
For example, our initial symbiote kNULL(which will be launched by KLYNTAR Team) will have 7331 as a chainID for EVM. You can see it here&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--dVEEje9x--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/eq92wah2oq33htmtulax.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--dVEEje9x--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/eq92wah2oq33htmtulax.png" alt="Image description" width="667" height="302"&gt;&lt;/a&gt;&lt;/p&gt;


&lt;div class="ltag_github-liquid-tag"&gt;
  &lt;h1&gt;
    &lt;a href="https://github.com/ethereum-lists/chains/pull/2335"&gt;
      &lt;img class="github-logo" alt="GitHub logo" src="https://res.cloudinary.com/practicaldev/image/fetch/s--A9-wwsHG--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev.to/assets/github-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg"&gt;
      &lt;span class="issue-title"&gt;
        KLYNTAR listing
      &lt;/span&gt;
      &lt;span class="issue-number"&gt;#2335&lt;/span&gt;
    &lt;/a&gt;
  &lt;/h1&gt;
  &lt;div class="github-thread"&gt;
    &lt;div class="timeline-comment-header"&gt;
      &lt;a href="https://github.com/VladChernenko"&gt;
        &lt;img class="github-liquid-tag-img" src="https://res.cloudinary.com/practicaldev/image/fetch/s--M_a5-vaM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://avatars.githubusercontent.com/u/53381472%3Fv%3D4" alt="VladChernenko avatar"&gt;
      &lt;/a&gt;
      &lt;div class="timeline-comment-header-text"&gt;
        &lt;strong&gt;
          &lt;a href="https://github.com/VladChernenko"&gt;VladChernenko&lt;/a&gt;
        &lt;/strong&gt; posted on &lt;a href="https://github.com/ethereum-lists/chains/pull/2335"&gt;&lt;time&gt;Feb 26, 2023&lt;/time&gt;&lt;/a&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;div class="ltag-github-body"&gt;
      &lt;div&gt;
&lt;h3&gt;
&lt;span class="octicon octicon-link"&gt;&lt;/span&gt;KLYNTAR - nextgen, "cloud-of-everything" project that relies on decentralization &amp;amp; security &amp;amp; TPS of all blockchains in the industry, has multilevel sharding, multitasking, EVM &amp;amp; WASM &amp;amp; Docker compatibility, post-quantum cryptography, RWX codeless smart-contracts, etc.&lt;/h3&gt;
&lt;p&gt;&lt;a href="https://github.com/KLYN74R"&gt;🔥Follow us!🔥&lt;/a&gt;&lt;/p&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/53381472/220953430-e8841c35-1832-411d-b0da-a8247c8242b7.jpg"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Bcoxe_PZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://user-images.githubusercontent.com/53381472/220953430-e8841c35-1832-411d-b0da-a8247c8242b7.jpg"&gt;&lt;/a&gt;
&lt;/div&gt;

    &lt;/div&gt;
    &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/ethereum-lists/chains/pull/2335"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;


&lt;p&gt;So, exactly on the subchains level, we need to implement the sharding for EVM. But, to make it possible to securely bind accounts to the appropriate subchain(shard) we should dive deep into bytecodes, the workflow of EVM execution(via debugging), and so on. Should be interesting!&lt;/p&gt;

&lt;h2&gt;
  
  
  General idea
&lt;/h2&gt;

&lt;p&gt;Back to our picture with subchains&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--tmX_droP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/x9uuk86n2h4b10v8lleq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--tmX_droP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/x9uuk86n2h4b10v8lleq.png" alt="Image description" width="667" height="635"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;strong&gt;&amp;gt; The simple idea of sharding on KLY is to bind accounts(default and accounts of smart contracts) to a single subchain and deny all attempts of state changes from txs from other subchains. This image can help you to understand:&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--RHhLpbd8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l76b8fbitkyj6t4uz547.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--RHhLpbd8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l76b8fbitkyj6t4uz547.png" alt="Image description" width="800" height="556"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Here you see that if you bind your account to a subchain A this is a signal for everyone that the state of your contract or default account can be changed only via transactions via the same subchain. Why it's cool?!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--RU78pIvI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fuavcia46w34tepbv32t.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--RU78pIvI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fuavcia46w34tepbv32t.png" alt="Image description" width="600" height="478"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Because now, we can separate the work and explore each symbiote independently. In simple words - you can run the special software from the Bumblebee packet which will be the backend for explorers &amp;amp; wallets and set the subchain to track changes.&lt;/p&gt;

&lt;p&gt;Since the block time is short and TTF(time-to-finality) is instant - you can easily get updates of state from each symbiote in a parallel way.&lt;/p&gt;

&lt;p&gt;Sounds good and it seems we can implement it. For KLY-VM(WASM based) it's easy because all the state is changed via KLYNTAR core level and these operations are transparent for us. Even, advanced logic like cross-contract calls can be tracked, because this functionality is passed to the wasm module as an injected dependency from the JS context. For instance, here is an example from KLY-VM tests:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--X8WeD_HN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/zdugdm624d4oz60ldrl1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--X8WeD_HN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/zdugdm624d4oz60ldrl1.png" alt="Image description" width="667" height="629"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/KLYN74R/KlyntarCore/blob/4a6d798d885829378322265f007ed19ffc56a270/KLY_Tests/klyntar_vm/AssemblyScript/use.js"&gt;Here is example&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the same way, a contract changes its own state and the state of other accounts/contracts.&lt;/p&gt;

&lt;p&gt;But what about EVM? Let's use reverse engineering skills and try to debug.&lt;/p&gt;

&lt;h2&gt;
  
  
  Low-level control
&lt;/h2&gt;

&lt;p&gt;To reverse the workflow of EVM on the deep level - we've built the graph of workflow. It helps us to dive into the bytecode level of executing, to see the stack changes and black-boxed values of EVM inside. This is how this graph looks like:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--4WKX3def--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/do5hpdfqu28cm7xeze2b.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--4WKX3def--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/do5hpdfqu28cm7xeze2b.png" alt="Image description" width="800" height="460"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--3RdtmNQi--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6niiepbe3aj1brsdksdu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--3RdtmNQi--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6niiepbe3aj1brsdksdu.png" alt="Image description" width="720" height="442"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--OYamt9-N--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/dktsesnx6jfq8lrfptrf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--OYamt9-N--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/dktsesnx6jfq8lrfptrf.png" alt="Image description" width="720" height="418"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;strong&gt;&amp;gt; Our goal is to allow changes of contract X only from transactions on subchain A. For this, we should track all the accounts whose state will be changed and revert &amp;amp; stop the execution in case the transaction tries to change the account state that is bound to subchain B&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The dangerous moment here is that we should remember about so advanced stuff like cross-contract calls, delegations, and so on! We know about it😅&lt;/p&gt;

&lt;p&gt;When EVM is going to change the state of some account the address of its will be added to the inner property _touched - this is the set of accounts whose state will be changed in a certain tx.&lt;/p&gt;

&lt;p&gt;For demonstration, we have a repository with an example of a cross-contract call and the results of debug process. You can find &amp;amp; try it &lt;a href="https://medium.com/r/?url=https%3A%2F%2Fgithub.com%2FKLYN74R%2FKlyntarEVMTests%2Ftree%2Fmain%2Fbytecode_tracing_test"&gt;here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Here we try to deploy 2 contracts - &lt;strong&gt;&lt;em&gt;Caller&lt;/em&gt;&lt;/strong&gt; and &lt;strong&gt;&lt;em&gt;Receiver&lt;/em&gt;&lt;/strong&gt;. Inside contract Caller.sol there is a function for cross-contract execution which calls a function inside Receiver.sol contract. We'll deploy using our account &lt;strong&gt;0xbe862ad9abfe6f22bcb087716c7d89a26051f74c&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--I3ENagtM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/mqyolc7fj6nfpxnnlasq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--I3ENagtM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/mqyolc7fj6nfpxnnlasq.png" alt="Image description" width="800" height="608"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--HHBYnnfc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wx12e4fxtx55qgmu6i11.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--HHBYnnfc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wx12e4fxtx55qgmu6i11.png" alt="Image description" width="800" height="541"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After deployment, we can see these logs&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--nTuEPlzp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qq0dip8ifbctj5y73096.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--nTuEPlzp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qq0dip8ifbctj5y73096.jpg" alt="Image description" width="667" height="306"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And, if we manually override the debug logic inside the EVM source code and call the function &lt;em&gt;&lt;strong&gt;crossContractCallFromCallerToReceiver()&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--rxbQwCql--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/429dgs97p6ijxobhnruq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--rxbQwCql--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/429dgs97p6ijxobhnruq.png" alt="Image description" width="800" height="527"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;we can see this:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--d2phzVFF--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/r5dqj01123d1uthenxir.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--d2phzVFF--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/r5dqj01123d1uthenxir.png" alt="Image description" width="462" height="152"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;As you see - this set contains all the addresses that will be changed during operation.&lt;/p&gt;

&lt;p&gt;This is exactly what we need because now we can override the logic of the function which add the address to this set. We need to stop execution once we detect binding to another subchain.&lt;/p&gt;

&lt;p&gt;This function is &lt;strong&gt;&lt;em&gt;touchAccount()&lt;/em&gt;&lt;/strong&gt; inside the vmState.js module from &lt;em&gt;&lt;strong&gt;@ethereumjs/vm/eei&lt;/strong&gt;&lt;/em&gt; package. The modified function looks like this:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--IgLVZtu0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ogimor9aaargft0h0t7g.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--IgLVZtu0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ogimor9aaargft0h0t7g.png" alt="Image description" width="800" height="345"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In simple words, an exception will be thrown and vm will be reverted. The extra logic also contains work with mempool to allow the JSON-RPC server to accept the transactions, and test them in the sandbox with wished context(useful for load balancers, explorers, etc.) before adding to mempool(some filtration practice).&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;strong&gt;&amp;gt; So, in simple words &amp;amp; using examples we've demonstrated to you a proof of concept(PoC) of future KLY-EVM.&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Mutations principle
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--zzs_CItC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/05qmhnq0z6ia29nxsi0s.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--zzs_CItC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/05qmhnq0z6ia29nxsi0s.gif" alt="Image description" width="800" height="600"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We wouldn't be ourselves if we didn't go even further. During research work, we noticed tons of interesting moments of EVM, and going to add them to KLY-EVM.&lt;/p&gt;

&lt;p&gt;Since KLYNTAR is a mutable project, you'll have the ability to add mutations for EVM workflows.&lt;/p&gt;

&lt;p&gt;For example, the stack tracing looks like this:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--_iWcE5h9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/x4l2zdj11vxi4ij1bb1y.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--_iWcE5h9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/x4l2zdj11vxi4ij1bb1y.png" alt="Image description" width="667" height="294"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The &lt;em&gt;&lt;strong&gt;interpreter.js&lt;/strong&gt;&lt;/em&gt; has the following code:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--sSO6vmrQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/m2dnqox6a256y43fxmw6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--sSO6vmrQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/m2dnqox6a256y43fxmw6.png" alt="Image description" width="800" height="826"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;…and opcodes list looks like this:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--cfYbuuVZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/s63skymrw0jcvwxp3p9f.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--cfYbuuVZ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/s63skymrw0jcvwxp3p9f.png" alt="Image description" width="800" height="531"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;&amp;gt; What it gives us? Why it's cool and what we can do with it?&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;We'll with this low-level control we can create different custom mutations of EVM - with different gas prices for opcodes, custom opcodes, custom inner logic, change the execution context for different contracts &amp;amp; addresses, use the off-chain functionality, and much more! It's like having a super-powerful debugger and doing everything that you want.&lt;/p&gt;

&lt;p&gt;We promised you that KLY-EVM is a gigachad. Hope, we proved it)&lt;/p&gt;

&lt;h2&gt;
  
  
  WORA - write functionality for EVM with WASM
&lt;/h2&gt;

&lt;p&gt;It will be the topic of one of the next articles, but since we have a WASM-compatible VM on the board, we should remind you about the ability to use WASM modules for EVM.&lt;/p&gt;

&lt;p&gt;Long story short, we assume that it will be worked as a callback mechanism where you stop the EVM execution, call the WASM module, and return to EVM execution with new/extra values.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--VZuSebKL--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/kwmp5ck635opcte0iu7m.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--VZuSebKL--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/kwmp5ck635opcte0iu7m.png" alt="Image description" width="692" height="210"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;But wait for the article)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--_OXAB7hP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jnt7pgo2iscwoeo5xw8t.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--_OXAB7hP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jnt7pgo2iscwoeo5xw8t.gif" alt="Image description" width="368" height="210"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;p&gt;Damn, this article looks so hot! Detailed, simple, with examples — perfect! We’re working to make KLY the leading project. Not only in the crypto industry. But too.&lt;/p&gt;

&lt;p&gt;With KLY-EVM we started another cycle of articles in our blog. Hope, you find it interesting. We’ll try to publish such articles often to get you a detailed explanation of all the components of KLY ecosystem.&lt;/p&gt;

&lt;p&gt;Just imagine your first time launching the KLY node🤩&lt;/p&gt;

&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="http://klyntar.org"&gt;http://klyntar.org&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://t.me/KLYN74R"&gt;https://t.me/KLYN74R&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/KLYN74R"&gt;https://github.com/KLYN74R&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://mastering.klyntar.org"&gt;https://mastering.klyntar.org&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://ru.mastering.klyntar.org"&gt;https://ru.mastering.klyntar.org&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.reddit.com/r/KLYN74R/"&gt;https://www.reddit.com/r/KLYN74R/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://discord.com/invite/f7e7fCp97r"&gt;https://discord.com/invite/f7e7fCp97r&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/KLYN74R/KlyntarEVM"&gt;https://github.com/KLYN74R/KlyntarEVM&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>web3</category>
      <category>blockchain</category>
      <category>crypto</category>
      <category>cryptocurrency</category>
    </item>
    <item>
      <title>KLYNTAR Basics. Part 1: The idea of multistaking on KLY for the theoretical maximum security &amp; decentralization😼</title>
      <dc:creator>@Vlad@</dc:creator>
      <pubDate>Wed, 22 Feb 2023 17:54:42 +0000</pubDate>
      <link>https://dev.to/klyntar/klyntar-basics-part-1-the-idea-of-multistaking-on-kly-for-the-theoretical-maximum-security-decentralization-56ij</link>
      <guid>https://dev.to/klyntar/klyntar-basics-part-1-the-idea-of-multistaking-on-kly-for-the-theoretical-maximum-security-decentralization-56ij</guid>
      <description>&lt;p&gt;Super hot article on our Medium blog about multistaking on KLYNTAR. Continue our articles marathon. Meet the multistaking mechanism on KLYNTAR - stake your bitcoins, ethers, ada, NFTs, etc. to make KLY the most decentralized ecosystem protected by trillions🏃&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd9xoex03llrnqcw6rusl.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd9xoex03llrnqcw6rusl.jpg" alt="Multistaking visualization by Midjourney" width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;


&lt;div class="ltag__link"&gt;
  &lt;a href="https://klyntar.medium.com/klyntar-basics-part-1-multistaking-for-the-theoretical-maximum-security-decentralization-2102dbec2c7" class="ltag__link__link" rel="noopener noreferrer"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fv2%2Fresize%3Afill%3A64%3A64%2F1%2ALYF1mYjq5_c6anAtncEq5A.png" alt="KLYNTAR"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://klyntar.medium.com/klyntar-basics-part-1-multistaking-for-the-theoretical-maximum-security-decentralization-2102dbec2c7" class="ltag__link__link" rel="noopener noreferrer"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;KLYNTAR Basics. Part 1: The idea of multistaking on KLY for the theoretical maximum security &amp;amp; decentralization😼 | by KLYNTAR | Medium&lt;/h2&gt;
      &lt;h3&gt;KLYNTAR ・ &lt;time&gt;Apr 18, 2024&lt;/time&gt; ・ 
      &lt;div class="ltag__link__servicename"&gt;
        &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fassets.dev.to%2Fassets%2Fmedium-f709f79cf29704f9f4c2a83f950b2964e95007a3e311b77f686915c71574fef2.svg" alt="Medium Logo"&gt;
        klyntar.Medium
      &lt;/div&gt;
    &lt;/h3&gt;
&lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>watercooler</category>
    </item>
    <item>
      <title>KLYNTAR Basics. Part 0: Architecture</title>
      <dc:creator>@Vlad@</dc:creator>
      <pubDate>Tue, 21 Feb 2023 21:05:56 +0000</pubDate>
      <link>https://dev.to/klyntar/klyntar-basics-part-0-architecture-1k64</link>
      <guid>https://dev.to/klyntar/klyntar-basics-part-0-architecture-1k64</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;&lt;em&gt;Everything starts at the beginning&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;The fun begins…&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;The heart of each system is architecture. With this article, we start probably the most interesting cycle of articles in our blog.&lt;/p&gt;

&lt;p&gt;In the following sections &amp;amp; articles, you will learn about how KLYNTAR works, its components, architecture, workflows, and so on. We will try to give both a good general idea and dive into some details so that you can easily start studying further sections.&lt;/p&gt;

&lt;p&gt;It is also worth warning that KLYNTAR may seem complicated to you initially, but in our world, everything works like that. Computers, economics, physics — all this is difficult to some extent, but only because there are great opportunities behind it.&lt;/p&gt;

&lt;p&gt;If you have any difficulty understanding, do not hesitate to ask us questions. We also expect you to actively participate in the development of the project.😀😀😀&lt;/p&gt;

&lt;p&gt;Read the article on our Medium blog. It's must-have )&lt;/p&gt;


&lt;div class="ltag__link"&gt;
  &lt;a href="https://klyntar.medium.com/klyntar-basics-part-0-architecture-%EF%B8%8F-fb948f89d73f" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Aj9XydOs--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://miro.medium.com/fit/c/96/96/1%2A3zLv0rTMvn9hklfa5Hz5eQ.jpeg" alt="KLYNTAR"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://klyntar.medium.com/klyntar-basics-part-0-architecture-%EF%B8%8F-fb948f89d73f" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;KLYNTAR Basics. Part 0: Architecture | by KLYNTAR | Feb, 2023 | Medium&lt;/h2&gt;
      &lt;h3&gt;KLYNTAR ・ &lt;time&gt;Feb 21, 2023&lt;/time&gt; ・ 
      &lt;div class="ltag__link__servicename"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--hnDHPsJs--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev.to/assets/medium-f709f79cf29704f9f4c2a83f950b2964e95007a3e311b77f686915c71574fef2.svg" alt="Medium Logo"&gt;
        klyntar.Medium
      &lt;/div&gt;
    &lt;/h3&gt;
&lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>web3</category>
      <category>crypto</category>
      <category>blockchain</category>
      <category>cloud</category>
    </item>
    <item>
      <title>Cryptoland. Part 0: Types of addresses on KLYNTAR — post-quantum, multisig, tbls, ed25519 🔥</title>
      <dc:creator>@Vlad@</dc:creator>
      <pubDate>Tue, 21 Feb 2023 12:35:29 +0000</pubDate>
      <link>https://dev.to/klyntar/cryptoland-part-0-types-of-addresses-on-klyntar-post-quantum-multisig-tbls-ed25519-25nd</link>
      <guid>https://dev.to/klyntar/cryptoland-part-0-types-of-addresses-on-klyntar-post-quantum-multisig-tbls-ed25519-25nd</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; This is the short paraphrase taken from MasteringKlyntar book. Read it &lt;a href="https://mastering.klyntar.org/" rel="noopener noreferrer"&gt;here&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Intro
&lt;/h2&gt;

&lt;p&gt;Hello folks👋 After a short break, we’re again here. Working on plan for articles that we’re going to publish, we’ve decided to split it into series.&lt;/p&gt;

&lt;p&gt;This is the first article related to cryptography on KLYNTAR. The set of articles under such title will be called Cryptoland, so if you see this label — you can be sure that something interesting is waiting for you.&lt;/p&gt;

&lt;p&gt;To warm up, we want to tell you about type of addresses on KLYNTAR, because that’s what you as users have to deal with very often to interact with KLY ecosystem. Let’s get it started!&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;strong&gt;&amp;gt; By the way, today we present just a short intro. We’ll discuss more in details in the next parts of Cryptoland set of articles&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Traditionally, read this article on our Medium blog😉&lt;/p&gt;


&lt;div class="ltag__link"&gt;
  &lt;a href="https://klyntar.medium.com/cryptoland-part-1-types-of-addresses-on-klyntar-post-quantum-multisig-tbls-ed25519-981277963ced" class="ltag__link__link" rel="noopener noreferrer"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiro.medium.com%2Fv2%2Fresize%3Afill%3A64%3A64%2F1%2ALYF1mYjq5_c6anAtncEq5A.png" alt="KLYNTAR"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://klyntar.medium.com/cryptoland-part-1-types-of-addresses-on-klyntar-post-quantum-multisig-tbls-ed25519-981277963ced" class="ltag__link__link" rel="noopener noreferrer"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;Cryptoland. Part 0: Types of addresses on KLYNTAR — post-quantum, multisig, tbls, ed25519 🔥 | by KLYNTAR | Medium&lt;/h2&gt;
      &lt;h3&gt;KLYNTAR ・ &lt;time&gt;Apr 18, 2024&lt;/time&gt; ・ 
      &lt;div class="ltag__link__servicename"&gt;
        &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fassets.dev.to%2Fassets%2Fmedium-f709f79cf29704f9f4c2a83f950b2964e95007a3e311b77f686915c71574fef2.svg" alt="Medium Logo"&gt;
        klyntar.Medium
      &lt;/div&gt;
    &lt;/h3&gt;
&lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
    </item>
    <item>
      <title>KLYNTAR or how we spent several years to build the Gigachad of crypto industry🤖</title>
      <dc:creator>@Vlad@</dc:creator>
      <pubDate>Tue, 21 Feb 2023 06:50:38 +0000</pubDate>
      <link>https://dev.to/klyntar/klyntar-or-how-we-spent-several-years-to-build-the-gigachad-of-crypto-industry-1n2a</link>
      <guid>https://dev.to/klyntar/klyntar-or-how-we-spent-several-years-to-build-the-gigachad-of-crypto-industry-1n2a</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Lost time is never found again — Benjamin Franklin&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;As experienced readers, we understand that it’s annoying to spend time for a non-interesting article. As a developer, I want to get useful info instantly, ASAP about new project to understand the value of it.&lt;/p&gt;

&lt;p&gt;We appreciate our followers and users, that’s why here are the highlights of KLYNTAR. In the end you’ll find links to our docs &amp;amp; social media where you can find more info and start follow us.&lt;/p&gt;

&lt;p&gt;The full article is available on our Medium blog🤗 &lt;/p&gt;


&lt;div class="ltag__link"&gt;
  &lt;a href="https://klyntar.medium.com/klyntar-or-how-we-spent-several-years-to-build-the-gigachad-of-crypto-industry-8e38bb055117" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s---fTOwCLw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://miro.medium.com/v2/resize:fill:88:88/1%2ALYF1mYjq5_c6anAtncEq5A.png" alt="KLYNTAR"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://klyntar.medium.com/klyntar-or-how-we-spent-several-years-to-build-the-gigachad-of-crypto-industry-8e38bb055117" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;KLYNTAR or how we spent several years to build the Gigachad of crypto industry🤖 | by KLYNTAR | Medium&lt;/h2&gt;
      &lt;h3&gt;KLYNTAR ・ &lt;time&gt;Jul 3, 2023&lt;/time&gt; ・ 
      &lt;div class="ltag__link__servicename"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--YjpYcCMa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev.to/assets/medium-f709f79cf29704f9f4c2a83f950b2964e95007a3e311b77f686915c71574fef2.svg" alt="Medium Logo"&gt;
        klyntar.Medium
      &lt;/div&gt;
    &lt;/h3&gt;
&lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>web3</category>
      <category>klyntar</category>
      <category>crypto</category>
    </item>
  </channel>
</rss>
