<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Alex Hernandez</title>
    <description>The latest articles on DEV Community by Alex Hernandez (@phantomhaze).</description>
    <link>https://dev.to/phantomhaze</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F108833%2F49fa18f1-f18f-452f-aca9-faa942ed849c.jpg</url>
      <title>DEV Community: Alex Hernandez</title>
      <link>https://dev.to/phantomhaze</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/phantomhaze"/>
    <language>en</language>
    <item>
      <title>JS Exercise: Sum of a String</title>
      <dc:creator>Alex Hernandez</dc:creator>
      <pubDate>Fri, 01 Apr 2022 03:15:46 +0000</pubDate>
      <link>https://dev.to/phantomhaze/js-exercise-sum-of-a-string-nga</link>
      <guid>https://dev.to/phantomhaze/js-exercise-sum-of-a-string-nga</guid>
      <description>&lt;p&gt;Feeling confident in Javascript?&lt;/p&gt;

&lt;p&gt;Well, given a string of lowercase letters, would you be able to sum them all up into 1 value? &lt;br&gt;
In one line of code?&lt;/p&gt;

&lt;p&gt;Solution and explanations are below.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution
&lt;/h2&gt;

&lt;p&gt;const lettersum = s =&amp;gt; &lt;br&gt;
    s &lt;br&gt;
        .split('') &lt;br&gt;
        .map(c =&amp;gt; c.charCodeAt(0) - 96) &lt;br&gt;
        .reduce((a, b) =&amp;gt; a + b, 0);&lt;/p&gt;

&lt;p&gt;Pretty concise, isn't it? &lt;br&gt;
Let's go over this step-by-step&lt;/p&gt;

&lt;h2&gt;
  
  
  JS Arrow functions
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;'const lettersum = s =&amp;gt;' &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;First, we use 'const' to declare a variable (named 'lettersum') whose value shouldn't change later.&lt;/p&gt;

&lt;p&gt;Then we begin to declare a function using a compact definition called an 'arrow function expression'. &lt;/p&gt;

&lt;h2&gt;
  
  
  Splitting
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;s &lt;br&gt;
      .split('')&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This is the same as &lt;code&gt;s.split()&lt;/code&gt;&lt;br&gt;
However, JS ignores newlines (line-terminators) when they separate bits of code (except in cases where it auto-inserts ';' like in return)&lt;/p&gt;

&lt;p&gt;We do this so as we chain multiple functions, it stays easy to read&lt;/p&gt;

&lt;p&gt;So what does 's.split('')' do?&lt;/p&gt;

&lt;p&gt;Well, split() is a string method, that will divide the string into substrings, and returns them as an array.&lt;/p&gt;

&lt;p&gt;In this case, '' means we want to divide the string at every character.&lt;/p&gt;

&lt;p&gt;This gives us the string as an array of characters&lt;/p&gt;

&lt;h2&gt;
  
  
  Mapping
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; .map(c =&amp;gt; c.charCodeAt(0) - 96)
&lt;/code&gt;&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;Map accepts a function and will return the array created from calling the function on every element in the array. &lt;/p&gt;

&lt;p&gt;Here we are going through our array of characters, and turning each one into a digit, subtracting 96 so a=0.&lt;/p&gt;

&lt;h2&gt;
  
  
  Reduce
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; .reduce((a, b) =&amp;gt; a + b, 0);
&lt;/code&gt;&lt;/pre&gt;
&lt;/blockquote&gt;

&lt;p&gt;Lastly, this reduces the list down to a single value. &lt;/p&gt;

&lt;p&gt;It calls the function we pass on each item in the array, storing the result in 'a' and calling the function  again with  'b' set as the next value in the array.&lt;/p&gt;

&lt;p&gt;Here we are summing up every element in the list.&lt;/p&gt;

&lt;h2&gt;
  
  
  Closing
&lt;/h2&gt;

&lt;p&gt;And that's it! So in summary, we&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Split the string into characters&lt;/li&gt;
&lt;li&gt;Go through each character, converting it into a number&lt;/li&gt;
&lt;li&gt;Sum up all the numbers&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thanks for sticking around, and stay tuned for the next JS lesson.&lt;/p&gt;

</description>
      <category>javascript</category>
    </item>
    <item>
      <title>DAOs: Revolutionizing Social Networks</title>
      <dc:creator>Alex Hernandez</dc:creator>
      <pubDate>Tue, 29 Mar 2022 19:10:13 +0000</pubDate>
      <link>https://dev.to/phantomhaze/daos-revolutionizing-social-networks-gp4</link>
      <guid>https://dev.to/phantomhaze/daos-revolutionizing-social-networks-gp4</guid>
      <description>&lt;p&gt;Have you heard how DAOs will create revolutionary social networks?&lt;/p&gt;

&lt;p&gt;Social networks (and the internet) have made it easy for like-minded individuals to congregate and communicate.&lt;/p&gt;

&lt;p&gt;The advent of crypto will likewise make it easy to coordinate around capital&lt;/p&gt;

&lt;p&gt;Internet &amp;lt;-&amp;gt; Communication&lt;br&gt;
DAOs &amp;lt;-&amp;gt; Capital&lt;/p&gt;

&lt;h2&gt;
  
  
  What is a DAO?
&lt;/h2&gt;

&lt;p&gt;DAOs are software-enabled organizations.&lt;/p&gt;

&lt;p&gt;The industrial revolution favored the LLC as the tool to organize.&lt;br&gt;
DAOs will fulfill this role for Web3 at large.&lt;/p&gt;

&lt;p&gt;DAOs are leaner than LLCs, attracting talent from all over the world.&lt;/p&gt;

&lt;h2&gt;
  
  
  What do DAOs do?
&lt;/h2&gt;

&lt;p&gt;Present DAOs have a variety of missions, from:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Manage large protocols&lt;/li&gt;
&lt;li&gt;Investment&lt;/li&gt;
&lt;li&gt;Social Communities&lt;/li&gt;
&lt;li&gt;Media&lt;/li&gt;
&lt;li&gt;Philanthropic Pursuits&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Let's take a look at each category now&lt;/p&gt;

&lt;h3&gt;
  
  
  Protocol DAOs
&lt;/h3&gt;

&lt;p&gt;From Ethereum came a whole array of new crypto assets. &lt;br&gt;
Protocols were made to let people trade these assets.&lt;/p&gt;

&lt;p&gt;DAOs then emerged to let users have a collective say in the future of the protocol.&lt;/p&gt;

&lt;p&gt;Voting is done with governance tokens given to users&lt;/p&gt;

&lt;p&gt;Ex. Protocol DAO&lt;/p&gt;

&lt;p&gt;Some examples of Protocol DAOs are&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Uniswap&lt;/li&gt;
&lt;li&gt;Compound&lt;/li&gt;
&lt;li&gt;Aave&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For example, Uniswap token holders voted on which Layer-2 networks the protocol should be deployed.&lt;/p&gt;

&lt;h3&gt;
  
  
  Investment / Collector DAOs
&lt;/h3&gt;

&lt;p&gt;These let people pool capital with the aim of investing in specific assets, ranging from NFTs to sports franchises!&lt;/p&gt;

&lt;p&gt;This is a fast and simple alternative to venture capital funds.&lt;/p&gt;

&lt;p&gt;Examples are&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;PleasrDAO&lt;/li&gt;
&lt;li&gt;MetaCartel Ventures&lt;/li&gt;
&lt;li&gt;Komerabi&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Social DAOs
&lt;/h3&gt;

&lt;p&gt;By organizing around a token, like-minded members have the incentive to create a valuable community&lt;/p&gt;

&lt;p&gt;Some like FWB require an application + a fee, others like the Bored Ape Yacht Club use NFT ownership to unlock access.&lt;/p&gt;

&lt;h3&gt;
  
  
  Service DAOs
&lt;/h3&gt;

&lt;p&gt;These are like online talent agencies.&lt;br&gt;
Clients issue bounties for tasks.&lt;br&gt;
Once finished they pay the Treasury + contributors&lt;/p&gt;

&lt;p&gt;Ex. are&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;DxDAO&lt;/li&gt;
&lt;li&gt;Raid Guild&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These DAOs have the potential to reinvent work to look like the gig economy.&lt;/p&gt;

&lt;h3&gt;
  
  
  Media DAOs
