<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Michal Každan</title>
    <description>The latest articles on DEV Community by Michal Každan (@xkazm04).</description>
    <link>https://dev.to/xkazm04</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F675515%2Fe276a981-40f6-4daa-b11e-0f0305706eb8.png</url>
      <title>DEV Community: Michal Každan</title>
      <link>https://dev.to/xkazm04</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/xkazm04"/>
    <language>en</language>
    <item>
      <title>Comparison: Decentralized storage</title>
      <dc:creator>Michal Každan</dc:creator>
      <pubDate>Wed, 07 Sep 2022 07:05:22 +0000</pubDate>
      <link>https://dev.to/xkazm04/comparison-decentralized-storage-mf5</link>
      <guid>https://dev.to/xkazm04/comparison-decentralized-storage-mf5</guid>
      <description>&lt;p&gt;&lt;em&gt;Layer 1 and Layer 2 market movers of decentralized cloud storage&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Today I would like to bring some attention to the web3 discipline heavily overshadowed by &lt;strong&gt;Defi&lt;/strong&gt; and &lt;strong&gt;NFT&lt;/strong&gt; sectors, borrowing the voice of critics one could say the current state of Defi and NFT is just a synthetic economy pouring capital to a limited group of people without solving any real problem world…on the other hand, there is a tech with ability to optimize costs of billions $$$ on monthly basis by maintaining internet content and data, all in a decentralized manner where anyone could benefit from participation.&lt;/p&gt;

&lt;p&gt;Ideas of &lt;strong&gt;peer-to-peer&lt;/strong&gt; data protocols are already known in space for more than 20 years with the introduction of &lt;a href="https://en.wikipedia.org/wiki/BitTorrent"&gt;BitTorrent&lt;/a&gt; where regular users got the ability to share any data with each other using just the internet. Blockchain technology adds a next step to the picture with its architectural properties to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Create an easily &lt;strong&gt;decentralized shared economy&lt;/strong&gt; in any industry, with consensuses like Proof of Work (PoW) or Proof of Stake (PoS)&lt;/li&gt;
&lt;li&gt;Support &lt;strong&gt;smart contracts&lt;/strong&gt; , self-executable business logic with given conditions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Thanks to these concepts existing protocols can evolve, from sharing a favorite movie or music to completely hosting parts of their computer for others in need and helping them with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Enterprise data backups&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Media storage for dApps&lt;/strong&gt; operating with pictures/audio/video&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Website Hosting&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;This article will briefly introduce the key protocols taking a role decentralized storage market right now or in close future, as an addition to already massively growing IT services market included Amazon Web Service (AWS), Google Cloud, Microsoft Azure — &lt;/em&gt;&lt;a href="https://www.marketsandmarkets.com/PressReleases/cloud-storage.asp"&gt;&lt;em&gt;projected to grow from $78.6b in 2022 to $183.7b by 2027&lt;/em&gt;&lt;/a&gt;&lt;em&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;Summarized protocols&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--rpb1FJPT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://miro.medium.com/max/525/1%2AWkxjlXovTCcybN7KzwYFrQ.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--rpb1FJPT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://miro.medium.com/max/525/1%2AWkxjlXovTCcybN7KzwYFrQ.png" alt="Decentralized cloud storage — Comparison" width="525" height="209"&gt;&lt;/a&gt; &lt;/p&gt;




&lt;h3&gt;
  
  
  &lt;strong&gt;1. IPFS&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;IPFS, Interplanetary File System is a distributed system for storing and accessing files, websites, applications, and data. Most used L1 decentralized peer-to-peer storage combines three&lt;a href="https://docs.ipfs.tech/concepts/how-ipfs-works/"&gt;&lt;strong&gt;Key concepts&lt;/strong&gt;&lt;/a&gt; &lt;strong&gt;:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Search by Content Identifier &lt;strong&gt;(CID) i&lt;/strong&gt;nstead of physical place, it means validation by SHA hash won't match&lt;/li&gt;
