<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:cc="http://cyber.law.harvard.edu/rss/creativeCommonsRssModule.html">
    <channel>
        <title><![CDATA[iobuilders - Medium]]></title>
        <description><![CDATA[Welcome to io.Builders blog, we are a blockchain technology company. - Medium]]></description>
        <link>https://medium.com/iobuilders?source=rss----fe0e9e0edc94---4</link>
        <image>
            <url>https://cdn-images-1.medium.com/proxy/1*TGH72Nnw24QL3iV9IOm4VA.png</url>
            <title>iobuilders - Medium</title>
            <link>https://medium.com/iobuilders?source=rss----fe0e9e0edc94---4</link>
        </image>
        <generator>Medium</generator>
        <lastBuildDate>Fri, 15 May 2026 23:23:40 GMT</lastBuildDate>
        <atom:link href="https://medium.com/feed/iobuilders" rel="self" type="application/rss+xml"/>
        <webMaster><![CDATA[yourfriends@medium.com]]></webMaster>
        <atom:link href="http://medium.superfeedr.com" rel="hub"/>
        <item>
            <title><![CDATA[Exploring Canton Network: A Deep Dive into Privacy-First Distributed Ledgers]]></title>
            <link>https://medium.com/iobuilders/exploring-canton-network-a-deep-dive-into-privacy-first-distributed-ledgers-58046e0901a7?source=rss----fe0e9e0edc94---4</link>
            <guid isPermaLink="false">https://medium.com/p/58046e0901a7</guid>
            <dc:creator><![CDATA[Miguel_LZPF]]></dc:creator>
            <pubDate>Wed, 20 Aug 2025 06:58:43 GMT</pubDate>
            <atom:updated>2025-08-20T06:58:43.314Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*yUnmKypzT016MP_YXoAx5w.png" /></figure><h3>What You’ll Learn</h3><ul><li>Canton Network architecture and key differences from traditional blockchains</li><li>Our proof of concept setup and implementation approach</li><li>EVM vs. Canton development paradigm comparison</li><li>DAML developer experience and tooling assessment</li><li>Key takeaways for institutional DLT adoption</li></ul><h3>Introduction</h3><p>Between March and April 2025, the R&amp;D team at ioBuilders conducted research on the Canton Network to better understand the technology and explore its potential integration into our products and services. The research primarily involved a proof of concept (PoC), in which several participants minted and exchanged fungible tokens. This article summarizes our findings and key takeaways.</p><h3>Canton overall description</h3><p>The <strong>Canton Network</strong> is a distributed ledger interoperability protocol designed to solve key limitations found in many blockchain systems — namely scalability, privacy, and composability. Unlike traditional blockchains that maintain a global shared state, Canton allows multiple ledgers to operate independently while still functioning as part of a cohesive, virtual global ledger. This architecture enables institutions to collaborate and share data securely without sacrificing performance or regulatory compliance.</p><p>At the core of Canton is the <strong>Daml smart contract language</strong>, which enforces strict authorization rules and fine-grained privacy. It ensures that only relevant parties can access data and actions within a workflow. This privacy model, combined with Canton’s unique architecture, supports <strong>GDPR compliance</strong> through principles like data minimization and the ability to prune transaction history. Contracts are visible only to authorized stakeholders, and transaction data is split, sequenced, and delivered securely to each party involved.</p><p>Canton supports <strong>scalability</strong> by avoiding the bottlenecks of global consensus. Transactions are processed in <strong>synchronization domains</strong>, which handle message sequencing and ensure total ordering of transaction steps without replicating state globally. This structure allows for <strong>parallel execution</strong> of workflows and seamless <strong>composability</strong> between applications, making Canton ideal for complex financial operations. Smart contracts remain active only as needed and are tracked through the Active Contracts Set (ACS), which represents the network’s evolving state.</p><p>While Canton is <strong>not a blockchain</strong> in the conventional sense, it delivers many of the benefits associated with DLT — such as auditability, decentralized trust, and atomic transaction finality — without the downsides of global replication. However, the system does rely on trusted synchronization domain operators, introducing a layer of trust that contrasts with fully permissionless blockchains like Ethereum. Still, Canton’s model enables enhanced <strong>privacy, performance, and regulatory alignment</strong>, making it a compelling foundation for institutional-grade digital infrastructure.</p><h3>Network</h3><p>The canton network can be represented like this:</p><ul><li><strong>Party</strong> : users (person, legal entity, …) interacting with Canton’s application</li><li><strong>Participant node</strong> : enable users to connect to the canton network.</li><li><strong>Domain node </strong>: backbone of the canton network.</li><li><strong>Cantons message service</strong> : provides a total order on transaction requests within a domain.</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/892/1*sNtvEfsIuFjly788Hu17Bg.png" /></figure><h3>Transaction flow</h3><p>A Canton transaction is submitted to the network by the “<strong>submitter</strong>” and works as follows:</p><ul><li><strong>Submitter</strong> (Bob) splits the transaction up into messages according to the Daml privacy model (one chunk per party involved)</li><li>Submitter batches all the messages and sends to the domain’s <strong>sequencer</strong> =&gt; <strong>Confirmation request</strong></li><li><strong>Sequencer</strong> orders, timestamps and distributes the messages to the <strong>recipients</strong> (involved parties)</li><li><strong>Recipients</strong> verify the message correctness.<br>- <strong>All OK </strong>: they attempt to lock the contract(s) consumed by the transaction and send a positive response =&gt; Confirmation response</li></ul><blockquote>ℹ️ A contract must be locked before it can be consumed. If a contract is already locked (because it was requested in a different transaction flow) it can’t be locked again and the recipient would retruned a negative response.</blockquote><ul><li><strong>KO</strong> : send a negative response =&gt; Confirmation response</li><li><strong>Mediator</strong> received all the confirmation responses, aggregates them, sign it and sends it to the transaction’s participants.</li><li><strong>Participants</strong> receive the mediator aggregated response.<br>- <strong>All OK :</strong> execute the transaction (consume contracts, create new ones etc…) and release the lock.<br>- <strong>KO</strong> : release the lock.</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/924/1*YI-tk3-PRZb1fPUF2OuoHw.png" /></figure><h3>PoC Definition</h3><p>Canton promises <strong>privacy</strong> and <strong>programmability</strong>. Our goal with this proof of concept (PoC) is to get a sense of the complexity involved in designing and building applications using Canton, in comparison to Solidity/EVM.</p><p>To achieve this, we focused on developing a <strong>simple application</strong>, keeping the smart contracts, backend, and test logic as minimal as possible.</p><h3>Scope</h3><ul><li>There are <strong>three organizations</strong>: Alice, Bob, and Charlie and a Bank.</li><li>All necessary <strong>infrastructure is deployed</strong> locally(participant nodes, sync domain, etc.).</li><li>Using DAML, a <strong>fungible token</strong> is implemented, including a <strong>transfer operation</strong>.</li><li>Every transfer <strong>emits an event</strong>.</li><li><strong>No organization</strong> (Alice, Bob, or Charlie) can <strong>see the balance</strong> of the others.</li><li>The application must be able to <strong>query the ledger from each organization’s perspective </strong>and confirm that no organization can see others’ balances.</li></ul><h3>Test scenarios</h3><ol><li><strong>Alice transfers 5 tokens to Bob</strong></li></ol><ul><li>Queries confirm that:<br>- Balances have changed correctly.<br>- Each organization still cannot see the balances of the others.</li><li>The <strong>transfer event</strong> is captured.</li></ul><p>2. <strong>Bob transfers 2 tokens to Charlie</strong></p><ul><li>Again, queries verify that:<br>- Balances are updated.<br>- Privacy is maintained across all organizations.</li></ul><h3>Key Questions We Aim to Answer</h3><ul><li>Which <strong>Canton Network components</strong> were used (node types, APIs, libraries, etc.)?</li><li>What are the key <strong>differences between the EVM and Canton paradigms</strong> when it comes to designing and building applications?</li><li>What are the <strong>steps to design, develop, and deploy</strong> an application using DAML?</li><li>From an EVM-solution developer’s perspective, <strong>how easy or complex</strong> is it to work with DAML</li><li>How well do the <strong>development tools</strong> (IDE, SDK, etc.) support the process?</li></ul><h3>PoC Implementation</h3><p>The PoC was divided in three modules:</p><ul><li><strong>Smart contracts</strong> : where all the DAML scripts and smart contracts were implemented</li><li><strong>Infrastructure</strong> : where the local network was configured and deployed</li><li><strong>CLI</strong> : a simple typescript CLI to interact with a local version of Canton</li></ul><h3>Smart contracts</h3><p>We used “DAML standard” and “DAML finance” smart contract libraries to implement the following scripts and workflow smart contracts.</p><ul><li>Scripts<br>- setupHolding: initializes the accounts and the token.</li><li>Workflows<br>- CreateAccount.daml: creates a new account (Alice, Bob, Charlie, Bank)<br>- CreditAccount.daml: mints new tokens in any of the accounts<br>- Transfer.daml: transfer tokens between two accounts</li></ul><h3>Infrastructure</h3><p>For this Proof of Concept (PoC), a local Canton network was constructed to provide a stable and observable testing environment. The focus was on a straightforward setup that allowed for a clear understanding of Canton’s core architectural components and operational model.</p><h3>Local Deployment and Configuration</h3><p>The network was deployed on a local “bare-metal” machine rather than using a containerized approach like Docker. This method was chosen because it offered a more direct and well-documented path for an initial PoC (as of April 2025), making it easier to control and monitor the environment. The architecture of our network was defined in a central configuration file and consisted of:</p><ul><li><strong>Five Participant Nodes:</strong> Each node represented a sovereign entity, responsible for storing its own private data and running its side of the smart contracts.</li><li><strong>Two Domain Nodes:</strong> These acted as secure communication hubs or “synchronization domains.” They ensured that encrypted transaction messages between participants were correctly ordered and delivered without being able to read the contents. This setup, with one participant connected to both domains, was specifically designed to test interoperability.</li></ul><h3>Data Persistence with PostgreSQL</h3><p>To ensure that the network’s state was saved and would persist through restarts, <strong>PostgreSQL</strong> was used as the storage backend. This is a critical step up from a purely in-memory test. Following best practices for this type of architecture, each node in the network — both participants and domains — was configured with its own dedicated database. This separation prevents data bottlenecks and ensures that each component runs efficiently and independently.</p><h3>Network Operation and Monitoring</h3><p>The local network was started and managed using the command-line. An initial bootstrap script was used to automatically configure the connections between the nodes. For all subsequent restarts, this script was omitted to ensure the network loaded its state from the PostgreSQL databases.</p><p>The primary tool for interacting with the live network was the <strong>Canton Console</strong>, an interactive command-line interface (REPL). This console proved invaluable for monitoring and administration, allowing the team to easily check the health and status of nodes, list which parties were connected to each domain, and manage the deployed smart contracts.</p><p>In summary, the infrastructure setup provided a successful foundation for the PoC. It highlighted that Canton’s architecture, while powerful, can be deployed locally in a straightforward manner for development and testing. It also made clear that moving from a PoC to a production environment would require more advanced solutions, such as container orchestration with Docker/Kubernetes and high-availability database clusters, to ensure reliability and scalability.</p><h3>CLI</h3><p>The CLI exposed the following functionality.</p><h3>Create Account</h3><ul><li>Alice requested an account to be created</li><li>The Bank accepted (or rejected) the request</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/512/1*h5u6iE5OlCh3EiHBYUsKDw.png" /></figure><h3>Mint</h3><ul><li>Alice requested some tokens to be minted to her account</li><li>The Bank accepted (or rejected) the request</li><li>A New Holding SC, representing the newly minted tokens, would be created and linked to the token and Alice’s Account</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/516/1*byKY7TQ4XSftcFvluAjI6g.png" /></figure><h3>Transfer</h3><ul><li>Bob requested some tokens to be transfered from Alice’s Acccount</li><li>Alice accepted (or rejected) the request</li><li>One or Many Alice’s holdings (for a total balance equal to the transfer amount) would be transferred to Bob.</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/609/1*vfHm5hpvzwCX4w3No6ZzgQ.png" /></figure><h3>PoC Results</h3><p>This Proof of Concept was designed to answer key questions about the Canton ecosystem, from its core components to the developer experience. The following sections summarize our findings.</p><h3>Which Canton Network components were used?</h3><p>The PoC leveraged a combination of infrastructure nodes, smart contract libraries, and client-side modules to build and interact with the application.</p><ul><li><strong>Infrastructure Components:</strong> The network was built using essential Canton nodes, including five <strong>Participant Nodes</strong> to represent the organizations and two <strong>Domain Nodes</strong> to facilitate secure communication. For data persistence, <strong>PostgreSQL</strong> was configured as the storage backend for each node.</li><li><strong>DAML Libraries:</strong> The smart contract logic relied heavily on standard and finance-specific DAML libraries to manage accounts, instruments, and holdings.<br>- <strong>Standard Libraries:</strong> DA.Map, DA.Set, Daml.Script<br>- <strong>DAML Finance Libraries:</strong> A suite of modules for Account, Instrument, Holding, and Token interfaces.</li><li><strong>JavaScript Client Libraries:</strong> To interact with the Canton ledger from the command-line interface (CLI), we used the @daml/ledger and @daml/types packages (v2.10.0).</li></ul><h3>Key Differences Between EVM (Ethereum) and Canton Paradigms</h3><h4>Smart Contracts</h4><ul><li>EVM: Mutable objects with fixed code and variable state. State changes are executed globally by the EVM.</li><li>Canton: Immutable agreements, similar to rows in a database. A state change involves archiving the old contract and creating a new one. Logic is executed privately on participant nodes.</li></ul><h4>Accounts &amp; Identity</h4><ul><li>EVM: Managed via public-private key pairs. Parties cryptographically sign transactions, providing non-repudiation.</li><li>Canton: Relies on traditional Web2 identity concepts (e.g., JWTs). Parties are authenticated by participant nodes, not through cryptographic signatures. (Note: Canton 3.0 aims to introduce party-level private keys).</li></ul><h4>Transaction Fees</h4><ul><li>EVM: “Gas” fees are paid to validators for computational work and fluctuate based on network demand.</li><li>Canton: Depends on each network governance. Some networks might not have fees. Other may impose fees which could be paid in a native token (Canton Coin, in the case of the Global Synchronizer) or other assets. Fees amount are normally based on factors like value transferred, holding time, and bandwidth, and in some cases fees are burned rather than paid to a specific entity.</li></ul><h4>Transaction Order</h4><ul><li>EVM: A nonce is used to ensure transactions from an account are processed in sequential order.</li><li>Canton: There is no explicit nonce. Instead, a deduplication mechanism within a time window prevents replay attacks. The sequencer is responsible for ordering.</li></ul><p>Events</p><ul><li>EVM: Smart contracts can emit custom events, which are public and can be easily monitored by off-chain applications.</li><li>Canton: Contracts cannot emit custom events directly. Off-chain applications must subscribe to ledger services (like the Transaction Service) to listen for and interpret transaction results.</li></ul><h3>What are the steps to design, develop, and deploy an application using DAML?</h3><p>The development lifecycle in Canton follows a distinct pattern:</p><ol><li><strong>Model the Workflows:</strong> The first and most critical step is to define the contract templates and the workflows that govern their interactions, focusing on the rights and obligations of each party.</li><li><strong>Implement the Contracts:</strong> Write the smart contracts using DAML, leveraging its strong type system and authorization model.</li><li><strong>Deploy to Participants:</strong> Package the contracts into a DAML Archive (.dar file) and deploy it to the relevant participant nodes in the network.</li><li><strong>Build the Off-Chain Logic:</strong> Develop the client-side application (in our case, a TypeScript CLI) that connects to the participant nodes’ APIs to submit commands and read ledger data. This includes defining filters to monitor ledger services for transaction outcomes.</li></ol><h3>From our developers perspective, how easy or complex is it to work with DAML?</h3><p>The developers who participated in this proof of concept (PoC) were senior engineers with strong backgrounds in object-oriented languages such as Solidity and TypeScript, and extensive experience in building and deploying decentralized applications (dApps) on EVM-compatible networks.</p><p>Our researchers noted that the initial learning curve for DAML was steep. Its foundation in <strong>functional programming </strong>presents a fundamentally different way of reasoning about state and logic compared to the object-oriented paradigm. Moreover, DAML’s smart contract model — based on immutable agreements and conceptually similar to Bitcoin’s UTXO system — represents a significant shift from the EVM’s account-based model. For our developers, mastering these concepts required a considerable learning effort and a paradigm shift in thinking.</p><p>That said, developers with prior experience in functional programming may find the transition to DAML smoother, depending on their background and familiarity with such paradigms.</p><h3>How well do the development tools support the process?</h3><p>As of April 2025, the official development tool is a <strong>Visual Studio Code extension</strong>, which provides a reliable and functional environment for writing DAML code. However, in the opinion of ioBuilder’s researchers, the broader ecosystem of third-party extensions, tools and libraries was still maturing and evolving at the time, and presented limitations that could impact developer productivity, especially for teams accustomed to the rich and varied tooling available in the EVM ecosystem.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=58046e0901a7" width="1" height="1" alt=""><hr><p><a href="https://medium.com/iobuilders/exploring-canton-network-a-deep-dive-into-privacy-first-distributed-ledgers-58046e0901a7">Exploring Canton Network: A Deep Dive into Privacy-First Distributed Ledgers</a> was originally published in <a href="https://medium.com/iobuilders">iobuilders</a> on Medium, where people are continuing the conversation by highlighting and responding to this story.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Ethereum L2 solutions]]></title>
            <link>https://medium.com/iobuilders/ethereum-l2-solutions-74b56a02a2b6?source=rss----fe0e9e0edc94---4</link>
            <guid isPermaLink="false">https://medium.com/p/74b56a02a2b6</guid>
            <category><![CDATA[rollup]]></category>
            <category><![CDATA[blockchain]]></category>
            <category><![CDATA[ethereum]]></category>
            <category><![CDATA[layer-2-solution]]></category>
            <category><![CDATA[zkrollup]]></category>
            <dc:creator><![CDATA[Alberto Molina]]></dc:creator>
            <pubDate>Mon, 29 Jul 2024 15:20:42 GMT</pubDate>
            <atom:updated>2024-07-29T15:20:42.792Z</atom:updated>
            <content:encoded><![CDATA[<h3>Introduction</h3><p>Ethereum Layer-2 (L2) solutions are <strong>a set of scaling technologies designed to address the scalability challenges of the Ethereum blockchain</strong>. As Ethereum has become the leading platform for decentralized applications (dapps), decentralized finance (DeFi), and various Web3 projects, increased network activity has led to higher transaction fees and slower processing times. L2 solutions operate as independent blockchains, running on top of the main chain (referred to as the Layer 1 or L1) thus inheriting its security. Their main advantages are increased scalability and lower transaction fees although, in some cases, this might entail higher technical complexity and centralization risks.</p><h3>Types of Scaling Solutions</h3><h4>Sidechains</h4><p>Although not actual Layer 2 solutions, it is worth mentioning sidechains, as they were conceived and used before Layer 2 technologies. In this sense, sidechains can be considered precursors to Layer 2 solutions.</p><p><strong>Sidechains</strong> are Ethereum-compatible independent blockchains that use their own consensus models and block parameters to process transactions. They do not actually run on top of the Layer 1 but in parallel to it. Users will transfer funds from the L1 to the sidechain using a bridge or a similar system, then start interacting with it directly.</p><p>The main difference between sidechains and layer 2 is that sidechains do not commit transactions or anything into the Layer 1, they are like a completely parallel universe people can “jump into” and “jump from”.</p><p>Sidechains can process a larger number of transactions, reducing congestion on the main chain, and they normally do it at a lower cost. However, operating on a sidechain is riskier because it does not inherit the security of Ethereum’s Layer 1. If the sidechain’s security is compromised, the assets on it could be at risk.</p><p><strong><em>Examples</em></strong> : Polygon PoS, Gnosis chain (formerly known as xDai chain).</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/952/1*6ytnMztTLj0O30Nnx1rAzw.png" /><figcaption>Example of how a sidechain with a bridge works</figcaption></figure><h4>Plasma</h4><p>Plasma is a layer-2 scaling solution for Ethereum that provides a framework for building “off-chain” decentralized applications that are secure, scalable, and swift.</p><p>Plasma works by creating smaller chains (child chains) that process transactions independently from the Ethereum mainnet. These child chains periodically submit a summary of their state (such as state roots) to the Ethereum mainnet, allowing for dispute resolution and security through fraud proofs. Each “child chain” extends from the root chain and is generally managed by a smart contract deployed on the parent chain.</p><p>This setup helps to scale Ethereum by reducing the load on the mainnet while ensuring the integrity of off-chain transactions.</p><p>However plasma chains present two main disadvantages:</p><ul><li>They do not support general computation (smart contracts), only basic token transfers and a few other transaction types.</li><li>A malicious operator could submit an invalid transaction and withhold information about it, making it very hard to create a fraud proof.</li></ul><p><strong><em>Examples</em></strong> : OMG Network, LeapDao.</p><h4>State Channels</h4><p>State channels are <strong>a scalability technology that enables instant and low-cost peer-to-peer Ethereum transactions</strong>. They allow participants to securely transact off-chain while keeping interaction with Ethereum Mainnet at a minimum. Channel peers can conduct an arbitrary number of off-chain transactions while only submitting two on-chain transactions to open and close the channel.</p><p>Opening the channel means locking up funds into a special smart contract on the Ethereum mainnet (L1).</p><p>Closing the channel means submitting the final state of the off-chain exchanged transactions to unlock the funds and distribute them according to the final balances. The final state must obviously be signed by all the involved parties.</p><p>The channel can also be updated multiple times before closing it by submitting intermediate states of the parties’ balances, although that could undermine the efficiency gains.</p><p>State channels offer a way to make Ethereum transactions faster and cheaper by conducting most of the activity off-chain and only interacting with the blockchain when necessary to update the final state. They are considered secure since they inherit the L1 security but they can only be used to transfer funds between the involved parties, which makes then very limited in terms of usability.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/950/1*Q4_9wk8sSrch74awtci0ZQ.png" /><figcaption>State channel schema</figcaption></figure><p><strong><em>Examples</em></strong> : The Raiden Network, Nitro.</p><h4>Rollups</h4><p>Ethereum L2 rollups are <strong>a type of second-layer scaling solution that aims to improve the scalability of the Ethereum blockchain by allowing for off-chain transactions to be “rolled up” and periodically committed to the blockchain</strong>. This approach enables faster and more cost-effective transactions, making it possible to process a large number of transactions without overwhelming the main Ethereum network.</p><p>Rollups bundle together hundreds or even thousands of transactions into a single L1 transaction, effectively distributing the transaction fee cost among all included transactions.</p><p>There are two main types of rollups: Optimistic Rollups and ZK (Zero-Knowledge) Rollups. Optimistic Rollups submit transactions to the L1 and are considered valid unless challenged within a certain time period. ZK Rollups, on the other hand, submit validity proofs alongside the transactions to the L1 to cryptographically prove their correctness.</p><p>Rollups allow for faster transaction processing at lower costs while inheriting the security of the L1.</p><h3>Rollups in depth</h3><h4>Optimistic</h4><p>Optimistic Rollups are a type of roll-up protocol that uses smart contracts deployed on Ethereum to manage interactions between the L2 (Layer 2) and the L1 (Layer 1, Ethereum). They work by aggregating multiple transactions into a single batch and submitting them to the main Ethereum chain. The rollups operate under the assumption (hence “optimistic”) that transactions are valid, but they include a challenge period during which any incorrect transactions can be disputed through fraud proofs.</p><p>They are compatible with the Ethereum Virtual Machine (EVM), allowing developers to port existing Ethereum smart contracts to rollups or create new dApps using existing tools. They are designed for interoperability with the Ethereum main chain, allowing users to pass messages and data between L1 and L2.</p><p>Optimistic Rollups offer increased scalability, reduced gas fees, and improved latency while inheriting security from the L1. The main drawback is that it requires participants to monitor the transactions submitted to the L1. If a fraudulent transaction is submitted and goes undetected until the challenge period is over, the system could be compromised.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/945/1*M1EbWHLracacsdvQOAuhjQ.png" /><figcaption>Optimistic rollup</figcaption></figure><p><strong><em>Examples</em></strong> : Optimistic, Base.</p><h4>zero-knowledge</h4><p>Zero-Knowledge Rollups (ZK-rollups), just like optimistic rollups, are a type of roll-up protocol that uses smart contracts deployed on Ethereum to manage interactions between the L2 (Layer 2) and the L1 (Layer 1, Ethereum). They aggregate multiple transactions into a single batch they submit to the L1 as well. However, unlike optismitic rollups, transactions validity is not presumed, but proven through the use of zk-proofs, so basically, zk-rollups submit two main type of transactions to the L1, the batches of transactions plus the zk proof validating the batches of transaction.</p><p>ZK rollups have been recently evolving a lot, early versions primarily handled simple token transfers, but the latest one are EVM compatible, meaning that smart contracts and dapps can migrate from the L1 to ZK rollups.</p><p>They also offer higher scalability, reduced gas fees and improved latency, Zk-rollups require computational effort to generate zk-proofs, but they can finalize transactions faster than optimistic rollups since there is no challenge period.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/952/1*735HSzP2XrxPepTk75dNQA.png" /><figcaption>generic zk-rollup schema</figcaption></figure><p>Zk rollups come in three variants :</p><ul><li><strong>zk-rollups </strong>: they submit the L2 transactions unencrypted to the L1 as calldata (blobs in the future). This allows for anyone to recompute the state of the L2 since the content of the transactions is publicly available. They also submit the zk-proof that validate them.</li><li><strong>Validiums</strong> : Validiums submit only hashes of L2 transactions to L1, with the actual data stored off-chain. This approach enhances privacy and reduces costs but relies on trusted external parties for data availability.</li><li><strong>Volition</strong> : hybrid approach that allows users to choose between zk-Rollup and Validium modes for their transactions. Users can decide whether they want their data to be stored on-chain (zk-Rollup) for higher security or off-chain (Validium) for greater scalability and lower costs. This flexibility enables users to balance security and efficiency based on their needs​.</li></ul><p><strong><em>Examples</em></strong> : Polygon zkEVM, StarkNet.</p><h3>The Future of Layer 2</h3><p>The future of Ethereum L2 (Layer 2) is <strong>a topic of great interest and debate in the blockchain and cryptocurrency community</strong>. As the Ethereum network continues to evolve, the need for scalability and efficiency has become increasingly pressing. L2 solutions aim to alleviate this pressure by providing an off-chain scaling solution for Ethereum-based applications.</p><p><strong>Current State of L2</strong></p><p>Currently, several L2 projects are being developed to address the scalability issues faced by Ethereum. Some notable projects include:</p><ul><li><strong>Arbitrum</strong>: A popular L2 solution that uses Optimistic rollups to reduce transaction costs and increase network throughput. Its main advantages are compatibility with the EVM, high network throughput, and low transaction costs.</li><li><strong>Optimism</strong>: Another prominent L2 project that uses Optimistic rollups to achieve scalability. It has a high network throughput and low transaction costs, making it an attractive solution for DeFi applications.</li></ul><p><strong>Challenges and Concerns</strong></p><p>However, the rapid growth of the L2 ecosystem also raises concerns about potential risks and challenges. Research by Binance Research suggests that the continuous growth of the L2 ecosystem could lead to:</p><ul><li><strong>Increased competition</strong>: As more L2 projects emerge, competition for users and resources may increase, leading to higher transaction fees and decreased network throughput.</li><li><strong>Security risks</strong>: The migration of assets and users to L2 solutions could potentially reduce the security of the main Ethereum network, as staking rewards for validators may decrease.</li></ul><p><strong>Future of L2</strong></p><p>Despite these challenges, the future of Ethereum L2 holds much promise. As the L2 ecosystem continues to evolve, we can expect to see:</p><ul><li><strong>Increased adoption</strong>: As L2 solutions become more user-friendly and scalable, we can expect to see increased adoption across various industries, including DeFi, gaming, and social media.</li><li><strong>Improved scalability</strong>: The development of new L2 technologies and protocols will continue to improve scalability, reducing transaction costs and increasing network throughput.</li><li><strong>New use cases</strong>: The L2 ecosystem will enable new use cases, such as decentralized finance (DeFi) applications, that were previously not possible on the main Ethereum network.</li><li><strong>Addressing related risks </strong>: L2s come with their own sets of risks, like the usage in many cases of bridges which can be a point of vulnerability; if they fail or get attacked, users could lose funds.</li></ul><p><strong>Conclusion</strong></p><p>The future of Ethereum Layer-2 (L2) solutions is promising, with numerous exciting developments on the horizon. As the Ethereum ecosystem evolves, the importance of scalable and efficient solutions cannot be overstated. L2 technologies such as sidechains, Plasma, state channels, and rollups are pivotal in addressing Ethereum’s scalability challenges, reducing transaction fees, and improving processing times.</p><p>In conclusion, Ethereum’s Layer-2 solutions are set to play a crucial role in the future of the blockchain. Despite the challenges, the potential for increased adoption, improved scalability, and the emergence of innovative use cases makes L2 technologies an essential component of Ethereum’s continued growth and success. As the ecosystem matures, the collaborative efforts of the community and developers will ensure that Ethereum remains at the forefront of decentralized technology.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=74b56a02a2b6" width="1" height="1" alt=""><hr><p><a href="https://medium.com/iobuilders/ethereum-l2-solutions-74b56a02a2b6">Ethereum L2 solutions</a> was originally published in <a href="https://medium.com/iobuilders">iobuilders</a> on Medium, where people are continuing the conversation by highlighting and responding to this story.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[The Transformative Journey of Ethereum: From Inception to Innovation]]></title>
            <link>https://medium.com/iobuilders/the-transformative-journey-of-ethereum-from-inception-to-innovation-cefe6bddfc7c?source=rss----fe0e9e0edc94---4</link>
            <guid isPermaLink="false">https://medium.com/p/cefe6bddfc7c</guid>
            <category><![CDATA[technology]]></category>
            <category><![CDATA[ethereum]]></category>
            <category><![CDATA[blockchain]]></category>
            <dc:creator><![CDATA[Alberto Molina]]></dc:creator>
            <pubDate>Mon, 17 Jun 2024 15:54:58 GMT</pubDate>
            <atom:updated>2024-06-17T15:54:58.715Z</atom:updated>
            <content:encoded><![CDATA[<p>In 2015, a young programmer named Vitalik Buterin <a href="https://youtu.be/l9dpjN3Mwps?si=ECfaRa7SQbKIThuK">introduced the world to Ethereum,</a> a revolutionary blockchain platform designed to enable smart contracts and decentralized applications (dApps). This vision promised a new era of digital innovation, but the path to realizing it was fraught with significant challenges. This is the story of Ethereum’s journey, highlighting the obstacles it faced and the ingenious solutions that propelled its evolution.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*KIrF3nwqQQW0A92qfmT6mA.png" /></figure><h3>The Early Days: Scalability and Gas Fees</h3><p>In its early days, Ethereum could process only about 15 transactions per second. As the platform’s popularity surged, particularly during the ICO boom of 2017, this limitation became glaringly evident. The low transaction throughput led to severe network congestion, causing delays in transaction processing and skyrocketing gas fees. Users had to compete by offering higher fees to get their transactions included in the next block, further exacerbating the issue. This bottleneck significantly impacted the user experience and constrained Ethereum’s potential for larger-scale applications, highlighting the need for scalability solutions.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/936/1*yMSeYvuHsBojLXQ-uM6s9A.png" /></figure><p><strong>Solutions:</strong></p><ul><li><strong>Sidechains:</strong> Sidechains are separate blockchains that run alongside the main Ethereum chain, designed to offload transactions from the mainnet. They operate under their own consensus mechanisms but are connected to Ethereum through two-way pegs, allowing assets to move between the main chain and the sidechain. By offloading some of the transaction load to these parallel chains, sidechains help alleviate the main chain’s congestion</li><li><strong>Layer 2 Solutions:</strong> Layer 2 solutions are built on top of the Ethereum main chain and aim to increase transaction throughput without sacrificing security. They achieve this by processing transactions off-chain and then settling the results on the main chain. There are several types of rollups (optimistic, zero-knowledge,…) but they all drastically increase the number of transactions that can be processed per second by reducing the data and computation load on the main chain.</li><li><strong>Beacon Chain and Shard Chains:</strong> The Beacon Chain is the backbone of the Ethereum 2.0 upgrade. It coordinates the network of validators and will, in the future, manage multiple shard chains, which are designed to further split the transaction load by creating multiple parallel chains, each capable of processing transactions independently. This means the network can handle many more transactions by distributing them across these shards.</li><li><strong>New Gas Model (EIP-1559)</strong>: EIP-1559 introduced a significant change in how gas fees are calculated by implementing a base fee and a tip system. The base fee is burned, making it a dynamic component that adjusts automatically based on network congestion, aiming to smooth out fee volatility. This new model helps users predict gas costs more accurately and discourages the previous auction system, which often led to overpayments.</li></ul><h3>The Loss of Private Keys</h3><p>In traditional Ethereum wallets, private keys are the sole means of accessing and managing funds, creating significant risks of loosing all your funds. Without a native recovery mechanism, the loss of a private key results in irretrievable loss of assets, a challenge especially for users unfamiliar with cryptographic key management.</p><p><strong>Solutions:</strong></p><ol><li><strong>Multisig Contracts:</strong> Require multiple keys to authorize transactions, adding security by ensuring that funds remain safe even if one key is lost or compromised.</li><li><strong>Custodial Solutions:</strong> Third-party services manage private keys on behalf of users, reducing the risk of loss by entrusting security to a trusted entity.</li><li><strong>Account Abstraction (ERC-4337):</strong> Allows more flexible account management, reducing reliance on a single private key by enabling methods like smart contracts and multisig setups, thus improving accessibility and security.</li></ol><h3>The Quest for Privacy</h3><p>Blockchain’s inherent transparency, while vital for trust and security, exposes all transaction data to the public. This design ensures that sensitive information, including personal data and confidential business transactions, can be traced and viewed by anyone at any time. This data will remain accessible as long as a full node of the blockchain exists. This lack of privacy poses risks to users and organizations that need to maintain confidentiality while leveraging blockchain’s other benefits.</p><p><strong>Solutions:</strong></p><ul><li><strong>Zero-Knowledge Protocols:</strong> Zero-Knowledge (zk) Protocols are cryptographic methods that allow one party to prove to another that a statement is true without revealing any information beyond the validity of the statement itself. They enable private transactions where the specifics of the transaction (like the amount and the parties involved) are hidden, but the integrity and correctness of the transaction are still verified and maintained. Smart contracts can be implemented using zk protocols to enable users to execute functionality on the blockchain without providing any information that could reveal their identities.</li></ul><p><a href="https://twitter.com/Crypto_Texan/status/1773341849895268709?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1773341849895268709%7Ctwgr%5Edff75fdc42ad293f6d55ea6d9320c665353004d8%7Ctwcon%5Es1_c10&amp;ref_url=https%3A%2F%2Fwww.notion.so%2Fmario-francia%2FDay-def3123bf22f4a169c178f44b1198ba2%3Fp%3Dd54deb3277014458acbcd36897f06350pm%3Ds">Crypto Texan | Aggregated on Twitter / X</a></p><h3>The Oracle Problem: Accessing Real-World Data</h3><p>Smart contracts on Ethereum and similar blockchains are powerful tools for automating agreements and processes. However, by design, they operate in an isolated environment — they only access and act upon data within the blockchain. This limitation restricts the range of applications for smart contracts because many useful scenarios require current, real-world information like weather, prices, or other dynamic external data. Without this, the potential for smart contracts remains confined to purely on-chain activities.</p><p><strong>Solutions:</strong></p><ul><li><strong>Decentralized Oracles :</strong> Decentralized oracles are intermediaries that fetch data from outside the blockchain and provide it to smart contracts in a reliable and secure manner. These systems ensure that the data is accurate and tamper-proof by using a network of nodes to validate the information before it reaches the smart contract. By incorporating real-world data, smart contracts can react to external events and conditions, vastly expanding their potential applications.</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*wip_h3533kPdPd818LqQGw.png" /></figure><p><a href="https://chain.link/education/blockchain-oracles">What Is an Oracle in Blockchain? » Explained | Chainlink</a></p><h3>The Environmental Toll: Energy Consumption</h3><p>The proof-of-work (PoW) mechanism, used by Ethereum and other early blockchains, requires extensive computational effort to validate transactions and secure the network. This process involves solving complex cryptographic puzzles, which necessitates powerful hardware and results in significant electricity usage. The environmental impact of PoW, especially as the network grows, has been a major concern due to its large carbon footprint and unsustainable energy demands.</p><p><strong>Solutions:</strong></p><ul><li><strong>Proof of Stake:</strong> Proof of stake (PoS) is a consensus mechanism that replaces the computationally intensive process of proof of work. Instead of miners competing to solve puzzles, validators in a PoS system are chosen to create new blocks and confirm transactions based on the amount of cryptocurrency they hold and are willing to “stake” as collateral. PoS drastically reduces the energy consumption of the network because it eliminates the need for continuous, intense computational efforts.</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/830/1*rytQj_aVpzVL0d96OB57JQ.png" /></figure><p><a href="https://ethereum.org/ms/energy-consumption/">Ethereum Energy Consumption | ethereum.org</a></p><h3>Storage Woes: Limited and Expensive Storage</h3><p>The Ethereum blockchain, like many others, is designed for transparency and security, not for large-scale data storage. Storing significant amounts of data directly on the blockchain is prohibitively expensive because it requires more block space, which is a scarce resource. This limitation restricts the types of applications that can be effectively deployed, especially those requiring access to large data sets or frequent data updates.</p><p><strong>Solutions:</strong></p><ul><li><strong>Decentralized Storage :</strong> Decentralized storage systems like the InterPlanetary File System (IPFS) provide a way to store data off the blockchain while maintaining a link to on-chain smart contracts. In these systems, data is stored across a network of nodes, each holding a portion of the data, and can be retrieved using unique identifiers. This approach dramatically reduces the cost of data storage by offloading the bulk of the data to a more efficient and scalable system outside the blockchain.</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/937/1*n3BgqGg8WqxykU_6zaN0hw.png" /></figure><p><a href="https://nacionbankless.substack.com/p/almacenamiento-nft-comparacion-entre">Almacenamiento NFT: Comparación entre IPFS, Filecoin y Arweave</a></p><h3>The Need for Finality and Reversibility</h3><p>In the traditional Ethereum proof-of-work (PoW) system, transactions do not achieve immediate finality. This means that after a transaction is included in a block, there remains a non-zero probability that it could be reverted due to a chain reorganization (reorg). This uncertainty, albeit small, complicates certain types of transactions and applications, especially those requiring high security and immediate trust, as it opens a window for potential double-spending attacks.</p><p><strong>Suggested Solution:</strong></p><ul><li><strong>Checkpoint Blocks:</strong> In Ethereum’s proof-of-stake system, finality is achieved through a mechanism involving checkpoint blocks and validators. Each epoch starts with a checkpoint block, and validators vote for pairs of these checkpoints. When votes representing at least two-thirds of the total staked ETH are cast for a pair, the more recent checkpoint becomes “justified,” and the previous one is “finalized,” making blocks up to this point irreversible without significant loss. If finality stalls, an inactivity leak reduces the stakes of dissenting validators, helping the majority regain the needed two-thirds majority to finalize the chain. This ensures transactions are securely and permanently part of the blockchain.</li></ul><h3>Bridging the Gap: Lack of Interoperability</h3><p>In its early days, Ethereum functioned as an isolated ecosystem. This isolation limited its ability to interact with other blockchains, hindering the broader adoption of decentralized technologies and the seamless transfer of assets across different networks. Such limitations were significant barriers to creating a truly interconnected and interoperable digital economy, where value and information could flow freely across various blockchain platforms.</p><p><strong>Solutions:</strong></p><ul><li><strong>Bridges:</strong> Bridges are intermediaries that connect Ethereum with other blockchains, allowing the transfer of assets and information between them. They work by locking assets on one chain and issuing equivalent tokens or representations on the other, effectively enabling cross-chain transactions.</li><li><strong>Advanced Protocols like CCIP (Chainlink) and ZetaChain:</strong> Protocols like the Cross-Chain Interoperability Protocol (CCIP) developed by Chainlink and ZetaChain go beyond basic bridges by offering more sophisticated and secure mechanisms for cross-chain interactions. These protocols enable not just asset transfers but also cross-chain smart contract calls and data sharing. By facilitating deeper integration and interoperability, these protocols make it possible for developers to create complex applications that operate seamlessly across multiple blockchains. This leads to a more robust and versatile decentralized ecosystem, unlocking new opportunities for innovation and collaboration.</li></ul><h3>The Immutability Dilemma: Smart Contract Code</h3><p>Smart contracts on Ethereum are immutable once deployed, which means their code cannot be changed. This immutability ensures trust and security by preventing tampering, but it also poses significant challenges. If bugs or vulnerabilities are discovered in a contract, they cannot be fixed or patched. This rigidity has led to significant losses and security breaches in the past, highlighting the need for a more flexible approach to manage and update smart contracts.</p><p><strong>Solutions:</strong></p><ul><li><strong>Proxies (EIP-1967):</strong> Proxies are a design pattern used to make smart contracts upgradeable. They work by separating the contract’s logic and storage. A proxy contract acts as the user-facing interface, while the actual logic is contained in a separate, upgradeable contract. Users interact with the proxy, which delegates calls to the logic contract. When the logic needs updating, a new version can be deployed, and the proxy is pointed to the new contract without changing the user interface or storage. This structure allows developers to fix bugs, update functionalities, and improve their contracts over time without losing the accumulated state or requiring users to migrate to a new contract address.</li></ul><h3>Overcoming the Size Limit: Smart Contract Complexity</h3><p>Ethereum imposes a 24kb size limit on smart contracts, which restricts the amount of code that can be deployed in a single contract. This limitation is meant to prevent overly large contracts from consuming excessive gas and slowing down the network. However, it also limits the complexity and functionality that developers can include in their contracts, potentially stifling innovation and making it challenging to build sophisticated decentralized applications (dApps).</p><p><strong>Solutions:</strong></p><ul><li><strong>Diamonds (EIP-2535):</strong> The Diamond pattern, formalized in EIP-2535, is a design pattern that allows for modular smart contract development. It introduces the concept of “facets,” where a single “diamond” contract can have multiple facets, each containing its own set of functions. This structure enables developers to bypass the 24kb size limit by splitting the contract’s functionality across multiple facets, each deployed separately but accessible through the central diamond proxy.</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/855/1*eKefiwOu8WCERpYDkjCPMg.png" /></figure><p><a href="https://www.talentica.com/blogs/implementing-upgradeable-smart-contracts-using-proxy-patterns/">Implementing Upgradeable Smart Contracts Using Proxy Patterns | Talentica.com</a></p><h3>The Ever-Growing Chain: Managing Blockchain Bloat</h3><p>The continuous growth of the Ethereum blockchain leads to significant storage and efficiency challenges. As more transactions occur and more data accumulates, the size of the blockchain becomes larger, making it increasingly difficult for nodes to store and manage the entire chain. This growth can lead to slower transaction processing times, higher storage requirements, and reduced accessibility for new participants, especially those with limited resources.</p><p><strong>Suggested Solution:</strong></p><ul><li><strong>State Expiry : </strong>State expiry is a proposed mechanism to manage blockchain bloat by expiring or pruning old state data that is no longer relevant. Under this system, data that has not been accessed or used for a predefined period could be archived or removed from the active state, reducing the storage burden on nodes.</li><li><strong>Verkle Trees:</strong> Verkle trees are an advanced cryptographic data structure proposed to enhance the efficiency of state storage and retrieval. They are a type of commitment tree that combines the properties of Merkle trees and vector commitments, allowing for more compact proofs and efficient verification. Verkle trees reduce the size of proof data needed for verifying transactions and state changes, which can lead to faster sync times and lower bandwidth usage.</li><li><strong>State Expiry</strong> &amp; <strong>Verkle Trees</strong> <strong>Integration with Shard Chains</strong>: Integrating state expiry and Verkle trees with shard chains, as part of Ethereum 2.0, could further enhance the scalability and efficiency of the network. Shard chains are designed to distribute the data and processing load across multiple parallel chains, each handling a portion of the network’s transactions and state. This combination can manage growth more effectively by localizing data and reducing the load on any single part of the network.</li></ul><p><strong>A Vision for the Future</strong></p><p>Ethereum’s journey has been a testament to the resilience and ingenuity of its community. From navigating scalability issues and security breaches to pioneering energy-efficient consensus mechanisms and improving interoperability, Ethereum has continuously evolved. As we look to the future, the ongoing advancements promise to further solidify Ethereum’s position as a leading blockchain platform, capable of meeting the evolving demands of the decentralized world.</p><p>Join us as we continue to explore Ethereum’s transformative journey, witnessing how it overcomes new challenges and seizes emerging opportunities in the ever-evolving landscape of blockchain technology.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=cefe6bddfc7c" width="1" height="1" alt=""><hr><p><a href="https://medium.com/iobuilders/the-transformative-journey-of-ethereum-from-inception-to-innovation-cefe6bddfc7c">The Transformative Journey of Ethereum: From Inception to Innovation</a> was originally published in <a href="https://medium.com/iobuilders">iobuilders</a> on Medium, where people are continuing the conversation by highlighting and responding to this story.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Hedera Hashgraph DLT Overview]]></title>
            <link>https://medium.com/iobuilders/hedera-hashgraph-dlt-overview-59632dd1753b?source=rss----fe0e9e0edc94---4</link>
            <guid isPermaLink="false">https://medium.com/p/59632dd1753b</guid>
            <category><![CDATA[hashgraph]]></category>
            <category><![CDATA[hederahashgraph]]></category>
            <category><![CDATA[hedera]]></category>
            <category><![CDATA[dlt]]></category>
            <dc:creator><![CDATA[Alberto Molina]]></dc:creator>
            <pubDate>Tue, 20 Jun 2023 08:28:41 GMT</pubDate>
            <atom:updated>2023-06-20T08:28:41.592Z</atom:updated>
            <content:encoded><![CDATA[<p>Hedera Hashgraph is a new type of DLT (Distributed Ledger Technology) that unlike blockchain-based DLTs (ethereum, bitcoin, …) does not rely on blocks containing transactions. Hedera uses a different technology : <strong>hashgraph</strong>, which according to its creators, offers among other things, higher throughput, fair ordering, instant finality and lower transaction fees.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1000/0*-V6f1aVFuPN04Gjn" /></figure><h3>Hashgraph protocol</h3><p>The Hedera Hashgraph protocol uses “<strong>events</strong>” which are basically small blocks of information, containing one or many transactions that have been submitted to the network alongside some overhead containing signatures, timestamp and hashes of previous events.</p><p>Nodes forming the network will constantly exchange these events with each other. These events, as mentioned before, contain hashes of previous events, which allow nodes to transfer to each other not only information about new transactions reaching the network, but also information about previous transactions (process known as “<strong>gossip about gossip</strong>”), effectively generating a “<strong>graph</strong>” of events that will allow nodes to reach a common consensus on events timestamp and ordering by virtual voting.</p><p>The Hedera Hashgraph protocol is quite complicated and honestly beyond the scope of this blog, but you can find a nice explanation in the following video :</p><iframe src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2Fcje1vuVKhwY%3Ffeature%3Doembed&amp;display_name=YouTube&amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3Dcje1vuVKhwY&amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2Fcje1vuVKhwY%2Fhqdefault.jpg&amp;key=a19fcc184b9711e1b4764040d3dc5c07&amp;type=text%2Fhtml&amp;schema=youtube" width="854" height="480" frameborder="0" scrolling="no"><a href="https://medium.com/media/0fca6fbe2e9d47a67a7676a7dc18fcd2/href">https://medium.com/media/0fca6fbe2e9d47a67a7676a7dc18fcd2/href</a></iframe><h3>Core Concepts</h3><p>Hedera, at its core, consists of the following entities :</p><ul><li><strong>Accounts</strong>: They can be compared to ethereum accounts, because they are in charge of delivering transactions to the network. However, they are technically very different. Hedera accounts have one or many keys associated to them. These keys (or some of them, depending on the account configuration) have to sign the transactions the account is submitting to the network. Accounts can hold any Hedera Token, but they need first to associate to it (only HBARs can be held without any previous association). To make it simple for ethereum users, an Account can be understood as an integrated multi-signature smart contract…</li><li><strong>Tokens</strong>: Hedera has taken the ERC20 and ERC721 standards a step further, embedding them into its core. In order to create a token you do not need to deploy a smart contract, just tell Hedera what kind of token you want and pay for the creation fees. Hedera fungible and non-fungible tokens offer the classic functionality (transfer, transferFrom, approve, …) plus some extra one like associating/dissociating and freezing/unfreezing accounts, pausing/unpausing the token…</li><li><strong>Smart Contracts</strong>: Since Hedera is EVM-compatible, any ethereum smart contract can be executed in Hedera. However Hedera’s smart contract are not just the byte code, storage and balance associated to it (like in ethereum), they also have administrators, they can stake their tokens automatically etc…</li><li><strong>Files</strong>: Hedera lets users store files (no more than 1KB per file) in a decentralized manner. As a matter of facts, smart contract’s byte codes are stored in multiple files. Files have administrator than can update the file’s content.</li><li><strong>Topics</strong>: We can also use the Hedera DLT as a queue where messages can be submitted and latter retrieved. Hedera guarantees proper ordering security (we can limit who can send messages) and availability.</li><li><strong>Scheduled transactions</strong>: Accounts are supposed to submit transactions to the network, however accounts can have multiple keys associated to them which means that multiple signatures are required for the account’s transactions to be accepted by the network. Normally, these signatures must be added off-chain then, when the transaction is ready, submit everything to a consensus nodes. To make this multi-signature process simpler, Hedera offers the possibility to send transactions that do not have yet all the required signatures attached to it, the network will store that transaction in a queue, waiting for the remaining signatures to arrive before the transaction can finally be submitted.</li></ul><h3>Fees</h3><p>Fees in Hedera are paid using its native token “<strong>HBAR</strong>” although the amount to pay depends on the current HBAR to USD exchange ratio, the idea is for users to pay a fixed fee calculated in USD (the amount of HBAR will always be different though).</p><p>There are two categories of fees in Hedera:</p><ul><li><strong>Transaction fees</strong>: paid once by the account submitting the transaction (to create an entity or operate with it).</li><li><strong>Storage fees</strong>: entities are not deployed on the DLT “forever”, they have an expiration time. Once an entity expires, it will be automatically removed from the DLT unless a renew fee is paid by the account defined as the renew account.</li></ul><h3><strong>Governance</strong></h3><p>The Hedera network is, for the time being, fully managed by the Hedera <a href="https://hedera.com/council"><strong>governing council</strong></a>, an organization of up to 39 very well-known companies (currently only 27), each one running a node. Nevertheless, the goal is to completely decentralize the network at some point, letting anyone run a node.</p><h3>Consensus protocol</h3><p>The consensus protocol uses <strong>Proof-of-Stake</strong>, where nodes must have a minimum amount of HBAR to be allowed to validate events but cannot have more than a maximum amount (in order to prevent a node from taking over the network). Voting is proportional to the amount of staked HBAR. A transaction is validated and placed into consensus after it is validated by nodes representing an aggregate stake of over two thirds of the network’s total number of hbars (fixed at 50 billions).</p><p>Accounts and Smart Contracts can stake their HBAR to a node (or another account/smart contract) and get rewards when events are added to the hashgraph. Staking in Hedera, as opposed to staking on other DLTs, does not require the staked tokens to be locked, and slashing is not implemented in the protocol either, there is no “punishment” whatsoever for rogue nodes, at least for the time being…</p><p>There is a special account in Hedera (0.0.800 on mainnet) that centralizes the reward allocation. It holds all the rewards and distributes it proportionally to the accounts/contracts.</p><p>Accounts and contracts can be set to decline rewards.</p><h3>Accounts</h3><p>Hedera Accounts must be created (as opposed to ethereum where any public key is technically an account) and fees must be paid when doing it.</p><p>In order to create new accounts in Hedera you can use an official <strong>wallet provider</strong> :</p><p><a href="https://docs.hedera.com/guides/mainnet/mainnet-access">https://docs.hedera.com/guides/mainnet/mainnet-access</a>,</p><p>or the <strong>Hedera portal</strong> if you need a <strong>testnet</strong> account :</p><p><a href="https://portal.hedera.com/">https://portal.hedera.com/</a>.</p><p>You can also obtain a Hedera Account by asking anyone to transfer funds to your ethereum public address. The transfer operation will automatically create your Hedera account and creation fees will be deducted from the transfer amount.</p><h3>Scans</h3><p>If you need to scan Hedera’s transactions, accounts, smart contracts… you can use <strong>hashscan</strong> on every network:</p><p>mainnet : <a href="https://hashscan.io/mainnet/dashboard">https://hashscan.io/mainnet/dashboard</a></p><p>testnet :<a href="https://hashscan.io/mainnet/dashboard">https://hashscan.io/testnet/dashboard</a></p><p>The Hashgraph and consensus protocol is open-source.</p><h3>API</h3><p>Hedera exposes an API (HAPI) that allows for anyone to interact with its core entities (tokens, accounts, …). The HAPI communication protocol is <em>gRPC</em> over <em>HTTP</em> and data is serialized using <em>protobuf</em>. However Hedera provides an <strong>SDK</strong> for multiple programming languages like JavaScript, Java, Go… allowing a seamless integration of its HAPI in already existing applications.</p><p>The HAPI is subdivided into services, each one dedicated to a specific core entity (<em>HTS</em> for Token creation and management, <em>HSCS</em> for for Smart Contract creation and management etc…).</p><p>The two big advantages of the HAPI is that it gives the possibility to developers to interact with Hedera’s core functionality without implementing a smart contract and it offers a huge throughput (thousands of transactions per second) since transactions do not need to be executed by the EVM.</p><h3>Network</h3><p>Hedera currently has three public networks:</p><ul><li><strong>Mainnet</strong>: Main Hedera network where HBARs have actual value.</li><li><strong>Previewnet</strong>: Pre-mainnet network, where smart contracts and/or entities can be tested before deploying to mainnet.</li><li><strong>Testnet</strong>: A network for developer to test their implementation without any risk. The big difference between this network and the “previewnet” is that Hedera resets its content sometimes, removing all the existing entities, which is why it must be used only for “ephemeral” testing.</li></ul><p>Hedera’s networks have two different types of nodes</p><ul><li><strong>Consensus nodes</strong>: These are the nodes that process incoming transactions and add them to the Hashgraph. Any interaction with a consensus node costs HBARs, even if it is a transaction that only reads data from the DLT.</li><li><strong>Mirror nodes</strong>: These nodes do not take part in the consensus process, they are just like databases that store the current status of the DLT so that anyone can query them for free. Consensus nodes provide state changes in the form of signed files to the mirror nodes, meaning that there can be a tiny delay between the moment a new transaction is added to the DLT and the new state is available in the mirror nodes.</li></ul><h3>Transactions</h3><p>A Hedera transaction can contain different fields, depending on which HAPI service and method they are being delivered to, but generally speaking they all contain the following fields:</p><ul><li><strong>Node Account</strong>: The consensus node ID the transaction is been delivered to.</li><li><strong>Transaction ID</strong>: The Id consists of the sending Account ID followed by the transaction start time (not to be confused with the consensus timestamps calculated by the consensus nodes of the network).</li><li><strong>Transaction Fee</strong>: Maximum fee the sending Account is willing to pay for the transaction.</li><li><strong>Valid duration</strong>: Number of seconds the user wants the transaction to be valid for, starting at the “starting time” indicated in the Transaction ID.</li><li><strong>Signature</strong>: A transaction must be signed at least by the sending account but in some cases, transactions must be signed by multiple accounts.</li></ul><p>Hedera’s transactions can trigger further transactions (for instance, when a smart contract method creates a new Token…). Parent and child transactions ID will be the same but child transaction will have an extra nonce indicating the order in which they were executed.</p><p>When a transaction is submitted and processed by the network, users can ask for the following confirmations:</p><ul><li><strong>Receipt</strong>: receipts contain basic information about the transaction, they are free and only available for 3 minutes after the transaction gets validated.</li><li><strong>Record</strong>: records contain more information about the transaction than receipts, they are also available for only 3 minutes after the transaction gets validated but are not free.</li><li><strong>State Proof</strong>: This is a document signed by the consensus nodes that contains all the information related to the transaction, the big difference between state proofs and receipts/records is that state proofs could be use to cryptographically validate a transaction.</li></ul><h3>Compatibility with ethereum</h3><p>Hedera is becoming more and more compatible with ethereum.</p><p>To begin with, consensus nodes run an <strong>EVM</strong>, allowing developers to deploy smart contracts implemented using Solidity or any other EVM compatible language.</p><p>Then, more recently, Hedera has added a new type of node to its networks : “<strong>relay nodes</strong>”. These nodes expose the ethereum JSON-RPC API, so that ehtereum-compatible wallets (metamask, …) can interact with them. Relay nodes act as a bridge between these ethereum wallets and the Hedera network, the way they do it is relatively simple, they receive ethereum transactions and they encapsulate them into Hedera transactions that are sent to the HSCS (Hedera Smart Contract Service).</p><p>Each relay node has an account which is the one that pays the transaction delivery fees, however transaction execution fees are paid by the account signing the ethereum transaction. For the time been, relay nodes are opened to anyone but at some point it is expected for these nodes to charge some kind of fee to compensate for the transaction delivery fees that are automatically charged to the relay node’s account.</p><blockquote>New to trading? Try <a href="https://medium.com/coinmonks/crypto-trading-bot-c2ffce8acb2a">crypto trading bots</a> or <a href="https://medium.com/coinmonks/top-10-crypto-copy-trading-platforms-for-beginners-d0c37c7d698c">copy trading</a> on <a href="https://medium.com/coinmonks/crypto-exchange-dd2f9d6f3769">best crypto exchanges</a></blockquote><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=59632dd1753b" width="1" height="1" alt=""><hr><p><a href="https://medium.com/iobuilders/hedera-hashgraph-dlt-overview-59632dd1753b">Hedera Hashgraph DLT Overview</a> was originally published in <a href="https://medium.com/iobuilders">iobuilders</a> on Medium, where people are continuing the conversation by highlighting and responding to this story.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[May 2022- Enterprise blockchain monthly review]]></title>
            <link>https://medium.com/iobuilders/may-2022-enterprise-blockchain-monthly-review-2774c6865645?source=rss----fe0e9e0edc94---4</link>
            <guid isPermaLink="false">https://medium.com/p/2774c6865645</guid>
            <dc:creator><![CDATA[Io Builders]]></dc:creator>
            <pubDate>Thu, 02 Jun 2022 10:18:34 GMT</pubDate>
            <atom:updated>2022-06-02T10:18:34.409Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*ogiENkEBKONakBFq7uSrwA.jpeg" /></figure><p>Here is our monthly summary of enterprise blockchain related news in May 2022</p><h3>Digital Assets / Securities</h3><ul><li><a href="https://beincrypto.com/jpmorgan-dips-defi-singapore-pilot-asset-tokenization/">JPMorgan Dips Into DeFi With Singapore Pilot on Asset Tokenization - BeInCrypto</a></li><li><a href="https://www.coindesk.com/business/2022/05/31/fidelity-digital-assets-plans-to-double-headcount-this-year-report/">Fidelity Digital Assets Plans to Double Headcount This Year: Report</a></li><li><a href="https://bitcoinist.com/south-korea-sets-up-digital-asset-committee/">South Korea Sets Up Digital Asset Committee, Fast Tracks Crypto Regulation Efforts | Bitcoinist.com</a></li><li><a href="https://ihodl.com/topnews/2022-05-30/binance-gets-digital-asset-provider-license-italy/">Binance Gets a Digital Asset Provider License in Italy</a></li></ul><h3>Digital Currencies / CBDC’s</h3><ul><li><a href="https://www.ledgerinsights.com/financial-institutions-respond-to-federal-reserve-cbdc-paper/">Financial institutions respond to Federal Reserve CBDC paper - Ledger Insights - enterprise blockchain</a></li><li><a href="https://forkast.news/governments-pushing-cbdc-smell-blood-terra-classic/">Governments pushing for CBDCs smell blood as Terra Classic struggles</a></li><li><a href="https://cointelegraph.com/news/fed-paper-looks-at-potential-effects-of-cbdc-on-monetary-policy">Fed paper looks at the potential effects of CBDC on monetary policy</a></li><li><a href="https://news.bitcoin.com/swift-is-experimenting-with-decentralized-technologies-to-allow-cbdc-interconnection/">SWIFT Is Experimenting With Decentralized Technologies to Allow CBDC Interconnection</a></li><li><a href="https://cointelegraph.com/news/india-to-roll-out-cbdc-using-a-graded-approach-rbi-annual-report">India to roll out CBDC using a graded approach: RBI Annual Report</a></li></ul><h3>NFTs</h3><ul><li><a href="https://globalhappenings.com/markets/193791.html">NFTs: Palm NFT launches beta version of marketplace</a></li><li><a href="https://wwd.com/fashion-news/fashion-scoops/prada-nfts-timecapsule-project-discord-1235191452/">Prada Adds NFTs to Timecapsule Project</a></li><li><a href="https://www.unlock-bc.com/87804/audi-launches-novel-fractional-nft/">Audi launches novel fractional NFT - UNLOCK Blockchain</a></li><li><a href="https://www.ledgerinsights.com/uks-wembley-stadium-adopts-blockchain-ticketing-tixngo-starting-with-sheeran-concert/">UK&#39;s Wembley Stadium adopts blockchain ticketing TIXNGO starting with Sheeran concert - Ledger Insights - enterprise blockchain</a></li><li><a href="https://finance.yahoo.com/news/binance-nft-value-creation-153843929.html">Binance NFT head: &#39;Real value creation of the NFT is not really here yet&#39;</a></li></ul><h3>Blockchain Industry</h3><ul><li><a href="https://www.ledgerinsights.com/honda-ford-participate-in-blockchain-consortium-mobis-first-ev-battery-standard/">Honda, Ford participate in blockchain consortium MOBI&#39;s first EV battery standard - Ledger Insights - enterprise blockchain</a></li><li><a href="https://cointelegraph.com/news/philippines-to-explore-blockchain-use-cases-launches-training-program">Philippines to explore blockchain use cases, launches training program</a></li><li><a href="https://news.bitcoin.com/brazilian-development-bank-launches-blockchain-network/">Brazilian Development Bank Launches Blockchain Network</a></li><li><a href="https://thetokenizer.io/2022/05/23/dmg-invests-usd-1-million-in-the-inx-digital-company/">DMG Invests USD $1 Million in The INX Digital Company</a></li></ul><h3>Institutional Crypto</h3><ul><li><a href="https://copper.co/insights/copper-co-receives-swiss-regulatory-approval">Copper.co receives Swiss regulatory approval</a></li><li><a href="https://thetokenizer.io/2022/05/12/techfund-has-established-its-third-footprint-by-establishing-a-basis-in-europe-to-accelerate-security-token-related-startups/">TECHFUND has established its third footprint by establishing a basis in Europe to accelerate security token-related startups</a></li><li><a href="https://www.crypto-news-flash.com/es/los-inversores-institucionales-pierden-la-fe-en-ethereum-eth-mientras-aumentan-la-asignacion-a-xrp-y-ada-informe/">Los inversores institucionales pierden la fe en Ethereum mientras aumentan la asignación a XRP y ADA</a></li><li><a href="https://cryptonews.com/exclusives/consistently-strong-institutional-crypto-demand-stayed-despite-price-slump-wisdomtree.htm">&#39;Consistently Strong&#39; Institutional Crypto Demand Stayed Despite Price Slump - WisdomTree</a></li></ul><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=2774c6865645" width="1" height="1" alt=""><hr><p><a href="https://medium.com/iobuilders/may-2022-enterprise-blockchain-monthly-review-2774c6865645">May 2022- Enterprise blockchain monthly review</a> was originally published in <a href="https://medium.com/iobuilders">iobuilders</a> on Medium, where people are continuing the conversation by highlighting and responding to this story.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[April 2022- Enterprise blockchain monthly review]]></title>
            <link>https://medium.com/iobuilders/april-2022-enterprise-blockchain-monthly-review-f62df7509362?source=rss----fe0e9e0edc94---4</link>
            <guid isPermaLink="false">https://medium.com/p/f62df7509362</guid>
            <category><![CDATA[blockchain]]></category>
            <category><![CDATA[nft]]></category>
            <category><![CDATA[enterprise]]></category>
            <category><![CDATA[crypto]]></category>
            <dc:creator><![CDATA[Io Builders]]></dc:creator>
            <pubDate>Tue, 10 May 2022 15:09:06 GMT</pubDate>
            <atom:updated>2022-06-01T06:23:32.264Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*ogiENkEBKONakBFq7uSrwA.jpeg" /></figure><p>Here is our monthly summary of enterprise blockchain related news in April 2022</p><h3>Digital Assets / Securities</h3><ul><li><a href="https://thetokenizer.io/2022/05/03/paraiso-real-estate-introduces-tokenized-vacation-rental-portfolio/">Paraiso Real Estate Introduces Tokenized Vacation Rental Portfolio</a></li><li><a href="https://www.financemagnates.com/cryptocurrency/exchange/six-digital-exchange-inks-partnership-with-daura/">SIX Digital Exchange Inks Partnership with Daura</a></li><li><a href="https://techcrunch.com/2022/04/13/dallas-cowboys-partnership-with-blockchain-com-signals-more-mainstream-crypto-exposure/">Dallas Cowboys&#39; partnership with Blockchain.com signals more mainstream crypto exposure</a></li><li><a href="https://finance.yahoo.com/news/deloitte-taxbit-form-alliance-meet-120000219.html?guccounter=1&amp;guce_referrer=aHR0cHM6Ly93d3cuZ29vZ2xlLmNvbS8&amp;guce_referrer_sig=AQAAAHPiYqxQTFBCFO7NgSqu-IpCcfQzHycTItPsHdRyNyeuJZ7HR9nIcD9Gkzv9ko2uJ2DBaL67BQSmVutflfWjb0ri1Re8V6mJeqr_DHapr3BIQsztDbBekggn_sr3q20rQF4sqf44q-9RSs__FP74zsl85xXrWYF9y0dhZorFlpHO">Deloitte and TaxBit Form Alliance to Meet Exponential Market Demand for Digital Asset Tax Information and Cost Basis Reporting Support</a></li></ul><h3>Digital Currencies / CBDC’s</h3><ul><li><a href="https://www.pymnts.com/cbdc/2022/emtech-haitipay-demo-cbdc-proof-of-concept-for-haitian-market/">EMTECH, HaitiPay Demo CBDC Proof of Concept</a></li><li><a href="https://cryptonews.com/news/number-of-central-banks-involved-in-cbdc-projects-almost-doubles-year-on-year-bis-report.htm">Number of Central Banks Involved in CBDC Projects Almost Doubles in One Year</a></li><li><a href="https://cryptopotato.com/the-european-central-bank-published-privacy-options-for-cbdc/">The European Central Bank Published Privacy Options for CBDC</a></li><li><a href="https://news.bitcoin.com/argentinian-government-advances-the-creation-of-a-national-cbdc/">Argentinian Government Advances the Creation of a National CBDC - News Bitcoin News</a></li></ul><h3>NFTs</h3><ul><li><a href="https://coin.news/nft/archie-comics-to-release-nft-collection/">Archie Comics and Palm NFT Studio are inviting Fans to help Define the Next Series of Comic Books &quot; coin.news</a></li><li><a href="https://www.forbes.com/sites/joshwilson/2022/04/25/warner-bros-announces-unique-features-for-upcoming-bat-cowl-nft-collection/?sh=4472a6a624cd">Warner Bros. Announces Unique Features For Upcoming Bat Cowl NFT Collection</a></li><li><a href="https://www.theverge.com/2022/5/4/23057221/starbucks-nft-loyalty-program-rewards-perks">Starbucks plans a &quot;global digital community&quot; around coffee with an NFT loyalty program</a></li><li><a href="https://cointelegraph.com/news/cannabis-focused-crypto-startup-is-launching-an-nft-community">Cannabis-focused crypto startup is launching an NFT community</a></li><li><a href="https://www.motorsport.com/f1/news/mercedes-miami-new-f1-art-wing/10291225/">Mercedes reveals new F1 art rear wing NFT design for Miami</a></li><li><a href="https://cointelegraph.com/news/opensea-top-10-nft-projects-soar-as-new-liquidity-enters-the-market">OpenSea top-10 NFT projects soar as new liquidity enters the market</a></li></ul><h3>Blockchain Industry</h3><ul><li><a href="https://thetokenizer.io/2022/05/02/worlds-first-regulatory-radar-to-monitor-the-blockchain-based-asset-token-space/">World&#39;s first regulatory radar to monitor the blockchain-based asset token space</a></li><li><a href="https://www.ledgerinsights.com/hsbc-dbs-trial-blockchain-trade-platform-gsbn-for-trade-finance/">HSBC, DBS trial blockchain trade platform GSBN for trade finance - Ledger Insights - enterprise blockchain</a></li><li><a href="https://thetimeshub.in/media-samsung-asset-management-to-launch-asias-first-blockchain-etf/760/">Media: Samsung Asset Management to Launch Asia&#39;s First Blockchain ETF - The Times Hub</a></li><li><a href="https://mokerthompson.com/diamond-traceability-added-to-the-aura-blockchain-of-which-cartier-and-bulgari-are-members-ledger-insights/">Diamond traceability added to the Aura blockchain, of which Cartier and Bulgari are members - Ledger Insights</a></li></ul><h3>Institutional Crypto</h3><ul><li><a href="https://www.coindesk.com/markets/2022/05/01/first-mover-asia-singapores-distaste-for-retail-crypto-is-spooking-institutional-money/">First Mover Asia: Singapore&#39;s Distaste for Retail Crypto Spooks Institutional Money</a></li><li><a href="https://cryptopotato.com/institutional-investors-cooling-on-crypto-as-weekly-outflows-top-120m/">Institutional Investors Cooling on Crypto as Weekly Outflows Top $120M</a></li><li><a href="https://news.bitcoin.com/80-of-institutional-investors-expect-crypto-to-overtake-traditional-investments-survey-shows/">80% of Institutional Investors Expect Crypto to Overtake Traditional Investments, Survey Shows - Featured Bitcoin News</a></li><li><a href="https://cryptonews.com/news/7-in-10-retail-and-institutional-investors-plan-to-buy-more-crypto-bitstamp-survey-finds.htm">7 in 10 Retail and Institutional Investors Plan to Buy More Crypto, Bitstamp Survey Finds</a></li></ul><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=f62df7509362" width="1" height="1" alt=""><hr><p><a href="https://medium.com/iobuilders/april-2022-enterprise-blockchain-monthly-review-f62df7509362">April 2022- Enterprise blockchain monthly review</a> was originally published in <a href="https://medium.com/iobuilders">iobuilders</a> on Medium, where people are continuing the conversation by highlighting and responding to this story.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[March 2022- Enterprise blockchain monthly review]]></title>
            <link>https://medium.com/iobuilders/march-2022-enterprise-blockchain-monthly-review-54a7c0c19817?source=rss----fe0e9e0edc94---4</link>
            <guid isPermaLink="false">https://medium.com/p/54a7c0c19817</guid>
            <category><![CDATA[nft]]></category>
            <category><![CDATA[cryptocurrency]]></category>
            <category><![CDATA[blockchain]]></category>
            <category><![CDATA[cbdc]]></category>
            <dc:creator><![CDATA[Io Builders]]></dc:creator>
            <pubDate>Fri, 08 Apr 2022 06:37:26 GMT</pubDate>
            <atom:updated>2022-04-08T06:36:57.293Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*ogiENkEBKONakBFq7uSrwA.jpeg" /></figure><p>Here is our monthly summary of enterprise blockchain related news in March 2022</p><h3>Digital Assets / Securities</h3><ul><li><a href="https://thetokenizer.io/2022/03/30/ix-swap-lists-security-token-of-worlds-most-valuable-sapphire/">IX Swap Lists Security Token of World&#39;s Most Valuable Sapphire</a></li><li><a href="https://www.channelnewsasia.com/business/nearly-half-crypto-owners-first-bought-digital-assets-2021-survey-2605816">Nearly half of crypto owners first bought digital assets in 2021: Survey</a></li><li><a href="https://www.whitehouse.gov/briefing-room/presidential-actions/2022/03/09/executive-order-on-ensuring-responsible-development-of-digital-assets/">Executive Order on Ensuring Responsible Development of Digital Assets | The White House</a></li><li><a href="https://www.coindesk.com/markets/2022/03/31/the-growing-digital-asset-lifeline-in-ukraine/">The Growing Digital Asset Lifeline in Ukraine</a></li></ul><h3>Digital Currencies / CBDC’s</h3><ul><li><a href="https://cointelegraph.com/news/ecb-official-suggests-importance-of-physical-stores-accepting-digital-euro">ECB official suggests importance of physical stores accepting digital euro</a></li><li><a href="https://cryptopotato.com/bank-of-canada-and-mit-to-conduct-a-joint-research-project-on-cbdc/">Bank of Canada and MIT to Conduct a Joint Research Project on CBDC</a></li><li><a href="https://www.reuters.com/business/finance/bank-england-sketches-out-regulatory-approach-crypto-2022-03-24/">Bank of England sketches out first regulatory approach to crypto</a></li><li><a href="https://blockworks.co/pwc-more-than-80-of-central-banks-are-considering-launching-a-cbdc/">PwC: More Than 80% of Central Banks Are Considering a CBDC</a></li></ul><h3>NFTs</h3><ul><li><a href="https://cointelegraph.com/news/nft-la-attract-the-mainstream-focus-on-web3-and-use-cases">NFT LA: Attract the mainstream, focus on Web3 and use cases</a></li><li><a href="https://nftnow.com/news/dc-comics-believes-batman-nft-drop-will-be-a-watershed-moment/">DC Comics Believes Batman NFT Drop Will Be a &quot;Watershed Moment&quot;</a></li><li><a href="https://techcrunch.com/2022/03/15/instagram-nfts/">Mark Zuckerberg says NFTs are coming to Instagram soon</a></li><li><a href="https://www.ledgerinsights.com/citi-report-values-metaverse-at-10-trillion-plus-by-2030/">Citi report values metaverse at $10 trillion plus by 2030 - Ledger Insights - enterprise blockchain</a></li><li><a href="https://www.ledgerinsights.com/nifty-partners-with-samsung-for-smart-tv-nft-platform/">Nifty partners with Samsung for smart TV NFT platform - Ledger Insights - enterprise blockchain</a></li><li><a href="https://www.lofficielsingapore.com/jewellery/bulgari-serpenti-nft-digital-fashion-luxury">Bulgari is the latest brand to launch an NFT. What does it mean for the fashion world?</a></li><li><a href="https://coingeek.com/wechat-suspends-nft-accounts-to-avoid-speculation-in-digital-assets/">WeChat suspends NFT accounts to &#39;avoid speculation in digital assets&#39; - CoinGeek</a></li></ul><h3>Blockchain Industry</h3><ul><li><a href="https://thetokenizer.io/2022/03/24/bitbond-launches-token-tool-for-web3-powered-asset-tokenization/">Bitbond Launches Token Tool for Web3 Powered Asset Tokenization</a></li><li><a href="https://www.ledgerinsights.com/japans-trade-blockchain-trade-waltz-goes-into-production-this-week/">Japan&#39;s trade blockchain Trade Waltz goes into production this week - Ledger Insights - enterprise blockchain</a></li><li><a href="https://thetokenizer.io/2022/03/22/oil-and-energy-tokenization-model-provides-a-new-capital-raising-instrument-utilizing-blockchain/">Oil and Energy Tokenization Model Provides a New Capital Raising Instrument Utilizing Blockchain</a></li><li><a href="https://www.aljazeera.com/news/2022/3/19/bitcoin-to-the-rescue-cryptocurrencies-role-in-ukraine">Bitcoin to the rescue: Cryptocurrencies&#39; role in Ukraine</a></li></ul><h3>Institutional Crypto</h3><ul><li><a href="https://www.xataka.com/criptomonedas/nueva-casilla-renta-para-criptomonedas-que-incluye-hacienda-que-tenemos-que-hacer-ella">Nueva casilla de la Renta para las criptomonedas: por qué la incluye Hacienda y qué tenemos que hacer con ella</a></li><li><a href="https://cointelegraph.com/news/institutional-crypto-funds-see-largest-capital-inflows-for-3-months">Institutional crypto funds see largest capital inflows for 3 months</a></li><li><a href="https://www.forbes.com/sites/javierpaz/2022/03/28/bitcoin-surges-past-47000-and-institutional-investors-may-not-be-far-behind/?sh=a2f1f2f1e35c">Bitcoin Surges Past $47,000, And Institutional Investors May Not Be Far Behind</a></li><li><a href="https://cointelegraph.com/news/nexo-and-amber-group-executives-claim-exponential-growth-in-crypto-institutional-investment">Nexo and Amber Group executives claim &#39;exponential&#39; growth in crypto institutional investment</a></li></ul><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=54a7c0c19817" width="1" height="1" alt=""><hr><p><a href="https://medium.com/iobuilders/march-2022-enterprise-blockchain-monthly-review-54a7c0c19817">March 2022- Enterprise blockchain monthly review</a> was originally published in <a href="https://medium.com/iobuilders">iobuilders</a> on Medium, where people are continuing the conversation by highlighting and responding to this story.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[February 2022- Enterprise blockchain monthly review]]></title>
            <link>https://medium.com/iobuilders/february-2022-enterprise-blockchain-monthly-review-31f53ab115bd?source=rss----fe0e9e0edc94---4</link>
            <guid isPermaLink="false">https://medium.com/p/31f53ab115bd</guid>
            <category><![CDATA[crypto]]></category>
            <category><![CDATA[cbdc]]></category>
            <category><![CDATA[nft]]></category>
            <category><![CDATA[blockchain]]></category>
            <dc:creator><![CDATA[Io Builders]]></dc:creator>
            <pubDate>Mon, 07 Mar 2022 09:53:14 GMT</pubDate>
            <atom:updated>2022-03-07T07:34:14.646Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*ogiENkEBKONakBFq7uSrwA.jpeg" /></figure><p>Here we bring you the latest news of the blockchain industry of February 2022</p><h3>Digital Assets / Securities</h3><ul><li><a href="https://www.globenewswire.com/news-release/2022/02/17/2387213/0/en/Talos-Adds-Access-to-OSL-s-Global-Digital-Asset-Exchange.html">Talos Adds Access to OSL&#39;s Global Digital Asset Exchange</a></li><li><a href="https://thetokenizer.io/2022/02/07/credit-market-leader-wizkey-leverages-algorand-to-power-its-fixed-income-financial-asset-tokenization-tools/">Credit Market Leader Wizkey Leverages Algorand to Power its Fixed Income Financial Asset Tokenization Tools</a></li><li><a href="https://www.prnewswire.com/news-releases/incore-bank-expands-its-digital-asset-brokerage-to-a-247-banking-service-with-algotrader-301472709.html">InCore Bank expands its Digital Asset Brokerage to a 24/7 Banking Service with AlgoTrader</a></li><li><a href="https://www.ledgerinsights.com/security-token-startup-securitize-acquires-pacific-stock-transfer/">Security token startup Securitize acquires Pacific Stock Transfer - Ledger Insights - enterprise blockchain</a></li></ul><h3>Digital Currencies / CBDC’s</h3><ul><li><a href="https://elpais.com/opinion/2022-02-16/la-urgencia-de-regular-las-criptomonedas.html?ssm=TW_CM_OP">La urgencia de regular las criptomonedas</a></li><li><a href="https://www.imf.org/en/News/Articles/2022/02/09/sp020922-the-future-of-money-gearing-up-for-central-bank-digital-currency">The Future of Money: Gearing up for Central Bank Digital Currency</a></li><li><a href="https://cointelegraph.com/news/central-bank-of-kenya-seeks-public-input-on-potential-cbdc">Central Bank of Kenya seeks public input on potential CBDC</a></li><li><a href="https://www.ecb.europa.eu/press/key/date/2022/html/ecb.sp220218_1~938e881b13.en.html">Central bank digital currencies: defining the problems, designing the solutions</a></li><li><a href="https://techcrunch.com/2022/02/10/after-zambia-kenya-explores-possibility-of-a-digital-currency/?guccounter=1&amp;guce_referrer=aHR0cHM6Ly93d3cuZ29vZ2xlLmNvbS8&amp;guce_referrer_sig=AQAAAGi3Bm8RzbvRjktQ6l4mQLzAnW-wvn7PIRt3Wm_bdRN1bruHGRMXPqWXoFN8947flN-lC_XmLwcMnFJ9SFOrAPy7DpLqregP82UWQpC3CL-MoKCugtCOnBA-kEmeSSohPvuLeeElUUrFXjhDDaT4tzEZ_VVsWlH9yN84iYeUjBvO">After Zambia, Kenya explores possibility of a digital currency</a></li></ul><h3>NFTs</h3><ul><li><a href="https://cointelegraph.com/news/puma-rebrands-to-puma-eth-on-twitter">Puma registers ENS domain, changes name to Puma.eth on Twitter</a></li><li><a href="https://www.ledgerinsights.com/nascar-partners-with-wax-blockchain-for-race-day-nfts/">NASCAR partners with WAX blockchain for race day NFTs - Ledger Insights - enterprise blockchain</a></li><li><a href="https://cointelegraph.com/news/opensea-planned-upgrade-stalls-as-phishing-attack-targets-nft-migration">OpenSea planned upgrade stalls as phishing attack targets NFT migration</a></li><li><a href="https://cointelegraph.com/news/are-nfts-coming-soon-to-your-favorite-video-games">Are NFTs coming soon to your favorite video games?</a></li><li><a href="https://decrypt.co/93881/display-startups-bringing-nfts-real-world">These Display Startups Are Bringing NFTs Into the Real World - Decrypt</a></li></ul><h3>Blockchain Industry</h3><ul><li><a href="https://consensys.net/blog/news/adb-plans-to-make-cross-border-payments-more-efficient-with-blockchain/">ADB partners with ConsenSys on blockchain project | ConsenSys</a></li><li><a href="https://www.ledgerinsights.com/block-circle-coinbase-create-decentralized-identity-solution-for-kyc-blockchain-transactions/">Block, Circle, Coinbase create decentralized identity solution for KYC&#39;d blockchain transactions - Ledger Insights - enterprise blockchain</a></li><li><a href="https://newblock.news/google-launches-blockchain-division/">Google Launches Blockchain Division - Newblock</a></li><li><a href="https://matterlabs.medium.com/zksync-2-0-public-testnet-is-live-de870ba9632a">zkSync 2.0: Public Testnet is Live!</a></li></ul><h3>Institutional Crypto</h3><ul><li><a href="https://cryptonews.com/exclusives/staking-2022-ethereums-merge-institutions-layer-2-liquid-staking.htm">Staking in 2022: Ethereum&#39;s Merge, Institutions, Layer-2, and Liquid Staking</a></li><li><a href="https://cointelegraph.com/news/what-s-shaping-the-future-of-the-institutional-crypto-market">What&#39;s shaping the future of the institutional crypto market?</a></li><li><a href="https://cryptoslate.com/americas-oldest-bank-to-launch-institutional-crypto-custody-service/">America&#39;s oldest bank to launch institutional crypto custody service</a></li><li><a href="https://www.coindesk.com/business/2022/02/01/institutional-crypto-services-firm-bcb-group-acquires-digital-asset-shop-lab577/">Institutional Crypto Services Firm BCB Group Acquires Digital Asset Shop LAB577</a></li></ul><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=31f53ab115bd" width="1" height="1" alt=""><hr><p><a href="https://medium.com/iobuilders/february-2022-enterprise-blockchain-monthly-review-31f53ab115bd">February 2022- Enterprise blockchain monthly review</a> was originally published in <a href="https://medium.com/iobuilders">iobuilders</a> on Medium, where people are continuing the conversation by highlighting and responding to this story.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[January 2022- Enterprise blockchain monthly review]]></title>
            <link>https://medium.com/iobuilders/january-2021-enterprise-blockchain-monthly-review-8189e4878df4?source=rss----fe0e9e0edc94---4</link>
            <guid isPermaLink="false">https://medium.com/p/8189e4878df4</guid>
            <category><![CDATA[enterprise]]></category>
            <category><![CDATA[blockchain-technology]]></category>
            <category><![CDATA[nft-collectibles]]></category>
            <category><![CDATA[cbdc]]></category>
            <dc:creator><![CDATA[Io Builders]]></dc:creator>
            <pubDate>Mon, 07 Mar 2022 09:52:38 GMT</pubDate>
            <atom:updated>2022-02-15T09:49:42.335Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*ogiENkEBKONakBFq7uSrwA.jpeg" /></figure><p>New year, new monthly updates! Here we bring you the latest news of the blockchain industry of January 2022</p><h3>Digital Assets / Securities</h3><ul><li><a href="https://allfunds.com/en/blog/2022/01/18/first-tokenized-orders-allfunds-blockchain/">Renta 4 and Allfunds complete first orders of new tokenized Spanish fund</a></li><li><a href="https://www.globenewswire.com/news-release/2022/01/21/2370920/0/en/DeFi-Technologies-Inc-Featured-in-Syndicated-Broadcast-Covering-Investment-into-SEBA-Bank-a-Swiss-Global-Digital-Assets-Pioneer.html">DeFi Technologies Inc. Featured in Syndicated Broadcast Covering Investment into SEBA Bank, a Swiss Global Digital Assets Pioneer</a></li><li><a href="https://thetokenizer.io/2022/01/20/unionbank-of-the-philippines-selects-metaco-and-ibm-to-orchestrate-its-digital-asset-custody-operations/">UnionBank of the Philippines Selects METACO and IBM to Orchestrate its Digital Asset Custody Operations</a></li><li><a href="https://www.prnewswire.com/news-releases/update-prometheum-marks-major-milestone-for-digital-asset-securities-meets-sec-requirements-to-operate-an-alternative-trading-system-for-digital-assets-for-subsidiary-prometheum-ats-301456364.html">Update: Prometheum Marks Major Milestone for Digital Asset Securities, Meets SEC Requirements to Operate an &quot;Alternative Trading System&quot; for Digital Assets for Subsidiary &quot;Prometheum ATS&quot;</a></li></ul><h3>Digital Currencies / CBDC’s</h3><ul><li><a href="https://cointelegraph.com/news/germany-s-2021-new-regulations-the-digital-euro-and-nfts-on-the-rise">Germany&#39;s 2021: New regulations, the digital euro and NFTs on the rise</a></li><li><a href="https://www.ledgerinsights.com/thailand-restricts-use-of-digital-assets-for-payments/">Thailand restricts use of digital assets for payments - Ledger Insights - enterprise blockchain</a></li><li><a href="https://www.coindesk.com/policy/2022/01/24/bank-of-america-says-us-cbdc-would-preserve-dollars-status-as-worlds-reserve-currency/">Bank of America Says US CBDC Would Preserve Dollar&#39;s Status as World&#39;s Reserve Currency</a></li><li><a href="https://cointelegraph.com/news/bank-of-korea-completes-first-phase-of-digital-currency-pilot">Bank of Korea completes first phase of digital currency pilot</a></li><li><a href="https://forkast.news/headlines/japan-cooperate-europe-us-cbdc-boj/">Japan must cooperate with Europe, US on CBDC, BOJ says</a></li></ul><h3>NFTs</h3><ul><li><a href="https://www.xataka.com/servicios/twitter-comienza-a-ofrecer-nfts-ahora-para-fotos-perfil-solo-para-suscriptores-twitter-blue">Twitter comienza a ofrecer NFTs: por ahora para fotos de perfil y solo para suscriptores de Twitter Blue</a></li><li><a href="https://www.mastercard.com/news/perspectives/2022/coinbase-nft-marketplace-making-it-easier-for-everyone-to-buy-nfts/">Making it easier for everyone to buy NFTs</a></li><li><a href="https://www.videogameschronicle.com/news/atari-is-celebrating-its-50th-anniversary-by-combining-nfts-with-lootboxes/">Atari is celebrating its 50th anniversary by combining NFTs with lootboxes | VGC</a></li><li><a href="https://www.bbc.com/news/business-60121538">The Beatles and John Lennon memorabilia to be sold as NFTs</a></li><li><a href="https://www.cbsnews.com/news/pablo-picasso-nft-ceramic-bowl/">Picasso heirs launch NFTs of never-before-seen ceramic work by famed artist</a></li></ul><h3>Blockchain Industry</h3><ul><li><a href="https://www.ledgerinsights.com/warner-music-partners-with-sandbox-blockchain-game-for-music-events/">Warner Music partners with Sandbox blockchain game for music events - Ledger Insights - enterprise blockchain</a></li><li><a href="https://9to5google.com/2022/01/27/google-cloud-blockchain/">Google Cloud wants to help more companies adopt and use the blockchain</a></li><li><a href="https://cointelegraph.com/news/blockchain-enabled-digital-fashion-creates-new-business-models-for-brands">Blockchain-enabled digital fashion creates new business models for brands</a></li><li><a href="https://www.coindesk.com/markets/2022/01/28/bstx-receives-sec-approval-for-blockchain-powered-securities-exchange/">BSTX Receives SEC Approval for Blockchain-Powered Securities Exchange</a></li></ul><h3>Institutional Crypto</h3><ul><li><a href="https://www.deseret.com/2022/1/27/22904451/facebook-cryptocurrency-assets-whats-happening">Facebook is slowing down its cryptocurrency venture</a></li><li><a href="https://financefeeds.com/shift-markets-continues-revolutionize-institutional-crypto-solutions/">Shift Markets Continues to Revolutionize Institutional Crypto Solutions - FinanceFeeds</a></li><li><a href="https://cointelegraph.com/news/flushing-it-8b-new-york-commercial-bank-to-offer-bitcoin-services">Flushing it: $8B New York commercial bank to offer Bitcoin services</a></li><li><a href="https://www.theblockcrypto.com/post/129277/aave-arc-permissioned-defi-platform-fireblocks-first-whitelister">Aave launches its permissioned DeFi platform Aave Arc</a></li></ul><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=8189e4878df4" width="1" height="1" alt=""><hr><p><a href="https://medium.com/iobuilders/january-2021-enterprise-blockchain-monthly-review-8189e4878df4">January 2022- Enterprise blockchain monthly review</a> was originally published in <a href="https://medium.com/iobuilders">iobuilders</a> on Medium, where people are continuing the conversation by highlighting and responding to this story.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[December 2021- Enterprise blockchain monthly review]]></title>
            <link>https://medium.com/iobuilders/december-2021-enterprise-blockchain-monthly-review-3b6f6c3766dc?source=rss----fe0e9e0edc94---4</link>
            <guid isPermaLink="false">https://medium.com/p/3b6f6c3766dc</guid>
            <category><![CDATA[digital-currency]]></category>
            <category><![CDATA[nft]]></category>
            <category><![CDATA[cbdc]]></category>
            <category><![CDATA[blockchain-startup]]></category>
            <category><![CDATA[cryptocurrency-news]]></category>
            <dc:creator><![CDATA[Io Builders]]></dc:creator>
            <pubDate>Mon, 07 Mar 2022 09:52:09 GMT</pubDate>
            <atom:updated>2022-01-12T08:26:40.537Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*ETx35D7XiXkNqY_oi7Ae0g.jpeg" /></figure><p>We bid farewell to 2021 with a recap of all the most outstanding news of the blockchain industry of December!</p><h3>Digital Assets / Securities</h3><ul><li><a href="https://www.elespanol.com/invertia/empresas/banca/20211209/renta-banca-universal-lanzara-activos-digitales-estrategico/633437646_0.html">Renta 4 hará banca universal y lanzará activos digitales en su nuevo plan estratégico</a></li><li><a href="https://thetokenizer.io/2021/12/20/coinstreet-and-somerley-collaborate-to-form-new-venture-to-provide-professional-services-in-security-token-offerings-sto-in-hong-kong/">Coinstreet And Somerley Collaborate To Form New Venture To Provide Professional Services In Security Token Offerings (&quot;STO&quot;) In Hong Kong</a></li><li><a href="https://www.ledgerinsights.com/cloud-security-alliance-corda-blockchain-security/">Cloud Security Alliance reviews Corda blockchain security - Ledger Insights - enterprise blockchain</a></li><li><a href="https://www.asianinvestor.net/article/digital-assets-outlook-2022-all-eyes-on-regulations-as-capital-pours-in/474648">Digital assets outlook 2022: All eyes on regulations as capital pours in | Alternatives | AsianInvestor</a></li><li><a href="https://www.coindesk.com/policy/2021/12/30/one-big-regulatory-question-holds-advisors-back-from-crypto/">One Big Regulatory Question Holds Advisors Back From Crypto</a></li></ul><h3>Digital Currencies / CBDC’s</h3><ul><li><a href="https://cointelegraph.com/news/hsbc-and-ibm-create-successful-multi-ledger-cbdc-demo">HSBC and IBM create successful multi-ledger CBDC demo</a></li><li><a href="https://www.coindesk.com/policy/2021/12/16/kazakhstan-piloting-a-cbdc-on-r3s-corda-platform/">Kazakhstan Piloting a CBDC on R3′s Corda Platform</a></li><li><a href="https://www.ledgerinsights.com/uk-has-no-plans-for-a-wholesale-cbdc-envisages-banks-enabling-synthetic/">UK has no plans for a wholesale CBDC, envisages banks enabling synthetic - Ledger Insights - enterprise blockchain</a></li><li><a href="https://seekingalpha.com/news/3784174-mexico-central-bank-plans-to-launch-cbdc-by-2024">Mexico central bank plans to launch CBDC by 2024</a></li><li><a href="https://news.bitcoin.com/nigerian-experts-cbdc-still-unattractive-users-despite-central-banks-claim/">Nigerian Experts: CBDC Still Unattractive to Users Despite Claim of &#39;Excellent&#39; Adoption Rate - Emerging Markets Bitcoin News</a></li><li><a href="https://finance.yahoo.com/video/whatsapp-begins-offering-novi-money-183506394.html?guccounter=1">WhatsApp begins offering Novi money transfers to some users in the US</a></li><li><a href="https://www.ledgerinsights.com/siemens-taps-jp-morgan-onyx-blockchain-based-payments/">Siemens taps JP Morgan&#39;s Onyx for blockchain-based payments - Ledger Insights - enterprise blockchain</a></li></ul><h3>NFTs</h3><ul><li><a href="https://decrypt.co/88393/michael-jordan-jumps-into-web3-solana-app-athletes-nfts-tokens">Michael Jordan Jumps Into Web3 via Solana App for Athletes - Decrypt</a></li><li><a href="https://www.marketingdive.com/news/loreal-calls-out-lack-of-female-representation-in-nft-space/611477/">L&#39;Oréal calls out lack of female representation in NFT space</a></li><li><a href="https://cointelegraph.com/news/draftkings-marketplace-plans-to-launch-gamified-nft-collection-next-nfl-season">DraftKings Marketplace plans to launch gamified NFT collection next NFL season</a></li><li><a href="https://www.theverge.com/2021/12/17/22843104/adidas-nfts-metaverse-sold-bored-ape">Adidas sold more than $22 million in NFTs, but it hit a few snags along the way</a></li><li><a href="https://cryptonews.com/news/chinese-tech-giants-ready-metaverse-nft-moves-despite-regulatory-scrutiny.htm">Chinese Tech Giants Ready Metaverse, NFT Moves Despite Regulatory Scrutiny</a></li></ul><h3>Blockchain Industry</h3><ul><li><a href="https://www.coindesk.com/business/2021/12/09/microsoft-leads-27m-funding-round-for-palm-nft-studio/">Microsoft Leads $27M Funding Round for Palm NFT Studio</a></li><li><a href="https://www.ft.com/content/fd57521c-a2e9-415b-9c4f-4f74b4587f9e">Blockchain-powered breakthrough on mutual fund</a></li><li><a href="https://www.coindesk.com/business/2021/12/16/consensys-collaborates-with-mastercard-on-new-ethereum-scaling-solution/?outputType=amp">ConsenSys Collaborates With Mastercard on New Ethereum Scaling System</a></li><li><a href="https://dailyhodl.com/2021/12/16/paris-blockchain-week-summit-returns-april-12-14-2022/">Paris Blockchain Week Summit Returns April 12-14, 2022 - The Daily Hodl</a></li><li><a href="https://www.coindesk.com/markets/2021/12/15/hedera-a-distributed-network-targeting-businesses-jumps-into-metaverse-fray/">Hedera, a Distributed Network Targeting Businesses, Jumps Into Metaverse Fray</a></li></ul><h3>Institutional Crypto</h3><ul><li><a href="https://www.cnbc.com/2021/12/20/more-businesses-offer-pay-in-cryptocurrency-in-a-bid-to-lure-young-workers.html">More businesses offer pay in cryptocurrency in a bid to lure younger workers</a></li><li><a href="https://news.bitcoin.com/100-companies-fail-to-obtain-crypto-licenses-singapore-tough-regulation/">100 Companies Fail to Obtain Crypto Licenses in Singapore Due to Tough Regulation - Regulation Bitcoin News</a></li></ul><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=3b6f6c3766dc" width="1" height="1" alt=""><hr><p><a href="https://medium.com/iobuilders/december-2021-enterprise-blockchain-monthly-review-3b6f6c3766dc">December 2021- Enterprise blockchain monthly review</a> was originally published in <a href="https://medium.com/iobuilders">iobuilders</a> on Medium, where people are continuing the conversation by highlighting and responding to this story.</p>]]></content:encoded>
        </item>
    </channel>
</rss>