&lt;/h3&gt;

&lt;p&gt;Rather than rely on ad-based revenue, these DAOs tokenized incentives to reward producers and consumers.&lt;/p&gt;

&lt;p&gt;An example is Bankless DAO. Its audience was airdropped BANK, and  they can earn more by&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Producing Content&lt;/li&gt;
&lt;li&gt;Research&lt;/li&gt;
&lt;li&gt;Graphic Design&lt;/li&gt;
&lt;li&gt;Many Options!&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Grants/Philanthropy DAOs
&lt;/h3&gt;

&lt;p&gt;Like Investment DAOs, these DAOs pool capital to allocate later however without the expectation of profit.&lt;/p&gt;

&lt;p&gt;Gitcoin is a popular Grant DAO, supporting critical open-source infrastructure. &lt;/p&gt;

&lt;h2&gt;
  
  
  Hurdle for DAOs
&lt;/h2&gt;

&lt;p&gt;DAOs are reinventing how we govern, invest, work, create, and donate.&lt;br&gt;
However, there are 4 barriers:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Lack of legal/regulatory clarity&lt;/li&gt;
&lt;li&gt;Lack of efficient coordination mechanisms&lt;/li&gt;
&lt;li&gt;Lack of infrastructure&lt;/li&gt;
&lt;li&gt;Smart contract &amp;amp; sustainability risks&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Lack of Legal Clarity
&lt;/h3&gt;

&lt;p&gt;DAOs don't have a jurisdiction whose laws can protect them.&lt;/p&gt;

&lt;p&gt;In the US, DAOs have 2 choices:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Form an LLC in Wyoming&lt;/li&gt;
&lt;li&gt;Be treated as a general partnership&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This leaves DAOs either misrepresented or exposes members to liabilities.&lt;/p&gt;

&lt;h3&gt;
  
  
  Lack of efficient coordination mechanisms
&lt;/h3&gt;

&lt;p&gt;Right now many DAOs have a crude governance structure, where voting power can be a function of buying power than expertise.&lt;/p&gt;

&lt;p&gt;Some have suggested a Delegated model where token holders vote for delegates to make decisions.&lt;/p&gt;

&lt;h3&gt;
  
  
  Lack of developed infrastructure
&lt;/h3&gt;

&lt;p&gt;Corporations benefit from being able to operate on an infrastructure that's been developed and tested for decades.&lt;/p&gt;

&lt;p&gt;DAO tools for governance, payroll, reporting, treasury management, communication and other resources are still fresh.&lt;/p&gt;

&lt;h3&gt;
  
  
  Smart contract, fragmentation, &amp;amp; sustainability risk
&lt;/h3&gt;

&lt;p&gt;The smart contract exploits of 'The DAO' are still relevant today.&lt;/p&gt;

&lt;p&gt;Fragmentation within crypto networks, such as the ETH/ETC split, could prove problematic for organizations that want stability.&lt;/p&gt;

&lt;h2&gt;
  
  
  Closing
&lt;/h2&gt;

&lt;p&gt;DAOs have the potential to be a paradigm shift in economic organizations.&lt;/p&gt;

&lt;p&gt;We may even one day see institutions built not on legal contracts, but on top of an open crypto network! &lt;/p&gt;

&lt;p&gt;This thread was my notes summarizing this article&lt;br&gt;
&lt;a href="https://twitter.com/coinbase/status/1473668601039048704?s=20&amp;amp;t=ccxlc5b_YuACNh6Mu9AZXA"&gt;https://twitter.com/coinbase/status/1473668601039048704?s=20&amp;amp;t=ccxlc5b_YuACNh6Mu9AZXA&lt;/a&gt;&lt;/p&gt;

</description>
      <category>blockchain</category>
      <category>web3</category>
    </item>
    <item>
      <title>What does DeFi Mean in 2022?</title>
      <dc:creator>Alex Hernandez</dc:creator>
      <pubDate>Tue, 29 Mar 2022 00:57:25 +0000</pubDate>
      <link>https://dev.to/phantomhaze/what-does-defi-mean-in-2022-22b7</link>
      <guid>https://dev.to/phantomhaze/what-does-defi-mean-in-2022-22b7</guid>
      <description>&lt;p&gt;Ever heard the term DeFi(Decentralized Finance)?&lt;/p&gt;

&lt;p&gt;Let's go over what it means now!&lt;/p&gt;

&lt;h2&gt;
  
  
  What is DeFi?
&lt;/h2&gt;

&lt;p&gt;DeFi refers to financial applications that use blockchains instead of banks.&lt;/p&gt;

&lt;p&gt;The main idea is that anyone can lend, borrow, and bank without using middlemen.&lt;/p&gt;

&lt;p&gt;More advanced applications cover&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Derivatives trading&lt;/li&gt;
&lt;li&gt;Asset swaps&lt;/li&gt;
&lt;li&gt;Decentralized exchanges&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Who invented DeFi?
&lt;/h2&gt;

&lt;p&gt;There's no one single innovator, however DeFi tools first started appearing on Ethereum.&lt;/p&gt;

&lt;p&gt;Now DeFi spans a variety of networks, such as&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Solana&lt;/li&gt;
&lt;li&gt;Binance Smart Chain&lt;/li&gt;
&lt;li&gt;Avalanche&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  3 Big Features of DeFi
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;It's 'Open' - you can use the applications with only a digital-wallet&lt;/li&gt;
&lt;li&gt;You can move funds near-instantaneously&lt;/li&gt;
&lt;li&gt;Rates are currently much better than trad banks&lt;/li&gt;
&lt;li&gt;"money legos" - composability allows for apps to be built on top of apps&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;3 basic uses for DeFi are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Lending/Borrowing&lt;/li&gt;
&lt;li&gt;Trading&lt;/li&gt;
&lt;li&gt;Derivatives&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We'll go through into those now &lt;/p&gt;

&lt;h2&gt;
  
  
  DeFi Lending/Borrowing
&lt;/h2&gt;

&lt;p&gt;Certain protocols allow you to loan them crypto for rewards/interest, or borrow assets (useful for trading)&lt;/p&gt;

&lt;p&gt;"yield farming" is the process of profiting off rewards earned through locking up funds(loaning) in a variety of assets&lt;/p&gt;

&lt;h2&gt;
  
  
  DeFi Trading
&lt;/h2&gt;

&lt;p&gt;Decentralized exchanges(DEXes) allow for people to trade with one another, with using middlemen who take custody of your assets.&lt;/p&gt;

&lt;p&gt;Some DEXes like Uniswap or PancakeSwap allow you to list new tokens for sale (a popular option to crowdfund projects)&lt;/p&gt;

&lt;h2&gt;
  
  
  DeFi Derivatives
&lt;/h2&gt;

&lt;p&gt;The ability to take out leveraged positions also exists in the DeFi space! &lt;/p&gt;

&lt;p&gt;You can also create 'synthetic' assets that mimic trad stocks and commodities&lt;/p&gt;

&lt;h2&gt;
  
  
  How to make DeFi Dapps?
&lt;/h2&gt;

&lt;p&gt;If you can write smart contracts, you can start building in DeFi.&lt;br&gt;
For testing/deploying you have truffle hardhat, and waffle.&lt;/p&gt;

&lt;p&gt;Different standards&lt;br&gt;
We have &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;ERC20 on Ethereum&lt;/li&gt;
&lt;li&gt;SPL on Solana&lt;/li&gt;
&lt;li&gt;BEP20 on Binance Smart chain&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Defining a token allows your protocol to interact directly with a Layer-1 blockchain.&lt;br&gt;
You can use these tokens to promote your ecosystem and push decentralization&lt;/p&gt;

&lt;p&gt;You can use most DeFi apps by visiting their website and connecting with a crypto-wallet for the appropriate blockchain.&lt;/p&gt;

&lt;p&gt;Also for most interactions, you have to pay some sort of transaction fee (gas in Ethereum) using the token of the network.&lt;/p&gt;

&lt;p&gt;However, there are still security and regulatory challenges to overcome.&lt;/p&gt;

&lt;p&gt;It's estimated that users lost ~$10.5billion over the last 2 years.&lt;/p&gt;

&lt;p&gt;Headlines like the above are why many financial institutions want to pass regulations on crypto.&lt;/p&gt;