&lt;li&gt;Linking content via Directed Acyclic Graphs &lt;strong&gt;(DAG),&lt;/strong&gt; mainly &lt;a href="https://docs.ipfs.tech/concepts/merkle-dag"&gt;Merkle DAG&lt;/a&gt; used also in Git to connect all the commits into a repository. Check &lt;a href="https://dag.ipfs.io/"&gt;dag.ipfs.io&lt;/a&gt; to visualize DAG&lt;/li&gt;
&lt;li&gt;Content search using Distribute Hash Tables &lt;strong&gt;(DHT)&lt;/strong&gt; with key-value pairs to find which peers are hosting searched content, using &lt;a href="https://libp2p.io/"&gt;libp2p&lt;/a&gt;as core component.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--sNw-p8pY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://medium.com/coinmonks/what-is-ipfs-interplanetary-filesystem-7e48f32a7dce" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--sNw-p8pY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://medium.com/coinmonks/what-is-ipfs-interplanetary-filesystem-7e48f32a7dce" alt="Interplanetary FileSystem" width="" height=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A large network of nodes (200 000+)&lt;/strong&gt; is designed to store shares of single files into multiple devices and manage data flow effectively based on their demand.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Using IPFS service is absolutely &lt;strong&gt;FREE&lt;/strong&gt; , similarly to BitTorrent you just need to be part of the network and share any amount of data. The important thing to remember the &lt;strong&gt;data won't persist by default&lt;/strong&gt; if you don't run the node 24/7 or use 3rd party service to do that for you.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security&lt;/strong&gt; : IPFS is &lt;strong&gt;public&lt;/strong&gt; protocol, including the contents of files themselves, unless they're &lt;a href="https://docs.ipfs.tech/concepts/privacy-and-encryption/#encryption"&gt;encrypted&lt;/a&gt; on their own. CIDs are public and additional measures are required to keep data private.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Applications&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Luckily, to mitigate IPFS issues and advance its usage, periphery protocols on top of IPFS developed services to do the hard stuff for you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://ceramic.network/"&gt;&lt;strong&gt;Ceramic&lt;/strong&gt;&lt;/a&gt;, permissionless data streaming network for data storage, decentralized identity, and much more&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://fission.codes/"&gt;&lt;strong&gt;Fission&lt;/strong&gt;&lt;/a&gt; &lt;strong&gt;,&lt;/strong&gt; WebNative file system with encrypted-at-rest storage capabilities&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://fleek.co/"&gt;&lt;strong&gt;Fleek&lt;/strong&gt;&lt;/a&gt;/ &lt;a href="https://spheron.network/"&gt;&lt;strong&gt;Spheron&lt;/strong&gt;&lt;/a&gt; &lt;strong&gt;,&lt;/strong&gt; decentralized hosting for your frontend. Primary supported React/Next but with a possibility to deploy more frontend frameworks.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://litprotocol.com/"&gt;&lt;strong&gt;Lit protocol&lt;/strong&gt;&lt;/a&gt;, L2 privacy layer to securely store IPFS data&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://orbitdb.org/"&gt;&lt;strong&gt;OrbitDB&lt;/strong&gt;&lt;/a&gt;, peer-to-peer serverless, decentralized database leveraging&lt;a href="https://github.com/ipfs/go-ipfs/blob/master/core/commands/pubsub.go#L23"&gt;IPFS Pubsub&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.pinata.cloud/"&gt;&lt;strong&gt;Pinata&lt;/strong&gt;&lt;/a&gt; &lt;strong&gt;,&lt;/strong&gt; CDN with 200+ caching locations all over the world. Simplifies management of IPFS files and grants ability to manage premium content via &lt;a href="https://www.pinata.cloud/submarine%C2%A8"&gt;Submarine&lt;/a&gt; product. Ideal to store and maintain NFT business.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://docs.filebase.com/"&gt;&lt;strong&gt;Filebase&lt;/strong&gt;&lt;/a&gt;, similarly to Pinata, Filebase offers UI for pinning files, in this case to IPFS, Storj, Sia or Skynet. In addition provide a set of tooling to sync AWS S3 including JavaScript and Python SDK&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;1.1 Filecoin&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://docs.filecoin.io/about-filecoin/how-filecoin-works/"&gt;Filecoin&lt;/a&gt; is one of the missing incentive layers (L2) for IPFS and verifies that data is being stored, while maintaining the efficiency, authenticity and resiliency provided by IPFS.&lt;/p&gt;

