<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
    <channel>
        <title>Polygon Village</title>
        <link>https://paragraph.com/@polygonvillage</link>
        <description>A full-stack ecosystem for developers to build and grow</description>
        <lastBuildDate>Wed, 22 Jul 2026 21:03:27 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>Polygon Village</title>
            <url>https://storage.googleapis.com/papyrus_images/0ea2395bcaf52b4a3851c46fb02ef6bc86b15a89cd1d2ce5ee53fc25116ed117.png</url>
            <link>https://paragraph.com/@polygonvillage</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[Let’s Talk About Data Availability]]></title>
            <link>https://paragraph.com/@polygonvillage/let-s-talk-about-data-availability</link>
            <guid>Hj0H1xeocbrVhIFpduZU</guid>
            <pubDate>Tue, 15 Nov 2022 16:33:11 GMT</pubDate>
            <description><![CDATA[First.. what’s data availability?According to ethereum.org, data availability (DA) is “the guarantee that the block proposer published all transaction data for a block and that the transaction data is available to other network participants.” But how exactly do you guarantee data is available? For most Layer 1s (L1s), it’s pretty straightforward. L1 nodes know transaction data is available by downloading and executing it themselves. This is how nodes verify blocks and is at the core of how bl...]]></description>
            <content:encoded><![CDATA[<h1 id="h-first-whats-data-availability" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">First.. what’s data availability?</h1><p>According to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethereum.org/en/developers/docs/data-availability/">ethereum.org</a>, data availability (DA) is “the guarantee that the block proposer published all transaction data for a block and that the transaction data is available to other network participants.”</p><p>But how exactly do you guarantee data is available?</p><p>For most Layer 1s (L1s), it’s pretty straightforward. L1 nodes know transaction data is available by downloading and executing it themselves. This is how nodes verify blocks and is at the core of how blockchains work.</p><p>Layer 2s (L2s) change the paradigm. L2s (specifically <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://vitalik.ca/general/2021/01/05/rollup.html">rollups</a>) use fancy cryptographic proofs to guarantee blocks are valid without nodes having to execute every transaction. This unlocks massive <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethereum.org/en/developers/docs/scaling/#:~:text=Scaling%20overview,-As%20the%20number&amp;text=The%20main%20goal%20of%20scalability,more%20on%20the%20Ethereum%20vision).">benefits</a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://research.thetie.io/danksharding-ethereums-scalability-killer-post-merge/#:~:text=Danksharding%20gets%20its%20name%20from,called%20the%20%E2%80%9CScalability%20Killer%E2%80%9D.">new L1 designs</a>!</p><p>But not so fast. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.paradigm.xyz/2022/08/das">Rollups still need data to be available</a>, just for different reasons.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/752cb1d2b6a22086933106fdec5ccca5c88311f0831168654f17458752cd1b60.png" alt="Rollup data availability" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Rollup data availability</figcaption></figure><p>So how do we scale? Seems like we are back to where we started.</p><h1 id="h-da-layers" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">DA layers</h1><p>Introducing DA layers</p><p>DA layers specialize in, as you might expect, assuring nodes that data is available. This can take different forms, including:</p><ul><li><p>DA blockchains</p></li><li><p>DA committees</p></li><li><p>DA middleware</p></li><li><p>Data sharding</p></li></ul><p>We’re only going to discuss the first two, but here are a few resources if you want to learn about <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.youtube.com/watch?v=OtUOXTqrSyg">DA middleware</a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://research.thetie.io/danksharding-ethereums-scalability-killer-post-merge/#:~:text=Danksharding%20gets%20its%20name%20from,called%20the%20%E2%80%9CScalability%20Killer%E2%80%9D.">data sharding</a>.</p><h1 id="h-da-blockchains-vs-da-committees" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">DA blockchains vs. DA committees</h1><p>Because it’s still very expensive to post data on Ethereum, most rollup teams are posting their data off-chain. This design technically classifies them as <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethereum.org/en/developers/docs/scaling/validium/">validiums</a>.</p><p>Ethereum’s <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://notes.ethereum.org/@vbuterin/proto_danksharding_faq">data-sharding</a> roadmap solves the problem and enables cheap rollup data, but to be safe, let’s assume we’re a year away from the first major upgrade. In the meantime, rollup teams have two major options: DA committees and DA blockchains.</p><p>DA committees are selected entities that hold off-chain copies of the transaction data and promise to make it available in case of emergency. These <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://medium.com/starkware/data-availability-e5564c416424">committees</a> often <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.celestia.org/ethereum-off-chain-data-availability-landscape/">have 7-10 members</a> and are a slight improvement over fully relying on the rollup operator.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/72975f855239864a48470a104765642ca7ec3847040c441dbaa60ba0d8265cef.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>DA blockchains take the idea a few steps further by replacing small, permissioned committees with large, permissionless committees that have strong economic incentives to behave.</p><h1 id="h-da-layers-vs-data-storage-layers" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">DA layers vs. data storage layers</h1><p>A common mistake is thinking that data availability = data storage. However, this is not the case.</p><p>An easy way to think about the difference is on a time dimension.</p><p>DA layers make sure nodes can access data on a short time horizon. Their main goal is to smoothly progress blockchain state, and they typically do not make assurances about longer time horizons. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethereum.org/en/developers/docs/data-availability/">As ethereum.org puts it</a>, “data availability is relevant when a block is yet to pass consensus.”</p><p>In fact, DA layers might even discard the data after a few weeks. In Ethereum’s next major upgrade, this data will be pruned <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.eip4844.com/">after ~2 weeks</a>.</p><p>Data storage layers make sure data is available on a longer time horizon and are closer to the cloud storage solutions most web2 developers are familiar with. Of course, it’s not hard to imagine web3 developers opting for decentralized versions like <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.arweave.org/">Arweave</a>.</p><div data-type="twitter" tweetId="1580221148494561280" tweetData="{&quot;__typename&quot;:&quot;Tweet&quot;,&quot;in_reply_to_screen_name&quot;:&quot;sanjaypshah&quot;,&quot;in_reply_to_status_id_str&quot;:&quot;1580221144288067584&quot;,&quot;in_reply_to_user_id_str&quot;:&quot;75345179&quot;,&quot;lang&quot;:&quot;en&quot;,&quot;favorite_count&quot;:23,&quot;possibly_sensitive&quot;:false,&quot;created_at&quot;:&quot;2022-10-12T15:37:35.000Z&quot;,&quot;display_text_range&quot;:[0,139],&quot;entities&quot;:{&quot;hashtags&quot;:[],&quot;urls&quot;:[],&quot;user_mentions&quot;:[],&quot;symbols&quot;:[],&quot;media&quot;:[{&quot;display_url&quot;:&quot;pic.x.com/CWfytF8vn8&quot;,&quot;expanded_url&quot;:&quot;https://x.com/sanjaypshah/status/1580221148494561280/photo/1&quot;,&quot;indices&quot;:[140,163],&quot;url&quot;:&quot;https://t.co/CWfytF8vn8&quot;}]},&quot;id_str&quot;:&quot;1580221148494561280&quot;,&quot;text&quot;:&quot;15/ Here&apos;s a visual of the full data flow.  \n\nWith this, rollups get strong guarantees they can re-create the rollup state in an emergency. https://t.co/CWfytF8vn8&quot;,&quot;user&quot;:{&quot;id_str&quot;:&quot;75345179&quot;,&quot;name&quot;:&quot;Sanjay Shah ⚡️&quot;,&quot;screen_name&quot;:&quot;sanjaypshah&quot;,&quot;is_blue_verified&quot;:true,&quot;profile_image_shape&quot;:&quot;Circle&quot;,&quot;verified&quot;:false,&quot;profile_image_url_https&quot;:&quot;https://storage.googleapis.com/papyrus_images/9dd2d6f82d2f01f728b976af67bdbb32178d22ae1f320dcb6ee5895fe0ef77ba.jpg&quot;,&quot;highlighted_label&quot;:{&quot;description&quot;:&quot;Electric Capital ⚡️&quot;,&quot;badge&quot;:{&quot;url&quot;:&quot;https://pbs.twimg.com/profile_images/1729656670580862976/T_3mT4hr_bigger.png&quot;},&quot;url&quot;:{&quot;url&quot;:&quot;https://twitter.com/ElectricCapital&quot;,&quot;url_type&quot;:&quot;DeepLink&quot;},&quot;user_label_type&quot;:&quot;BusinessLabel&quot;,&quot;user_label_display_type&quot;:&quot;Badge&quot;}},&quot;edit_control&quot;:{&quot;edit_tweet_ids&quot;:[&quot;1580221148494561280&quot;],&quot;editable_until_msecs&quot;:&quot;1665590855000&quot;,&quot;is_edit_eligible&quot;:false,&quot;edits_remaining&quot;:&quot;5&quot;},&quot;mediaDetails&quot;:[{&quot;display_url&quot;:&quot;pic.x.com/CWfytF8vn8&quot;,&quot;expanded_url&quot;:&quot;https://x.com/sanjaypshah/status/1580221148494561280/photo/1&quot;,&quot;ext_media_availability&quot;:{&quot;status&quot;:&quot;Available&quot;},&quot;indices&quot;:[140,163],&quot;media_url_https&quot;:&quot;https://pbs.twimg.com/media/Fe4R6B-WAAA7MQ7.jpg&quot;,&quot;original_info&quot;:{&quot;height&quot;:880,&quot;width&quot;:1752,&quot;focus_rects&quot;:[{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:1571,&quot;h&quot;:880},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:880,&quot;h&quot;:880},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:772,&quot;h&quot;:880},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:440,&quot;h&quot;:880},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:1752,&quot;h&quot;:880}]},&quot;sizes&quot;:{&quot;large&quot;:{&quot;h&quot;:880,&quot;resize&quot;:&quot;fit&quot;,&quot;w&quot;:1752},&quot;medium&quot;:{&quot;h&quot;:603,&quot;resize&quot;:&quot;fit&quot;,&quot;w&quot;:1200},&quot;small&quot;:{&quot;h&quot;:342,&quot;resize&quot;:&quot;fit&quot;,&quot;w&quot;:680},&quot;thumb&quot;:{&quot;h&quot;:150,&quot;resize&quot;:&quot;crop&quot;,&quot;w&quot;:150}},&quot;type&quot;:&quot;photo&quot;,&quot;url&quot;:&quot;https://t.co/CWfytF8vn8&quot;}],&quot;photos&quot;:[{&quot;backgroundColor&quot;:{&quot;red&quot;:204,&quot;green&quot;:214,&quot;blue&quot;:221},&quot;cropCandidates&quot;:[{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:1571,&quot;h&quot;:880},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:880,&quot;h&quot;:880},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:772,&quot;h&quot;:880},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:440,&quot;h&quot;:880},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:1752,&quot;h&quot;:880}],&quot;expandedUrl&quot;:&quot;https://x.com/sanjaypshah/status/1580221148494561280/photo/1&quot;,&quot;url&quot;:&quot;https://storage.googleapis.com/papyrus_images/c218ed8c7568a5ae7ecfced2c1787ae6bdb506ee48dd8119a6a3d1d362e44992.jpg&quot;,&quot;width&quot;:1752,&quot;height&quot;:880}],&quot;conversation_count&quot;:2,&quot;news_action_type&quot;:&quot;conversation&quot;,&quot;parent&quot;:{&quot;in_reply_to_screen_name&quot;:&quot;sanjaypshah&quot;,&quot;in_reply_to_status_id_str&quot;:&quot;1580221142555508737&quot;,&quot;in_reply_to_user_id_str&quot;:&quot;75345179&quot;,&quot;lang&quot;:&quot;en&quot;,&quot;reply_count&quot;:2,&quot;retweet_count&quot;:0,&quot;favorite_count&quot;:11,&quot;created_at&quot;:&quot;2022-10-12T15:37:34.000Z&quot;,&quot;display_text_range&quot;:[0,262],&quot;entities&quot;:{&quot;hashtags&quot;:[],&quot;urls&quot;:[],&quot;user_mentions&quot;:[],&quot;symbols&quot;:[]},&quot;id_str&quot;:&quot;1580221144288067584&quot;,&quot;text&quot;:&quot;14/ Because there are many parties incentivized to keep this data (rollup apps, users, etc), it&apos;s likely that a number of them will archive it.\n\nTherefore ETH only needs to keep data long enough to allow other interested parties to archive it (i.e. a few weeks).&quot;,&quot;user&quot;:{&quot;id_str&quot;:&quot;75345179&quot;,&quot;name&quot;:&quot;Sanjay Shah ⚡️&quot;,&quot;screen_name&quot;:&quot;sanjaypshah&quot;,&quot;is_blue_verified&quot;:true,&quot;profile_image_shape&quot;:&quot;Circle&quot;,&quot;verified&quot;:false,&quot;profile_image_url_https&quot;:&quot;https://pbs.twimg.com/profile_images/1600197754168512512/IJyJ1bMx_normal.jpg&quot;,&quot;highlighted_label&quot;:{&quot;description&quot;:&quot;Electric Capital ⚡️&quot;,&quot;badge&quot;:{&quot;url&quot;:&quot;https://pbs.twimg.com/profile_images/1729656670580862976/T_3mT4hr_bigger.png&quot;},&quot;url&quot;:{&quot;url&quot;:&quot;https://twitter.com/ElectricCapital&quot;,&quot;url_type&quot;:&quot;DeepLink&quot;},&quot;user_label_type&quot;:&quot;BusinessLabel&quot;,&quot;user_label_display_type&quot;:&quot;Badge&quot;}},&quot;edit_control&quot;:{&quot;edit_tweet_ids&quot;:[&quot;1580221144288067584&quot;],&quot;editable_until_msecs&quot;:&quot;1665590854000&quot;,&quot;is_edit_eligible&quot;:false,&quot;edits_remaining&quot;:&quot;5&quot;},&quot;isEdited&quot;:false,&quot;isStaleEdit&quot;:false},&quot;isEdited&quot;:false,&quot;isStaleEdit&quot;:false}"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/sanjaypshah">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/9dd2d6f82d2f01f728b976af67bdbb32178d22ae1f320dcb6ee5895fe0ef77ba.jpg" />
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/sanjaypshah" class="twitter-displayname">Sanjay Shah ⚡️</a>
              <p><a target="_blank" href="https://twitter.com/sanjaypshah" class="twitter-username">@sanjaypshah</a></p>
    
            </div>
            <a href="https://twitter.com/sanjaypshah/status/1580221148494561280" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png" />
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      15/ Here's a visual of the full data flow.  <br /><br />With this, rollups get strong guarantees they can re-create the rollup state in an emergency. 
      <div class="twitter-media"><img class="twitter-image" src="https://storage.googleapis.com/papyrus_images/c218ed8c7568a5ae7ecfced2c1787ae6bdb506ee48dd8119a6a3d1d362e44992.jpg" /></div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/sanjaypshah/status/1580221148494561280" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            23
          </a>
          <a target="_blank" href="https://twitter.com/sanjaypshah/status/1580221148494561280"><p>10:37 AM • Oct 12, 2022</p></a>
        </div>
    
  </div> 
  </div><h1 id="h-da-layer-use-cases" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">DA layer use cases</h1><p>There are many things that can be built on top of DA layers. Let’s touch on three:</p><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.polygon.technology/from-rollup-to-validium-with-polygon-avail/">Validiums</a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.celestia.org/sovereign-rollup-chains/">Sovereign rollups</a></p></li><li><br></li></ul><p>As we mentioned earlier, validiums are common today. Even after Ethereum has implemented its own sharded DA layer, it’s likely that rollup teams will still use off-chain data to reduce costs. Developers have historically always pushed the boundaries of what’s possible.</p><p>Sovereign rollups not only use DA layers for data availability but also for consensus. Applications are likely good candidates to become sovereign rollups (rather than <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://members.delphidigital.io/reports/the-complete-guide-to-rollups/">smart contract rollups</a> or validiums) if they need full control over state transitions yet don’t want to worry about a validator set.</p><p>In his <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://youtu.be/Cwbbxb987vE?t=152">recent talk</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/balajis">Balaji Srinivasan</a> envisions a future where “fiat information” competes with “crypto information.” He describes “<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://youtu.be/Cwbbxb987vE?t=343">reliable data feeds</a>” using crypto oracles like <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://chain.link/">Chainlink</a>, where IRL metadata is posted on chain. That data could be posted onto DA layers.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/77665c3c9885c49058050bd1bae3136c6e5b07d9e20beb3dd166588b1b0e17a0.png" alt="Source: Creating Sources of Definitive Truth With Blockchain Oracles" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Source: Creating Sources of Definitive Truth With Blockchain Oracles</figcaption></figure><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/c37a4cf431f6a27c9657dfedf5b97a545b1948a7f0a5f64825ad978b5a2f8416.png" alt="Source: Creating Sources of Definitive Truth With Blockchain Oracles" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Source: Creating Sources of Definitive Truth With Blockchain Oracles</figcaption></figure><h1 id="h-da-layer-endgames" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">DA layer endgames</h1><p>It’s the early days for DA layers. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://polygon.technology/blog/polygon-avails-ability-to-scale-the-way-forward">Polygon Avail</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.layrlabs.com/products">EigenDA</a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.celestia.org/july-engineering-update/">Celestia</a> are all still in testnet, and Ethereum data sharding is 1-3 years away, depending on the upgrade in question.</p><p>However, there’s plenty to look forward to. Let’s highlight what seems to be a common endgame across the board. Most teams envision something like this:</p><p>Progressively increasing block sizes and sharding them across the network</p><div data-type="twitter" tweetId="1585441338794745856" tweetData="{&quot;__typename&quot;:&quot;Tweet&quot;,&quot;in_reply_to_screen_name&quot;:&quot;LogarithmicRex&quot;,&quot;in_reply_to_status_id_str&quot;:&quot;1585441336223682562&quot;,&quot;in_reply_to_user_id_str&quot;:&quot;1465205451826483202&quot;,&quot;lang&quot;:&quot;en&quot;,&quot;favorite_count&quot;:9,&quot;created_at&quot;:&quot;2022-10-27T01:20:45.000Z&quot;,&quot;display_text_range&quot;:[0,264],&quot;entities&quot;:{&quot;hashtags&quot;:[],&quot;urls&quot;:[],&quot;user_mentions&quot;:[],&quot;symbols&quot;:[]},&quot;id_str&quot;:&quot;1585441338794745856&quot;,&quot;text&quot;:&quot;(18/30) The transition from Proto-Danksharding to Danksharding involves two important changes:\n\n- available blobs per block will increase from 1 to 64 (as of now)\n- blob data will be distributed across the network, so that no single node needs to download them all&quot;,&quot;user&quot;:{&quot;id_str&quot;:&quot;1465205451826483202&quot;,&quot;name&quot;:&quot;Logarithmic Rex&quot;,&quot;screen_name&quot;:&quot;LogarithmicRex&quot;,&quot;is_blue_verified&quot;:false,&quot;profile_image_shape&quot;:&quot;Circle&quot;,&quot;verified&quot;:false,&quot;profile_image_url_https&quot;:&quot;https://storage.googleapis.com/papyrus_images/16f57dd62ad32a32b55ec40291974b7c43ecfd679fef42d0ba87e24edc9db701.jpg&quot;},&quot;edit_control&quot;:{&quot;edit_tweet_ids&quot;:[&quot;1585441338794745856&quot;],&quot;editable_until_msecs&quot;:&quot;1666835445000&quot;,&quot;is_edit_eligible&quot;:false,&quot;edits_remaining&quot;:&quot;5&quot;},&quot;conversation_count&quot;:1,&quot;news_action_type&quot;:&quot;conversation&quot;,&quot;parent&quot;:{&quot;in_reply_to_screen_name&quot;:&quot;LogarithmicRex&quot;,&quot;in_reply_to_status_id_str&quot;:&quot;1585441333371555841&quot;,&quot;in_reply_to_user_id_str&quot;:&quot;1465205451826483202&quot;,&quot;lang&quot;:&quot;en&quot;,&quot;reply_count&quot;:1,&quot;retweet_count&quot;:0,&quot;favorite_count&quot;:6,&quot;created_at&quot;:&quot;2022-10-27T01:20:45.000Z&quot;,&quot;display_text_range&quot;:[0,258],&quot;entities&quot;:{&quot;hashtags&quot;:[],&quot;urls&quot;:[],&quot;user_mentions&quot;:[{&quot;id_str&quot;:&quot;2312333412&quot;,&quot;indices&quot;:[86,95],&quot;name&quot;:&quot;Ethereum&quot;,&quot;screen_name&quot;:&quot;ethereum&quot;}],&quot;symbols&quot;:[]},&quot;id_str&quot;:&quot;1585441336223682562&quot;,&quot;text&quot;:&quot;(17/30) Proto-Danksharding introduces blobs (including the independent gas market) to @ethereum via a new transaction type. Post EIP-4844, proposers will be able to attach a single blob to the blockchain.\n\nA single blob that every node will have to download.&quot;,&quot;user&quot;:{&quot;id_str&quot;:&quot;1465205451826483202&quot;,&quot;name&quot;:&quot;Logarithmic Rex&quot;,&quot;screen_name&quot;:&quot;LogarithmicRex&quot;,&quot;is_blue_verified&quot;:false,&quot;profile_image_shape&quot;:&quot;Circle&quot;,&quot;verified&quot;:false,&quot;profile_image_url_https&quot;:&quot;https://pbs.twimg.com/profile_images/1818852476755296256/Gp3LIe3P_normal.jpg&quot;},&quot;edit_control&quot;:{&quot;edit_tweet_ids&quot;:[&quot;1585441336223682562&quot;],&quot;editable_until_msecs&quot;:&quot;1666835445000&quot;,&quot;is_edit_eligible&quot;:false,&quot;edits_remaining&quot;:&quot;5&quot;},&quot;isEdited&quot;:false,&quot;isStaleEdit&quot;:false},&quot;isEdited&quot;:false,&quot;isStaleEdit&quot;:false}"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/LogarithmicRex">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/16f57dd62ad32a32b55ec40291974b7c43ecfd679fef42d0ba87e24edc9db701.jpg" />
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/LogarithmicRex" class="twitter-displayname">Logarithmic Rex</a>
              <p><a target="_blank" href="https://twitter.com/LogarithmicRex" class="twitter-username">@LogarithmicRex</a></p>
    
            </div>
            <a href="https://twitter.com/LogarithmicRex/status/1585441338794745856" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png" />
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      (18/30) The transition from Proto-Danksharding to Danksharding involves two important changes:<br /><br />- available blobs per block will increase from 1 to 64 (as of now)<br />- blob data will be distributed across the network, so that no single node needs to download them all
      
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/LogarithmicRex/status/1585441338794745856" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            9
          </a>
          <a target="_blank" href="https://twitter.com/LogarithmicRex/status/1585441338794745856"><p>8:20 PM • Oct 26, 2022</p></a>
        </div>
    
  </div> 
  </div><p>Relieving nodes of downloading full blocks using <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/SalomonCrypto/status/1583705993300492288">KZG commitments</a></p><div data-type="twitter" tweetId="1512133442401554434" tweetData="{&quot;__typename&quot;:&quot;Tweet&quot;,&quot;lang&quot;:&quot;en&quot;,&quot;favorite_count&quot;:199,&quot;created_at&quot;:&quot;2022-04-07T18:21:21.000Z&quot;,&quot;display_text_range&quot;:[0,249],&quot;entities&quot;:{&quot;hashtags&quot;:[],&quot;urls&quot;:[],&quot;user_mentions&quot;:[],&quot;symbols&quot;:[]},&quot;id_str&quot;:&quot;1512133442401554434&quot;,&quot;text&quot;:&quot;Polygon Avail is going to be the first data availability sampling network that uses KZG proofs. Similar technology will power danksharding in the future, enabling rollups to hit limitless scale in tandem with increasing decentralization or security.&quot;,&quot;user&quot;:{&quot;id_str&quot;:&quot;1420244728621133828&quot;,&quot;name&quot;:&quot;polynya&quot;,&quot;screen_name&quot;:&quot;apolynya&quot;,&quot;is_blue_verified&quot;:true,&quot;profile_image_shape&quot;:&quot;Circle&quot;,&quot;verified&quot;:false,&quot;profile_image_url_https&quot;:&quot;https://storage.googleapis.com/papyrus_images/c813bda36199a3fb8d122cdd0a00b5736fe91bd9787a720ca23dc9b0bb4d5f80.jpg&quot;},&quot;edit_control&quot;:{&quot;edit_tweet_ids&quot;:[&quot;1512133442401554434&quot;],&quot;editable_until_msecs&quot;:&quot;1649357481406&quot;,&quot;is_edit_eligible&quot;:true,&quot;edits_remaining&quot;:&quot;5&quot;},&quot;conversation_count&quot;:8,&quot;news_action_type&quot;:&quot;conversation&quot;,&quot;quoted_tweet&quot;:{&quot;lang&quot;:&quot;en&quot;,&quot;reply_count&quot;:191,&quot;retweet_count&quot;:454,&quot;favorite_count&quot;:954,&quot;possibly_sensitive&quot;:false,&quot;created_at&quot;:&quot;2022-04-06T14:17:08.000Z&quot;,&quot;display_text_range&quot;:[0,275],&quot;entities&quot;:{&quot;hashtags&quot;:[{&quot;indices&quot;:[0,8],&quot;text&quot;:&quot;Polygon&quot;}],&quot;urls&quot;:[{&quot;display_url&quot;:&quot;bit.ly/Polygon-Avail&quot;,&quot;expanded_url&quot;:&quot;https://bit.ly/Polygon-Avail&quot;,&quot;indices&quot;:[251,274],&quot;url&quot;:&quot;https://t.co/XMBtmI4W1C&quot;}],&quot;user_mentions&quot;:[],&quot;symbols&quot;:[],&quot;media&quot;:[{&quot;display_url&quot;:&quot;pic.x.com/crsN6J5ueH&quot;,&quot;expanded_url&quot;:&quot;https://x.com/0xPolygon/status/1511709595060031491/video/1&quot;,&quot;indices&quot;:[275,298],&quot;url&quot;:&quot;https://t.co/crsN6J5ueH&quot;}]},&quot;id_str&quot;:&quot;1511709595060031491&quot;,&quot;text&quot;:&quot;#Polygon is building a modular suite of scaling solutions to empower chains and dApps of any size.\n\nAnd today, we’re sharing our vision for @0xPolygonAvail, a new data availability blockchain that improves scalability across the board. \n\nLearn more 👉 https://t.co/XMBtmI4W1C https://t.co/crsN6J5ueH&quot;,&quot;user&quot;:{&quot;id_str&quot;:&quot;914738730740715521&quot;,&quot;name&quot;:&quot;Polygon&quot;,&quot;screen_name&quot;:&quot;0xPolygon&quot;,&quot;is_blue_verified&quot;:true,&quot;profile_image_shape&quot;:&quot;Square&quot;,&quot;verified&quot;:false,&quot;verified_type&quot;:&quot;Business&quot;,&quot;profile_image_url_https&quot;:&quot;https://storage.googleapis.com/papyrus_images/3517189dc626be91248b11e865276fa8ba4721cadc6ffe578067645993ef363e.jpg&quot;},&quot;edit_control&quot;:{&quot;edit_tweet_ids&quot;:[&quot;1511709595060031491&quot;],&quot;editable_until_msecs&quot;:&quot;1649256428325&quot;,&quot;is_edit_eligible&quot;:true,&quot;edits_remaining&quot;:&quot;5&quot;},&quot;mediaDetails&quot;:[{&quot;additional_media_info&quot;:{},&quot;display_url&quot;:&quot;pic.x.com/crsN6J5ueH&quot;,&quot;expanded_url&quot;:&quot;https://x.com/0xPolygon/status/1511709595060031491/video/1&quot;,&quot;ext_media_availability&quot;:{&quot;status&quot;:&quot;Available&quot;},&quot;indices&quot;:[275,298],&quot;media_url_https&quot;:&quot;https://pbs.twimg.com/media/FPqr9qJaIAEVWe-.jpg&quot;,&quot;original_info&quot;:{&quot;height&quot;:720,&quot;width&quot;:1280,&quot;focus_rects&quot;:[]},&quot;sizes&quot;:{&quot;large&quot;:{&quot;h&quot;:720,&quot;resize&quot;:&quot;fit&quot;,&quot;w&quot;:1280},&quot;medium&quot;:{&quot;h&quot;:675,&quot;resize&quot;:&quot;fit&quot;,&quot;w&quot;:1200},&quot;small&quot;:{&quot;h&quot;:383,&quot;resize&quot;:&quot;fit&quot;,&quot;w&quot;:680},&quot;thumb&quot;:{&quot;h&quot;:150,&quot;resize&quot;:&quot;crop&quot;,&quot;w&quot;:150}},&quot;type&quot;:&quot;video&quot;,&quot;url&quot;:&quot;https://t.co/crsN6J5ueH&quot;,&quot;video_info&quot;:{&quot;aspect_ratio&quot;:[16,9],&quot;duration_millis&quot;:25308,&quot;variants&quot;:[{&quot;content_type&quot;:&quot;application/x-mpegURL&quot;,&quot;url&quot;:&quot;https://video.twimg.com/ext_tw_video/1511703291948048393/pu/pl/508U7v5LRbOvQkVV.m3u8?tag=12&quot;},{&quot;bitrate&quot;:256000,&quot;content_type&quot;:&quot;video/mp4&quot;,&quot;url&quot;:&quot;https://video.twimg.com/ext_tw_video/1511703291948048393/pu/vid/480x270/rpIeswvAP0SxD96c.mp4?tag=12&quot;},{&quot;bitrate&quot;:832000,&quot;content_type&quot;:&quot;video/mp4&quot;,&quot;url&quot;:&quot;https://video.twimg.com/ext_tw_video/1511703291948048393/pu/vid/640x360/lwoqMX5UIxeRIgLG.mp4?tag=12&quot;},{&quot;bitrate&quot;:2176000,&quot;content_type&quot;:&quot;video/mp4&quot;,&quot;url&quot;:&quot;https://video.twimg.com/ext_tw_video/1511703291948048393/pu/vid/1280x720/7i6buhSPeZg41oKi.mp4?tag=12&quot;}]}}],&quot;photos&quot;:[],&quot;video&quot;:{&quot;aspectRatio&quot;:[16,9],&quot;contentType&quot;:&quot;media_entity&quot;,&quot;durationMs&quot;:25308,&quot;mediaAvailability&quot;:{&quot;status&quot;:&quot;available&quot;},&quot;poster&quot;:&quot;https://pbs.twimg.com/media/FPqr9qJaIAEVWe-.jpg&quot;,&quot;variants&quot;:[{&quot;type&quot;:&quot;application/x-mpegURL&quot;,&quot;src&quot;:&quot;https://video.twimg.com/ext_tw_video/1511703291948048393/pu/pl/508U7v5LRbOvQkVV.m3u8?tag=12&quot;},{&quot;type&quot;:&quot;video/mp4&quot;,&quot;src&quot;:&quot;https://video.twimg.com/ext_tw_video/1511703291948048393/pu/vid/480x270/rpIeswvAP0SxD96c.mp4?tag=12&quot;},{&quot;type&quot;:&quot;video/mp4&quot;,&quot;src&quot;:&quot;https://video.twimg.com/ext_tw_video/1511703291948048393/pu/vid/640x360/lwoqMX5UIxeRIgLG.mp4?tag=12&quot;},{&quot;type&quot;:&quot;video/mp4&quot;,&quot;src&quot;:&quot;https://video.twimg.com/ext_tw_video/1511703291948048393/pu/vid/1280x720/7i6buhSPeZg41oKi.mp4?tag=12&quot;}],&quot;videoId&quot;:{&quot;type&quot;:&quot;tweet&quot;,&quot;id&quot;:&quot;1511709595060031491&quot;},&quot;viewCount&quot;:0},&quot;isEdited&quot;:false,&quot;isStaleEdit&quot;:false},&quot;isEdited&quot;:false,&quot;isStaleEdit&quot;:false}"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/apolynya">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/c813bda36199a3fb8d122cdd0a00b5736fe91bd9787a720ca23dc9b0bb4d5f80.jpg" />
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/apolynya" class="twitter-displayname">polynya</a>
              <p><a target="_blank" href="https://twitter.com/apolynya" class="twitter-username">@apolynya</a></p>
    
            </div>
            <a href="https://twitter.com/apolynya/status/1512133442401554434" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png" />
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      Polygon Avail is going to be the first data availability sampling network that uses KZG proofs. Similar technology will power danksharding in the future, enabling rollups to hit limitless scale in tandem with increasing decentralization or security.
      
      
      <div class="twitter-quoted">
        
  <div class="twitter-quoted twitter-embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/0xPolygon">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/3517189dc626be91248b11e865276fa8ba4721cadc6ffe578067645993ef363e.jpg" />
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/0xPolygon" class="twitter-displayname">Polygon</a>
              <p><a target="_blank" href="https://twitter.com/0xPolygon" class="twitter-username">@0xPolygon</a></p>
    
            </div>
            <a href="https://twitter.com/0xPolygon/status/1511709595060031491" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png" />
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      <a class="twitter-content-link" href="https://twitter.com/hashtag/Polygon" target="_blank">#Polygon</a> is building a modular suite of scaling solutions to empower chains and dApps of any size.<br /><br />And today, we’re sharing our vision for @0xPolygonAvail, a new data availability blockchain that improves scalability across the board. <br /><br />Learn more <img class="twitter-emoji" draggable="false" alt="👉" src="https://abs-0.twimg.com/emoji/v2/72x72/1f449.png"/> <a class="twitter-content-link" href="https://t.co/XMBtmI4W1C" target="_blank">bit.ly/Polygon-Avail</a> 
      <div class="twitter-media">
      <img class="twitter-image" src="https://pbs.twimg.com/media/FPqr9qJaIAEVWe-.jpg"> 
    </div>
      
       
    </div>
    
  </div> 
  
    </div> 
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/apolynya/status/1512133442401554434" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            199
          </a>
          <a target="_blank" href="https://twitter.com/apolynya/status/1512133442401554434"><p>1:21 PM • Apr 7, 2022</p></a>
        </div>
    
  </div> 
  </div><p>Maintaining low verification costs with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://hackmd.io/@vbuterin/sharding_proposal#ELI5-data-availability-sampling">data availability sampling</a>.</p><div data-type="twitter" tweetId="1584559577307103232" tweetData="{&quot;__typename&quot;:&quot;Tweet&quot;,&quot;in_reply_to_screen_name&quot;:&quot;LogarithmicRex&quot;,&quot;in_reply_to_status_id_str&quot;:&quot;1584559570487152641&quot;,&quot;in_reply_to_user_id_str&quot;:&quot;1465205451826483202&quot;,&quot;lang&quot;:&quot;en&quot;,&quot;favorite_count&quot;:1,&quot;possibly_sensitive&quot;:false,&quot;created_at&quot;:&quot;2022-10-24T14:56:57.000Z&quot;,&quot;display_text_range&quot;:[0,205],&quot;entities&quot;:{&quot;hashtags&quot;:[],&quot;urls&quot;:[],&quot;user_mentions&quot;:[],&quot;symbols&quot;:[],&quot;media&quot;:[{&quot;display_url&quot;:&quot;pic.x.com/WTDfGfk7iX&quot;,&quot;expanded_url&quot;:&quot;https://x.com/SalomonCrypto/status/1584559577307103232/photo/1&quot;,&quot;indices&quot;:[206,229],&quot;url&quot;:&quot;https://t.co/WTDfGfk7iX&quot;}]},&quot;id_str&quot;:&quot;1584559577307103232&quot;,&quot;text&quot;:&quot;(11/21) Yes, no single node will download the entire block, but if we are careful about how we break up our blob and ensure our sampling is random enough, we can be confident the entire block is available. https://t.co/WTDfGfk7iX&quot;,&quot;user&quot;:{&quot;id_str&quot;:&quot;1465205451826483202&quot;,&quot;name&quot;:&quot;Logarithmic Rex&quot;,&quot;screen_name&quot;:&quot;LogarithmicRex&quot;,&quot;is_blue_verified&quot;:false,&quot;profile_image_shape&quot;:&quot;Circle&quot;,&quot;verified&quot;:false,&quot;profile_image_url_https&quot;:&quot;https://storage.googleapis.com/papyrus_images/16f57dd62ad32a32b55ec40291974b7c43ecfd679fef42d0ba87e24edc9db701.jpg&quot;},&quot;edit_control&quot;:{&quot;edit_tweet_ids&quot;:[&quot;1584559577307103232&quot;],&quot;editable_until_msecs&quot;:&quot;1666625217000&quot;,&quot;is_edit_eligible&quot;:false,&quot;edits_remaining&quot;:&quot;5&quot;},&quot;mediaDetails&quot;:[{&quot;display_url&quot;:&quot;pic.x.com/WTDfGfk7iX&quot;,&quot;expanded_url&quot;:&quot;https://x.com/SalomonCrypto/status/1584559577307103232/photo/1&quot;,&quot;ext_media_availability&quot;:{&quot;status&quot;:&quot;Available&quot;},&quot;indices&quot;:[206,229],&quot;media_url_https&quot;:&quot;https://pbs.twimg.com/media/Ff18iRdUUAAHDvS.jpg&quot;,&quot;original_info&quot;:{&quot;height&quot;:899,&quot;width&quot;:1280,&quot;focus_rects&quot;:[{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:1280,&quot;h&quot;:717},{&quot;x&quot;:381,&quot;y&quot;:0,&quot;w&quot;:899,&quot;h&quot;:899},{&quot;x&quot;:491,&quot;y&quot;:0,&quot;w&quot;:789,&quot;h&quot;:899},{&quot;x&quot;:701,&quot;y&quot;:0,&quot;w&quot;:450,&quot;h&quot;:899},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:1280,&quot;h&quot;:899}]},&quot;sizes&quot;:{&quot;large&quot;:{&quot;h&quot;:899,&quot;resize&quot;:&quot;fit&quot;,&quot;w&quot;:1280},&quot;medium&quot;:{&quot;h&quot;:843,&quot;resize&quot;:&quot;fit&quot;,&quot;w&quot;:1200},&quot;small&quot;:{&quot;h&quot;:478,&quot;resize&quot;:&quot;fit&quot;,&quot;w&quot;:680},&quot;thumb&quot;:{&quot;h&quot;:150,&quot;resize&quot;:&quot;crop&quot;,&quot;w&quot;:150}},&quot;type&quot;:&quot;photo&quot;,&quot;url&quot;:&quot;https://t.co/WTDfGfk7iX&quot;}],&quot;photos&quot;:[{&quot;backgroundColor&quot;:{&quot;red&quot;:204,&quot;green&quot;:214,&quot;blue&quot;:221},&quot;cropCandidates&quot;:[{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:1280,&quot;h&quot;:717},{&quot;x&quot;:381,&quot;y&quot;:0,&quot;w&quot;:899,&quot;h&quot;:899},{&quot;x&quot;:491,&quot;y&quot;:0,&quot;w&quot;:789,&quot;h&quot;:899},{&quot;x&quot;:701,&quot;y&quot;:0,&quot;w&quot;:450,&quot;h&quot;:899},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:1280,&quot;h&quot;:899}],&quot;expandedUrl&quot;:&quot;https://x.com/SalomonCrypto/status/1584559577307103232/photo/1&quot;,&quot;url&quot;:&quot;https://storage.googleapis.com/papyrus_images/617a8e63131e4fa8d0cde10e4e8f648d29fe2cca57d10982e4c018ec803ba174.jpg&quot;,&quot;width&quot;:1280,&quot;height&quot;:899}],&quot;conversation_count&quot;:1,&quot;news_action_type&quot;:&quot;conversation&quot;,&quot;parent&quot;:{&quot;in_reply_to_screen_name&quot;:&quot;LogarithmicRex&quot;,&quot;in_reply_to_status_id_str&quot;:&quot;1584559567282720768&quot;,&quot;in_reply_to_user_id_str&quot;:&quot;1465205451826483202&quot;,&quot;lang&quot;:&quot;en&quot;,&quot;reply_count&quot;:1,&quot;retweet_count&quot;:0,&quot;favorite_count&quot;:1,&quot;created_at&quot;:&quot;2022-10-24T14:56:55.000Z&quot;,&quot;display_text_range&quot;:[0,248],&quot;entities&quot;:{&quot;hashtags&quot;:[],&quot;urls&quot;:[],&quot;user_mentions&quot;:[],&quot;symbols&quot;:[]},&quot;id_str&quot;:&quot;1584559570487152641&quot;,&quot;text&quot;:&quot;(10/21) Our goal is to guarantee that the entire blob was published to the network and is available for download... but there&apos;s no reason every node has to check the entire blob.\n\nWhat if each node checked just some small random sample of the blob?&quot;,&quot;user&quot;:{&quot;id_str&quot;:&quot;1465205451826483202&quot;,&quot;name&quot;:&quot;Logarithmic Rex&quot;,&quot;screen_name&quot;:&quot;LogarithmicRex&quot;,&quot;is_blue_verified&quot;:false,&quot;profile_image_shape&quot;:&quot;Circle&quot;,&quot;verified&quot;:false,&quot;profile_image_url_https&quot;:&quot;https://pbs.twimg.com/profile_images/1818852476755296256/Gp3LIe3P_normal.jpg&quot;},&quot;edit_control&quot;:{&quot;edit_tweet_ids&quot;:[&quot;1584559570487152641&quot;],&quot;editable_until_msecs&quot;:&quot;1666625215000&quot;,&quot;is_edit_eligible&quot;:false,&quot;edits_remaining&quot;:&quot;5&quot;},&quot;isEdited&quot;:false,&quot;isStaleEdit&quot;:false},&quot;isEdited&quot;:false,&quot;isStaleEdit&quot;:false}"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/LogarithmicRex">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/16f57dd62ad32a32b55ec40291974b7c43ecfd679fef42d0ba87e24edc9db701.jpg" />
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/LogarithmicRex" class="twitter-displayname">Logarithmic Rex</a>
              <p><a target="_blank" href="https://twitter.com/LogarithmicRex" class="twitter-username">@LogarithmicRex</a></p>
    
            </div>
            <a href="https://twitter.com/LogarithmicRex/status/1584559577307103232" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png" />
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      (11/21) Yes, no single node will download the entire block, but if we are careful about how we break up our blob and ensure our sampling is random enough, we can be confident the entire block is available. 
      <div class="twitter-media"><img class="twitter-image" src="https://storage.googleapis.com/papyrus_images/617a8e63131e4fa8d0cde10e4e8f648d29fe2cca57d10982e4c018ec803ba174.jpg" /></div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/LogarithmicRex/status/1584559577307103232" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            1
          </a>
          <a target="_blank" href="https://twitter.com/LogarithmicRex/status/1584559577307103232"><p>9:56 AM • Oct 24, 2022</p></a>
        </div>
    
  </div> 
  </div><p>Eventually, we get to a place where DA layers enable <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/SalomonCrypto/status/1559402384526258176">high throughput</a> applications while trust-minimized light clients <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/musalbas/status/1480901457633239048?s=46&amp;t=M0oqH6RTgCxC6ESgFxGrqw">verify on mobile devices</a>.</p><p>That’s right - performance and decentralization!</p><h1 id="h-wrapping-up" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Wrapping up</h1><p>Hopefully, this article helped you gain more familiarity with data availability. The goal was to offer a broad overview and address common misperceptions about the topic.</p><p>There are many deep dives into how it works, so if you want to jump down the rabbit hole, here are some resources:</p><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.polygon.technology/category/polygon-solutions/polygon-avail/">Polygon blog</a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://salomoncrypto.notion.site/Ethereum-9dfdf1b2cd334bd8b713b8f8a1f5f26b">Haym Salomon threads</a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.paradigm.xyz/2022/08/das">Paradigm blog</a></p></li></ul><p>As always, this article is based on a snapshot in time, and web3 moves <em>very</em> quickly. The technology and timelines mentioned might change.</p><p>To keep up with the latest, I recommend following along with sources like the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.polygon.technology/">Polygon website</a>, the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mirror.xyz/polygonvillage.eth">Polygon DAO blog</a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://polygonvillage.substack.com/">The Village Times newsletter</a>. And to get involved, come join us at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/zp7KMqvNhttps://discord.gg/zp7KMqvN">Polygon DAO</a>.</p>]]></content:encoded>
            <author>polygonvillage@newsletter.paragraph.com (Polygon Village)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/d2b52d36a5b3dd0ea9c39ac6fe405f1ecd6458da0f3d03094e5faf4c3000735e.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[How Polygon is Bridging the Gap Between Blockchains and Real-World Applications]]></title>
            <link>https://paragraph.com/@polygonvillage/how-polygon-is-bridging-the-gap-between-blockchains-and-real-world-applications</link>
            <guid>lE1qDCdHhk1X8nyprGcB</guid>
            <pubDate>Tue, 08 Nov 2022 16:35:37 GMT</pubDate>
            <description><![CDATA[It’s not unreasonable to say that blockchains need real-world use cases to gain mass adoption. Web3 has been slow to gain traction outside of the crypto community. While there are many reasons for this, the primary one is that they don’t see any use case for Web3 in their daily lives.Why real-world use cases are important for blockchainsReal-world use cases are important to keep blockchains economically and socially sustainable. Having a flow of value coming from real-world sources allows the...]]></description>
            <content:encoded><![CDATA[<p><strong>It’s not unreasonable to say that blockchains need real-world use cases to gain mass adoption. Web3 has been slow to gain traction outside of the crypto community. While there are many reasons for this, the primary one is that they don’t see any use case for Web3 in their daily lives.</strong></p><h2 id="h-why-real-world-use-cases-are-important-for-blockchains" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Why real-world use cases are important for blockchains</h2><p>Real-world use cases are important to keep blockchains economically and socially sustainable. Having a flow of value coming from real-world sources allows the on-chain economy and society to thrive even more. Without real-world use cases, value throughput is limited due to value only coming from users on-chain, which is unlikely to be sustainable long-term once growth slows down.</p><p>To streamline a thriving blockchain, we must bridge the gap between blockchains and real-world applications.</p><h2 id="h-why-blockchains-are-important-for-the-real-world" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Why blockchains are important for the real-world</h2><p>There is a myriad of blockchain implementation opportunities that go well beyond the boundaries of even the financial industry. This is because the principle of distributed ledgers in blockchains lends itself well to any industry with a database that requires a trustless and immutable storage system.</p><p>These secure and premium features have become too good to pass up, and many companies and industries have started using blockchain technology for different purposes. Apart from blockchains having amazing features that benefit companies in ways like security and transparency, they also benefit the customers of these companies in different ways.</p><h3 id="h-what-are-some-good-examples-of-real-world-use-cases-that-utilize-the-blockchain" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">What are some good examples of real-world use cases that utilize the blockchain?</h3><p>Above we shortly introduced why blockchains are important for the real world. People have come up with brilliant ideas for real-world applications that utilize the blockchain. Anything from medical applications, financial applications, creative applications, and more.</p><p>A list of areas where blockchains become useful;</p><ul><li><p>Healthcare</p></li><li><p>Logistics</p></li><li><p>Personal Identity Security</p></li><li><p>Internet of Things (IoT)</p></li><li><p>Media</p></li><li><p>Government</p></li><li><p>Money Transfer</p></li><li><p>Loyalty Programs</p></li></ul><h2 id="h-how-the-polygon-pos-blockchain-is-being-used-in-the-real-world" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">How the Polygon PoS blockchain is being used in the real world.</h2><p>Very known and highly valued companies are utilizing <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://polygon.technology/">Polygon</a> for different reasons. Two of the biggest companies are <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.starbucks.com/">Starbucks</a>, the largest coffeehouse chain in the world, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.enegragroup.com/">Enegra</a>, an international mineral commodities trading business.</p><h3 id="h-polygon-x-starbucks" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Polygon x Starbucks</h3><p>Starbucks integrating the Polygon PoS blockchain will allow <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.starbucks.com/rewards">Starbucks Rewards</a> loyalty program members and Starbucks partners (employees) in the United States to earn and purchase digital collectible stamps in the form of non-fungible tokens (NFTs).</p><p>This integration allows people to play games and complete challenges that test their knowledge of coffee and the Starbucks brand. This one-of-a-kind loyalty program experience is powered by low fees and high transaction speeds on the Polygon PoS network.</p><p>Members can also purchase NFTs with either crypto or a credit card and trade them in a custom Starbucks Odyssey marketplace. No crypto wallet or cryptocurrency will be required.</p><p>As NFTs are collected, members’ points will increase. As more points are acquired, the better the rewards to choose from.</p><p>Some potential experiences could include a virtual espresso martini-making class, invitations to events at Starbucks Reserve Roasteries, or even trips to Starbucks Hacienda Alsacia coffee farm in Costa Rica. This whole partnership between Polygon and Starbucks will bring certain benefits and “immersive coffee experiences,” according to the company.</p><h3 id="h-polygon-x-reddit" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Polygon x Reddit</h3><p>Reddit teamed up with Polygon to create avatars using 90 distinct designs that will be available in the future. The designs are limited edition and include features that may be utilized outside Reddit as a profile picture.</p><p>The NFTs will not be available to the general public; instead, they’ll be accessible only to people with a r/collectible avatar. This will allow users to link their Avatar with other Avatar gear and accessories.</p><p>Users with NFT enabled will be distinct from others with a glow-like appearance on their profile picture.</p><p>“You don’t need bitcoin to buy these avatars, and they aren’t being sold. They’re all priced at a set price and may be purchased with regular currency.” According to Reddit, there was no ambiguity about the situation.</p><p>The Reddit team also said this; “In the future, we see blockchain as one way to bring more empowerment and independence to communities on Reddit. Reddit has always been a model for what decentralization could look like online; our communities are self-built and run, and as part of our mission to better empower our communities, we are exploring tools to help them be even more self-sustaining and self-governed.”</p><h2 id="h-real-world-use-cases-will-allow-web3-to-adopt-new-users-at-a-fast-pace" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Real-world use cases will allow Web3 to adopt new users at a fast pace</h2><p>Web3 will likely intervene in most Internet sectors in the foreseeable future. Blockchain-based technologies might dominate the future of business ventures, meaning most companies may want to convert into decentralized software.</p><p>As discussed in this article, one of the key ways to achieve mass adoption is through real-world use cases and not just relegating Web3 to the crypto community. By demonstrating how Web3 can be used in everyday situations, people will be more likely to adopt it globally.</p><h3 id="h-about-the-village" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">About the Village</h3><p><em>Polygon Village is the centerpiece of Polygon’s long-term strategy of progressively decentralizing the ecosystem&apos;s growth to the community. Polygon DAO aims to represent and support various areas of interest within the Polygon ecosystem. Through Polygon Village, developers gain access to everything they need to build, grow, and showcase their Web3 initiatives; projects building on Polygon receive comprehensive, quality support.</em></p><p><strong>Stay in the Loop</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/0xPolygonDAO">Twitter</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/polygon">Discord</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/polygonofficial">Telegram</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://village.polygon.community/">Village</a></p>]]></content:encoded>
            <author>polygonvillage@newsletter.paragraph.com (Polygon Village)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/99a37875e297d8274c5f4b0c483c6e2599cb9e9b275200a103262e10ca0131a5.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[A Warm Welcome (Voucher)]]></title>
            <link>https://paragraph.com/@polygonvillage/a-warm-welcome-voucher</link>
            <guid>qBFVBjNrv6bIxU6rs366</guid>
            <pubDate>Wed, 26 Oct 2022 15:25:00 GMT</pubDate>
            <description><![CDATA[The following post was written by @sovereignsignal, an active community contributor and curator specializing in Polygon DAO grants researchIntroductionA model I think about quite often is the Technology Adoption Lifecycle. It was originally penned by Geoffrey Moore in his books Crossing the Chasm and its follow on Inside The Tornado. While I’m not a huge fan of management books (outside of Moore’s work, anything by Ben Horowitz, or the writings of the late Andy Grove), I think some of the con...]]></description>
            <content:encoded><![CDATA[<p><em>The following post was written by @sovereignsignal, an active community contributor and curator specializing in Polygon DAO grants research</em></p><h1 id="h-introduction" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Introduction</h1><p>A model I think about quite often is the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/pulse/force-acceleration-velocity-mass-isaac-newtons-guide-high-tech-moore/">Technology Adoption Lifecycle</a>.  It was originally penned by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/in/geoffreyamoore/">Geoffrey Moore</a> in his books <em>Crossing the Chasm</em> and its follow on <em>Inside</em> <em>The Tornado.</em></p><p>While I’m not a huge fan of management books (outside of Moore’s work, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.amazon.com/Ben-Horowitz/e/B00HALQ722">anything by Ben Horowitz</a>, or the writings of the late <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.amazon.com/Andrew-S-Grove/e/B000AQ48KW">Andy Grove</a>), I think some of the concepts he discusses are very relevant to our space and can help us to understand just how “early” we are.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/b65e04592d68feeddef84a2a0cfa74dc9d5eaffbd4c570ca0f7bb955179061bd.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>The TL;DR on the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.linkedin.com/pulse/force-acceleration-velocity-mass-isaac-newtons-guide-high-tech-moore/">Technology Adoption Lifecycle</a> goes like this: </p><ol><li><p><strong>Innovators</strong>: Disruptive technology starts out in a place where only tinkerers and hobbyists find it interesting.  Think Hal Finney and the Cypherpunks.</p></li><li><p><strong>Visionaries</strong>: The technology gains relevance, and visionaries start to realize the power of what has been created.  Real-world use cases start to emerge, and the process of building new and interesting things begins.  This is usually <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.amazon.com/Devil-Take-Hindmost-Financial-Speculation/dp/0452281806">where we see speculators come along</a> and a few super-geniuses like Vitalik Buterin.</p></li><li><p><strong>The Chasm</strong>: Things drop off a cliff due to lack of interest and mainstream adoption (and down market cycles).  It may seem like all hope is lost during this time, but truly disruptive technologies make it through. Sometimes there are multiple down-market cycles that happen across these early stages.</p></li><li><p><strong>Early Majority</strong>: People are starting to catch on and realize the technology&apos;s potential.  More progressive organizations are adopting its use, and everyday individuals are gaining more and more exposure to it.  (I would argue we’re somewhere in the early phases of this stage currently.)</p></li><li><p><strong>Late Majority</strong>:  We’ve all “made it.”  The technology has gained widespread acceptance, and even the most conservative organizations are using it to great effect. Although its success, cracks are starting to form, and even though it seems like it will be up only forever, a decline has already started.  I would argue that this is where much of big tech is sitting today.</p></li><li><p><strong>Laggards</strong>:  The last camp to adopt any new technology.  Imagine Paul Krugman on CNBC discussing the value of Layer 2 scaling solutions (it’s a reach, I know).</p></li></ol><p>Just like you can compare this model to broad trends across technology progress, you can also apply it to individual product life cycles.  One concept that Moore discusses, specifically for early adopters, is how important a vision is to ensure a strong compass on where a project wants to go and how they chart a course to get there.</p><blockquote><p><em>“Having a vision for what you want is not enough. Vision without execution is hallucination.” --</em> Thomas A. Edison</p></blockquote><h1 id="h-welcome-vouchers" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Welcome Vouchers</h1><h3 id="h-so-you-might-be-wondering-what-all-of-this-has-to-do-with-polygon-dao-and-its-welcome-vouchers" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">So you might be wondering what all of this has to do with Polygon DAO and its Welcome Vouchers.</h3><p>Well, Polygon Village Welcome Vouchers seek to enable a strong vision and drive execution in ways that founders and project builders may not have been able to on their own. We at Polygon DAO want to do what we can to help you take that great idea you have and move it from its early formative stages across the chasm and into wider adoption.  </p><p>Bear markets are for building, and we believe now is the time to help enable builders to unlock their potential.</p><p>As I discussed in <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://sovereignsignal.substack.com/p/polygon">an earlier piece detailing the history of Polygon DAO</a>, the DAO was founded on the notion that builders need help. There are various ways to do that over and above the traditional grants model that many Foundations or Ecosystem DAOs employ today. Ultimately, the mission of Polygon DAO is to get progressively more decentralized over time and create a support model that can cater to projects, at scale, across all stages of their lifecycle.  One of the ways we have seen success is through the use of our Welcome Vouchers.</p><p>So what exactly is a Welcome Voucher?</p><p>I’m glad you asked anon.  Welcome Vouchers are a way to offer services from a broad range of Polygon DAO partners that specialize in <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://airtable.com/shrCIvexLWtuH1dJh">twelve areas</a>, including infrastructure, hosting, DAO tooling, audits, accounting, legal, marketing, API services, and more.  </p><p>The original concept for the Welcome Vouchers was borrowed from Amazon Web Services (ironically enough, a Polygon Village Partner) with their <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://aws.amazon.com/awscredits/">AWS Credits Program</a>.  AWS Credits serve as promotional coupons that are offered through the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://aws.amazon.com/activate/">AWS Activate program</a>.  These credits can help to cover various AWS services, tools, and/or resources, and the program has been a game changer in jumpstarting adoption for many up-and-coming projects that are building on top of AWS.</p><p>We started Welcome Vouchers to foster a fledgling project at all stages of its lifecycle and help make connections with qualified, vetted partners in ways that would benefit both the project and the wider Polygon ecosystem.</p><p>The program has grown significantly, with 35 vouchers distributed in June of this year to now 200+ each month and more than 1000 total distributed over the short 4-month lifespan of the program. In addition to the vouchers being distributed, the count of partners also grew from eight in the first month to now 54 and counting. Our team at Polygon DAO has implemented a sophisticated system of tracking incoming submissions, and we have built out strong internal workflows to make sure we can continue to keep up with the rising volume of incoming requests.</p><p>We believe the program has helped to create win/win/win (yes, three wins) by:</p><ul><li><p>Helping builders to connect to vetted resources that can bring their ideas to life and/or provide critical infrastructure needed to develop and scale their projects.</p></li><li><p>Increasing qualified deal flow, and brand awareness for services partners across the wider Polygon Ecosystem</p></li><li><p>Furthering our goal of bringing the next 10,000+ projects into Polygon via the Polygon DAO funnel.</p></li></ul><h1 id="h-the-way-forward" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">The Way Forward</h1><p>We’re very proud (obviously!) of the work that has been done and extremely satisfied with the results.  Does that mean we’re resting on our laurels?  No, anon, not even close.</p><p>We have big plans for the way forward with the program that you will see from us in the days ahead.  Some of the improvements and updates we have on the roadmap include the following:</p><ul><li><p><strong>Operational Improvements</strong>: Project lifecycle tracking, trending, and in-depth analysis</p></li><li><p><strong>Partnerships Growth</strong>: We’re aiming for 100+ voucher partners across multiple verticals.  We believe that there is still much room for growth and many more partnership opportunities to explore.</p></li><li><p><strong>Ecosystem Support</strong>: We plan to actively support Polygon products directly through vouchers.  We call this sipping our own champagne, anon.</p></li><li><p><strong>Deal Flow</strong>: We plan to continue strengthening the deal flow to partners through enhanced marketing and community engagement.</p></li></ul><p>Sound ambitious?  It should, anon.  We’re excited to close this year strong and will continue to drive growth and improvement regardless of market conditions.</p><h1 id="h-how-to-apply" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">How to Apply?</h1><p>If you are interested in applying for a Welcome Voucher or seeing if there might be a fit as a partner, we would love to have you stop by the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://village.polygon.community/">Polygon Village</a> and drop us a request.  </p><p>We have created Airtable forms that are directly linked to our site, where you can request Welcome Voucher support or apply as a partner.  Fill out the simple application, and a team member will be in touch to follow up with you.  </p><p>If you have any questions about the application or the program, you can always stop by our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/Ct3FBqWSus">Discord</a> and check in with our team.</p>]]></content:encoded>
            <author>polygonvillage@newsletter.paragraph.com (Polygon Village)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/5ef27676b6ad5d791e4e471f9317d6f7c7e45da39d31bd401d605196c7280c69.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[Progress from the Polygon DAO]]></title>
            <link>https://paragraph.com/@polygonvillage/progress-from-the-polygon-dao</link>
            <guid>jSEFCpPd2g4y57cqZ4xF</guid>
            <pubDate>Mon, 24 Oct 2022 12:30:31 GMT</pubDate>
            <description><![CDATA[The Polygon DAO has been heads down, shipping programs and resources and growing the Polygon ecosystem at lightning speeds. Despite the bear market volatility, Polygon DAO remained focused on building communities and projects on the Polygon network. We are excited to share an update on the DAO&apos;s initiatives and community developments. Let&apos;s see what the team has been up to over the last six months.Polygon VillagePolygon DAO is the centerpiece of Polygon&apos;s long-term strategy of ...]]></description>
            <content:encoded><![CDATA[<p>The <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://linktr.ee/polygon_dao">Polygon DAO</a> has been heads down, shipping programs and resources and growing the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://polygon.technology/">Polygon</a> ecosystem at lightning speeds. Despite the bear market volatility, Polygon DAO remained focused on building communities and projects on the Polygon network. We are excited to share an update on the DAO&apos;s initiatives and community developments.</p><p><strong>Let&apos;s see what the team has been up to over the last six months.</strong></p><h2 id="h-polygon-village" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Polygon Village</h2><p>Polygon DAO is the centerpiece of Polygon&apos;s long-term strategy of progressively decentralizing the ecosystem&apos;s growth to the community. On April 8, 2022, Polygon DAO launched the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://village.polygon.community/">Polygon Village</a>, a full-stack ecosystem for developers to buidl and grow. Through Polygon Village, developers gain access to everything they need to showcase their web3 initiatives, while projects building on Polygon receive comprehensive, quality support.</p><h2 id="h-welcome-vouchers" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Welcome Vouchers</h2><p>With web3&apos;s rapid growth, service providers push new and innovative project tools at scale. While having an abundance of decentralized technology tools is excellent for industry innovation, it creates a formidable barrier to entry for fledgling projects.</p><p>The Village addresses these issues through Welcome Vouchers. Vouchers give DApps free access to the best web3 service providers under a single forum and act as a bridge between service providers to projects, covering all services a project might need through its lifecycle.</p><h3 id="h-welcome-voucher-stats" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Welcome Voucher Stats</h3><ul><li><p>2000+ Welcome Vouchers dispersed to projects looking to spur higher adoption rates and benefit from the top-tiered web3 service providers.</p></li><li><p>53 Voucher partners onboarded across 12 Distinct verticals</p><ul><li><p>Notable partners include: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.alchemy.com/">Alchemy</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://akash.network/">Akash Network</a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://tatum.io/">Tatum</a></p></li><li><p>200+ Projects referred to internal teams</p></li><li><p>Voucher service providers across Audit, Marketing &amp; Community, API, Node Infra, Storage &amp; Hosting, General Utility, Accounting and Payroll, Cross-Chain Toolings, Fiat On ramp- Off ramp, Legal consultation, NFT utility</p></li></ul></li><li><p><strong>$382,000 grants and $750K worth of paid Vouchers distributed ​</strong></p></li></ul><h2 id="h-village-wonders" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Village Wonders</h2><p>In July, Polygon DAO launched <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mirror.xyz/polygonvillage.eth/k4lqwZ2jZyUMi8MbOq9Q2OqV0JlylmTbWgrQnfEyDuc">Village Wonders</a>, a first-of-its-kind initiative providing a dedicated expansion strategy, mentorship, and funding opportunities to web3 projects building on Polygon.</p><p>During this three-month cohort, 12 selected projects across DeFi, DAO/tooling, NFT/gaming, metaverse, infrastructure, sustainability, and public utility receive:</p><ul><li><p>Mentorship &amp; office hours with Polygon core teams and industry experts;</p></li><li><p>$40,000 investment in return for 1.5% of equity or tokens</p></li><li><p>Demo Day with top VCs, Polygon Ventures, and other investors</p></li><li><p>Up to $70,000 in vouchers from Tier-1 partners for development, audit, marketing, etc.</p></li><li><p>Recognition, ecosystem connections, marketing, and community-building support.</p></li></ul><h3 id="h-1st-cohort-of-village-wonders" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">1st Cohort of Village Wonders</h3><p>Since Wonders launched, over 500 applications have been received. The first cohort of the Village Wonders began on September 1 and included the following projects:</p><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://artlabs.ai/">Artlabs</a>: Providing 3D &amp; AR at scale for Commerce and Metaverse</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.deefy.co/?utm_medium=social&amp;utm_source=linktree&amp;utm_campaign=website">Deefy</a>: Renting, lending, and BNPL infrastructure for NFTs Getting instant liquidity &amp; 100% utility</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://www.hackmakers.xyz/">Hackmakers DAO</a>: Community-driven SaaS platform to accelerate and reward innovation</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://dollardonationclub.com/">Impact Arcade</a>: Virtual gaming arcade featuring casual games that generate real-world impact, such as planting trees, cleaning up ocean plastic, protecting rainforests, and beyond!</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.metagamehub.io/">MetaGameHub DAO</a>: Hub for open Metaverse experiences and aggregation by converging Metaverse agnostic infrastructure with complementary dApps and LAND Valuation tools</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://matterprotocol.io/">Matter Protocol</a>: Matter Protocol is an oracle for social sentiment data, and Matter Trade (<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mattertrade.com/">MatterTrade.com</a>), the first app that leverages data from Matter Protocol, helps investors find trades that matter.</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/parallell_?s=21&amp;t=oVenDX0aD2BaoVWzDPR3ww">Parallell</a>: New travel-style metaverse that gamifies digital twins of the real world and fantasy planets</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://rightsfually.com/">RightsfuAlly</a>: Decentralized platform that simplifies the management of film/video intellectual property rights (IPR) and enables their allocations seamlessly on blockchain</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.synphonic.io/">Synphonic</a>: Transforming the musician-to-fan relationship by enabling musicians to engage with and monetize their superfans in new ways</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.threely.io/">Threely</a>: Like Google in web2, Threely is the gateway to accessible and fluent web3 made for all</p></li></ul><p>Since this is the first cohort, we are still on an explorative journey. We will continue iterating on the process to bring the highest value to our community to do it better and bigger in the subsequent ones.</p><h2 id="h-wagmi-jobs" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">WAGMI Jobs</h2><p>To facilitate the growth of the Polygon ecosystem, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mirror.xyz/polygonvillage.eth/IhJRBJ0nwwrg5eXkkwtDgUSmOFc4_y8EvslKcZe_Lg4">Polygon DAO&apos;s Jobs initiative</a> focuses on bridging the gap between projects in the Polygon ecosystem and relevant web3 talent. One employment initiative, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://wagmijobs.polygon.technology/jobs">WAGMI Jobs</a>, is a simple but powerful service that facilitates building a talent network and takes manual work out of connecting people and companies.</p><p>From time to time, we find some potential employers that need an additional layer of support in finding the right candidates for roles. In that case, Polygon can facilitate this need through the WAGMI Jobs platform.</p><h3 id="h-job-stats" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Job Stats</h3><ul><li><p>New Jobs Added: 2300+</p></li><li><p>Active Jobs: 631</p></li><li><p>Projects added: 100+</p></li><li><p>Total Projects: 137</p></li><li><p>Job applications: 31,000+</p></li></ul><h3 id="h-wagmi-jobdrops" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">WAGMI JobDrops</h3><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mirror.xyz/polygonvillage.eth/Ghm3_Q0-cIPHxZqPMrQzSxnK4ETluj0F3N9qfpg8ioQ">WAGMI JobDrops</a> is a first of its kind job fair to bring together top web3 talent and projects from the Polygon ecosystem. The First edition was focused on connecting blockchain developers to companies in the Polygon ecosystem. There was participation from 11 hiring partners and 150 blockchain developers, who also received POAPs as a recognition of their participation and shortlisting..</p><p>Before the job fair, weeks of interactive sessions with hiring partners offered insight into the hiring perspective, the importance of collaborative work culture, and information about the open roles. The promotional campaign received over 200,000 impressions which was instrumental in generating massive interest among the talent community. This was evident with over 3000 applications received from Blockchain professionals.</p><p>Over 250 interviews were conducted, over 60 candidates were shortlisted and more than 10% of candidates received job offers.</p><h2 id="h-polygon-id" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Polygon ID</h2><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.polygon.technology/introducing-polygon-id-zero-knowledge-own-your-identity-for-web3/">Polygon ID</a> introduces a self-sovereign private identity solution that changes the means of verifying user identities required within DAOs. In DAOs, community members vote on protocol decisions using tokens and signatures from their wallets. Because such data exists on a blockchain, other users can trace previous transnational activity from voter wallets.</p><p>Polygon ID solves this issue by verifying private information on-chain using zkProof Request Language, a unique protocol for apps to specify the requested private attributes that the user needs to prove. This way, Identity reputation can be cryptographically verified in a privacy-preserving way directly on-chain to trigger trustless executions/actions.</p><p>Through the Polygon ID app, users go through a KYC process to verify their identity. After verifying their identity, they receive so-called claims that allow users to verify their identity privately on-chain.</p><p><strong>PolygonID members: 1082</strong></p><p>Polygon DAO incorporates Polygon ID-based governance into its processes, leveraging this tool to enable Sybil-resistant governance participation based on claims issued by the DAO to users.</p><h2 id="h-polygon-dao-initiatives" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Polygon DAO Initiatives</h2><h3 id="h-desci" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">DeSci</h3><p>DeSci was introduced to the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mobile.twitter.com/0xPolygonDAO/status/1554852514046300160">Polygon community in early August</a> and was described as &quot;the application of blockchain technology to various aspects of scientific research to make it efficient, accessible, transparent, and censorship-resistant.&quot;</p><p>There are many problems facing the scientific community, but ultimately, the goal of DeSci is to put the power back in the hands of the researchers.</p><p>Polygon Village helps DeSci projects along two different paths:</p><p><strong>Awareness</strong>: We want to engage with and bring together academics &amp; researchers from other DAO&apos;s and ultimately help increase awareness of the entire DeSci space</p><p><strong>Village Initiatives</strong>: DeSci projects will benefit from Village offerings, including funding, service vouchers, marketing, and more.</p><h3 id="h-polygon-village-blog-village-times" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Polygon Village Blog + Village Times</h3><p>To increase the amount of information provided to the community, Polygon DAO launched a weekly newsletter, The Village Times, and its first-ever Polygon Village Blog. The DAO ships programs and initiatives at lightning speed and wants to ensure our community stays updated.</p><h4 id="h-the-village-times" class="text-xl font-header !mt-6 !mb-3 first:!mt-0 first:!mb-0">The Village Times</h4><p>The <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://polygonvillage.substack.com/">Village Times</a> provides a weekly snapshot of what&apos;s happening in the DAO and the Polygon ecosystem and includes Village updates, announcements, partner and grantee spotlights, job opportunities, and more.</p><h4 id="h-polygon-village-blog" class="text-xl font-header !mt-6 !mb-3 first:!mt-0 first:!mb-0">Polygon Village Blog</h4><p>In September 2022, Polygon DAO shipped its first-ever blog series written for the community by the community. Articles cover a range of topics from DAO announcements, Polygon topics such as zkEVM, DeSci initiatives, and more. In the first month since launch, Polygon DAO shipped seven articles. You<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mirror.xyz/dashboard"> can check them out here</a>.</p><h3 id="h-bounty-contest" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Bounty contest</h3><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://tally.so/r/mKZM7n">Bounties</a> offer an opportunity to outsource work of the ecosystem to the freelance world. The Village offers a Bounty Board program accepting tasks of all kinds offered as Bounties to contributors from the Polygon Ecosystem.</p><p>In the spirit of gradual decentralization and the progressive inclusion of the Polygon Community in the operations normally administered by the Polygon DAO team, the DAO launched a Bounty Contest. The Polygon DAO Bounty Competition determined the recipient of a range of financial/non-financial support from Polygon DAO, with the winner decided by the community.</p><p>The Polygon community received claims via Polygon ID attesting to their Polygon DAO membership that was then used as a basis to vote for the project they believed was the best, decentralizing the process that the Polygon DAO Grants Team would normally conduct.</p><p>The Bounty Contest ended on September 7, with the first-place winner receiving $10K in funding, vouchers, and more.</p><h2 id="h-polygon-dao-social-growth" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Polygon DAO Social Growth</h2><h3 id="h-polygon-dao-twitter" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Polygon DAO Twitter</h3><p>The Polygon DAO Twitter saw massive growth over the last six months. Twitter is a vital tool for engaging with the community, sharing resources, and growing the ecosystem.</p><p>From April to September, the Polygon DAO Twitter had over a <strong>300% increase</strong> in followers and user engagement.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/c03b22b73f254b5a276eaa7c74a7802d3597b1d9f0c11a62430327cb71dcda58.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><h3 id="h-visibility-through-twitter-spaces" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Visibility through Twitter Spaces</h3><p>Each week, the DAO hosts Twitter Spaces on education through Expert Talks involving our Voucher Partners, Fireside chats with grantees and partners from initiatives like WAGIMI JobDrop and Wonders Cohorts. Expert Talks and Fireside chats are great ways for Village partners, grantees, and more to gain exposure with the Polygon community.</p><p>Below you can find visibility metrics from the last six months:</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0bc2626c1c2f76504e8e2dd5be322b54174e86d3943ec7c7bab2ed0a55bfc565.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><h2 id="h-closing-thoughts" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Closing Thoughts</h2><p>Much has happened in the six months since Polygon Village launched, and what has been achieved thus far is a testament to Polygon DAO&apos;s unparalleled versatility and dedication to the community. We&apos;re not only celebrating the DAO and its initiatives but also Polygon&apos;s community. So thank you, Polygon community, for being a part of the journey.</p><h4 id="h-whats-next" class="text-xl font-header !mt-6 !mb-3 first:!mt-0 first:!mb-0">What’s Next?</h4><p>To continue a cohesive support system, the Polygon DAO will move the Village inside of Polygon Technology, where we will go on supporting early-stage projects with grants, vouchers, Wonders, the JobBoard, JobDrops, and re-vamp our Bounty Board. By joining forces with Polygon, we can increase our support and offerings to the ecosystem.</p><p>Additionally, the team is iterating on a more transparent, objective, and efficient evaluation framework.</p><p>Follow along with the Polygon DAO&apos;s continued groundbreaking innovations by joining our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/Ct3FBqWSus">Discord</a>, following us on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/0xPolygonDAO">Twitter</a>, subscribing to our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://polygonvillage.substack.com/">newsletter</a>, and checking out the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mirror.xyz/dashboard">Polygon Village blog</a>.</p>]]></content:encoded>
            <author>polygonvillage@newsletter.paragraph.com (Polygon Village)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/d409282d8eacde0870a8f9d43862eef9a0065946c7c268d6f7ab520b92657be9.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[zkEVM: A Layer 2 Solution to Ethereum Scaling Problem]]></title>
            <link>https://paragraph.com/@polygonvillage/zkevm-a-layer-2-solution-to-ethereum-scaling-problem</link>
            <guid>5a9PvrQ5AypWX7Q3lvJ0</guid>
            <pubDate>Tue, 18 Oct 2022 17:15:11 GMT</pubDate>
            <description><![CDATA[The concept of Virtual Machines (VMs) can now be called “age-old”; the first time it came into existence was when IBM, in 1972, introduced hardware-assisted virtualization. Now is the era of blockchain or distributed ledger technology, and the VM concept has emulated into what we hear now and then: Ethereum Virtual Machine (better known as EVM). For context, an EVM is a virtual CPU that runs the smart contracts written in Solidity. When a smart contract is executed, the code gets compiled int...]]></description>
            <content:encoded><![CDATA[<p>The concept of Virtual Machines (VMs) can now be called “age-old”; the first time it came into existence was when IBM, in 1972, introduced hardware-assisted virtualization. Now is the era of blockchain or distributed ledger technology, and the VM concept has emulated into what we hear now and then: Ethereum Virtual Machine (better known as EVM).</p><p>For context, an EVM is a virtual CPU that runs the smart contracts written in Solidity. When a smart contract is executed, the code gets compiled into bytecodes, and every node on the Ethereum network runs a copy of these bytecodes. Once executed successfully, the initial state of the blockchain changes to a final state. The EVMs run inside a program called “geth,” with every machine running a copy of geth.</p><h2 id="h-zkevm-explained" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">zkEVM explained</h2><p>Now, what is zero-knowledge EVM or zkEVM? The EVM equivalent of the zero-knowledge rollups that help scale the Ethereum network. Simple? Not quite. The zk rollups bundle up several Ethereum transactions in Layer 1 (what we call the base Ethereum layer or L1) and roll them up to Layer 2 (L2), which sits on top of Layer 1. Now, a zkEVM, which is Ethereum-compatible, allows the network to implement the L1 smart contracts directly on these rollups. This means emulating the bytecodes running on the original EVM on zkEVM.</p><p>By doing so, the existing applications running on EVM can be transported to L2 and executed. So, the basic idea behind the development of zkEVM was to scale everything (whatever we can do on Layer 1 EVM or the original EVM) on the Layer 2 zkEVM along with bringing in scalability, and that too while not compromising the security provided by L1. After all, we want it all: scalability, security, and decentralization: the famous blockchain trilemma that we get to hear so often these days.</p><h2 id="h-compatible-with-zero-knowledge-circuits" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Compatible with zero-knowledge circuits</h2><p>Along with rolling up the L1 transactions, the zkEVM also generates zero-knowledge validity proof for this rolled-up data and then transfers this proof back to Layer 1 for verification (verifying that the proof produced by the zkEVM in L1 is indeed true/valid). When these proofs are verified on L1, the state of the roll-ups changes on L1.</p><p>When the concept of EVM had initially come into existence, zero-knowledge was not addressed, and the original EVM didn’t run on zero-knowledge circuits. zkEVM came into being to do the needed, i.e., provide zero-knowledge validity proofs for the rolled-up transactions in L2 and then send this proof back to L1 for verification.</p><h2 id="h-compatible-with-original-evm" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Compatible with original EVM</h2><p>The zkEVM is fully compatible with the original Solidity-based opcodes written for the original EVM. But simply emulating all the existing opcodes into zkEVM that can directly run them is an upheaval task. For this, the concept of tailor-made micro opcodes was introduced by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://polygon.technology/solutions/polygon-hermez/">Polygon Hermez</a>, giving rise to microVM (uVM), which eases the process of implementing certain variable EVM codes (such as CREATE and CALL).</p><p>By executing this set of uVM assembly codes, the state of the blockchain changes to a new state, just like in EVM.</p><h2 id="h-zkevm-vs-evm" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">zkEVM vs. EVM</h2><p><strong>Polygon zkEVM has some clear plus points over the original EVM:</strong></p><ul><li><p><strong>Throughput</strong>: As the transactions are bundled or rolled up, the number of transactions executed per second gets increases significantly. With zkEVM, the throughput has roughly increased to 2000 TPS.</p></li><li><p><strong>Lower gas fee</strong>: The batches of transactions executed together result in the gas fee going down considerably.</p></li><li><p><strong>Security</strong>: Since all the opcodes of the EVM are emulated in zkEVM, the security of L1 is passed onto L2.</p></li><li><p><strong>Cheaper</strong>: The zk-rollups ensure that minimal call data is posted back to L1, making the overall transaction cost go down</p></li><li><p><strong>Faster Finality</strong>: The transactions in zkEVM give faster finality times, i.e. time taken to finalize the transactions before they can be called irreversible is much less than in an L1 blockchain.</p></li></ul><h2 id="h-closing-thoughts" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Closing Thoughts</h2><p>Polygon recently released Polygon zkEVM, the future of Ethereum scaling. Through zkEVM, users will see dramatically reduced costs and improved speed. The EVM equivalence of Polygon zkEVM allows devs to BUIDL build on Polygon the same way they would on Ethereum, deploying Eth smart contracts and dApps.</p><h3 id="h-about-polygon-dao" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">About Polygon DAO</h3><p><em>Polygon DAO is the centerpiece of Polygon’s long-term strategy of progressively decentralizing the ecosystem&apos;s growth to the community. Polygon DAO aims to represent and support various areas of interest within the Polygon ecosystem. Through Polygon Village, developers gain access to everything they need to build, grow, and showcase their Web3 initiatives; projects building on Polygon receive comprehensive, quality support.</em></p><p><strong>Stay in the Loop</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/0xPolygonDAO">Twitter</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/polygon">Discord</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/polygonofficial">Telegram</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://village.polygon.community/">Village</a></p>]]></content:encoded>
            <author>polygonvillage@newsletter.paragraph.com (Polygon Village)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/8d89a843fa0c6a129f05a477940c1aa1f653e2ad986163521badec42fed86045.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[Where Polygon zkEVM Fits in the Market]]></title>
            <link>https://paragraph.com/@polygonvillage/where-polygon-zkevm-fits-in-the-market</link>
            <guid>ppMvdErLl0C1qTZiH4Tk</guid>
            <pubDate>Tue, 11 Oct 2022 16:08:26 GMT</pubDate>
            <description><![CDATA[What is Polygon zkEVM?Polygon zkEVM is an EVM-compatible, zero-knowledge (ZK) rollup for Ethereum. EVM compatibility means developers can easily port Ethereum smart contracts with minimal code changes. ZK rollups are scaling solutions that increase throughput by moving computation and state storage off-chain while using zero-knowledge cryptography to maintain high security guarantees. The goal of this article, however, is to highlight where Polygon zkEVM fits in a broader market context - so ...]]></description>
            <content:encoded><![CDATA[<h2 id="h-what-is-polygon-zkevm" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">What is Polygon zkEVM?</h2><p>Polygon zkEVM is an EVM-compatible, zero-knowledge (ZK) rollup for Ethereum. EVM compatibility means developers can easily port Ethereum smart contracts with minimal code changes. ZK rollups are scaling solutions that increase throughput by moving computation and state storage off-chain while using zero-knowledge cryptography to maintain high security guarantees.</p><p>The goal of this article, however, is to highlight where Polygon zkEVM fits in a broader market context - so for a holistic technical dive, check out the project <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.hermez.io/zkEVM/Overview/Overview/">documentation</a>.</p><h2 id="h-tech-stack" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Tech Stack</h2><h3 id="h-overview" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Overview</h3><p>Let’s start by framing the blockchain stack. Blockchains consist of four layers. We’ll use Volt Capital’s <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://volt.capital/blog/modular-blockchains">definition of each layer</a>.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/ed70d12df967091f8f1d0bb82760e037303dcc2871091e5f4dec4f65a03f7c99.png" alt="Volt Capital&apos;s definition of layers" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Volt Capital&apos;s definition of layers</figcaption></figure><p>We’ll also use Celestia’s <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://celestia.org/glossary/modular-blockchain">definition of modular blockchains</a>.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/f3b856e1a41fdfde82f848ca6e93143664c6a728f59bebcd7b318b4acfee5c20.png" alt="Modular blockchain definition" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Modular blockchain definition</figcaption></figure><p>If a blockchain handles all four functions, it is considered monolithic.</p><h2 id="h-where-polygon-zkevm-fits" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Where Polygon zkEVM Fits</h2><p>Within the blockchain stack, Polygon zkEVM is considered a modular blockchain and, more specifically, an execution layer. It serves as a platform for users to build applications and transact directly while outsourcing settlement, consensus, and data availability to Ethereum. </p><p>Let’s touch on how Polygon zkEVM interacts with the other layers - without getting too into the weeds.</p><p>As mentioned above, the execution layer is where users transact. When a user signs a transaction, the transaction is queued and processed - the same way it would be on Ethereum.</p><p>Once a “batch” of transactions is processed, three important things happen:</p><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethereum.org/en/zero-knowledge-proofs/">ZK proof</a> is generated</p></li><li><p>ZK proof is posted on Ethereum</p></li><li><p>Transaction data is posted on Ethereum</p></li></ul><p>Polygon zkEVM has a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethresear.ch/t/proof-of-efficiency-a-new-consensus-mechanism-for-zk-rollups/11988">system</a> for generating ZK proofs consisting of two roles: a Sequencer and an Aggregator. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.polygon.technology/zkverse-deep-dive-into-polygon-hermez-2-0/">Both roles are permissionless</a>, so anyone can participate.</p><p>ZK proofs get posted on Ethereum, which acts as the settlement layer. Ethereum smart contracts verify the ZK proofs, effectively checking the work of Polygon zkEVM nodes and making sure all computation was done correctly.</p><p>Transaction data also gets posted on Ethereum, which acts as the consensus/data availability layer. This gives all nodes the ability to see account balances and the opportunity to recreate the state themselves (<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://celestia.org/glossary/data-withholding-attack/">very important</a>).</p><p>Note: In one of the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethresear.ch/t/proof-of-efficiency-a-new-consensus-mechanism-for-zk-rollups/11988">articles</a> shared above, you’ll see mention of Polygon zkEVM’s “consensus mechanism” called Proof of Efficiency. This, of course, begs the question of whether or not execution layers do consensus themselves. You could argue decentralized execution layers do have some form of consensus, but the industry seems to be reserving the term for base layer ordering and finality. As an alternative, we can use the term “<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethresear.ch/t/against-proof-of-stake-for-zk-op-rollup-leader-election/7698">leader election</a>.”</p><h2 id="h-securitytrust-assumptions" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Security/Trust Assumptions</h2><h3 id="h-security-spectrum" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Security Spectrum</h3><p>So how much Ethereum security does Polygon zkEVM inherit?</p><p>To gauge this, we’ll look at a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/0xDinoEggs/status/1544868275829571584?s=20&amp;t=GcmjQScDsH62XweYoI5rFw">graphic</a> below that places Polygon zkEVM along a security spectrum. Solutions on the left are not secured by Ethereum, and solutions on the right are fully secured by Ethereum.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/916a0c3d14f86b84665592f13c4e21a2e8d20ac4ea41874b3b94c4b7c73459f1.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>Polygon zkEVM (formerly known as Polygon Hermez) sits to the far right - at the same point along the spectrum as other ZK rollups and Ethereum data shards.</p><p>You might already know that Polygon has made a big strategic bet and financial commitment to ZK solutions - <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.polygon.technology/the-polygon-thesis-strategic-focus-on-zk-technology-as-the-next-major-chapter-for-polygon-1b-treasury-allocation/">allocating $1 billion</a> of the treasury to ZK R&amp;D. As a result, there are now four ZK rollups in the Polygon suite: zkEVM, Miden, Nightfall, and Zero.</p><p>Each ZK rollup has a different design (e.g. Nightfall is a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/0xpolygon/status/1437881372719333378">hybrid optimistic-ZK rollup</a>), but they all fundamentally use the same ZK primitives and fully inherit Ethereum security.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://notes.ethereum.org/@vbuterin/proto_danksharding_faq">Data shards</a> are also fully secured by Ethereum as (once implemented) they will be enshrined in the core Ethereum protocol.</p><p>Side note: Rollups and data shards are <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://polynya.medium.com/why-rollups-data-shards-are-the-only-sustainable-solution-for-high-scalability-c9aabd6fbb48">way better together</a>.</p><h3 id="h-economic-security" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Economic Security</h3><p>We keep saying that rollups inherit Ethereum security. You might already have a sense of how economically secure Ethereum is, but let’s make it concrete.</p><p>Because the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethereum.org/en/upgrades/merge/">merge</a> is so close (at the time of this writing), let’s evaluate Proof-of-Stake (PoS) Ethereum.</p><p>There are currently <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mainnet.beaconcha.in/">~13.3 million staked ETH</a> on the Beacon chain, which at current token prices total ~$22 billion. Under a 2/3rd honest majority assumption, it would take ~$15 billion to corrupt the network. This is by far the best in the crypto industry.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/apolynya/status/1512647281643728897?s=12&amp;t=Grjq0jQ252ZKvRA4M7DnKw">Another aspect</a> of economic security that should not be overlooked is monetary policy. Ethereum has implemented a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/drakefjustin/status/1304064879662227456">very novel approach</a> that has the potential to be more sustainable than that of Bitcoin.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/d1f54a0535645f791b962f9a1d147bb6b570d9ccf202c1dd5b646d61b7ee034e.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><h3 id="h-protocol-stability" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Protocol Stability</h3><p>As much as ZK cryptography has been around for <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://en.wikipedia.org/wiki/Zero-knowledge_proof">30+ years</a>, practical applications like ZK rollups are still in their infancy.</p><p>It will likely take several more years before ZK rollups are considered robust like the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethereum.org/en/developers/docs/evm/">EVM</a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.tendermint.com/master/introduction/what-is-tendermint.html">Tendermint</a> - technologies that have been in production and at the center of Ethereum / Cosmos development for the better part of a decade.</p><h3 id="h-risk-factors" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Risk factors</h3><p>There is a chance that Polygon zkEVM doesn’t technically start off as a rollup but instead a validium or volition. In the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://docs.hermez.io/zkEVM/Overview/Overview/#hybrid-mode-for-on-chain-data-availability">documentation</a>, this is referred to as the “hybrid mode for on-chain data availability.” </p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/77884823df0fa81151b33ae23b9bac8361857723d00b1f30f15fb8ae22357009.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>This means that Polygon zkEVM would not be fully secured by Ethereum. When validiums and volitions publish transaction data off-chain, they inherit additional trust assumptions. For example, if Polygon zkEVM were to post ZK proofs on Ethereum (use it for settlement) and post data on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://celestia.org/">Celestia</a> (use it for data availability), it would be reliant on the honest majority of both Ethereum and Celestia validators. If there’s a failure mode on either chain, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/vitalikbuterin/status/1479501366192132099?lang=en">the entire system is at risk</a>.</p><p>To be clear, the Polygon team has not yet decided whether Polygon zkEVM will be introduced as a rollup or use a hybrid schema. And even if they decide on the latter, a hybrid schema is an understandable place to start. Posting transaction data on Ethereum is very expensive and cuts into the rollup value proposition. There is also a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.eip4844.com/">clear path</a> toward making transaction data cheap to post, and once implemented, Polygon zkEVM could transition into being a true rollup. </p><p>Regardless - there are associated risks worth acknowledging.</p><h2 id="h-competitive-landscape" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Competitive Landscape</h2><p>Polygon zkEVM competes on a few key dimensions:</p><ul><li><p>Performance</p></li><li><p>Cost</p></li><li><p>Security</p></li><li><p>Developer experience</p></li></ul><p>Performance and cost are pretty straightforward. Developers want their applications to be fast and cheap to provide better experiences for users.</p><p>You could argue that Polygon zkEVM competes with EVM-compatible L1s (e.g. Avalanche) on performance and cost. In the near term, this is likely true. However, we won’t spend time on this comparison because any successful L1 that remains optimized for high performance and low cost will need to dramatically increase fees or <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://polynya.mirror.xyz/UL8_QVNtB-nQoPYyoGyTteJoFNf9jEubzdRqO_5Ez58">risk unsustainability</a>.</p><p>Polygon zkEVM’s true competition is other EVM-compatible rollups - both ZK (e.g. Scroll) and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethereum.org/en/developers/docs/scaling/optimistic-rollups/#:~:text=and%20layer%202.-,What%20is%20an%20optimistic%20rollup%3F,data%20to%20Mainnet%20as%20calldata%20.">optimistic</a> (e.g. Optimism). There are many <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://polynya.medium.com/optimistic-rollups-are-brilliant-and-the-state-of-blockchains-a57bc4799dca">articles</a> comparing the two roll-up types, so we won’t go into depth, but an easy way to think about it is that ZK rollups have higher performance (due to faster finality, which we’ll discuss soon), and optimistic rollups have lower costs (due to ZK computational intensity).</p><p>Note: It’s unclear how Polygon zkEVM measures up to other ZK rollups in performance and cost.</p><p>When it comes to security, Polygon zkEVM is far better than L1s and largely the same as other rollups (ZK and optimistic alike).</p><p>Lastly, there’s developer experience, which we’ll split into finality and EVM compatibility.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.alexbeckett.xyz/the-benefits-of-optimistic-rollups-compared-to-zk-rollups/">Finality</a> is “the time it takes for a transaction to be considered final from the view of the base layer contract.” ZK rollups have faster native finality than optimistic rollups. This is because the optimistic rollup design relies on “watchers,” or nodes that monitor the chain for fraud. Because watchers need sufficient time to catch fraud and post proofs, finality is typically delayed a week (typically minutes for ZK rollups) - translating to longer wait times and degraded user experience. Optimistic rollups have workarounds for liquid tokens to achieve faster finality, which Alex mentions in the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.alexbeckett.xyz/the-benefits-of-optimistic-rollups-compared-to-zk-rollups/">article</a> above, but generally, ZK rollups have the advantage.</p><p>EVM compatibility can mean different things. Vitalik recently published an <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://vitalik.ca/general/2022/08/04/zkevm.html">article</a> categorizing solutions by Type (1-4), with Type 1 being the most EVM-compatible. He referred to Polygon zkEVM as a Type 3 building towards a Type 2, which <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.polygon.technology/polygon-zkevm-within-vitaliks-framework-gaining-clarity-and-looking-ahead/">we agree with</a>.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0dfb45f2c00c9ba19ec1cb0cb07728ce53172d1e519a887b919586561b4a12f4.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><h2 id="h-status-and-traction" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Status and Traction</h2><p><strong>So where does Polygon zkEVM stand today?</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.polygon.technology/polygon-zkevm-within-vitaliks-framework-gaining-clarity-and-looking-ahead/">Through a technology lens</a>, Polygon zkEVM “has already passed 60% of the Ethereum test vectors suite, which is used to establish EVM-equivalence. Polygon zkEVM’s zkProver is now able to process 500,000 gas within five minutes on a single CPU.” Impressive stuff - considering ZK proof generation is a computationally intensive task.</p><p>Through a go-to-market lens, it’s very close. Based on the timeline Mihailo outlined in his recent Bankless <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://open.spotify.com/episode/0nZNG0qcGMGTE1MTtCSgAb?si=Tpk5jjPRRKmRULzfyzw_kA">interview</a>, testnet should be here any day now, and mainnet should be a few months away.</p><p>One must acknowledge how much ZK teams have already accomplished. ZK rollups use state-of-the-art cryptography (<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://open.spotify.com/episode/2QBWHHsyJcrs3SXliD7ZKo?si=GLxMkzIZQ62zsqP9WeWNMg">moon math</a>, as some would say) and went from theory to practice years ahead of schedule. Making an <em>EVM-compatible</em> ZK rollup is even more challenging, and the fact that multiple zkEVM teams have mainnet in sight is mind-boggling.</p><p>Which zkEVM teams will win is yet to be seen, but one thing is for sure - the fact that we’re at the starting line is a massive win for web3.</p><p>Hopefully, this article gave you a frills-and-bias-minimized view of Polygon zkEVM and helped you see where it fits in the ecosystem.</p><p>With that said, this article is based on a snapshot in time, and web3 moves very quickly. We strongly encourage you to stay tuned because technology and even social consensus (which is, at the end of the day, what blockchain systems are rooted in) will change.</p><p>To keep up with the latest, I recommend following along with publications like the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://polygonvillage.substack.com/">Village Times</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.polygon.technology/polygoninsights-week31/">PolygonInsights</a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://yieldfarmer.substack.com/">PolyPulse</a> - and to get involved, come join us at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/zp7KMqvNhttps://discord.gg/zp7KMqvN">Polygon DAO</a>!</p><h3 id="h-about-polygon-dao" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">About Polygon DAO</h3><p><em>Polygon DAO is the centerpiece of Polygon’s long-term strategy of progressively decentralizing the ecosystem&apos;s growth to the community. Polygon DAO aims to represent and support various areas of interest within the Polygon ecosystem. Through Polygon Village, developers gain access to everything they need to build, grow, and showcase their Web3 initiatives; projects building on Polygon receive comprehensive, quality support.</em></p><p><strong>Stay in the Loop</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/0xPolygonDAO">Twitter</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/polygon">Discord</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/polygonofficial">Telegram</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://village.polygon.community/">Village</a></p>]]></content:encoded>
            <author>polygonvillage@newsletter.paragraph.com (Polygon Village)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/ddf2f5256c943cdb7d6afa0967c202ed061f02615d07ddb6ffe2691aef6857a6.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[BUIDLing in web3 as a Dev and Non-Dev]]></title>
            <link>https://paragraph.com/@polygonvillage/buidling-in-web3-as-a-dev-and-non-dev</link>
            <guid>m0OsdOffUSij4w46RdOt</guid>
            <pubDate>Tue, 04 Oct 2022 12:25:26 GMT</pubDate>
            <description><![CDATA[The emergence of web3 has allowed curious people to go wild in an open-source, transparent, and welcoming space. The fast-growing space has allowed many people to contribute value, gain knowledge, and build a career for themselves. We want to take it one step further. We want you to come out on top by building your own project, contributing massive value, gaining a lot of knowledge, and making a name for yourself.Why BUIDL in Web3?Buidling on web3 compared to anywhere else in this time of age...]]></description>
            <content:encoded><![CDATA[<p>The emergence of web3 has allowed curious people to go wild in an open-source, transparent, and welcoming space. The fast-growing space has allowed many people to contribute value, gain knowledge, and build a career for themselves. We want to take it one step further. We want you to come out on top by building your own project, contributing massive value, gaining a lot of knowledge, and making a name for yourself.</p><h2 id="h-why-buidl-in-web3" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Why BUIDL in Web3?</h2><p>Buidling on web3 compared to anywhere else in this time of age comes with a list of benefits;</p><ul><li><p>Unlock a more valuable internet for everyone</p></li><li><p>Competitive compensation for your work</p></li><li><p>Many free, high-quality resources to get you started and going</p></li><li><p>A large network of people willing to help and looking to expand opportunities</p></li><li><p>A wide area of skills to expand in</p></li></ul><p>Many web3 pioneers built a career for themselves because of their curiosity and discipline. People with zero background in IT started teaching themselves how to write Solidity and build DeFi protocols, NFT marketplaces, DAOs, and more. Also, other skills, like people with an interest in blockchains, started writing about them, landing content jobs at large protocols and DAOs. How about the entrepreneur from web2 that founded a project in web3 by receiving the right help? These people leveraged their curiosity and discipline to build something for themselves. Now, how can you do this too?</p><h2 id="h-how-to-buidl-in-web3" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">How to BUIDL in Web3?</h2><p>As we mentioned, web3 has many free, high-quality resources to get you started. Here are three things that will help massively, but finding the right ones is difficult.</p><ul><li><p>Resources</p></li><li><p>People</p></li><li><p>Funding</p></li></ul><p><strong>Resources</strong></p><p>By resources, we mean things like tutorials, hosting, mentoring, marketing support, infra support, audit services, listings, liquidity support, and more. These resources will help you leverage your ideas, tasks, and projects to a whole new level.</p><p><strong>People</strong></p><p>By people, we mean people that have skin in the game, experience, and a network in web3. They know everything related to the resources we mentioned above. Those people can help you fit your needs and advise you on what is best in your situation.</p><p><strong>Funding</strong></p><p>By funding, we mean financial support for your project and ideas. The general term for this is grants. By receiving grants, you can build at a faster pace by hiring more people, getting the right tools, and more.</p><p>What if there was a place where you could find all these three things and leverage them to grow your web3 career? Well, there is.</p><h3 id="h-polygon-village" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Polygon Village</h3><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://village.polygon.community/">Polygon Village</a>, which is incentivized by Polygon DAO, is a full-stack ecosystem for developers and non-developers to build and grow. Polygon Village gives developers and non-developers the opportunity to grow at a far faster rate than competitors and allows them to reach the right resources and people. This incentive is vital to get a head start in web3. Let’s dive into what help you can receive and how to receive it.</p><h3 id="h-the-beginning" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">The Beginning</h3><p>Let’s say you’ve got your idea for a project, you might even have built a part of your idea, but you ran into the issue of missing either funding, people, or resources. Well, get yourself over to Polygon Village and find the place that fits your needs.</p><p>Here’s a quick guide for you;</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/638f16877a4e502e3c29f3677f5a280bf7d6cb62ba06b58b165a4d7b35f2c3ba.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>As you can see, Polygon Village offers everything you need to BUIDL in web3. Check out the resources here; <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://village.polygon.community/">https://village.polygon.community/</a></p><h2 id="h-village-wonders" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Village Wonders</h2><p>If you have made it this far, we have something special for you. Village Wonders.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mirror.xyz/polygonvillage.eth/k4lqwZ2jZyUMi8MbOq9Q2OqV0JlylmTbWgrQnfEyDuc">Village Wonders</a> is a three-month pre-acceleration cohort supporting early-mid stage dapps. Wonders is an all-in-one package for projects looking for advanced support.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/29ba6f77f7d3174748ac31fcc9d08e3707025f8f6c2578df4d336565887312f4.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>Wonders supports selected projects by enabling key partnerships, unlocking private networks, and fast-tracking knowledge sharing and skills development.</p><p>The current cohort is receiving support; the next application stage will be announced soon, so keep an eye out on our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/0xPolygonDAO">Twitter</a>.</p><p><strong>Wonders comes with a list of benefits;</strong></p><ul><li><p>Mentorship &amp; Office Hours: Each selected project will receive dedicated time with some of Polygon’s top experts. This will include time with the BD, product, and tech teams within the ecosystem.</p></li><li><p>$40K Investment in return for 1.5% equities or tokens</p></li><li><p>Demo Day with Top VCs: The three-month cohort will conclude with a live Demo Day in front of top-level VCs, including Polygon Ventures.</p></li><li><p>Up to $70K Vouchers from Tier-1 partners: Polygon DAO partnered with several top-level teams to provide service vouchers for selected projects. Those selected for the Wonders program will receive 70K worth of services from these partners.</p></li><li><p>Recognition, Ecosystem connections, Marketing &amp; Community Building support: Selected projects will receive marketing support through AMA sessions with our community and networking opportunities with other projects within the ecosystem.</p></li></ul><h2 id="h-closing-thoughts" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Closing Thoughts</h2><p>This is what Polygon Village offers for support to projects building on Polygon. If you need any other help, you can chat with the community in the Polygon DAO <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/u6Ju68hbYC">Discord server</a>.</p><h3 id="h-about-polygon-dao" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">About Polygon DAO</h3><p><em>Polygon DAO is the centerpiece of Polygon’s long-term strategy of progressively decentralizing the ecosystem&apos;s growth to the community. Polygon DAO aims to represent and support various areas of interest within the Polygon ecosystem. Through Polygon Village, developers gain access to everything they need to build, grow, and showcase their Web3 initiatives; projects building on Polygon receive comprehensive, quality support.</em></p><p><strong>Stay in the Loop</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/0xPolygonDAO">Twitter</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/polygon">Discord</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/polygonofficial">Telegram</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://village.polygon.community/">Village</a></p>]]></content:encoded>
            <author>polygonvillage@newsletter.paragraph.com (Polygon Village)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/498ce7c873ae9c6a0f5fe37383078375faeded1d19c5a854e0ebef3982a53ac3.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[Jobs and Bounties]]></title>
            <link>https://paragraph.com/@polygonvillage/jobs-and-bounties</link>
            <guid>RUbJIyVEMgvL6GoD5fb2</guid>
            <pubDate>Tue, 27 Sep 2022 14:15:27 GMT</pubDate>
            <description><![CDATA[Since the advent of the modern internet, there has been a vast proliferation of tools and services that try to help improve the user experience and overall process for finding your next gig. This rapid growth of job searching and profile matching has created new challenges related to filtering through the noise (and annoying ads!) so that individuals can find the right job for their background, experience, and values. Enter Web3 (or crypto for you traditionalists), a paradigm shift in how job...]]></description>
            <content:encoded><![CDATA[<p>Since the advent of the modern internet, there has been a vast proliferation of tools and services that try to help improve the user experience and overall process for finding your next gig. This rapid growth of job searching and profile matching has created new challenges related to filtering through the noise (and annoying ads!) so that individuals can find the right job for their background, experience, and values.</p><p>Enter Web3 (or crypto for you traditionalists), a paradigm shift in how jobs are created, defined and ultimately filled. Whether it be working for a DAO, developing some new primitive technology, or figuring out some interesting way to disintermediate traditional or “Web2” companies through a more “crypto native” approach, the future of jobs is truly here.</p><p>The beauty in these models is not only how teams are built and connected through the global network the internet has given us but how these projects can also develop and disburse direct monetary incentives to these team members in a variety of ways in addition to offering the traditional every other week paycheck to your bank account.</p><p>Add to this a diverse set of options for how work is delivered not just full-time but part-time, temporary, and even milestone-based opportunities, and you, all of a sudden, have an interesting place to look for career growth whether you want to opt out of your boring day job altogether or maybe explore opportunities to contribute in places that play to your strengths in your spare time for a few extra bucks (or tokens.)</p><p>Polygon recognizes this, and that’s why we have been focused on developing our jobs and bounties programs to offer anyone anywhere in the world a place where they can find these opportunities and connect with the teams needing help. Our mission is to ensure the right talent meets the right job, and we want to do everything we can to help teams grow their base of talented individuals through not only our platform but also our wider reach across Twitter, LinkedIn, Discord, online job fairs (which we’ll touch on below) and various other channels.</p><p>But above all, we want to make this experience intuitive and free to use and ensure that it always provides value to our partners and community members. Let’s dive into the details of both WAGMI Jobs and our bounties programs from here to give you a bit more information. Read on!</p><h2 id="h-wagmi-jobs" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">WAGMI Jobs</h2><p>Let’s start with jobs or what we call <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://wagmijobs.polygon.technology/jobs">WAGMI Jobs</a> (because, as we said before, we have always just been trying to make it.)  WAGMI Jobs is a simple but powerful service that facilitates the building of a talent network and takes manual work out of connecting people and companies.  In the case of Polygon, we have gone to great lengths to build out this network and now have over 120+ companies with more than 600+ jobs listed at the time of writing, definitely one of the largest collections of jobs you will find in Web3.</p><p>Companies (or DAOs, projects, etc.) are able to link their careers page directly through WAGMI Jobs and stream real-time updates directly to the board. Thanks to this, the platform has helped to drive 25,000+ applications and 1000+ new jobs added in just the last six months. We plan to continue to up the ante in how we deliver value through this service by using the data gathered to help with things like job matching, reputation, and predictive analytics to help potential employers get the most out of partnering with us.</p><p>We also have been thinking about ways we can be innovative in linking potential employers to interested applicants, and that’s what led us to come up with what we’re calling WAGMI Job Drops.</p><h2 id="h-wagmi-jobdrops" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">WAGMI JobDrops</h2><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.polygon.technology/say-gm-to-wagmi-jobdrops/">WAGMI Job Drops</a> is an online career fair of sorts, and we hosted our inaugural event in late July that was focused on blockchain developers.  We consider it a massive success with 11 Hiring Partners participating, including Chainlink, Quickswap, Horizon Blockchain Games, Animoca Brands, CoinDCX, Hike, Airstack, Colexion, Edverse, Paxo Finance, and Router Protocol.</p><p>Along with these hiring partners, we saw 140+ developers making time in their busy schedules to come and check it out. The event was hosted on “gather.town” which gave it remarkable visual elements of a metaverse, and by the end of the day, 60+ candidates were shortlisted for next-level interviews. We plan on hosting similar events like this regularly, both in person and virtually, and will be rotating the job focus to other areas like finance, marketing, business development, and product for those of you that have an interest in this area.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/6ab20534303e4e33ad1995c9ba87cbe4751b1dfa2632b14b8de878e629ca6b7a.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>From time to time, we find some potential employers that need an additional layer of support in finding the right candidates for roles. In that case, Polygon can facilitate this need also through the WAGMI Jobs platform. Polygon is one of the largest and fastest-growing organizations in Web3 today, and because of this history, we have extensive experience with qualified recruiting firms that have been used and vetted through their work with Polygon. Through our partner programs, we can broker these introductions and also offer help through our Welcome Vouchers (a program we’ll be discussing more in a future blog post right here.)</p><h2 id="h-bounties" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Bounties</h2><p>Another area our team has been working on is Bounties. First off, what are bounties?</p><p>Well, bounties (in the Polygon DAO context) are a place where individuals and organizations (decentralized or not) can post assignments, and people can take on these assignments and receive payment for completing these assignments. We believe bounties should be a permissionless way for people to get started with working in Web3. The talent supply in our space is relatively small as compared to the demand, especially in an ecosystem as vast as Polygon. There are many different DAOs, established projects, and traditional startups, all of which need people to work on them, and that’s where we want to try and help.</p><p>Our vision for bounties is a place that connects needs to resources and allows the two parties to work directly with one another.  We&apos;re currently working on revamping our bounty program and have recently started a competition that will determine the recipient of a range of financial/non-financial support from Polygon DAO, with the winner decided by the community.  You can click <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://forum.polygon.technology/t/vote-for-the-bounty-contest/9346"><strong>here</strong></a> for more details and get a chance to win some merch for your time.</p><p>The competition will be bracket based, and those who make it all the way to what we’re calling the prize pool will be eligible for access to Polygon support initiatives. These may include grants, welcome vouchers, and accelerator support along with opportunities to gain visibility in the ecosystem. We invite you to check out the list of applicants and vote on those you think should make it to the next round.</p><h2 id="h-closing-thoughts" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Closing Thoughts</h2><p>Thanks again for taking the time to get up to speed on these programs. We hope to see you at The Village soon and would like for you to join us on this journey as we continue to build out the Polygon Ecosystem.</p><h3 id="h-about-polygon-dao" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">About Polygon DAO</h3><p><em>Polygon DAO is the centerpiece of Polygon’s long-term strategy of progressively decentralizing the ecosystem&apos;s growth to the community. Polygon DAO aims to represent and support various areas of interest within the Polygon ecosystem. Through Polygon Village, developers gain access to everything they need to build, grow, and showcase their Web3 initiatives; projects building on Polygon receive comprehensive, quality support.</em></p><p><strong>Stay in the Loop</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/0xPolygonDAO">Twitter</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/polygon">Discord</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/polygonofficial">Telegram</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://village.polygon.community/">Village</a></p>]]></content:encoded>
            <author>polygonvillage@newsletter.paragraph.com (Polygon Village)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/f77255c5474abfd5684f1887d8e341082f8bb3d8211028653decb2e3c7610110.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[LFG with the Inaugural Village Wonders Cohort ]]></title>
            <link>https://paragraph.com/@polygonvillage/lfg-with-the-inaugural-village-wonders-cohort</link>
            <guid>okeVcGOTRlnClLbKtutw</guid>
            <pubDate>Mon, 19 Sep 2022 15:06:59 GMT</pubDate>
            <description><![CDATA[It has been two months since we announced Village Wonders, and the moment you all have been waiting for has finally arrived. We are excited to reveal the projects in the inaugural cohort to receive support that ranges from investment and mentorship to demos with VCs and ecosystem connections. But first, we would like to express our gratitude to all the projects for their submissions and their patience despite unexpected delays. We were and are still amazed by the response and quality of appli...]]></description>
            <content:encoded><![CDATA[<p>It has been two months since we announced <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.polygon.technology/lfg-with-village-wonders-three-month-pre-acceleration-cohort-by-polygon-dao/">Village Wonders</a>, and the moment you all have been waiting for has finally arrived. We are excited to reveal the projects in the inaugural cohort to receive support that ranges from investment and mentorship to demos with VCs and ecosystem connections.</p><p>But first, we would like to express our gratitude to all the projects for their submissions and their patience despite unexpected delays. We were and are still amazed by the response and quality of applications received across all web3 categories. Over 500+ applications were reviewed before making the final decision.</p><p>There were multiple rounds of screening by community and Polygon core teams to reduce information asymmetry and ensure a fair selection process. Key factors such as team experience, ideas, growth potential, achievements, competitive landscape, and project stage were considered for final decision-making. It was certainly not easy!</p><p>Since this is the first cohort, we are still in an explorative journey with a small cohort and will continue iterating on the process to bring the highest value to our community to do it better and bigger in the subsequent ones. For teams not part of this cohort, know that this is only the beginning, and you can always re-apply for the upcoming cohorts.</p><p>Time to shift back our attention!</p><p>Bringing you alphas and the highly anticipated first cohort of Polygon Village Wonders:</p><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://artlabs.ai/">Artlabs</a>: Providing 3D &amp; AR at scale for Commerce and Metaverse</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.deefy.co/?utm_medium=social&amp;utm_source=linktree&amp;utm_campaign=website">Deefy</a>: Renting, lending, and BNPL infrastructure for NFTs Getting instant liquidity &amp; 100% utility</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://www.hackmakers.xyz">Hackmakers DAO</a>: Community-driven SaaS platform to accelerate and reward innovation</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://dollardonationclub.com/">Impact Arcade</a>: Virtual gaming arcade featuring casual games that generate real-world impact, such as planting trees, cleaning up ocean plastic, protecting rainforests, and beyond!</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.metagamehub.io/">MetaGameHub DAO</a>: Hub for open Metaverse experiences and aggregation by converging Metaverse agnostic infrastructure with complementary dApps and LAND Valuation tools</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://matterprotocol.io/">Matter Protocol</a>: Matter Protocol is an oracle for social sentiment data, and Matter Trade (<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://mattertrade.com/">MatterTrade.com</a>), the first app that leverages data from Matter Protocol, helps investors find trades that matter.</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/parallell_?s=21&amp;t=oVenDX0aD2BaoVWzDPR3ww">Parallell</a>: New travel-style metaverse that gamifies digital twins of the real world and fantasy planets</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://rightsfually.com">RightsfuAlly</a>: Decentralized platform that simplifies the management of film/video intellectual property rights (IPR) and enables their allocations seamlessly on blockchain</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.synphonic.io/">Synphonic</a>: Transforming the musician-to-fan relationship by enabling musicians to engage with and monetize their superfans in new ways</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.threely.io/">Threely</a>: Like Google in web2, Threely is the gateway to accessible and fluent web3 made for all</p></li></ul><p>There are two additional projects still under consideration that we will announce by the end of October. The three-month cohort will kick off on September 21st. During the cohort, each project will receive:</p><ul><li><p>Mentorship and office hours with Polygon core teams, leadership, and industry experts.</p></li><li><p>$40,000 investment from the Wonders program and up to $70,000 in vouchers from Tier-1 partners for development, audit, marketing, etc.</p></li><li><p>Demo Day with top VCs, Polygon Ventures, and other investors.</p></li><li><p>Recognition, ecosystem connections, marketing, and community-building support.</p></li></ul><p>Again, this is just the first of the many cohorts to come. As Wonders expands and scales, be on the lookout for subsequent cohorts. In the meantime, Polygon Village is here to support the growth of projects. Apply for<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://new.questbook.app/profile/?daoId=0x2&amp;chainId=137"> Grants</a> and<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://airtable.com/shrCIvexLWtuH1dJh"> Vouchers</a>, or join the Polygon Village<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/+D0fFnaUn-XkyMzk1"> </a><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/0xPolygonDAO">Twitter</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/+D0fFnaUn-XkyMzk1">Telegram</a> &amp;<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.gg/c8ECuKwV"> Discord</a> for community support.</p>]]></content:encoded>
            <author>polygonvillage@newsletter.paragraph.com (Polygon Village)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/6e6054eef4740289d3fd719a923a01870340094019a98a55cadc37162ceeabfc.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[Polygon ID, the next step in Privacy and Identity for DAOs]]></title>
            <link>https://paragraph.com/@polygonvillage/polygon-id-the-next-step-in-privacy-and-identity-for-daos</link>
            <guid>Sar8xPbNPeiagqKLX7RF</guid>
            <pubDate>Thu, 15 Sep 2022 18:41:52 GMT</pubDate>
            <description><![CDATA[More and more, our actions require verification of our identities: taking an under-collateralized loan, withdrawing and depositing between your bank and a CEX, or signing up for a new service. Yet, the current systems for verifying users and establishing trust on blockchains are inconvenient for users and onerous for protocols. More importantly, the current approach forces users to surrender their privacy.A new era for privacy, identity, and verification on the internet.Polygon ID introduces ...]]></description>
            <content:encoded><![CDATA[<p><strong>More and more, our actions require verification of our identities: taking an under-collateralized loan, withdrawing and depositing between your bank and a CEX, or signing up for a new service. Yet, the current systems for verifying users and establishing trust on blockchains are inconvenient for users and onerous for protocols. More importantly, the current approach forces users to surrender their privacy.</strong></p><h3 id="h-a-new-era-for-privacy-identity-and-verification-on-the-internet" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">A new era for privacy, identity, and verification on the internet.</h3><p>Polygon ID introduces a self-sovereign private identity solution that changes the means of verifying user identities required within DAOs and other web2 &amp; web3 services. Traditionally, in DAOs, community members vote on protocol decisions using tokens and signatures from their personal wallets. Because such data exists on a blockchain, other users can trace previous transnational activity from voter wallets – thus reducing privacy.</p><p>Polygon ID solves this issue by verifying private information on-chain using zkProof Request Language, a unique protocol for apps to specify the requested private attributes that the user needs to prove. This way, Identity reputation can be cryptographically verified in a privacy-preserving way directly on-chain to trigger trustless executions/actions.</p><p>Through the Polygon ID app, users go through a KYC process to verify their identity. After verifying their identity, they receive so-called claims that allow users to verify their identity privately on-chain.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/b50415bad80104c99ca19295fe3ceecebd1163f53eec9a214960925e94ce6244.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><h2 id="h-the-underlying-architecture" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">The Underlying Architecture</h2><p>Polygon ID achieves privacy by default by using <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://iden3.io/">iden3</a>, which is a decentralized identity management solution for blockchains. Iden3 uses <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://iden3.io/circom">Circom 2.0</a>, a powerful language to build ZK-Circuits. Iden3 utilizes ZK-Snarks, which is a battle-tested cryptographic proof, and the most efficient for proof verifications on-chain.</p><p>These zero-knowledge proofs come with the benefit of:</p><ul><li><p>Allowing you to verify information without sharing all information</p></li><li><p>Privately verifying user rights right from a Smart Contract</p></li><li><p>zkSNARKs being the smaller proof size for optimal on-chain verification</p></li><li><p>zkProof composability, which enables reputation models for people-powered networks</p></li></ul><h3 id="h-where-can-polygon-id-be-used" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Where can Polygon ID be used?</h3><p>Polygon ID can be used anywhere where a unique identity has to be securely verified with strong privacy. There are many such areas in both web2 &amp; web3.</p><ul><li><p>DAOs</p></li><li><p>DeFi</p></li><li><p>Metaverse</p></li><li><p>Businesses</p></li><li><p>Social Media</p></li><li><p>Fintech</p></li><li><p>KYC</p></li></ul><p>Stronger privacy guarantees mean more possible use cases, which in turn results in more users onboarded. As mentioned above, Polygon ID isn’t just limited to web3. Polygon ID is just as useful and powerful for web2 businesses and platforms.</p><p>A prime example of this could be a business that is giving away freebies but wants to make sure that every claimant is unique and over the age of 21. They can utilize Polygon ID to allow their audience to create claims and privately verify their identity.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/64b193e4fb10fa9a38164d7073348174e44106efbc4794271bfe607eaf0db040.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><h2 id="h-a-new-era-for-privacy-identity-and-verification-within-daos" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">A New Era for Privacy, Identity, and Verification Within DAOs</h2><p><strong>Identity in the digital world.</strong></p><p>In the digital world, a person can have several identities depending on who they are interacting with. Pinning that digital person to a physical human is sometimes impossible, especially in decentralized systems. While this anonymous approach has its benefits, it also leads to certain challenges when it comes to governance, specifically in DAOs.</p><p>An example of this could be a person posing as thousands of different people and voting for a proposal that they want to sway in a particular direction. There is also the challenge of accountability, as there is no real person mapped to a digital identifier who is to be held accountable in case something happens.</p><p><strong>Privacy, identity, verification within DAOs.</strong></p><p>A decentralized autonomous organization (DAO) is an entity with no central leadership. Decisions get made from the bottom-up, governed by a community organized around a specific set of rules. The transaction history and programmed rules of a DAO are stored on a blockchain, which boosts the transparency and immutability of a DAO.</p><p>There is a strong relationship between DAOs and verifiable credentials because a well-run DAO should function as a transparent platform that allows users to retain control over their personal data and identities.</p><p><strong>Privacy, Identity, and verification within DAOs in today’s world.</strong></p><p>Most DAOs in today&apos;s world require you to own governance tokens representing ownership in a decentralized protocol. They provide token holders with certain rights that influence a protocol’s direction. This could include which new products or features to develop, how to spend a budget, which integrations or partnerships should be pursued, and more.</p><p>Generally speaking, exercising this influence can take two forms. First, governance token holders can propose changes through a formal proposal submission process. If certain criteria are met, and the proposal goes to a vote, governance token holders can use their tokens to vote on the proposed changes. The specific mechanisms and processes through which these rights are exercised differ across protocols.</p><p>Having governance controlled by tokens means all investors in a DAO have the opportunity to shape the decisions on running the future of the organization. The number of DAO tokens of an investor would determine their voting power in the organization.</p><p>All these DAO tokens and governance votes are publicly visible on the blockchain. Anyone can look up which address voted for what solution, thus reducing privacy. While DAOs are intended to offer seamless accessibility, a specific group of investors can accumulate major shares of DAO tokens. As a result, they would gain higher voting power on the basis of the number of governance tokens they have.</p><p>This brings the possibility for people with the highest share of governance tokens to vote for unreasonable proposals or act maliciously. Therefore, the disadvantages of DAOs in today’s world start with problems due to hierarchy in the DAO’s governance structure.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/b16aedc089157dbec159b7cb886f364c05ffffb7801741aa01701553a1d713ba.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><h2 id="h-privacy-identity-and-verification-within-daos-in-tomorrows-world" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Privacy, Identity, and Verification Within DAOs in Tomorrow’s World</h2><p>Polygon ID is here to change the means of DAO governance. Polygon ID allows only those that have received valid attestations to participate in voting. Once verified, activity is completely private.</p><p>Polygon ID also creates the possibility for fully-private &amp; verifiable reputation building. Anyone adding value to a DAO can be rewarded with claims for their work. Those claims can then serve as a basis for financial incentive and decision-making powers within the DAO.</p><p>Utilizing Polygon ID instead of governance tokens comes with several benefits;</p><ul><li><p>Fully private.</p></li><li><p>Difficult to fake identities.</p></li><li><p>No Sybil attacks.</p></li><li><p>Voting power by reputation, not wealth.</p></li><li><p>Claims are more difficult to steal than governance tokens.</p></li><li><p>Aligned with Web3 privacy ethos</p></li><li><p>Targeted incentives</p></li><li><p>Only required information to be requested</p></li></ul><p>DAOs can now issue ecosystem-wide attestations about their members in a fully private and permissionless way. Consequently, DAOs can verify attestations about their users without the need to actually collect any private information, trusting solely the ZK proof and the source of trust (the issuer). Those attestations can then be used within governance to assist in decision making or any other system like incentive distribution, e.g., targeted airdrops.</p><p>Users can also provide proof of their identity when engaging in other activities such as initial coin offerings, token airdrops, decentralized exchange (DEX) trading, or those in which strict Know Your Customer (KYC) requirements apply.</p><p>With the capacity to introduce a Sybil-resistant one-vote-per-person mechanism, the use-cases can also expand beyond the DAO sector to the metaverse, gamify, DeFi, and nonfungible token (NFT) industries whereby asset authenticity is verified via on-chain, privatized claims.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/1ee1dac545d6cc378e6cf30b3543fa26db1c981310518d20691c085df1056785.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><h2 id="h-polygon-id-x-polygon-dao-integration" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Polygon ID x Polygon DAO Integration</h2><p>Polygon DAO has recently incorporated Polygon ID-based governance into its processes. To start with, Polygon DAO will leverage this tool to enable Sybil-resistant governance participation based on claims issued by the DAO to users. Polygon DAO will allow for private-by-default verification of humans, providing DAO Membership and Proof of Personhood claims for use within the Polygon ecosystem.</p><p>Read more about this <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://blog.polygon.technology/polygon-id-x-polygon-dao-integration-launches-to-create-new-zk-based-governance-frameworks/?utm_source=Twitter-Main&amp;utm_medium=Tweet&amp;utm_campaign=Tier-1-Announcement">here</a>.</p><h3 id="h-about-polygon-dao" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">About Polygon DAO</h3><p><em>Polygon DAO is the centerpiece of Polygon’s long-term strategy of progressively decentralizing the ecosystem&apos;s growth to the community. Polygon DAO aims to represent and support various areas of interest within the Polygon ecosystem. Through Polygon Village, developers gain access to everything they need to build, grow, and showcase their Web3 initiatives; projects building on Polygon receive comprehensive, quality support.</em></p><p><strong>Stay in the Loop</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/0xPolygonDAO">Twitter</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/polygon">Discord</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/polygonofficial">Telegram</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://village.polygon.community/">Village</a></p>]]></content:encoded>
            <author>polygonvillage@newsletter.paragraph.com (Polygon Village)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/aa6ff0213bd4685aef836285517ae7e47804de0f70468e4429e83a8f9f327c95.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[Welcome Vouchers make a Splash in the Village]]></title>
            <link>https://paragraph.com/@polygonvillage/welcome-vouchers-make-a-splash-in-the-village</link>
            <guid>hB3TT5gIxOMXNDrJfxix</guid>
            <pubDate>Mon, 12 Sep 2022 18:47:23 GMT</pubDate>
            <description><![CDATA[GM! With Web3&apos;s rapid growth, service providers are demanded to push new and innovative project tools. While having an abundance of decentralized technology tools is great for industry innovation, it creates a tough barrier to entry for fledgling projects. It can be challenging to find the right service provider with so many on the market and financially inhibiting for new projects in need of top-tier services. To help developers find the most appropriate, cost-effective service provider...]]></description>
            <content:encoded><![CDATA[<p>GM! With Web3&apos;s rapid growth, service providers are demanded to push new and innovative project tools. While having an abundance of decentralized technology tools is great for industry innovation, it creates a tough barrier to entry for fledgling projects. It can be challenging to find the right service provider with so many on the market and financially inhibiting for new projects in need of top-tier services. To help developers find the most appropriate, cost-effective service providers,  Polygon Village is happy to offer its Welcome Vouchers Program.</p><h2 id="h-welcome-vouchers-bring-wagmi-energy" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Welcome Vouchers Bring WAGMI Energy</h2><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://village.polygon.community/">Polygon Village</a>, an initiative of <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://polygon.community/#/">Polygon DAO</a>, addresses these issues through Welcome Vouchers. This initiative gives DApps get free access to the best web3 service providers under a single forum. Welcome Vouchers act as a bridge between service providers to projects, covering all services a project might need through its lifecycle.</p><p><strong>Since launch, 1000+ Vouchers have been dispersed, opening greater access to a broader ecosystem of builders and helping onboard the next 10k projects to </strong><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://polygon.technology/"><strong>Polygon</strong></a><strong>.</strong></p><p>The Polygon DAO aims to decentralize, grow and innovate the Polygon community. It’s been three months since the Village took effect, acting as a one-stop shop for developers in the ecosystem. As such, we believe Vouchers align with the community ethos by offering comprehensive, quality support to the projects building on Polygon.</p><h2 id="h-what-are-welcome-vouchers" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">What are Welcome Vouchers?</h2><p>Welcome Vouchers, valued at up to $40,000, are designed for projects looking to spur higher adoption rates and benefit from the top-tiered Web3 service providers. Polygon Village partners with some of the best Web3 service providers across domains, hosting, infra support, audit service, listing, liquidity support, marketing, legal and more.</p><p>Polygon and projects building on Polygon will specify use cases and categories across all domains to qualify for welcome Vouchers. Eligible projects can access and request Welcome Vouchers anytime during the pre-defined timeline set by partners.</p><h2 id="h-why-welcome-vouchers" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Why Welcome Vouchers?</h2><p>Through Welcome Vouchers, grantees gain access to a host of benefits, including; but not limited to:</p><ul><li><p>Access to preferred Polygon partners for services across including audits, marketing, liquidity, hiring, API services, education, job board, and more.</p></li><li><p>Visibility to partner DApps and assistance in customer acquisition.</p></li><li><p>The competitive advantage of ecosystem play to both partner DApps &amp; Polygon.</p></li><li><p>Less dependency on fiat disbursal from partners/ Polygon DAO.</p></li></ul><h2 id="h-notable-welcome-voucher-partners" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Notable Welcome Voucher Partners</h2><p>Welcome Vouchers offer project and tooling partners visibility for DAOs coming to Polygon Village by having their services listed on the Grants page. To date, Welcome Vouchers onboarded 50+ Voucher Partners Onboarded across 12 Distinct verticals offering $1.5M in potential revenue to the Voucher Partners. Notable partners include:</p><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.alchemy.com/">Alchemy</a> – Alchemy offers a powerful blockchain developer platform providing a suite of developer tools to power Dapps. </p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://akash.network/">Akash Network</a> – a distributed peer-to-peer marketplace for cloud computing, allowing devs to instantly deploy Dapps without having to set up, configure, or manage servers. </p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://tatum.io/">Tatum</a> – For projects in their earliest stages, Tatum offers flexibility to securely build and run a Dapp without a need for coding.</p></li></ul><h2 id="h-qualifying-for-a-welcome-voucher" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Qualifying for a Welcome Voucher</h2><p>Whether you are building for DeFi or NFTs, DeSci, DAO or ZK proofs, tools, or anything else, any project on Polygon can apply. Welcome Vouchers will be free offerings available to DApps based on specific requirements such as the DApp being live on mainnet, initial traction, or as specified by the partner. Polygon DAO will disburse grants to Voucher recipients for additional operational expenses for the initial six months.</p><h2 id="h-how-to-apply" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">How to Apply?</h2><h3 id="h-for-dapps" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">For DApps</h3><p>DApps can fill out an application for Welcome Vouchers through this <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://airtable.com/shrCIvexLWtuH1dJh">form</a>. Applications are reviewed bi-weekly.</p><h3 id="h-for-partners" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">For Partners</h3><p>Partners can contact the Polygon DAO team through Discord to apply for a Voucher partnership and fill out this <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://airtable.com/shr0EbiiwH3kl7Pwd">form</a>. Please include details on the service type, Voucher offerings (including free services amount), number of DApps you want to offer services to, and qualification criteria, if any. Partner details will be featured on the Polygon DAO grants page, and partners will see applications for evaluated DApps rolling in monthly.</p><h2 id="h-closing-thoughts" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Closing Thoughts</h2><p>Welcome Vouchers are an integral part of the Village and a key step in onboarding the next 10k projects on Polygon. Looking to join the growing Polygon ecosystem but are unsure where to start? Head over to the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/Ct3FBqWSus">DAO Discord</a> and follow the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/0xPolygonDAO">Polygon DAO Twitter</a> for the latest ecosystem <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/polygonofficial">updates</a>.</p><h3 id="h-about-polygon-dao" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">About Polygon DAO</h3><p><em>Polygon DAO is the centerpiece of Polygon’s long-term strategy of progressively decentralizing the ecosystem&apos;s growth to the community. Polygon DAO aims to represent and support various areas of interest within the Polygon ecosystem. Through Polygon Village, developers gain access to everything they need to build, grow, and showcase their Web3 initiatives; projects building on Polygon receive comprehensive, quality support.</em></p><p><strong>Stay in the Loop</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/0xPolygonDAO">Twitter</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/polygon">Discord</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/polygonofficial">Telegram</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://village.polygon.community/">Village</a></p>]]></content:encoded>
            <author>polygonvillage@newsletter.paragraph.com (Polygon Village)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/2cd4fadd6140138333b0545af5cc9771f972a29a09d78eb8fbb382043435a704.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Stories from WAGMI JobDrops’ First Edition]]></title>
            <link>https://paragraph.com/@polygonvillage/stories-from-wagmi-jobdrops-first-edition</link>
            <guid>EF3LnUTDtg4zivaQcwlD</guid>
            <pubDate>Mon, 12 Sep 2022 13:12:21 GMT</pubDate>
            <description><![CDATA[The first edition of WAGMI JobDrops, powered by Polygon DAO, connected blockchain developers to companies in the Polygon ecosystem. We witnessed participation from 11 hiring partners and 150 blockchain developers at the virtual job fair hosted by Polygon Village (a full-stack ecosystem for developers to build and grow) in collaboration with Devfolio (one of the leaders in onboarding builders into the Web3 ecosystem). Our Ecosystem Jobs initiative has been focused on bridging the gap between p...]]></description>
            <content:encoded><![CDATA[<p>The first edition of WAGMI JobDrops, powered by Polygon DAO, connected blockchain developers to companies in the Polygon ecosystem. We witnessed participation from 11 hiring partners and 150 blockchain developers at the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://wagmidrops.devfolio.co/">virtual job fair</a> hosted by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://village.polygon.community/">Polygon Village</a> (a full-stack ecosystem for developers to build and grow) in collaboration with <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://devfolio.co/">Devfolio</a> (one of the leaders in onboarding builders into the Web3 ecosystem).</p><p>Our Ecosystem Jobs initiative has been focused on bridging the gap between projects in the Polygon ecosystem and relevant web3 talent; WAGMI JobDrops has added a valuable dimension to those efforts.</p><div data-type="twitter" tweetId="1567875895494586370" tweetData="{&quot;provider_url&quot;:&quot;https://x.com&quot;,&quot;title&quot;:&quot;JavaScript is not available.&quot;,&quot;url&quot;:&quot;https://x.com/i/status/1567875895494586370&quot;,&quot;version&quot;:&quot;1.0&quot;,&quot;provider_name&quot;:&quot;X (formerly Twitter)&quot;,&quot;type&quot;:&quot;link&quot;}"></div><p>The event day was preceded by weeks of interactive sessions with our hiring partners that provided candidates with their hiring perspective, their take on the importance of a collaborative work culture, and information about the open roles.</p><h3 id="h-here-are-some-links-to-the-amas" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Here are some links to the AMAs</h3><ul><li><p><strong>WAGMI JobDrops AMA Featuring: Hiring Partners</strong></p></li></ul><div data-type="embedly" src="https://twitter.com/i/spaces/1OdJrBBZaOOJX" data="{&quot;provider_url&quot;:&quot;https://x.com&quot;,&quot;title&quot;:&quot;JavaScript is not available.&quot;,&quot;url&quot;:&quot;https://x.com/i/spaces/1OdJrBBZaOOJX&quot;,&quot;version&quot;:&quot;1.0&quot;,&quot;provider_name&quot;:&quot;X (formerly Twitter)&quot;,&quot;type&quot;:&quot;link&quot;}" format="small"></div><ul><li><p><strong>AMA with PolygonDAO on all things WAGMI JobDrops</strong></p></li></ul><div data-type="embedly" src="https://twitter.com/i/spaces/1DXxyDREklvJM" data="{&quot;provider_url&quot;:&quot;https://x.com&quot;,&quot;title&quot;:&quot;JavaScript is not available.&quot;,&quot;url&quot;:&quot;https://x.com/i/spaces/1DXxyDREklvJM&quot;,&quot;version&quot;:&quot;1.0&quot;,&quot;provider_name&quot;:&quot;X (formerly Twitter)&quot;,&quot;type&quot;:&quot;link&quot;}" format="small"></div><p>Through the promotional campaign, we invited blockchain developers worldwide to submit applications with information about their skill set, experience, and interest areas. It was extremely encouraging to receive interest from a diverse pool of over 3000 applicants. To maximize the number of relevant interview discussions, we had to ensure that a shortlisted group was invited.</p><p>On the other side, our hiring partners included organizations that have been pushing innovation forward and building the future of Web3  - Chainlink Labs, Hike, Animoca Brands, Colexion, Paxo Finance, Router Protocol, CoinDCX, Edverse, Quickswap, Airstack, and Horizon Blockchain Games. With more than 30 open roles, they were looking for talent within Solidity, DevOps, Backend, and Full Stack Engineers.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/330c0c29473b6bcc9570db6a6cd3cdf9ce8aac347a1b9158853866944c42ac5f.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>One of the standout features of the job fair was that it was hosted in the Metaverse (Gather Town). This meant that candidates, recruiters, and hiring managers could create their avatars, roam across the event map and start spontaneous conversations just like you would in an offline environment.</p><p>These remarkable visual elements made the event super fun to spend time in, network with fellow devs, and chat with top hiring partners.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/ab34d1dc352fc12dc9978c7918618d164d475efde27c63e07c7d8648ebf554b6.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>Our hiring partners also had their own interview rooms on the map for one to one discussions with relevant talent. Candidates could walk up to these respective zones, explore the open roles and enter the room if there was interest. This made it conducive for seamless discussions and helped facilitate over 250 interviews that were conducted during the event.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/d5b90f42bc7b1c8f0c2194ccf0763817c25d375fe54078a592257153ac1c5d4c.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>Even after the event, we helped coordinate further rounds of interviews with shortlisted candidates. We were thrilled to see that more than 60 candidates were shortlisted at the event for further rounds. More than 10% of candidates have already received job offers, and several are in their final interview stage.</p><p>To recognize everyone’s participation and contribution, we shared special digital badges in the form of exclusive POAPs.</p><p>Here are some positive words from hiring partners and candidates right after the event; it was everything we could have hoped for:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/my_edverse/status/1550839438153945088?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1550839438153945088%7Ctwgr%5E248133bcf7aeac1834bedd44a028bdbe1dbbf470%7Ctwcon%5Es1%5C_&amp;ref_url=https%3A%2F%2Fmirror.xyz%2F0xe306e70f07dDcDd15558C0e3616270B3B1D42fB3%2FKLoYjCI-fCNx5U_XvFTJaGpZ33T8WssiMAfbyt2oD9Q">https://twitter.com/my_edverse/status/1550839438153945088?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1550839438153945088%7Ctwgr%5E248133bcf7aeac1834bedd44a028bdbe1dbbf470%7Ctwcon%5Es1\_&amp;ref_url=https%3A%2F%2Fmirror.xyz%2F0xe306e70f07dDcDd15558C0e3616270B3B1D42fB3%2FKLoYjCI-fCNx5U_XvFTJaGpZ33T8WssiMAfbyt2oD9Q</a></p><div data-type="twitter" tweetId="1551035341058211845" tweetData="{&quot;__typename&quot;:&quot;Tweet&quot;,&quot;lang&quot;:&quot;en&quot;,&quot;favorite_count&quot;:17,&quot;possibly_sensitive&quot;:false,&quot;created_at&quot;:&quot;2022-07-24T02:43:36.000Z&quot;,&quot;display_text_range&quot;:[0,155],&quot;entities&quot;:{&quot;hashtags&quot;:[],&quot;urls&quot;:[],&quot;user_mentions&quot;:[{&quot;id_str&quot;:&quot;995630701994098689&quot;,&quot;indices&quot;:[38,47],&quot;name&quot;:&quot;Devfolio&quot;,&quot;screen_name&quot;:&quot;devfolio&quot;},{&quot;id_str&quot;:&quot;1623695862160408576&quot;,&quot;indices&quot;:[48,61],&quot;name&quot;:&quot;onPolygon_&quot;,&quot;screen_name&quot;:&quot;0xPolygonDAO&quot;},{&quot;id_str&quot;:&quot;1276585698322235392&quot;,&quot;indices&quot;:[91,103],&quot;name&quot;:&quot;Gather 🍇&quot;,&quot;screen_name&quot;:&quot;gather_town&quot;}],&quot;symbols&quot;:[],&quot;media&quot;:[{&quot;display_url&quot;:&quot;pic.x.com/4UgaeXS1oU&quot;,&quot;expanded_url&quot;:&quot;https://x.com/NitanshuL/status/1551035341058211845/photo/1&quot;,&quot;indices&quot;:[156,179],&quot;url&quot;:&quot;https://t.co/4UgaeXS1oU&quot;}]},&quot;id_str&quot;:&quot;1551035341058211845&quot;,&quot;text&quot;:&quot;Grateful for the invite received from @devfolio @0xPolygonDAO for attending WAGMI jobdrops @gather_town . It was really an immersive experience to cherish. https://t.co/4UgaeXS1oU&quot;,&quot;user&quot;:{&quot;id_str&quot;:&quot;1217105926605246465&quot;,&quot;name&quot;:&quot;Nitanshu (priv/acc)&quot;,&quot;screen_name&quot;:&quot;NitanshuL&quot;,&quot;is_blue_verified&quot;:true,&quot;profile_image_shape&quot;:&quot;Circle&quot;,&quot;verified&quot;:false,&quot;profile_image_url_https&quot;:&quot;https://storage.googleapis.com/papyrus_images/83671f574c9ac140349e60d1bfdf4e10d31c8ebf0b45154763d679681d966378.jpg&quot;},&quot;edit_control&quot;:{&quot;edit_tweet_ids&quot;:[&quot;1551035341058211845&quot;],&quot;editable_until_msecs&quot;:&quot;1658632416000&quot;,&quot;is_edit_eligible&quot;:true,&quot;edits_remaining&quot;:&quot;5&quot;},&quot;mediaDetails&quot;:[{&quot;display_url&quot;:&quot;pic.x.com/4UgaeXS1oU&quot;,&quot;expanded_url&quot;:&quot;https://x.com/NitanshuL/status/1551035341058211845/photo/1&quot;,&quot;ext_media_availability&quot;:{&quot;status&quot;:&quot;Available&quot;},&quot;indices&quot;:[156,179],&quot;media_url_https&quot;:&quot;https://pbs.twimg.com/media/FYZiMWXaMAAEI0N.jpg&quot;,&quot;original_info&quot;:{&quot;height&quot;:1080,&quot;width&quot;:1920,&quot;focus_rects&quot;:[{&quot;x&quot;:0,&quot;y&quot;:5,&quot;w&quot;:1920,&quot;h&quot;:1075},{&quot;x&quot;:84,&quot;y&quot;:0,&quot;w&quot;:1080,&quot;h&quot;:1080},{&quot;x&quot;:151,&quot;y&quot;:0,&quot;w&quot;:947,&quot;h&quot;:1080},{&quot;x&quot;:354,&quot;y&quot;:0,&quot;w&quot;:540,&quot;h&quot;:1080},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:1920,&quot;h&quot;:1080}]},&quot;sizes&quot;:{&quot;large&quot;:{&quot;h&quot;:1080,&quot;resize&quot;:&quot;fit&quot;,&quot;w&quot;:1920},&quot;medium&quot;:{&quot;h&quot;:675,&quot;resize&quot;:&quot;fit&quot;,&quot;w&quot;:1200},&quot;small&quot;:{&quot;h&quot;:383,&quot;resize&quot;:&quot;fit&quot;,&quot;w&quot;:680},&quot;thumb&quot;:{&quot;h&quot;:150,&quot;resize&quot;:&quot;crop&quot;,&quot;w&quot;:150}},&quot;type&quot;:&quot;photo&quot;,&quot;url&quot;:&quot;https://t.co/4UgaeXS1oU&quot;}],&quot;photos&quot;:[{&quot;backgroundColor&quot;:{&quot;red&quot;:204,&quot;green&quot;:214,&quot;blue&quot;:221},&quot;cropCandidates&quot;:[{&quot;x&quot;:0,&quot;y&quot;:5,&quot;w&quot;:1920,&quot;h&quot;:1075},{&quot;x&quot;:84,&quot;y&quot;:0,&quot;w&quot;:1080,&quot;h&quot;:1080},{&quot;x&quot;:151,&quot;y&quot;:0,&quot;w&quot;:947,&quot;h&quot;:1080},{&quot;x&quot;:354,&quot;y&quot;:0,&quot;w&quot;:540,&quot;h&quot;:1080},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:1920,&quot;h&quot;:1080}],&quot;expandedUrl&quot;:&quot;https://x.com/NitanshuL/status/1551035341058211845/photo/1&quot;,&quot;url&quot;:&quot;https://storage.googleapis.com/papyrus_images/f1f28769d624df895e2ba8bfe75d50e04295481132e943e44c3641806cf56dd8.jpg&quot;,&quot;width&quot;:1920,&quot;height&quot;:1080}],&quot;conversation_count&quot;:0,&quot;news_action_type&quot;:&quot;conversation&quot;,&quot;isEdited&quot;:false,&quot;isStaleEdit&quot;:false}"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/NitanshuL">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/83671f574c9ac140349e60d1bfdf4e10d31c8ebf0b45154763d679681d966378.jpg" />
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/NitanshuL" class="twitter-displayname">Nitanshu (priv/acc)</a>
              <p><a target="_blank" href="https://twitter.com/NitanshuL" class="twitter-username">@NitanshuL</a></p>
    
            </div>
            <a href="https://twitter.com/NitanshuL/status/1551035341058211845" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png" />
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      Grateful for the invite received from <a class="twitter-content-link"  href="https://twitter.com/devfolio" target="_blank">@devfolio</a> <a class="twitter-content-link"  href="https://twitter.com/0xPolygonDAO" target="_blank">@0xPolygonDAO</a> for attending WAGMI jobdrops <a class="twitter-content-link"  href="https://twitter.com/gather_town" target="_blank">@gather_town</a> . It was really an immersive experience to cherish. 
      <div class="twitter-media"><img class="twitter-image" src="https://storage.googleapis.com/papyrus_images/f1f28769d624df895e2ba8bfe75d50e04295481132e943e44c3641806cf56dd8.jpg" /></div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/NitanshuL/status/1551035341058211845" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            17
          </a>
          <a target="_blank" href="https://twitter.com/NitanshuL/status/1551035341058211845"><p>9:43 PM • Jul 23, 2022</p></a>
        </div>
    
  </div> 
  </div><div data-type="twitter" tweetId="1551169628587446272" tweetData="{&quot;__typename&quot;:&quot;Tweet&quot;,&quot;lang&quot;:&quot;en&quot;,&quot;favorite_count&quot;:17,&quot;possibly_sensitive&quot;:false,&quot;created_at&quot;:&quot;2022-07-24T11:37:13.000Z&quot;,&quot;display_text_range&quot;:[0,240],&quot;entities&quot;:{&quot;hashtags&quot;:[{&quot;indices&quot;:[216,230],&quot;text&quot;:&quot;WAGMIJobDrops&quot;},{&quot;indices&quot;:[231,240],&quot;text&quot;:&quot;Colexion&quot;}],&quot;urls&quot;:[],&quot;user_mentions&quot;:[{&quot;id_str&quot;:&quot;1514778326136606725&quot;,&quot;indices&quot;:[81,92],&quot;name&quot;:&quot;WAGMI Jobs (Web3 Jobs Initiative by Polygon)&quot;,&quot;screen_name&quot;:&quot;WAGMI_Jobs&quot;},{&quot;id_str&quot;:&quot;1623695862160408576&quot;,&quot;indices&quot;:[108,121],&quot;name&quot;:&quot;onPolygon_&quot;,&quot;screen_name&quot;:&quot;0xPolygonDao&quot;},{&quot;id_str&quot;:&quot;995630701994098689&quot;,&quot;indices&quot;:[122,131],&quot;name&quot;:&quot;Devfolio&quot;,&quot;screen_name&quot;:&quot;devfolio&quot;}],&quot;symbols&quot;:[],&quot;media&quot;:[{&quot;display_url&quot;:&quot;pic.x.com/nWzH6iQCr8&quot;,&quot;expanded_url&quot;:&quot;https://x.com/colexionNFT/status/1551169628587446272/photo/1&quot;,&quot;indices&quot;:[241,264],&quot;url&quot;:&quot;https://t.co/nWzH6iQCr8&quot;}]},&quot;id_str&quot;:&quot;1551169628587446272&quot;,&quot;text&quot;:&quot;An excellent experience meeting some great blockchain talent across the globe at @WAGMI_Jobs. Big thanks to @0xPolygonDAO @devfolio for putting this together, looking forward to hiring from some great folks we met!\n\n#WAGMIJobDrops #Colexion https://t.co/nWzH6iQCr8&quot;,&quot;user&quot;:{&quot;id_str&quot;:&quot;1396020754236329984&quot;,&quot;name&quot;:&quot;Lazygames.ai&quot;,&quot;screen_name&quot;:&quot;LazygamesAi&quot;,&quot;is_blue_verified&quot;:false,&quot;profile_image_shape&quot;:&quot;Circle&quot;,&quot;verified&quot;:false,&quot;profile_image_url_https&quot;:&quot;https://storage.googleapis.com/papyrus_images/41d17669a1d54188d155609e5deb7d608c2d5a3618c3af7fde6301e2ed278c21.jpg&quot;},&quot;edit_control&quot;:{&quot;edit_tweet_ids&quot;:[&quot;1551169628587446272&quot;],&quot;editable_until_msecs&quot;:&quot;1658664433000&quot;,&quot;is_edit_eligible&quot;:true,&quot;edits_remaining&quot;:&quot;5&quot;},&quot;mediaDetails&quot;:[{&quot;display_url&quot;:&quot;pic.x.com/nWzH6iQCr8&quot;,&quot;expanded_url&quot;:&quot;https://x.com/colexionNFT/status/1551169628587446272/photo/1&quot;,&quot;ext_media_availability&quot;:{&quot;status&quot;:&quot;Available&quot;},&quot;indices&quot;:[241,264],&quot;media_url_https&quot;:&quot;https://pbs.twimg.com/media/FYbcjWfUUAAq7xz.jpg&quot;,&quot;original_info&quot;:{&quot;height&quot;:1280,&quot;width&quot;:2048,&quot;focus_rects&quot;:[{&quot;x&quot;:0,&quot;y&quot;:133,&quot;w&quot;:2048,&quot;h&quot;:1147},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:1280,&quot;h&quot;:1280},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:1123,&quot;h&quot;:1280},{&quot;x&quot;:140,&quot;y&quot;:0,&quot;w&quot;:640,&quot;h&quot;:1280},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:2048,&quot;h&quot;:1280}]},&quot;sizes&quot;:{&quot;large&quot;:{&quot;h&quot;:1280,&quot;resize&quot;:&quot;fit&quot;,&quot;w&quot;:2048},&quot;medium&quot;:{&quot;h&quot;:750,&quot;resize&quot;:&quot;fit&quot;,&quot;w&quot;:1200},&quot;small&quot;:{&quot;h&quot;:425,&quot;resize&quot;:&quot;fit&quot;,&quot;w&quot;:680},&quot;thumb&quot;:{&quot;h&quot;:150,&quot;resize&quot;:&quot;crop&quot;,&quot;w&quot;:150}},&quot;type&quot;:&quot;photo&quot;,&quot;url&quot;:&quot;https://t.co/nWzH6iQCr8&quot;}],&quot;photos&quot;:[{&quot;backgroundColor&quot;:{&quot;red&quot;:204,&quot;green&quot;:214,&quot;blue&quot;:221},&quot;cropCandidates&quot;:[{&quot;x&quot;:0,&quot;y&quot;:133,&quot;w&quot;:2048,&quot;h&quot;:1147},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:1280,&quot;h&quot;:1280},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:1123,&quot;h&quot;:1280},{&quot;x&quot;:140,&quot;y&quot;:0,&quot;w&quot;:640,&quot;h&quot;:1280},{&quot;x&quot;:0,&quot;y&quot;:0,&quot;w&quot;:2048,&quot;h&quot;:1280}],&quot;expandedUrl&quot;:&quot;https://x.com/colexionNFT/status/1551169628587446272/photo/1&quot;,&quot;url&quot;:&quot;https://storage.googleapis.com/papyrus_images/0199b5cb1524bded2c6cd2dd6921f05b5bd54b12696da0a51ad3a2ba00e73ccb.jpg&quot;,&quot;width&quot;:2048,&quot;height&quot;:1280}],&quot;conversation_count&quot;:0,&quot;news_action_type&quot;:&quot;conversation&quot;,&quot;isEdited&quot;:false,&quot;isStaleEdit&quot;:false}"> 
  <div class="twitter-embed embed">
    <div class="twitter-header">
        <div style="display:flex">
          <a target="_blank" href="https://twitter.com/LazygamesAi">
              <img alt="User Avatar" class="twitter-avatar" src="https://storage.googleapis.com/papyrus_images/41d17669a1d54188d155609e5deb7d608c2d5a3618c3af7fde6301e2ed278c21.jpg" />
            </a>
            <div style="margin-left:4px;margin-right:auto;line-height:1.2;">
              <a target="_blank" href="https://twitter.com/LazygamesAi" class="twitter-displayname">Lazygames.ai</a>
              <p><a target="_blank" href="https://twitter.com/LazygamesAi" class="twitter-username">@LazygamesAi</a></p>
    
            </div>
            <a href="https://twitter.com/LazygamesAi/status/1551169628587446272" target="_blank">
              <img alt="Twitter Logo" class="twitter-logo" src="https://paragraph.com/editor/twitter/logo.png" />
            </a>
          </div>
        </div>
      
    <div class="twitter-body">
      An excellent experience meeting some great blockchain talent across the globe at <a class="twitter-content-link"  href="https://twitter.com/WAGMI_Jobs" target="_blank">@WAGMI_Jobs</a>. Big thanks to @0xPolygonDAO <a class="twitter-content-link"  href="https://twitter.com/devfolio" target="_blank">@devfolio</a> for putting this together, looking forward to hiring from some great folks we met!<br /><br /><a class="twitter-content-link" href="https://twitter.com/hashtag/WAGMIJobDrops" target="_blank">#WAGMIJobDrops</a> <a class="twitter-content-link" href="https://twitter.com/hashtag/Colexion" target="_blank">#Colexion</a> 
      <div class="twitter-media"><img class="twitter-image" src="https://storage.googleapis.com/papyrus_images/0199b5cb1524bded2c6cd2dd6921f05b5bd54b12696da0a51ad3a2ba00e73ccb.jpg" /></div>
      
       
    </div>
    
     <div class="twitter-footer">
          <a target="_blank" href="https://twitter.com/LazygamesAi/status/1551169628587446272" style="margin-right:16px; display:flex;">
            <img alt="Like Icon" class="twitter-heart" src="https://paragraph.com/editor/twitter/heart.png">
            17
          </a>
          <a target="_blank" href="https://twitter.com/LazygamesAi/status/1551169628587446272"><p>6:37 AM • Jul 24, 2022</p></a>
        </div>
    
  </div> 
  </div><p>WAGMI JobDrops was full of stories that ranged from long, insightful, and interesting conversations with fellow candidates to engaging interviews with hiring managers that opened up many opportunities to everyone involved.</p><p>This aligned really well with our fundamental belief that if you help the ecosystem projects connect with top web3 talent, you make a meaningful contribution to the growth journey of both sides.</p><p>Did you miss this one? Join our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://wagmijobs.polygon.technology/onboarding">Talent Network</a> to stay updated about the upcoming job fairs and also get discovered by top Web3 projects in our ecosystem. WAGMI JobDrops is an extension of our <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://wagmijobs.polygon.technology/jobs">WAGMI Jobs platform</a>, which features over 600 verified Web3 jobs from 125+ projects in our ecosystem.</p><h3 id="h-about-polygon-dao" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">About Polygon DAO</h3><p><em>Polygon DAO is the centerpiece of Polygon’s long-term strategy of progressively decentralizing the ecosystem&apos;s growth to the community. Polygon DAO aims to represent and support various areas of interest within the Polygon ecosystem. Through Polygon Village, developers gain access to everything they need to build, grow, and showcase their Web3 initiatives; projects building on Polygon receive comprehensive, quality support.</em></p><p><strong>Stay in the Loop</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/0xPolygonDAO">Twitter</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://discord.com/invite/polygon">Discord</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://t.me/polygonofficial">Telegram</a> | <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://village.polygon.community/">Village</a></p>]]></content:encoded>
            <author>polygonvillage@newsletter.paragraph.com (Polygon Village)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/c64d80b35f6ddb0bc03608b6fcf295a31ccf2580e026e272b2e8504d9398ae82.png" length="0" type="image/png"/>
        </item>
    </channel>
</rss>