&lt;h2&gt;
  
  
  Closing
&lt;/h2&gt;

&lt;p&gt;I hope I got your interest in DeFi piqued with this thread. Thanks for reading along.&lt;/p&gt;

&lt;p&gt;This thread is my personal notes on the concepts discussed in this article &lt;a href="https://decrypt.co/resources/defi-decentralized-finance-explained-guide-learn"&gt;https://decrypt.co/resources/defi-decentralized-finance-explained-guide-learn&lt;/a&gt;&lt;/p&gt;

</description>
      <category>defi</category>
      <category>web3</category>
      <category>blockchain</category>
    </item>
    <item>
      <title>Networks to watch in 2022: Polkadot</title>
      <dc:creator>Alex Hernandez</dc:creator>
      <pubDate>Tue, 29 Mar 2022 00:52:43 +0000</pubDate>
      <link>https://dev.to/phantomhaze/networks-to-watch-in-2022-polkadot-10c8</link>
      <guid>https://dev.to/phantomhaze/networks-to-watch-in-2022-polkadot-10c8</guid>
      <description>&lt;p&gt;Have you heard about the Polkadot Blockchain Network?&lt;/p&gt;

&lt;p&gt;In short it is&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A platform that fosters a multi-chain ecosystem&lt;/li&gt;
&lt;li&gt;A meta protocol, which works at a lower level then Ethereum (smart contract level)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Polkadot is a cryptocurrency network that wants to help weave all the disparate blockchains together.&lt;/p&gt;

&lt;p&gt;Currently, blockchains operate in silos, separately.&lt;/p&gt;

&lt;p&gt;But Polkadot promises to fix this by creating an internet of interoperable blockchains.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Polkadot?
&lt;/h2&gt;

&lt;p&gt;Polkadot is referred to as a 'multi-chain network', because it can join networks together.&lt;/p&gt;

&lt;p&gt;Its aim is to be a framework that blockchains use, similar to how sites use HTML. &lt;/p&gt;

&lt;p&gt;This enables devs to focus on creating apps and writing smart contracts, while leaving the specifics of  security and validation to the protocol.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why is it important?
&lt;/h2&gt;

&lt;p&gt;Developer time, talent, and resources are diverted into building competing networks.&lt;/p&gt;

&lt;p&gt;Polkadot aims to create a way for developers to build value on top of all blockchains, rather than just one.&lt;/p&gt;

&lt;h2&gt;
  
  
  How does Polkadot work?
&lt;/h2&gt;

&lt;p&gt;Blockchains can connect to Polkadot and get access to its PoS validation and security through, 'para-chains'.&lt;/p&gt;

&lt;p&gt;The central chain is called the 'Relay Chain' and it is where all transactions are standardized.&lt;/p&gt;

&lt;p&gt;While using Polkadot, blockchains are still free to use their own PoS, update schedules, and what tokens and dapps to use.&lt;/p&gt;

&lt;p&gt;Essentially integration with Polkadot is layered, allowing for progressive integration.&lt;/p&gt;

&lt;h2&gt;
  
  
  What problems does it solve?
&lt;/h2&gt;

&lt;p&gt;Polkadot solves two significant issues for blockchains:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Scalability: num of transactions the network can handle&lt;/li&gt;
&lt;li&gt;Governance: How the community manages protocol upgrades and changes &lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Does Polkadot have a cryptocurrency?
&lt;/h2&gt;

&lt;p&gt;Enter DOT.&lt;/p&gt;

&lt;p&gt;Holders of DOT are allowed to vote on potential code changes.&lt;br&gt;
Once a consensus is reached, updates are propagated across the network.&lt;/p&gt;

&lt;h2&gt;
  
  
  Polkadots Mission
&lt;/h2&gt;

&lt;p&gt;Polkadot wants to become the bedrock upon which all blockchains will build.&lt;/p&gt;

&lt;p&gt;They believe by being a common platform, companies will be encouraged to innovate knowing the foundations are taken care of. &lt;/p&gt;

&lt;h2&gt;
  
  
  History
&lt;/h2&gt;

&lt;p&gt;Polkadot launched in May 2020&lt;/p&gt;

&lt;p&gt;In a year it accomplished:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;4th largest token with an $18b market cap&lt;/li&gt;
&lt;li&gt;Increasing supply from 10 million to 1 billion by splitting old DOT 100 ways into new DOT &lt;/li&gt;
&lt;li&gt;Over 340 projects being developed&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What is Polkastarter?
&lt;/h2&gt;

&lt;p&gt;Polkastarter is a Polkadot-based dex that you can use to create cross-chain pools and auctions&lt;/p&gt;

&lt;p&gt;Its powered by the POLS token, which covers:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Governance paying&lt;/li&gt;
&lt;li&gt;Transaction fees&lt;/li&gt;
&lt;li&gt;Access to platform token pools&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Closing
&lt;/h2&gt;

&lt;p&gt;The future for Polkadot looks promising, given it's successful launch which placed DOT among the top asset on most exchanges to this day&lt;/p&gt;

&lt;p&gt;Thanks for following along, this thread is my personal notes summarizing this article&lt;/p&gt;

&lt;p&gt;&lt;a href="https://decrypt.co/resources/what-is-polkadot-how-to-buy-it"&gt;https://decrypt.co/resources/what-is-polkadot-how-to-buy-it&lt;/a&gt;&lt;/p&gt;

</description>
      <category>blockchain</category>
      <category>web3</category>
    </item>
    <item>
      <title>A Quick Crypto/Web3 Primer</title>
      <dc:creator>Alex Hernandez</dc:creator>
      <pubDate>Fri, 25 Mar 2022 03:32:00 +0000</pubDate>
      <link>https://dev.to/phantomhaze/a-quick-cryptoweb3-primer-511n</link>
      <guid>https://dev.to/phantomhaze/a-quick-cryptoweb3-primer-511n</guid>
      <description>&lt;p&gt;Want a quick start on Crypto and Web3?&lt;/p&gt;

&lt;p&gt;Then keep reading!&lt;/p&gt;

&lt;h2&gt;
  
  
  Eras of the Web
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Web1 - Google, Amazon

&lt;ul&gt;
&lt;li&gt;Users consume content&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Web2 - Facebook, Uber

&lt;ul&gt;
&lt;li&gt;Users create content&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;li&gt;Web3 - Ethereum, OpenAI

&lt;ul&gt;
&lt;li&gt;User own content&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Where Web3 and Crypto align is they both seek to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Use technology to help the disadvantaged&lt;/li&gt;
&lt;li&gt;Fix what’s wrong with the internet today&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Blockchain Architecture
&lt;/h2&gt;

&lt;h4&gt;
  
  
  Current:
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Client &amp;lt;-&amp;gt; Server&lt;/li&gt;
&lt;li&gt;Owned by Some Company&lt;/li&gt;
&lt;li&gt;Monopolistic, Single points of failure&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Blockchain
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;P2P Networks&lt;/li&gt;
&lt;li&gt;Validators that keep the network honest &lt;/li&gt;
&lt;li&gt;Decentralized governance &amp;amp; permissions&lt;/li&gt;
&lt;li&gt;Global state&lt;/li&gt;
&lt;li&gt;Multiple points of failure&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Blockchain trades technical scalability for social scalability
&lt;/h2&gt;

&lt;p&gt;4 layers to understand blockchain:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Hardware &amp;amp; Networking (A Computer)&lt;/li&gt;
&lt;li&gt;Consensus &amp;amp; Settlement (Bitcoin and Eth)&lt;/li&gt;
&lt;li&gt;Smart Contracts (MAKER &amp;amp; UniSwap)&lt;/li&gt;
&lt;li&gt;Wallets &amp;amp; UI (MetaMask &amp;amp; Compound)&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Last 10 Years of Crypto
&lt;/h2&gt;

&lt;p&gt;3 waves of activity&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;2010-2012: Bitcoin, Architecture(Miners + Exchanges)&lt;/li&gt;
&lt;li&gt;2012-2016: New L1 Blockchains, Privacy + Alt Coins&lt;/li&gt;
&lt;li&gt;2016-2020: DeFi, Layer2, Smart Wallet apps, NFT Marketplaces&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Skepticism was rising after the 2018 crypto bubble crash.&lt;br&gt;
But insiders realize each cycle brings the capital needed to invest in critical infrastructure&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Decentralized Exchanges&lt;/li&gt;
&lt;li&gt;Lending Protocols&lt;/li&gt;
&lt;li&gt;L1 Blockchains&lt;/li&gt;
&lt;li&gt;Stablecoins&lt;/li&gt;
&lt;li&gt;Smart Wallets&lt;/li&gt;
&lt;li&gt;Developer Tools&lt;/li&gt;
&lt;li&gt;Storage Protocols&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Rise of NFTs
&lt;/h2&gt;