&lt;p&gt;Filecoin enhances IPFS with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Storage market&lt;/strong&gt; , determines pricing for data storage given by market conditions.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://filecoin.io/blog/posts/introducing-filgram-the-newest-sp-discovery-tool/"&gt;&lt;strong&gt;Filgram&lt;/strong&gt;&lt;/a&gt; &lt;strong&gt;,&lt;/strong&gt; first storage provider discovery and client marketplace tool&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://filecoin.io/blog/posts/how-does-the-network-indexer-work/"&gt;&lt;strong&gt;Data indexer&lt;/strong&gt;&lt;/a&gt;to improve search quality and performance&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Developers could interact with Filecoin in multiple ways:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://docs.filecoin.io/build/powergate"&gt;&lt;strong&gt;Powergate&lt;/strong&gt;&lt;/a&gt;exposes higher-level API to interact with IPFS and Filecoin nodes easier via CLI or gRPC API endpoints with &lt;strong&gt;JavaScript&lt;/strong&gt; or &lt;strong&gt;Go&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://lotus.filecoin.io/lotus/get-started/what-is-lotus"&gt;&lt;strong&gt;Lotus CLI&lt;/strong&gt;&lt;/a&gt; represents a more powerful though complicated toolset to manage Filecoin data through its Lotus nodes.&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;Filecoin vs IPFS&lt;/strong&gt;
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;IPFS&lt;/strong&gt; allows peers to store, request, and transfer verifiable data with each other (like BitTorrent)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Filecoin&lt;/strong&gt; is designed to provide a system of &lt;strong&gt;persistent data storage&lt;/strong&gt;. Guarantee that miners have correctly stored the data they committed to maintain.&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;Filecoin Economy&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;&lt;strong&gt;Contract-based storage&lt;/strong&gt; can be more simply thought of as a &lt;a href="https://coinmarketcap.com/alexandria/article/the-decentralized-storage-war-filecoin-vs-arweave"&gt;pay-as-you-go model&lt;/a&gt;.&lt;a href="https://filfox.info/en"&gt;&lt;strong&gt;Over 4000 miners&lt;/strong&gt;&lt;/a&gt; &lt;strong&gt;participate in Filecoin network&lt;/strong&gt; compensated by FIL token and price agreed in data marketplaces, &lt;a href="https://file.app/"&gt;right now&lt;/a&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;$0.0000002 GB/Month&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In comparison with Amazon S3:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;$0.013 GB/Month&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://medium.com/swlh/ultimate-guide-to-filecoin-breaking-down-filecoin-whitepaper-economics-9212541a5895"&gt;&lt;strong&gt;Ultimate Guide to Filecoin: Breaking Down Filecoin Whitepaper &amp;amp; Economics&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://medium.com/swlh/ultimate-guide-to-filecoin-breaking-down-filecoin-whitepaper-economics-9212541a5895"&gt;&lt;em&gt;What is Filecoin, How it Works? Understanding Technical &amp;amp; Economic Aspects of Filecoin.&lt;/em&gt;&lt;/a&gt;&lt;a href="https://medium.com/swlh/ultimate-guide-to-filecoin-breaking-down-filecoin-whitepaper-economics-9212541a5895"&gt;medium.com&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;FVM&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;Filecoin Virtual Machine (FVM) could be one of the game-changing capabilities upgrading protocol outside just storing data with additional business logic, coming in 2023. EVM-compatible smart contracts with &lt;em&gt;unlimited&lt;/em&gt; storage might enable use cases like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;NFTs with on-chain media&lt;/li&gt;
&lt;li&gt;Decentralized computation&lt;/li&gt;
&lt;li&gt;Data DAOs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;More on FVM at:&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://fvm.filecoin.io/"&gt;&lt;strong&gt;Filecoin Virtual Machine&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://fvm.filecoin.io/"&gt;&lt;em&gt;A robust WASM-based VM The FVM is a WASM-based polyglot execution environment for IPLD data. It is designed to support…&lt;/em&gt;&lt;/a&gt;&lt;a href="https://fvm.filecoin.io/"&gt;fvm.filecoin.io&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;1.2 Crust&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Crust Network is essentially an IPFS incentive layer protocol and a substrate-based blockchain (Polkadot ecosystem), similarly to Filecoin Crust:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Settles &lt;strong&gt;data storage market&lt;/strong&gt; between IPFS node providers and data providers&lt;/li&gt;
&lt;li&gt;Offers personal "Google Drive" like &lt;strong&gt;Web3.0 storage&lt;/strong&gt;** encrypted** for private or public use&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Key consensus concepts backed by 2000+ nodes consist of&lt;a href="https://wiki.crust.network/docs/en/crustOverview"&gt;3 layers&lt;/a&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;MPOW&lt;/strong&gt; (Meaningful Proof of Work) — low-trust/zero-trust storage proof layer based on TEE (Trusted Execution Environment) serves as off-chain messaging to inspect and prove the storage work of miners.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GPOS&lt;/strong&gt; (Guaranteed Proof of Stake) — PoS-derived consensus layer that requires nodes to provide storage proof to get staking quota as a motivation aspect.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DSM&lt;/strong&gt;  — Decentralized Storage Market to handshake pricing conditions between buyers and sellers.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;All supported by set of tooling to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Auto-deploy&lt;/strong&gt; the DApp/website through &lt;strong&gt;Github action&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Decentralized pin&lt;/strong&gt; through Github action, Node.js package or &lt;a href="https://github.com/crustio/crust-cli"&gt;Crust CLI&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As a winner of &lt;a href="https://parachains.info/"&gt;Polkadot parachain auction&lt;/a&gt;, Crust aims to leverage its interoperability properties with other parachains like Astar or Moonbeam and become home of data storage for smart contracts built in Polkadot or Kusama ecosystem&lt;/p&gt;




&lt;h3&gt;
  
  
  &lt;strong&gt;2. Sia&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://docs.sia.tech/"&gt;Sia&lt;/a&gt; is a &lt;strong&gt;contract-based&lt;/strong&gt; layer 1 decentralized cloud storage (Similarly to Filecoin) using blockchain technology with economy powered by token SIA. Each file is split into 30 pieces around multiple nodes, from which 10 is enough to compose the file back in case of unavailability (&lt;a href="https://en.wikipedia.org/wiki/Reed%E2%80%93Solomon_error_correction"&gt;Reed-Solomon erasure coding&lt;/a&gt;). A key aspect to remember should be &lt;strong&gt;its focus on privacy.&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Max individual file size = 300GB&lt;/li&gt;
&lt;li&gt;All files are private by default using &lt;a href="https://en.wikipedia.org/wiki/Threefish"&gt;Threefish algorithm&lt;/a&gt; for &lt;strong&gt;high performance and secure encryption&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pricing&lt;/strong&gt; moves dynamically, right now with monthly storage price around $1/TB, Upload price $0.50/TB, Download price $2/TB&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--PY0IicvX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://siastats.info/storage_pricing" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--PY0IicvX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://siastats.info/storage_pricing" alt="Sia average pricing in $$$" width="" height=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The combination of its privacy and pricing makes Sia environment suitable to store long-term large backups cheaper than centralized clouds like &lt;a href="https://one.google.com/about/plans"&gt;Google Drive&lt;/a&gt;, unlimited inflation of Sia coin also indicates its price won't skyrocket and keeps storage cheap.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://siasky.net/"&gt;&lt;strong&gt;2.1 Skynet&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I did prepare a few sentences about a layer on top of Sia called &lt;strong&gt;Skynet&lt;/strong&gt; but at the time of writing &lt;strong&gt;Skynet Labs announced the game over&lt;/strong&gt; due to the lack of funding…so fuck it&lt;/p&gt;