&lt;p&gt;Currently, when you upload a file&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The file is copied to an organizations backend&lt;/li&gt;
&lt;li&gt;Ownership is transferred to that org&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Blockchains enable&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Individual Ownership&lt;/li&gt;
&lt;li&gt;Public access&lt;/li&gt;
&lt;li&gt;Provenance&lt;/li&gt;
&lt;li&gt;Composability&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How can NFT's help Creators?
&lt;/h2&gt;

&lt;p&gt;Content creators can use NFT's to&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;collect royalties from the trade of their asset&lt;/li&gt;
&lt;li&gt;grant benefits to holders&lt;/li&gt;
&lt;li&gt;create token-gated communities&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Future of NFTs
&lt;/h2&gt;

&lt;p&gt;Is it the McRib NFT? NO&lt;/p&gt;

&lt;p&gt;Creator DAO's&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Many ways of fundraising for projects&lt;/li&gt;
&lt;li&gt;Community-led decision making&lt;/li&gt;
&lt;li&gt;Transparent capital flows&lt;/li&gt;
&lt;li&gt;Employees and customers share in the upside&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Starting a global corporation will be as simple as creating a group chat&lt;/p&gt;

&lt;h2&gt;
  
  
  Curator Economy
&lt;/h2&gt;

&lt;p&gt;Most people on the internet are curators, not creators&lt;/p&gt;

&lt;h4&gt;
  
  
  Traditional Curators (Magazines, Channels etc):
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Opaque process&lt;/li&gt;
&lt;li&gt;tiny % of the population&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Future Curators:
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;More like angel investors&lt;/li&gt;
&lt;li&gt;Invest in projects you care about&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Currently, we have&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cryptocurrency&lt;/li&gt;
&lt;li&gt;Cryptofinance&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Soon we will have&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cryptosocial&lt;/li&gt;
&lt;li&gt;Cryptocommerce&lt;/li&gt;
&lt;li&gt;Cryptowork&lt;/li&gt;
&lt;li&gt;Cryptofirms&lt;/li&gt;
&lt;li&gt;Cryptostates&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  In Closing
&lt;/h2&gt;

&lt;p&gt;Thanks for reading along. &lt;br&gt;
I plan on writing more educational content on crypto. Thank you&lt;/p&gt;

&lt;p&gt;This thread was my personal notes summarizing a presentation by Patrick Rivera &lt;br&gt;
A summary of the presentation by Patrick Rivera&lt;br&gt;
&lt;a href="https://docs.google.com/presentation/d/1sUpk0gbvRQelH0MUIOqjNeGe8nwRH4mhrhDHmI6qh4M/edit#slide=id.g442eb61d9d_0_710"&gt;https://docs.google.com/presentation/d/1sUpk0gbvRQelH0MUIOqjNeGe8nwRH4mhrhDHmI6qh4M/edit#slide=id.g442eb61d9d_0_710&lt;/a&gt;&lt;/p&gt;

</description>
      <category>blockchain</category>
      <category>web3</category>
    </item>
    <item>
      <title>What is a DAO in 2022?</title>
      <dc:creator>Alex Hernandez</dc:creator>
      <pubDate>Thu, 24 Mar 2022 20:28:06 +0000</pubDate>
      <link>https://dev.to/phantomhaze/what-is-a-dao-in-2022-5ggk</link>
      <guid>https://dev.to/phantomhaze/what-is-a-dao-in-2022-5ggk</guid>
      <description>&lt;p&gt;🔍Have you been hearing the word DAO tossed around and want to learn more?&lt;/p&gt;

&lt;p&gt;Please, follow along with me then for a short primer.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's a DAO?
&lt;/h2&gt;

&lt;p&gt;A DAO is an online community with a shared crypto wallet.&lt;/p&gt;

&lt;p&gt;It's an alternative to traditional companies and hierarchies, governed by crypto-holders.&lt;/p&gt;

&lt;p&gt;In more detail, a DAO is an organization with control spread out amongst member, vs top-down.&lt;/p&gt;

&lt;p&gt;They are organized with smart-contracts, and members use 'governance tokens' to vote on decisions made by the DAO.&lt;/p&gt;

&lt;p&gt;The DAO then executes these decisions, like a machine.&lt;/p&gt;

&lt;h2&gt;
  
  
  How do DAOs work?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Governance mechanism is provided by the smart-contracts&lt;/li&gt;
&lt;li&gt;Governance tokens are used by members to vote on actions taken by the DAO&lt;/li&gt;
&lt;li&gt;more contributed = stronger vote&lt;/li&gt;
&lt;li&gt;Outcome can also be based on participation&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Advantages of DAOs?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;📖 Transparency - all actions viewable by anyone.&lt;/li&gt;
&lt;li&gt;🔥 Global power - anyone anywhere can contribute&lt;/li&gt;
&lt;li&gt;💵 Cheaper - tools can be used like Legos, so little needs to be built from scratch.&lt;/li&gt;
&lt;li&gt;👨‍👩‍👦‍👦 Collaborative - giving everyone a voice pools mass knowledge&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Disadvantages of DAOs?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🏢 Flat structure - slower to operate as decisions take longer to make with no clear structure&lt;/li&gt;
&lt;li&gt;😡 Feuds - strong disagreements could split the group into two.&lt;/li&gt;
&lt;li&gt;👸🏽 No change - in some DAOs, those with the most tokens call the shots&lt;/li&gt;
&lt;li&gt;⚖️ Legality&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Different types of DAOs
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🏗️ Crypto projects - managed by decentralized governance where token holders can vote on the direction of the project. e.g. MakerDAO.&lt;/li&gt;
&lt;li&gt;💸 Grant funding - can be used to award development funds automatically based on set criteria. e.g. MolochDAO.&lt;/li&gt;
&lt;li&gt;💰 Investment - MolochDAO has been forked many times to create for-profit DAOs which can distribute + transfer assets between members. e.g. MetaCartel Ventures.&lt;/li&gt;
&lt;li&gt;🖼️ Collecting - the non-fungible token (NFT) boom has seen collector DAOs such as PleasrDAO flourish.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Btw, MetaCartel Ventures is registered as a Limited Liability Company (LLC) in crypto-friendly Delaware.&lt;/p&gt;

&lt;p&gt;So look into Delaware if you want to bring some traditional legitimacy to your DAO.&lt;/p&gt;

&lt;h2&gt;
  
  
  Origins
&lt;/h2&gt;

&lt;p&gt;The original DAO was 'The DAO'&lt;/p&gt;

&lt;p&gt;Before it got to launch, a hacker managed to steal $3.6 million dollars worth.&lt;/p&gt;

&lt;p&gt;Ethereum decided to do a hard fork, essentially rewriting the blockchain and undoing the hack.&lt;/p&gt;

&lt;p&gt;In this case, the blockchain was proven to no longer be immutable.&lt;/p&gt;

&lt;p&gt;However other projects continued working on refining DAOs behind the scenes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Aragon&lt;/li&gt;
&lt;li&gt;DAOstack&lt;/li&gt;
&lt;li&gt;DAOHaus&lt;/li&gt;
&lt;li&gt;Colony&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These guys learned from the mistakes of 'The DAO' and now build and run DAOs for some of the largest DeFi protocols today.&lt;/p&gt;

&lt;h2&gt;
  
  
  The future of DAOs look bright
&lt;/h2&gt;

&lt;p&gt;There's been a recent revival in interest, both from the public and developers who are working hard to bring new technical innovations.&lt;/p&gt;

&lt;p&gt;Many in creative industries are starting to use DAOs, to make fashion brands and filmmaking groups.&lt;/p&gt;

&lt;p&gt;"Investment DAOs" are an interesting take on decentralized organizations, where the users vote on which projects to invest in.&lt;/p&gt;

&lt;p&gt;"Collector DAOs" focus on acquiring high-value items like NFT's, with PleasrDAO being the most famous group.&lt;/p&gt;

&lt;h2&gt;
  
  
  Closing
&lt;/h2&gt;

&lt;p&gt;DAOs will undoubtedly get bigger as time goes on, refining current trends such as&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;anonymity&lt;/li&gt;
&lt;li&gt;progressive decentralization&lt;/li&gt;
&lt;li&gt;better incentives towards participation.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We may even see DAOs become members of other DAOs!&lt;/p&gt;

&lt;p&gt;This thread was my notes summarizing the contents of this articlehttps://decrypt.co/resources/decentralized-autonomous-organization-dao&lt;/p&gt;

</description>
      <category>blockchain</category>
    </item>
    <item>
      <title>Aavegotchis: Ghosts combining NFTs with DeFi</title>
      <dc:creator>Alex Hernandez</dc:creator>
      <pubDate>Tue, 22 Mar 2022 23:32:55 +0000</pubDate>
      <link>https://dev.to/phantomhaze/aavegotchis-ghosts-combining-nfts-with-defi-5gf3</link>
      <guid>https://dev.to/phantomhaze/aavegotchis-ghosts-combining-nfts-with-defi-5gf3</guid>
      <description>&lt;p&gt;Want to learn about Aavegotchi, the unique combination of DeFi and NFTs?&lt;/p&gt;

&lt;h2&gt;
  
  
  What are Aavegotchis?
&lt;/h2&gt;

&lt;p&gt;Aavegotchi is a DeFi-enabled crypto-collectibles game developed by  Pixelcraft Studios.&lt;br&gt;
The game allows players to &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Stake NFT avatars with interest-generating tokens&lt;/li&gt;
&lt;li&gt;Interact with the Aavegotchi metaverse. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The Aavegotchies are pixelated ghosts that live on the Ethereum blockchain, backed by the ERC-721 standard. &lt;br&gt;
3 factors determine their value and rarity:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Traits&lt;/li&gt;
&lt;li&gt;Staked collateral/aTokens&lt;/li&gt;
&lt;li&gt;Wearables&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Let's go into what each of these means.&lt;/p&gt;

&lt;h2&gt;
  
  
  Traits
&lt;/h2&gt;

&lt;p&gt;Traits influence rarity, performance in mini-games, and what wearables they can equip.&lt;/p&gt;

&lt;p&gt;Some traits are given randomly at birth.&lt;br&gt;
Others depend on 'kinship' (a friendship stat).&lt;/p&gt;

&lt;p&gt;And every 3 levels, they get a Spirit Point that can buff/de-buff a trait.&lt;/p&gt;

&lt;h2&gt;
  
  
  Staking
&lt;/h2&gt;

&lt;p&gt;Staking&lt;/p&gt;

&lt;p&gt;Each Aavegotchi NFT manages an escrow contract address that holds "aToken" (Aave-backed ERC20 collateral). &lt;/p&gt;

&lt;p&gt;aTokens generate yield via Aave’s LendingPool, which means the number of aTokens held in the Aavegotchi’s wallet grows over time.&lt;/p&gt;

&lt;h2&gt;
  
  
  Wearables
&lt;/h2&gt;

&lt;p&gt;Aavegotchis also extends the ERC998 standard, allowing for child NFTs. &lt;br&gt;
This means they can wear items called 'wearables', which can change stats and rarity.&lt;/p&gt;

&lt;p&gt;Some wearables require certain&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Collateral Staked&lt;/li&gt;
&lt;li&gt;Levels&lt;/li&gt;
&lt;li&gt;Traits&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Leveling Up
&lt;/h2&gt;

&lt;p&gt;Players level up their Aavegotchis by participating in&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Mini-games&lt;/li&gt;
&lt;li&gt;Governance&lt;/li&gt;
&lt;li&gt;Meetups&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Leveling up can also increase an Aavegotchis rarity level; so can equipping wearables.&lt;/p&gt;

&lt;h2&gt;
  
  
  Benefits of Rare Aavegotchis
&lt;/h2&gt;