&lt;p&gt;&lt;a href="https://blog.sia.tech/skynet-labs-is-shutting-down-skynet-remains-online-5397184e214d"&gt;&lt;strong&gt;Skynet Labs is shutting down. Skynet remains online.&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://blog.sia.tech/skynet-labs-is-shutting-down-skynet-remains-online-5397184e214d"&gt;&lt;em&gt;It is with great sadness that we announce the shutdown of Skynet Labs. Skynet and its data will remain online.&lt;/em&gt;&lt;/a&gt;&lt;a href="https://blog.sia.tech/skynet-labs-is-shutting-down-skynet-remains-online-5397184e214d"&gt;blog.sia.tech&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Although the decentralized storage market does not experience the same competitiveness and excitement as NFT or Defi, it requires a huge effort, creativity and discipline to offer something special to attract users and developers to migrate from centralized solution…this will in startup companies happen, visions and personalities could clash, mistakes could be made and sometimes it's too much from everything.&lt;/em&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  &lt;strong&gt;3. Storj&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Storj became from its creation in 2014 quite a powerful layer 1 contract-based storage solution with developed network and interesting features including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Sync option with &lt;strong&gt;AWS S3 buckets&lt;/strong&gt; via &lt;a href="https://www.storj.io/integrations/uplink-cli"&gt;Uplink CLI&lt;/a&gt; secured with&lt;a href="https://docs.storj.io/dcs/concepts/access/encryption-and-keys/"&gt;AES-256-GCM encryption&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Backups on MongoDB&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;File &lt;strong&gt;transfer&lt;/strong&gt; with &lt;strong&gt;Filezilla&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Data&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Files are divided into 80 or more bundles and placed between multiple nodes around the world ( &lt;strong&gt;total 14k+&lt;/strong&gt; ), only 29 bundles are needed to compose a file to ensure enough buffer in case of nodes failure (again &lt;a href="https://en.wikipedia.org/wiki/Reed%E2%80%93Solomon_error_correction"&gt;using Reed-Solomon coding&lt;/a&gt;) and high availability &amp;gt; 99.9%.&lt;/p&gt;

&lt;p&gt;All with &lt;strong&gt;rich FREE&lt;/strong&gt; and PRO &lt;strong&gt;pricing models&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;FREE: 150GB storage and bandwidth monthly&lt;/li&gt;
&lt;li&gt;PRO: Storage $4/TB, Bandwith $7/TB, monthly&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;User could think with StorJ of use cases like audio/video streaming services, calculate costs with dedicated team and explore continuously improving technology.&lt;/p&gt;




&lt;h3&gt;
  
  
  &lt;strong&gt;4. Arweave&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;Arweave's approach is kind of different, consensus called PoA (Proof of Access) aims for all files to be stored &lt;strong&gt;permanently&lt;/strong&gt; , consensus motivates to randomly split block history between nodes, its algorithm identifies which data is shared less and gives larger reward for miners covering rare files. More at:&lt;/p&gt;

&lt;p&gt;On one hand the capacities of miners could be very well optimized and no file would be forgotten or lost by mistake, on the other hand, there is a concern regarding its content moderation rule, some users could struggle with the idea of storing data &lt;em&gt;expensively&lt;/em&gt; on censored protocol, where files identified as abusive could be discarded from the archive by democratic voting.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Users pay &lt;strong&gt;one fee to store data permanently,&lt;/strong&gt; price is calculated &lt;a href="https://ar-fees.arweave.dev/"&gt;dynamically&lt;/a&gt;. Right now costs about $2/GB&lt;/li&gt;
&lt;li&gt;The &lt;strong&gt;network&lt;/strong&gt; covers over 1000 blockchain (&lt;a href="https://tokenpost.com/Arweave-Introduces-New-Consensus-SPoRA-6729"&gt;SPoRA&lt;/a&gt;) nodes with transaction throughput of over 5000 TPS.&lt;/li&gt;
&lt;li&gt;Data on Arweave is &lt;strong&gt;always immutable&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://ardrive.io/"&gt;ArDrive&lt;/a&gt; serves as encrypted file storage and organization platform&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Although direct interaction with Arweave &lt;a href="https://arwiki.wiki/#/en/creating-a-dapp-02"&gt;might be challenging&lt;/a&gt;, there is a solution making life easier called &lt;strong&gt;Bundlr…&lt;/strong&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;Bundlr&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;Bundlr increases the number of transactions conducted on Arweave by 4,000% without sacrificing security or usability and is around ~3,000x faster at uploading data.&lt;/p&gt;

&lt;p&gt;Bundlr is actually Proof-of-Stake network sits on top of Arweave, currently accounts for over 90% of data uploaded to Arweave. It is a multichain solution and is compatible with leading blockchains including Ethereum, Solana, Avalanche, Polygon, and many more.&lt;/p&gt;

&lt;p&gt;Validators are chosen every day randomly to be charge of making sure transactions pass to Arweave, provides in addition:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Caching layer&lt;/li&gt;
&lt;li&gt;
&lt;em&gt;Infinite&lt;/em&gt; scalability&lt;/li&gt;
&lt;li&gt;Guaranteed instant transaction finality&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;free data uploads under 100kb&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The bundle spec, designed by Bundlr, is open-sourced and is currently implemented in JavaScript and Go.&lt;/p&gt;




&lt;p&gt;_ &lt;strong&gt;Other references:&lt;/strong&gt; _&lt;/p&gt;

&lt;p&gt;&lt;a href="https://cess.cloud/"&gt;&lt;strong&gt;CESS Cumulus Encrypted Storage System&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://cess.cloud/"&gt;&lt;em&gt;CESS Decentralized Storage Web3 Data Security Data Privacy Data Ownership Confirmation Cumulus Encrypted Storage System&lt;/em&gt;&lt;/a&gt;&lt;a href="https://cess.cloud/"&gt;cess.cloud&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://coinmarketcap.com/alexandria/article/the-decentralized-storage-war-filecoin-vs-arweave"&gt;&lt;strong&gt;The Decentralized Storage War: Filecoin vs. Arweave | CoinMarketCap&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://coinmarketcap.com/alexandria/article/the-decentralized-storage-war-filecoin-vs-arweave"&gt;&lt;em&gt;Disclosure: Multicoin has established, maintains and enforces written policies and procedures reasonably designed to…&lt;/em&gt;&lt;/a&gt;&lt;a href="https://coinmarketcap.com/alexandria/article/the-decentralized-storage-war-filecoin-vs-arweave"&gt;coinmarketcap.com&lt;/a&gt;&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;Summary&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;Sharing computing resources will take a huge role in the future, although its impact does not represent blockchain use cases many would like to see — like ending world hunger, fixing economical flaws or achieving political fairness. Its benefits are straight and anyone involved in IT will appreciate cost optimization for data and throughput which became at some scale non-affordable for smaller businesses and dreamers.&lt;/p&gt;

&lt;p&gt;In addition, cheap data storage in pair with high-performance scaling blockchains could unlock new ways of interactions I couldn't think of now.&lt;/p&gt;

&lt;p&gt;If I summarize what I saw, there are several base protocols for storing data in a decentralized manner:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;IPFS&lt;/strong&gt; , which is not exactly blockchain but developed a rich ecosystem of ideas by 3rd parties uses a blockchain economy to bring nice cheap data services to everyone.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Storj&lt;/strong&gt; , a very well developed contract based cloud storage, continuously improving with the possibility to sync with AWS S3&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Sia&lt;/strong&gt; , on paper secure protocol to store large backups privately and cheaper than on Google, although with a questionable reputation, and doubtful future through the lack of ecosystem incentives.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Arweave&lt;/strong&gt; , truly permanent storage useful for archival boosted with L2 Bundlr, however with built-in content moderation mechanism one could be afraid of potential censorship if the content is controversial for any reason.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;One note to pour here a bit of pure wine if someone entitles any project as AWS/GCP killer…all protocols mentioned above still do not contain even 1% of all the features and gadgets GCP or AWS offers right now…the image blockchain alternatives could eat a significant amount of this market pie of hundreds of billions is rather pessimistic.&lt;/p&gt;

&lt;p&gt;If the market proves the way blockchain is working in data storage and cloud computing, providers and consumers both profit, at some point largest world companies with thousand-year experience in IT would probably notice, adapt, buy teams and gain some advantage…but that's not all bad — it would mean this path was meaningful and will generate business and benefits for many in next years or decades.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Become web3 dev with D3V Library</title>
      <dc:creator>Michal Každan</dc:creator>
      <pubDate>Tue, 16 Aug 2022 00:48:02 +0000</pubDate>
      <link>https://dev.to/xkazm04/become-web3-dev-with-d3v-library-51n6</link>
      <guid>https://dev.to/xkazm04/become-web3-dev-with-d3v-library-51n6</guid>
      <description>&lt;p&gt;After weekend by weekend on my path to building an educational platform for anyone starting with web3 development &lt;a href="https://medium.com/r/?url=https%3A%2F%2Fwww.d3vlibrary.com%2F"&gt;D3V Library&lt;/a&gt; reached two key milestones I would like to share with you.&lt;/p&gt;

&lt;h2&gt;
  
  
  A. 1000 articles indexed
&lt;/h2&gt;

&lt;p&gt;As for now, the application contains over 1000 article references to guide you through the web3 development space no matter on which chain you would like to start and develop.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--331lVX5C--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/bbixyy25btt5fx8klkl1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--331lVX5C--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/bbixyy25btt5fx8klkl1.png" alt="1000+ resources" width="720" height="234"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;App now consists of 5 key modules to help you overcome philosophical or implementational challenges, in short:&lt;/p&gt;

&lt;h3&gt;
  
  
  Tutorials &amp;amp; Definitions
&lt;/h3&gt;