&lt;p&gt;Rare Aavegotchis have &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Greater value in the 'baazaar'&lt;/li&gt;
&lt;li&gt;Better rewards in rarity farming (a minigame that rewards $GHST tokens&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Aavegotchi is governed by AavegotchiDAO, which manages all funds generated through the $GHST token distribution.&lt;/p&gt;

&lt;h2&gt;
  
  
  Aavegotchis Value
&lt;/h2&gt;

&lt;p&gt;What gives Aavegotchis value?&lt;/p&gt;

&lt;p&gt;They have intrinsic and rarity value.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Intrinsic: from aTokens staked as collateral in the NFT. &lt;/li&gt;
&lt;li&gt;Rarity: calculated from the rareness of each trait+wearable. &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Having a variable rarity enables 'rarity farming'!&lt;br&gt;
Now let's dive into Aavegotchi Portals.&lt;/p&gt;

&lt;h2&gt;
  
  
  Portals
&lt;/h2&gt;

&lt;p&gt;Portals are the primary way to get Aavegotchis.&lt;br&gt;
You can buy them from&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Aauction (time-limited)&lt;/li&gt;
&lt;li&gt;Drop Ticket Raffle (time-limited)&lt;/li&gt;
&lt;li&gt;Baazaar&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each edition is called a 'Haunt' with the first having 10,000 portals.&lt;/p&gt;

&lt;p&gt;After you've gotten a portal the next step is the "Portal Summoning Ritual" &lt;/p&gt;

&lt;p&gt;Opening portals occur on the Polygon network, and using what's called Chainlink VRF, they can ensure each Aavegotchi's traits will be random.&lt;/p&gt;

&lt;h3&gt;
  
  
  Choosing your Aavegotchi
&lt;/h3&gt;

&lt;p&gt;When you open the Portal, you will be shown 10 ghosts to choose from. &lt;br&gt;
After you pick 1, the rest will be forever forgotten, so choose wisely!&lt;br&gt;
Each one has random traits, in these rarities&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Common&lt;/li&gt;
&lt;li&gt;Uncommon&lt;/li&gt;
&lt;li&gt;Rare&lt;/li&gt;
&lt;li&gt;Mythical&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Staking and 'Spirit Force'
&lt;/h3&gt;

&lt;p&gt;To claim your chosen Aavegotchi, you have to stake a certain amount of 'Spirit Force' (Collateral/aTokens)&lt;/p&gt;

&lt;p&gt;Expect to pay more Spirit Force the more rare your ghost is.&lt;/p&gt;

&lt;p&gt;You can get some of this stake back by &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;reducing collateral&lt;/li&gt;
&lt;li&gt;burning the ghost(all collateral)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Interaction
&lt;/h2&gt;

&lt;p&gt;You can interact with your Aavegotchi in various ways&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pet&lt;/li&gt;
&lt;li&gt;Equip&lt;/li&gt;
&lt;li&gt;Feed&lt;/li&gt;
&lt;li&gt;Rename&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Petting every 12 hours raises Kinship, increasing the rarity and number of wearables they can equip.&lt;/p&gt;

&lt;p&gt;You can also feed them consumables like Kinship and XP Potions.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Gotchi Pocket
&lt;/h2&gt;

&lt;p&gt;Your Aavegotchis also have a 'Gotchi Pocket' where they can hold items such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Equipped wearables&lt;/li&gt;
&lt;li&gt;GHST Tokens from rarity farming&lt;/li&gt;
&lt;li&gt;'Baadges' (ERC-1155 NFTs representing achievements)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can't withdraw the Baadges, but GHST and wearables can&lt;/p&gt;

&lt;h2&gt;
  
  
  Transferring
&lt;/h2&gt;

&lt;p&gt;Lastly, trading your Aavegotchi using a marketplace such as OpenSea will also transfer the collateral + any items and wearables in their pocket.&lt;/p&gt;

&lt;p&gt;To keep your staked collateral, you would have to&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Take it out (keeping above minimum stake)&lt;/li&gt;
&lt;li&gt;Burn your Ghost&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thanks for following along!&lt;br&gt;
I hope this short post gets you thinking about DeFi and NFTs.&lt;br&gt;
What other ways do you envision combining the two?&lt;/p&gt;

&lt;p&gt;You can read more about Aavegotchi here &lt;a href="https://wiki.aavegotchi.com/en/introduction"&gt;https://wiki.aavegotchi.com/en/introduction&lt;/a&gt;&lt;/p&gt;

</description>
      <category>blockchain</category>
      <category>defi</category>
    </item>
    <item>
      <title>Why Invest in Web3 In 2022?</title>
      <dc:creator>Alex Hernandez</dc:creator>
      <pubDate>Tue, 22 Mar 2022 23:29:19 +0000</pubDate>
      <link>https://dev.to/phantomhaze/why-invest-in-web3-in-2022-38me</link>
      <guid>https://dev.to/phantomhaze/why-invest-in-web3-in-2022-38me</guid>
      <description>&lt;p&gt;Ever ask yourself why you should invest in web3?&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Invest?
&lt;/h2&gt;

&lt;p&gt;Getting involved in crypto is more than just buying and holding Bitcoin. &lt;/p&gt;

&lt;p&gt;There are currently more than 11,000 active cryptocurrencies! These currencies and tokens perform a huge number of unique functions for their respective networks. &lt;/p&gt;

&lt;p&gt;Now let's recap the previous versions of the web, so we can understand what Web3.0 should look like.&lt;/p&gt;

&lt;h2&gt;
  
  
  Generations of the Web
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Web1: just reading instead of writing content&lt;/li&gt;
&lt;li&gt;Web2: interactivity, creating content on platforms owned by companies&lt;/li&gt;
&lt;li&gt;Web3: interacting on platforms defined by protocols, not owned by a single entity&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Decentralization
&lt;/h2&gt;

&lt;p&gt;A big factor of Web3 is decentralization.&lt;br&gt;
This, combined with the ability to transfer value between accounts, is key to understanding Web3.&lt;/p&gt;

&lt;p&gt;Finally, networks that create and hold value are a big part of Web3 as well.&lt;br&gt;
Let's look at some of those projects now&lt;/p&gt;

&lt;h2&gt;
  
  
  Some Projects In The Space
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Filecoin: decentralized protocol which enables anyone to rent out spare storage space on their computer.&lt;/li&gt;
&lt;li&gt;Golem: distributed computing platform, providing shared computing power that users can access for a fee.&lt;/li&gt;
&lt;li&gt;BAT: utility token, designed by Brave initially as part of a whole new digital advertising platform, this protocol allows users to commodity their attention and earn directly.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  So why invest in Web3?
&lt;/h2&gt;

&lt;p&gt;Web3 is creating new ways for us to quantify the value of &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;our time&lt;/li&gt;
&lt;li&gt;our attention&lt;/li&gt;
&lt;li&gt;our computers&lt;/li&gt;
&lt;li&gt;our hard drives&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Responsible and considerate investing will help support these projects as they realize a new digital future.&lt;/p&gt;

&lt;h2&gt;
  
  
  Closing
&lt;/h2&gt;

&lt;p&gt;Thanks for following along! Hopefully, this thread got you interested in learning more about Web3. If that's the case remember to follow me.&lt;/p&gt;

&lt;p&gt;This thread is my personal notes summarizing this article: &lt;a href="https://decrypt.co/resources/how-to-invest-in-cryptocurrencies-investing-in-web3"&gt;https://decrypt.co/resources/how-to-invest-in-cryptocurrencies-investing-in-web3&lt;/a&gt;&lt;/p&gt;

</description>
      <category>blockchain</category>
      <category>web3</category>
    </item>
    <item>
      <title>What is Pancake Swap? DeFi enhanced</title>
      <dc:creator>Alex Hernandez</dc:creator>
      <pubDate>Fri, 18 Mar 2022 23:45:59 +0000</pubDate>
      <link>https://dev.to/phantomhaze/what-is-pancake-swap-defi-enhanced-3961</link>
      <guid>https://dev.to/phantomhaze/what-is-pancake-swap-defi-enhanced-3961</guid>
      <description>&lt;p&gt;Ever heard of PancakeSwap?&lt;br&gt;
It's the hottest DEX on Binance, and it has more features than your usual exchange.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is PancakeSwap?
&lt;/h2&gt;

&lt;p&gt;PancakeSwap is a Binance Smart Chain-based DEX whose creators are anonymous.&lt;/p&gt;

&lt;p&gt;It shares a few features with SushiSwap on Ethereum&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Community governance &lt;/li&gt;
&lt;li&gt;Farm liquidity provider (LP) tokens&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;However, it also has other rewarding features:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Lottery&lt;/li&gt;
&lt;li&gt;Prediction Market&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Swap tokens with a DEX
&lt;/h2&gt;

&lt;p&gt;PancakeSwap at its core is a DEX for swapping BEP-20 tokens (think ERC20 on Ethereum)&lt;/p&gt;

&lt;p&gt;It uses an 'Automated Maker Model' (AMM).&lt;br&gt;
Instead of trading with someone else through an order book, you trade against a 'liquidity pool', which is a pool of funds.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--BHyQUECx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1647612775936/kqKvaVTlJ.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--BHyQUECx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1647612775936/kqKvaVTlJ.png" alt="Screenshot 2022-03-18 06.23.53.png" width="880" height="452"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Liquidity Pool Tokens
&lt;/h2&gt;

&lt;p&gt;The 'liquidity pools' (LP) are filled with funds from other users. In exchange for storing funds in the pool, they receive LP tokens.&lt;/p&gt;

&lt;p&gt;You can use LP tokens to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Reclaim your share of funds from the pool&lt;/li&gt;
&lt;li&gt;Get a % of trading fees as a reward&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;LP Tokens come in different varieties depending on the pool you add liquidity to.&lt;/p&gt;

&lt;p&gt;Liquidity is added in pairs, so &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;adding BUSD + BNB to the pool =&amp;gt;  BUSD-BNB LP Tokens in return&lt;/li&gt;
&lt;li&gt;BETH + ETH to pool =&amp;gt; BETH-ETH LP Tokens&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Farming and Staking
&lt;/h2&gt;

&lt;p&gt;Now to move on to a fun feature of PancakeSwap, Farming and Staking.&lt;/p&gt;

&lt;p&gt;You can deposit your LP tokens onto the farm to lock them up and get CAKE tokens in return.&lt;/p&gt;

&lt;p&gt;You can now stake your CAKE into different 'SYRUP' pools and earn a variety of tokens&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--2RyA8u4V--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1647612745247/_yh3xNK5-.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--2RyA8u4V--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1647612745247/_yh3xNK5-.png" alt="Screenshot 2022-03-18 06.13.46.png" width="880" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--3Ldtrseq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1647612759253/_gOCj6V5l.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--3Ldtrseq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1647612759253/_gOCj6V5l.png" alt="Screenshot 2022-03-18 06.14.18.png" width="880" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Lottery
&lt;/h2&gt;

&lt;p&gt;PancakeSwap also has a lottery run every day.&lt;/p&gt;

&lt;p&gt;First, you have to buy a ticket for 5 USD in CAKE tokens.&lt;/p&gt;

&lt;p&gt;The ticket will contain 6 digits that have to match the winning numbers in the same order.&lt;/p&gt;

&lt;p&gt;Rewards are distributed among 6 different prize pools.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--kIwGXUR1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1647612709162/XOwDNc8Gh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--kIwGXUR1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1647612709162/XOwDNc8Gh.png" alt="Screenshot 2022-03-18 06.13.13.png" width="880" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Prediction Market
&lt;/h2&gt;

&lt;p&gt;The last feature I'll cover is PancakeSwaps simple Prediction Market.&lt;/p&gt;

&lt;p&gt;Here, you can place bets on the price of BNB.&lt;br&gt;
Rounds are every 5 minutes. BNB's price is recorded at the start and you bet whether it will go up or down by the end of the round.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--iULDPh-a--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1647612674836/qXoTphdAu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--iULDPh-a--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1647612674836/qXoTphdAu.png" alt="Screenshot 2022-03-18 06.12.32.png" width="880" height="436"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;And that covers most of the activities you can do on PancakeSwap!&lt;/p&gt;

&lt;p&gt;If you have some ETH, why not start with swapping it for some BNB so you can start using the rest of the platform!&lt;/p&gt;

&lt;p&gt;This post is my personal notes summarising this article: &lt;a href="https://academy.binance.com/en/articles/a-guide-to-pancakeswa"&gt;https://academy.binance.com/en/articles/a-guide-to-pancakeswa&lt;/a&gt;&lt;/p&gt;

</description>
      <category>blockchain</category>
      <category>cryptocurrency</category>
      <category>binance</category>
    </item>
    <item>
      <title>4 Consensus Protocols in Blockchain</title>
      <dc:creator>Alex Hernandez</dc:creator>
      <pubDate>Wed, 02 Mar 2022 15:29:47 +0000</pubDate>
      <link>https://dev.to/phantomhaze/4-consensus-protocols-in-blockchain-209k</link>
      <guid>https://dev.to/phantomhaze/4-consensus-protocols-in-blockchain-209k</guid>
      <description>&lt;p&gt;&lt;em&gt;In  short, we'll go cover 4 types of Consensus Protocols:&lt;/em&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;em&gt;Proof-of-Work&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;
&lt;em&gt;Proof-of-Stake&lt;/em&gt; &lt;/li&gt;
&lt;li&gt;&lt;em&gt;Delegated-Proof-of-Stake&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Proof-of-Authority&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;One of the promises of the blockchain is that it's a 'trustless system'. &lt;br&gt;
Anyone in the community can join and participate in the network of nodes that verify transactions on the blockchain.&lt;/p&gt;

&lt;p&gt;Consensus protocols are the varied methods blockchains use to achieve a trustless system.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's a blockchain?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--upNNjurJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://www.logicsolutions.com/wp-content/uploads/2018/04/Blockchain-Consensus-Mechanisms.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--upNNjurJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://www.logicsolutions.com/wp-content/uploads/2018/04/Blockchain-Consensus-Mechanisms.jpg" alt="alt" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A blockchain is a network spread across multiple nodes. Each node can verify transactions made on the network, and then commit those transactions to the final state of the blockchain.&lt;/p&gt;

&lt;p&gt;Anyone can submit info to the network.&lt;br&gt;
So it's important to have rules in place that everyone can use to decide what info to commit to the network.&lt;/p&gt;

&lt;h2&gt;
  
  
  How do they work?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--J2NfkIdB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://bigstep.com/assets/images/blog/blockchain-on-bare-metal-servers-part-1-cover.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--J2NfkIdB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://bigstep.com/assets/images/blog/blockchain-on-bare-metal-servers-part-1-cover.jpg" alt="blockchain" width="880" height="401"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The consensus protocol at the heart of a blockchain gives a specific method for verifying whether a transaction is true or not.&lt;/p&gt;

&lt;p&gt;All nodes on the network must agree on the state of the network, following the protocol to do so.&lt;/p&gt;

&lt;p&gt;Consensus also:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Prevent a single entity from taking control&lt;/li&gt;
&lt;li&gt;Trust users without a controlling third-party &lt;/li&gt;
&lt;li&gt;Prevents Double spending, where someone creates their own version of the network to take control and spend the same coins multiple times&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Common types of consensus protocols:
&lt;/h2&gt;

&lt;h3&gt;
  
  
  PoW (Proof-of-Work)
&lt;/h3&gt;

&lt;p&gt;'Miners' earn rewards for solving computational problems that validate blocks and add them to the network.&lt;br&gt;
This method has been criticized for being heavily energy-intensive and slow to process transactions.&lt;/p&gt;

&lt;p&gt;Ex: Bitcoin, Ethereum1&lt;/p&gt;

&lt;h3&gt;
  
  
  PoS (Proof-of-Stake)
&lt;/h3&gt;

&lt;p&gt;'Forgers' stake(loan) money in the network, with the next verifier getting chosen in a lottery fashion. Having a bigger stake means having a higher chance of being chosen to validate.&lt;br&gt;
They are rewarded for correct validations and punished for wrong ones by losing some of their Stake.&lt;/p&gt;

&lt;p&gt;Ex: Ethereum2, Solana&lt;/p&gt;

&lt;h3&gt;
  
  
  DPoS (Delegated PoS)
&lt;/h3&gt;

&lt;p&gt;Similar to PoS, except stakeholders can vote on who validates the next block&lt;/p&gt;

&lt;p&gt;Ex: Cardano, EOS, Tron&lt;/p&gt;

&lt;h3&gt;
  
  
  PoA (Proof-of-Authority)
&lt;/h3&gt;

&lt;p&gt;Predetermined block validators, who are public and held accountable for their actions.&lt;br&gt;
Most Testnets use this method. Since testnets are for testing and developing code, they don't need a fully decentralized network, just the blockchain tech. &lt;/p&gt;

&lt;p&gt;Ex: Rinkeby(Ethereum-Testnet)&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--P5qkguAb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://devopedia.org/images/article/71/5658.1522506087.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P5qkguAb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://devopedia.org/images/article/71/5658.1522506087.jpg" alt="consensus" width="880" height="536"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Consensus protocols, like the rest of blockchain tech, are constantly evolving to address the challenges in bringing about a Web3 future.&lt;/p&gt;

&lt;p&gt;There are other interesting ones, like Proof-of-burning, or Elapsed-Time (PoET)&lt;/p&gt;

&lt;p&gt;What other protocols have you heard?&lt;br&gt;
Tell me below!&lt;/p&gt;

&lt;p&gt;This thread was a summary of the contents in this article: &lt;a href="https://decrypt.co/resources/consensus-protocols-what-are-they-guide-how-to-explainer"&gt;https://decrypt.co/resources/consensus-protocols-what-are-they-guide-how-to-explainer&lt;/a&gt;&lt;/p&gt;

</description>
      <category>blockchain</category>
      <category>ethereum</category>
    </item>
    <item>
      <title>Polygon WILL stay relevant after Eth2. Here's why.</title>
      <dc:creator>Alex Hernandez</dc:creator>
      <pubDate>Mon, 21 Feb 2022 03:30:11 +0000</pubDate>
      <link>https://dev.to/phantomhaze/polygon-will-stay-relevent-after-eth2-heres-why-34nd</link>
      <guid>https://dev.to/phantomhaze/polygon-will-stay-relevent-after-eth2-heres-why-34nd</guid>
      <description>&lt;p&gt;The upcoming upgrade to the Ethereum Network, dubbed 'Eth2', will brings changes to the network that improves scalability, transaction speed and network congestion. &lt;br&gt;
But the Polygon network also brings these benefits.&lt;/p&gt;

&lt;p&gt;So will Polygon become useless after Eth2?&lt;br&gt;
🚫 NO!&lt;/p&gt;

&lt;p&gt;Polygon plans to stay relevant and already have ambitious plans in the works.&lt;/p&gt;

&lt;h2&gt;
  
  
  What will Eth2 do?
&lt;/h2&gt;

&lt;p&gt;The upcoming Eth2 upgrade will make the network:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🔒more secure&lt;/li&gt;
&lt;li&gt;💨faster&lt;/li&gt;
&lt;li&gt;🪙cheaper transactions&lt;/li&gt;
&lt;li&gt;🌐better scale&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Enter Polygon
&lt;/h2&gt;

&lt;p&gt;To get around network congestion, users and devs have relied on the &lt;em&gt;Polygon network&lt;/em&gt;.&lt;br&gt;
Polygon is a 'Layer-2' solution that sits atop the Ethereum blockchain.&lt;/p&gt;

&lt;p&gt;Layer-2 solutions are separate blockchain networks.&lt;br&gt;
Because they have a smaller load of transactions to process (since they're not the main chain), they can usually process transactions faster and cheaper. Then they record these changes in the 'main chain' (in Polygons case, Ethereum)&lt;/p&gt;

&lt;p&gt;Transactions on Polygon are&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🪙cheaper&lt;/li&gt;
&lt;li&gt;💨faster&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But with Eth2 providing all these same benefits as well, will there be a place for Polygon in a post-Eth2 world?&lt;/p&gt;

&lt;p&gt;To answer this, let's go over exactly what it is that Polygon does.&lt;/p&gt;

&lt;h2&gt;
  
  
  What does Polygon do?
&lt;/h2&gt;

&lt;p&gt;Polygon is an interoperable scaling solution for Ethereum.&lt;br&gt;
This means it can talk to multiple other blockchains, relieving network congestion.&lt;/p&gt;

&lt;p&gt;It allows Dapps to process transactions much faster!&lt;br&gt;
It does this by employing 2 scaling solutions&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Rollups: Sits atop the blockchain, transactions are bundled together before being processed as one transaction in the main chain&lt;/li&gt;
&lt;li&gt;Sidechains: Clones of the Ethereum main chain, assets can be moved into and out of the sidechain&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Polygon's version of these solutions is called:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Plasma rollups; which rely on the security of the network&lt;/li&gt;
&lt;li&gt;Matic Proof-of-Stake; implements its own security method&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Will Polygon be relevant
&lt;/h2&gt;

&lt;p&gt;Polygon has an ambitious roadmap to stay relevant after the Eth2 upgrade:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;ZK-rollups (bundle transactions off-chain, use ZK-proofs for final record on ETH)&lt;/li&gt;
&lt;li&gt;Validum chains (ZK-proofs, store final data off-chain)&lt;/li&gt;
&lt;li&gt;Optimistic rollups ('fraud proofs', operators can dispute a claim within a challenging period)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Polygon has plans to stay well relevant and perhaps even necessary after the completion of Eth2&lt;/p&gt;

&lt;h2&gt;
  
  
  Making Ethereum more affordable
&lt;/h2&gt;

&lt;p&gt;The fees for performing a trade on uniswap on different networks:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Polygon: $0.0001&lt;/li&gt;
&lt;li&gt;Binance Smart Chain: $0.20&lt;/li&gt;
&lt;li&gt;Ethereum:$7&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;💰Transactions are orders of magnitudes less, something that might not be seen even after Eth2 comes out. &lt;/p&gt;




&lt;p&gt;What do you think?&lt;br&gt;
Will Polygon stay relevant in the near future?&lt;br&gt;
I'd like to hear your thoughts below. &lt;/p&gt;

&lt;p&gt;You can follow me on &lt;a href="https://twitter.com/bleedingeffigy"&gt;twitter&lt;/a&gt; where I first post these articles, as well as share what I'm building.&lt;br&gt;
Ask me questions! Or let me know if you'd like to collab.&lt;/p&gt;

&lt;p&gt;This thread was a summary of the contents found in this &lt;a href="https://decrypt.co/79272/what-does-ethereum-2-0-mean-scaling-solutions-polygon"&gt;article&lt;/a&gt;&lt;/p&gt;

</description>
      <category>blockchain</category>
      <category>web3</category>
      <category>polygon</category>
      <category>ethereum</category>
    </item>
    <item>
      <title>Ethereum 2.0 in 3 Phases. The future of ETH in 3 minutes</title>
      <dc:creator>Alex Hernandez</dc:creator>
      <pubDate>Sun, 20 Feb 2022 18:43:25 +0000</pubDate>
      <link>https://dev.to/phantomhaze/ethereum-20-in-3-phases-the-future-of-eth-in-3-minutes-1987</link>
      <guid>https://dev.to/phantomhaze/ethereum-20-in-3-phases-the-future-of-eth-in-3-minutes-1987</guid>
      <description>&lt;p&gt;Excited about Ethereum 2.0 yet?🎉🥳&lt;br&gt;
It's been long in the making, but the future of Eth2(Ethereum 2.0) comes closer to being a reality everyday.&lt;/p&gt;

&lt;p&gt;In short, it will bring to the network &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🌐Scalability upgrades&lt;/li&gt;
&lt;li&gt;🔒Security upgrades &lt;/li&gt;
&lt;li&gt;🗣️Proof of Work -&amp;gt; Proof of Stake&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you want to learn more about this long-planned upgrade, then follow along!&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Ethereum 2.0?
&lt;/h2&gt;

&lt;p&gt;Ethereum 2.0 (Eth2 or 'Serenity') is an upgrade to the blockchain network that Ethereum lives on.&lt;/p&gt;

&lt;p&gt;It enhances&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;💨speed of transactions&lt;/li&gt;
&lt;li&gt;⚖️efficiency of the nodes&lt;/li&gt;
&lt;li&gt;💪scalability of the network&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What are the phases involved?
&lt;/h2&gt;

&lt;p&gt;Eth2 has several phases.&lt;/p&gt;

&lt;h3&gt;
  
  
  Phase 0
&lt;/h3&gt;

&lt;p&gt;🚀The first phase(2020) included the launch of the 'Beacon Chain', which introduced native staking to the blockchain, paving the way for incorporating Proof-of-Stake to the Mainnet.&lt;/p&gt;

&lt;h3&gt;
  
  
  Phase 1
&lt;/h3&gt;

&lt;p&gt;🫂The second phase 'The Merge' will merge the Beacon Chain with the Mainnet, and is expected in Q2 2022.&lt;/p&gt;

&lt;p&gt;However, the community has the ability to and have in the past delayed this phase, so even as we rear closer to the second quarter this year, who know's could happen.&lt;/p&gt;

&lt;h3&gt;
  
  
  Phase 2 (Shard Chains)
&lt;/h3&gt;

&lt;p&gt;💎The final phase is called 'Shard Chains' and involves separating the blockchain into 64 shard chains.&lt;/p&gt;

&lt;p&gt;The purpose is to delegate the data storage and validation process to multiple blockchains that run in parallel.&lt;/p&gt;

&lt;p&gt;☄️This change will spread out operations, which should increase scalability.&lt;/p&gt;

&lt;h2&gt;
  
  
  Proof-of-stake
&lt;/h2&gt;

&lt;p&gt;Eth2 also signifies a switch to using Proof-of-Stake(PoS) to secure the network.&lt;/p&gt;

&lt;p&gt;💦Right now, Ethereum uses energy-intensive Proof-of-Work to verify transactions and reward miners.&lt;/p&gt;

&lt;p&gt;👥PoS has users stake(loan) assets to become validators.&lt;br&gt;
The process of deciding which node validates transactions is decided in a kind of lottery.&lt;br&gt;
A few other nodes in the network check that the chosen node correctly validated the transaction, then commit it to the blockchain and give the validator a reward&lt;/p&gt;

&lt;p&gt;Validators who have a bigger stake get chosen more often then those with a smaller stake, and thus get a return on their investment faster.&lt;/p&gt;

&lt;h2&gt;
  
  
  Scalability
&lt;/h2&gt;

&lt;p&gt;Eth2 will see the network processing transactions exponentially faster.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🥈Eth1: 30 tx/sec&lt;/li&gt;
&lt;li&gt;🥇Eth2: 100,000 tx/sec
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This upgrade comes from shard chains, which will see multiple blockchains running in parallel, instead of a single blockchain.&lt;/p&gt;

&lt;h2&gt;
  
  
  Security
&lt;/h2&gt;

&lt;p&gt;🔒Eth2 will require 16,384 validator nodes, which is more than most other PoS networks, making it more decentralized, and thus secure&lt;/p&gt;

&lt;h2&gt;
  
  
  Eth2: First Stage Release
&lt;/h2&gt;

&lt;p&gt;💡The Beacon Chain went live Dec 1, 2020&lt;/p&gt;

&lt;p&gt;Afterward there needed to be 16,384 validators in the network by Nov 24 2021, each one staking 32 ETH.&lt;/p&gt;

&lt;p&gt;That's a grand total of 524,288 ETH!!&lt;/p&gt;

&lt;h2&gt;
  
  
  Future of Ethereum
&lt;/h2&gt;

&lt;p&gt;The future for Eth2.0 looks promising once layer-2 solutions incorporate the upgrade.&lt;/p&gt;

&lt;p&gt;🥳Once that happens, the network will be estimated to process 100,000/sec!!&lt;/p&gt;

&lt;p&gt;How do you think this will affect adoption?&lt;/p&gt;




&lt;p&gt;Thanks for reading. &lt;br&gt;
You can follow me on &lt;a href="https://twitter.com/bleedingeffigy"&gt;twitter&lt;/a&gt; where I first post these articles, as well as share what I'm building.&lt;br&gt;
Ask me questions! Or let me know if you'd like to collab.&lt;/p&gt;

&lt;p&gt;This thread was a summary of the contents found in this article:&lt;a href="https://decrypt.co/resources/what-is-ethereum-2-0"&gt;https://decrypt.co/resources/what-is-ethereum-2-0&lt;/a&gt;&lt;/p&gt;

</description>
      <category>blockchain</category>
      <category>web3</category>
      <category>ethereum</category>
    </item>
  </channel>
</rss>