&lt;p&gt;1000+ Blog posts, web articles, and video guides covering key categories mostly for EVM compatible blockchains and partially for Rust-based in Polkadot's Ink or Solana. All are easily searchable and filterable by indexed categories.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--rYhEHaFD--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/a5sv7jcm69lcsn6oueyt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--rYhEHaFD--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/a5sv7jcm69lcsn6oueyt.png" alt="Tutorials page" width="720" height="341"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Starters&lt;/strong&gt; (Environment setup, First dApp guides)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;NFT&lt;/strong&gt; (Collection, Marketplace, Gaming, Whitelisting, Soulbound)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Defi&lt;/strong&gt; (DEX, Lending, Yield farms, Staking, Automation)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Data&lt;/strong&gt; (Node providers, Storage, Tx Events, Graph, Oracles)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Security&lt;/strong&gt; (Audit best practices, Exploits &amp;amp; Vulnerabilities)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Frontend&lt;/strong&gt; (UI interaction with smart contracts, Metamask, Ethers…)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MEV&lt;/strong&gt; (Dive deep into the darkness of Altcoin forest)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Language&lt;/strong&gt; and &lt;strong&gt;Architecture&lt;/strong&gt; definitions from all around the space&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Tools
&lt;/h3&gt;

&lt;p&gt;200+ libraries, utilities, and services to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Develop&lt;/strong&gt; faster with the most used frameworks in the market and predefined code boilerplates&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Monitor&lt;/strong&gt; on-chain transactions, events or DeFi liquidity&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Nocode&lt;/strong&gt; platforms to build NFTs, Tokens and Marketplaces in minutes&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Secure&lt;/strong&gt; your dapp with static analysis or fuzzing tooling&lt;/li&gt;
&lt;li&gt;Find &lt;strong&gt;Node provider&lt;/strong&gt; indexing blockchain and providing them real-time for your analytical app&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--fmP9ImBt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/hxtoah1b433l7u4spdrp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fmP9ImBt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/hxtoah1b433l7u4spdrp.png" alt="Stats for Tools and Repositories" width="720" height="234"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Repositories
&lt;/h3&gt;

&lt;p&gt;130+ repositories for your inspiration:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;DeFi&lt;/strong&gt; dapps in Solidity and Rust (Lending, DEXes,&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;NFT&lt;/strong&gt; standards, templates, and reference marketplaces to learn from the best&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;DAO&lt;/strong&gt; blueprints with designed &lt;strong&gt;Tokenomics&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Examples of &lt;strong&gt;Arbitrage &amp;amp; Liquidation bots&lt;/strong&gt; to start your MEV journey&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  B. D3V Path
&lt;/h2&gt;

&lt;p&gt;The second milestone comes in a new module combining all the parts above together into a single experience focused on developers freshly onboarded in web3, trying to learn new industrial tech and build something cool.&lt;/p&gt;

&lt;p&gt;Right now you can &lt;strong&gt;choose your path&lt;/strong&gt; between &lt;strong&gt;NFT&lt;/strong&gt; use cases scenarios and &lt;strong&gt;Defi&lt;/strong&gt;, pick optional features Library should search for you and find basic guidance in 5 steps:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Step 1 - Setup&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Start a project with &lt;strong&gt;framework guides, frontend libraries, and boilerplate kits&lt;/strong&gt; to do some dirty stuff for you&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Fx6nb16n--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/0o15gy2unr59a0hbaa5y.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Fx6nb16n--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/0o15gy2unr59a0hbaa5y.png" alt="Path - Step 1" width="720" height="320"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Step 2 - Governance&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Think a few steps ahead, your economical model, and how you plan to govern and utilize fungible token. If you take the project seriously, you can learn here &lt;strong&gt;how to set up&lt;/strong&gt; responsible &lt;strong&gt;economics&lt;/strong&gt;, and how to create a funding contract with linear vesting for the stakeholders.&lt;/p&gt;

&lt;p&gt;Part of this section is also a very simple &lt;strong&gt;visualized Vesting schedule&lt;/strong&gt; where you can enter token parameters and see in a chart how the inflation of utility token could look in several years and think about what will happen with its price long-term.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--mBJZgaDE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/sfwmx3lnj9bmssjcg67t.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--mBJZgaDE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/sfwmx3lnj9bmssjcg67t.png" alt="Path - Step 2" width="720" height="445"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Step 3 - D3velop&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;This Key module&lt;/strong&gt; queries all the information passed in starting form, the app evaluates all requested features and adds a few recommended articles to cover common problems related to a given section of development. &lt;strong&gt;Guides&lt;/strong&gt; are displayed with &lt;strong&gt;icons&lt;/strong&gt; to identify the difficulty, together with &lt;strong&gt;Definitions, Tooling and Repos&lt;/strong&gt; there are tags attached to clear expectations more outside resource title and description.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--tS61QIxt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/n36bgjnbwpat9em0ryyu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--tS61QIxt--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/n36bgjnbwpat9em0ryyu.png" alt="Path - Step 3" width="720" height="384"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Step 4 - Secure&lt;/em&gt;&lt;br&gt;
The most important step before shipping is to &lt;strong&gt;secure smart contracts&lt;/strong&gt; that could have any &lt;strong&gt;financial impact&lt;/strong&gt; on potential users and stakeholders. Security articles will guide you &lt;strong&gt;before the audit&lt;/strong&gt;, prevent you doing the &lt;strong&gt;most common mistakes&lt;/strong&gt; seen in web3 again and again, and give you a handful of &lt;strong&gt;free tooling&lt;/strong&gt; to &lt;strong&gt;scan&lt;/strong&gt; the code or significantly help with &lt;strong&gt;testing&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--49rENQ7S--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/up8y5sgoxh7nx19w70j0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--49rENQ7S--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/up8y5sgoxh7nx19w70j0.png" alt="Path - Step 5" width="720" height="518"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Step 5 - Deploy&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The final step could spare a few minutes of googling by &lt;strong&gt;introducing some of the largest EVM chains&lt;/strong&gt; capable to deploy with one and only smart contract in Solidity you managed to implement.&lt;/p&gt;

&lt;p&gt;Think twice about which chain is suitable for your type of dapp, don't hesitate to find &lt;strong&gt;grants&lt;/strong&gt; to support the incubation of some amazing idea of yours..and again, plan tokenomics and future liquidity carefully if dapp goes multichain - less liquidity on-chain results in greater abuse of "normal" users by bots and MEV hunters.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;There are plenty of publications and guides around with comparison criteria, for example:&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What's next?
&lt;/h2&gt;

&lt;p&gt;Current D3V Library's content is focused mostly on EVM &amp;amp; Solidity as the majority of web3 is there, resources became quite easy to reach, tooling and best practices are blasts to use in comparison to life a few years ago and now it's just to show web2 devs where to look and why it matters.&lt;/p&gt;

&lt;p&gt;Thinking which innovations we will talk about 2–3 years from now I believe the attention of the Library should turn more towards Rust in the second half of this year and help gather anything valuable for devs fighting in DX hell of Wasm contracts in Polkadot ecosystem, possibly in CosmWasm of Cosmos.&lt;/p&gt;

&lt;p&gt;Looking forward to what will happen with&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Crosschain protocols&lt;/strong&gt; (ICB, XCM)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;NFT Gaming opportunities&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Decentralized cloud computing&lt;/strong&gt; (Fat contracts)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;D3V Library will adjust, add new use case scenarios into the &lt;strong&gt;Path&lt;/strong&gt; module and be there for anyone who starts with web3.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>D3V Library - Your Web3 source of wisdom</title>
      <dc:creator>Michal Každan</dc:creator>
      <pubDate>Mon, 23 May 2022 17:00:59 +0000</pubDate>
      <link>https://dev.to/xkazm04/d3v-library-your-web3-source-of-wisdom-7f2</link>
      <guid>https://dev.to/xkazm04/d3v-library-your-web3-source-of-wisdom-7f2</guid>
      <description>&lt;h2&gt;
  
  
  D3V Library
&lt;/h2&gt;

&lt;p&gt;Introduction to web3 curated knowledge base&lt;/p&gt;

&lt;p&gt;&lt;em&gt;I enjoy this moment of writing my first blog post ever and introducing myself and my humble project to aggregate and &lt;strong&gt;share wisdom related to web3 development&lt;/strong&gt;, blockchain, and decentralized applications.&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  About the project
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--li2Sww0B--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/p9itnm8nxz4gv8esxnxb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--li2Sww0B--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/p9itnm8nxz4gv8esxnxb.png" alt="D3V Library" width="880" height="395"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;u&gt;&lt;strong&gt;D3V Library&lt;/strong&gt;&lt;/u&gt; aims to be center point of wisdom for both newbies and advanced web3 developers in form of a curated knowledge base, which consists of modules:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1.Guides &amp;amp; Tutorials&lt;/strong&gt; across 30+ blockchain smart contract platforms.&lt;br&gt;
&lt;strong&gt;2.Definitions&lt;/strong&gt; to understand concepts of smart contract languages, standards, and protocols.&lt;br&gt;
&lt;strong&gt;3.Tooling&lt;/strong&gt; and list of code libraries to make development easier at any stage on any blockchain ecosystem.&lt;br&gt;
&lt;strong&gt;4.Bits&lt;/strong&gt; with exemplary Github repos — inspiration is a crucial part for evolution of open-source projects, this fact pays twice in web3. (planned for 6/2022)&lt;br&gt;
&lt;strong&gt;5.Researches&lt;/strong&gt; to help you understand DeFi &amp;amp; development trends before the market hits. (planned for 8/2022)&lt;br&gt;
&lt;strong&gt;6.Releases&lt;/strong&gt; &amp;amp; Announcements of new tools/blockchain versions and features you might be interested in. (planned for 7/2022)&lt;br&gt;
&lt;strong&gt;7.Fundings&lt;/strong&gt; &amp;amp; Grants — if you build something cool, don’t build it for free. There are currently limitless resources for a limited amount of devs — use it. (planned for 7/2022)&lt;/p&gt;

&lt;p&gt;More about modules in upcoming weeks…&lt;/p&gt;

&lt;h3&gt;
  
  
  Motivation behind
&lt;/h3&gt;

&lt;p&gt;There are some &lt;strong&gt;gaps&lt;/strong&gt; in &lt;strong&gt;builder space&lt;/strong&gt; I would love to help solve:&lt;/p&gt;

&lt;h5&gt;
  
  
  Duplicated topics &amp;amp; problems
&lt;/h5&gt;

&lt;p&gt;Hundreds of tech writers are spending precious time describing the same procedures again and again, as the space grows it lacks more and more central point of knowledge so devs and enthusiasts have to do ineffective research and waste some additional time.&lt;/p&gt;

&lt;p&gt;My &lt;strong&gt;goal is to cover any crypto development topic with 2–3 top articles&lt;/strong&gt; in quality format written from anyone across the internet, fill the maximum amount of problematic areas in the database and let users search and filter what they need in UI.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Chain specific knowledge&lt;/strong&gt;&lt;br&gt;
Cross-platform battle began and each of the platforms is focused to develop its own ecosystem and core base of developers. To keep a competitive advantage some clusters are working hard to &lt;strong&gt;improve &lt;u&gt;developer experience&lt;/u&gt;&lt;/strong&gt;. (Cosmos, Polkadot)&lt;/p&gt;

&lt;p&gt;Some platforms are sad, left in loneliness given by their unique architecture :’( (Cardano, Algorand)&lt;/p&gt;

&lt;p&gt;D3V Library aims to &lt;strong&gt;gather&lt;/strong&gt; and &lt;strong&gt;aggregate&lt;/strong&gt; knowledge &lt;strong&gt;cross-language&lt;/strong&gt; and &lt;strong&gt;cross-platform&lt;/strong&gt;, help devs to realize which opportunities are hidden, which skill set is needed, and which technology could provide nice and warm &lt;strong&gt;DX&lt;/strong&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  Roadmap
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--9vdq25Ii--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/3dxrtcjig9bt4kr5t877.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--9vdq25Ii--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/3dxrtcjig9bt4kr5t877.png" alt="Roadmap 2022" width="880" height="572"&gt;&lt;/a&gt;&lt;br&gt;
Even I honestly doubt the success of my project I would be happy booy if D3V Library finds some usefulness, &lt;strong&gt;satisfy your hunger for wisdom&lt;/strong&gt; and let you build something cool and innovative.&lt;/p&gt;

&lt;p&gt;To ensure wet dreams come true, the website will be under &lt;strong&gt;continuous development&lt;/strong&gt; even with my little analytical and React knowledge I can promise some of the product verticals will be fulfilled with a solid set of articles to read.&lt;/p&gt;

&lt;h4&gt;
  
  
  EVM coverage goals
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Enough resources to cover newbies and starters in web3 — allow them to develop first &lt;strong&gt;contracts&lt;/strong&gt;, &lt;strong&gt;tokens&lt;/strong&gt;, and basic &lt;strong&gt;dapps&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Focus to bring value for advanced devs — cover &lt;strong&gt;decentralized computing&lt;/strong&gt; possibilities, &lt;strong&gt;MEV opportunities&lt;/strong&gt; and **crosschain **tech&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Non-EVM coverage goals
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Build a foundation for WASM contracts with hundreds of articles&lt;/li&gt;
&lt;li&gt;Explore possibilities of writing JavaScript contracts and its worthiness&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  UI/UX
&lt;/h4&gt;

&lt;p&gt;As the app looks and behaves like shit, it would my long-term goal to improve&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;User &lt;strong&gt;experience, profile &amp;amp; personalization&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Mobile optimization&lt;/strong&gt; to shorten toilet time effectively&lt;/li&gt;
&lt;li&gt;Create &lt;strong&gt;developer path&lt;/strong&gt; to navigate you through articles more like a story, based on metadata manually provided to categorize difficulty and specific use cases&lt;/li&gt;
&lt;/ul&gt;

&lt;h5&gt;
  
  
  Focus on community
&lt;/h5&gt;

&lt;p&gt;Key element of this project is you — &lt;strong&gt;audience of devs&lt;/strong&gt;, buidlers and enthusiasts — for that there is created &lt;a href="https://discord.gg/D86Kp9eQ"&gt;Discord&lt;/a&gt; group. I will try to listen there how the D3V Library could help you further, and which direction we should head to make this a valuable piece of your toolkit.&lt;/p&gt;

&lt;h2&gt;
  
  
  Project financing
&lt;/h2&gt;

&lt;p&gt;D3V Library is &lt;strong&gt;not financed nor sponsored project&lt;/strong&gt;, in other words nobody asked for it other than myself, I am going to maintain it in my free time with the best will to provide useful content and gain ultimate knowledge in expanding market.&lt;/p&gt;

&lt;p&gt;Of course, &lt;strong&gt;donations are welcomed&lt;/strong&gt; to help me improve the web and content full time, research more advanced information and let me actively interview dev teams behind key ecosystem tooling.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Donation addresses&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;ETH,BSC,AVAX..or any other EVM&lt;/strong&gt;: &lt;em&gt;0xa0a39c5823A51184043655711C8157ef4826447a&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Solana&lt;/strong&gt;: &lt;em&gt;BA78aSwD4f9TTewpP2D32m6M54scjCFbsJjEqK4bSFvK&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Polkadot&lt;/strong&gt;: &lt;em&gt;23YnwTyjmGqXrpefzhx56Sr5n1qWM4DcMe7yhmt7MQzdtPtm&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cosmos&lt;/strong&gt;: &lt;em&gt;cosmos1tplpjnv5xju0ajn2zqq4v6959wvqpg3dmte3uz&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;Appreciate any spare token :)&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Wrap-up
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Check &lt;a href="https://www.d3vlibrary.com/"&gt;d3vlibrary.com&lt;/a&gt; and browse hundreds of dev articles related with web3…and many more to come :)&lt;/li&gt;
&lt;li&gt;Discuss your &lt;strong&gt;ideas&lt;/strong&gt; and dev &lt;strong&gt;struggles&lt;/strong&gt; at &lt;a href="https://discord.gg/D86Kp9eQ"&gt;Discord&lt;/a&gt; channel.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Find it interesting? Tell other friends there is a new dev buddy to help!!&lt;/p&gt;

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