<?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>cwray's Lab for Web 3</title>
        <link>https://paragraph.com/@cwray-s-lab-for-web-3</link>
        <description>OK computer.</description>
        <lastBuildDate>Wed, 05 Aug 2026 22:54:32 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[Mint Your Own NFT - Memo]]></title>
            <link>https://paragraph.com/@cwray-s-lab-for-web-3/mint-your-own-nft-memo</link>
            <guid>ziHaAAPm9ScornJGhuJs</guid>
            <pubDate>Wed, 09 Feb 2022 08:09:48 GMT</pubDate>
            <description><![CDATA[For Popcorn Club. Feb, 2022cwray @ Shanghai0. No investment advice included.This is a memo to demonstrate my personal understanding of NFT, it was released in a decentralized writing platform mirror.xyz. FYI. Here’s some terms you need to know before the club.Block Chain could be regard as a growing public ledger, in which all committed transactions are store in a chain of Blocks.Smart Contract (in Ethereum) is a collection of code (its functions) and data (its state) that resides at a specif...]]></description>
            <content:encoded><![CDATA[<p>For Popcorn Club. Feb, 2022</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/d89efc27b19e9fa0654cac0494b43a652135f47859a14ca28e19e828b682df0b.jpg" alt="cwray @ Shanghai" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">cwray @ Shanghai</figcaption></figure><h2 id="h-0-no-investment-advice-included" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">0. No investment advice included.</h2><p>This is a memo to demonstrate my personal understanding of NFT, it was released in a decentralized writing platform mirror.xyz. FYI.</p><p>Here’s some terms you need to know before the club.</p><ul><li><p><strong>Block Chain</strong> could be regard as a growing public ledger, in which all committed transactions are store in a chain of Blocks.</p></li><li><p><strong>Smart Contract</strong> (in Ethereum) is a collection of code (its functions) and data (its state) that resides at a specific address on the Ethereum blockchain.</p></li><li><p><strong>NFTs(Non-Fungible-Token)</strong> are tokens that we can use to represent ownership of unique items.</p></li><li><p><strong>Crypto Wallet</strong> is a device, physical medium, program or a service which stores the public or private keys for cryptocurrency transactions.</p></li><li><p><strong>Gas and Fee</strong> You can take gas fee as the price to make digital asset permanent. Gas refers to the unit that measures the amount of computational effort required to execute specific operations on the Ethereum network. Gas fees are paid in Ethereum&apos;s native currency, ether (ETH).</p></li><li><p><strong>Decentralized exchange(DEX)</strong> Decentralized exchanges are open marketplaces for ETH and other tokens. They connect buyers and sellers directly.</p></li><li><p><strong>Mint</strong> is a verb to describe making solid things such as coins or bronze, when it comes to NFT, we prefer say &apos;minting an NFT&apos; instead of &apos;making an NFT&apos;. It&apos;s worth noting that each step behind mingting refering the execution of code.</p></li></ul><h2 id="h-1-what-is-nft" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">1. What is NFT</h2><blockquote><p>Value is the socially necessary abstract labor embodied in commodity.</p><p>-- Karl Marx</p></blockquote><p>Infront of things we don&apos;t familiar with, we had to figure out how many people contribute labour behind it, and that&apos;s the most important part to help us to decide whether it deserves a certain price or not.</p><h3 id="h-11-why-human-beings-need-nft" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">1.1 Why human-beings need NFT</h3><p>There are three questions help us to understand the whole concept of NFT.</p><p><strong>① What is permanet? [Digital Permanence]</strong></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/6bd5773f21f11f62bb8bc51cea64f2134fe687e799ed03ed9d673a40563995b5.png" alt="Typical distributed storage system" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Typical distributed storage system</figcaption></figure><ul><li><p><em>Distributed Storage System</em> (Much more cheaper)</p><p>In the Disney movie <strong>Coco</strong>, if there is a single person in the reality remembers Miguel&apos;s grand-grand father&apos;s name, he would able to stay in the Mexico Heaven, which means forever.</p><p>This is a typical distributed storage system, which asked mutiple computer nodes store parts of data or the whole data. The more nodes take part in, the more the data safe. Once all the nodes crash, the data lost, but it&apos;s almost impossible that all the nodes in the distributed storage system go crashing at the same time, we gonna take it as a reliable storage system.</p></li><li><p><em>Block Chain</em> (Expensive but reliable)</p><p>A super distributed database, a public ledger of all transactions. Explain later.</p></li></ul><p><strong>② What is the SAME thing? [Digital Uniqueness]</strong></p><p>In digital world, it&apos;s pretty easy to recognize file being changed. Therefore it&apos;s naturally easy to verify digital uniqueness in computer.</p><p>Example like this: A single space for human-being is a huge difference for computer.</p><pre data-type="codeBlock" text="% echo &apos;Hello World!&apos; &gt; abc.txt

% cat abc.txt
Hello World!

% shasum -a 256 abc.txt
03ba204e50d126e4674c005e04d82e84c21366780af1f43bd54a37816b6ab340  abc.txt

% mv abc.txt bcd.txt

% shasum -a 256 bcd.txt 
03ba204e50d126e4674c005e04d82e84c21366780af1f43bd54a37816b6ab340  bcd.txt

% echo &apos; &apos; &gt;&gt; bcd.txt 

% shasum -a 256 bcd.txt
e2dcb6631567618b98b12c22b0fde309e4c34b022f0a73d5a2982cf144ca13c9  bcd.txt

% cat bcd.txt
Hello World!
 
"><code><span class="hljs-operator">%</span> echo <span class="hljs-string">'Hello World!'</span> <span class="hljs-operator">></span> abc.txt

<span class="hljs-operator">%</span> cat abc.txt
Hello World<span class="hljs-operator">!</span>

<span class="hljs-operator">%</span> shasum <span class="hljs-operator">-</span>a <span class="hljs-number">256</span> abc.txt
03ba204e50d126e4674c005e04d82e84c21366780af1f43bd54a37816b6ab340  abc.txt

<span class="hljs-operator">%</span> mv abc.txt bcd.txt

<span class="hljs-operator">%</span> shasum <span class="hljs-operator">-</span>a <span class="hljs-number">256</span> bcd.txt 
03ba204e50d126e4674c005e04d82e84c21366780af1f43bd54a37816b6ab340  bcd.txt

<span class="hljs-operator">%</span> echo <span class="hljs-string">' '</span> <span class="hljs-operator">></span><span class="hljs-operator">></span> bcd.txt 

<span class="hljs-operator">%</span> shasum <span class="hljs-operator">-</span>a <span class="hljs-number">256</span> bcd.txt
e2dcb6631567618b98b12c22b0fde309e4c34b022f0a73d5a2982cf144ca13c9  bcd.txt

<span class="hljs-operator">%</span> cat bcd.txt
Hello World<span class="hljs-operator">!</span>
 
</code></pre><p><strong>③ What is the most annoying issue in WEB 2.0(current internet)? [Digital ownership]</strong></p><p>You don&apos;t own your data, and many big companies make a lot of money by using those personal data. Actually, most products you bought online are services, most of them will gone with expire time. Even for the companies claim it&apos;s a permanent service, the companies themselves cannot make sure they exist or not 10 years later.</p><h3 id="h-12-abc-of-blockchainsmart-contractnft" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">1.2 ABC of BlockChain/Smart Contract/NFT</h3><p><strong>How a blockchain works</strong></p><p>Block chain itself is made up with growing data blocks recording transaction information. It&apos;s reasonable to take it as a public distributed database or public ledger for all human-beings.</p><p>Nobody can control a public blockchain system, while works from endless computer nodes making the system running, we call these activities as mining. Therefore the computer nodes as miners, their task is to solve a mathematical problem associated with information on the block. It&apos;s kinda like rolling dices, the number of dices is hard to predict, but the result is easy to verify.</p><p>The whole process is very complicated, it’s totally fine if you feel confused. You don’t need to know how a complicated system running but you can still be a user of it.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/3f0c7bd13f60fcbdab0e1e2d48724fcd1d6abed2e10878ddef7869bbc3e73adc.png" alt="How a block chain works" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">How a block chain works</figcaption></figure><p><strong>What is Smart Contract?</strong></p><blockquote><p>In code, we trust.</p></blockquote><p>The concept smart contract is older than the blockchain, it is blockchain makes smart contract concept became real application.</p><p>It&apos;s interesting to think what exactly a paper contract stands for. You will not put the whole concrete house upon the contract paper. Most of our economy activities today based on ownership recognition. And smart conctrat in digital world works almost the same as paper contract in reality. The most difference is the smart contract works itself, all the middleman(lawyers, brokers, insurance) are not neccessary anymore.</p><p>In the most popular smart contract community Ethereum, there are different smart contract standards, as the response of invoking the contract, there will be Ethereum Request for Comment(ERC), typical ERCs including:</p><ul><li><p>ERC 20 - crypto currency</p></li><li><p>ERC 721 - NFTs</p></li><li><p>ERC 1155 - NFTs in Batch</p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/c07068883dce365c487f2824d9ae54b016caf36541ac3667ed9115bacb71f471.png" alt="smart contract" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">smart contract</figcaption></figure><p><strong>What is NFT in economic view?</strong></p><ul><li><p>What is more common in our daily life, fungible or non-fungible stuff?</p><p>The answer is non-fungible stuff.</p></li><li><p>In reality, why something is cheap, the other might cost a lot?</p><p>Mostly depends on the scarcity.</p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/eb288a1c5a01b38e465aaed90653e4f5d6c35f83fa98893886d4e47b8711cdde.png" alt="Fungibility in ecnomic view" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Fungibility in ecnomic view</figcaption></figure><h3 id="h-13-typical-popular-nft-project-since-late-2021" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">1.3 Typical popular NFT project (since late 2021)</h3><ul><li><p>NBA Top Shot - Paper card collecor</p></li><li><p>Axie - Gaming</p></li><li><p>Bored Ape Yacht Club</p></li><li><p>CryptoPunks</p></li><li><p>Azuki</p></li><li><p>Membership - Starbucks</p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/e1e72cf4bc4ad26790da269b136ac7d444591b83c77919e1c1054291e0a3fd50.png" alt="Typical NFT Projects" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Typical NFT Projects</figcaption></figure><p><strong>How Big is this Market?</strong></p><p>It&apos;s pretty easy to check, there are lots of statistics, such as cryptoslam etc.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cryptoslam.io/">https://cryptoslam.io/</a></p><p>Data check in Feb 2022</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/08b87c8e26668135a40ec1f52b14640636b9f16e3959c2cf7f42d72089a6e0bf.png" alt="Statistics for NFT Market on cryptoslam.io (Data Captured on Feb 2022 )" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Statistics for NFT Market on cryptoslam.io (Data Captured on Feb 2022 )</figcaption></figure><h3 id="h-14-what-can-be-an-nft" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">1.4 What can be an NFT?</h3><p>Categories from <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://opensea.io">opensea.io</a> in 2022.</p><p><strong><em>Anything digital can be minted as NFT.</em></strong></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/7cdeb53bd4d95798df463405e7779fe7eb2f492ff1123d3c75b60f7310d4da3a.png" alt="NFT categories" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">NFT categories</figcaption></figure><h3 id="h-12-how-to-verify-a-nft" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">1.2 How to verify a NFT</h3><blockquote><p>Code is the law.</p></blockquote><p>The core question is : <strong>what exactly did you buy?</strong></p><p>The biggest wrong answer is : a stupid gif with serial number.</p><p>Here are a few factors you need to care about a NFT:</p><ul><li><p>Creator → Operation</p></li><li><p>Owner</p></li><li><p>Properties → Scarcity</p></li><li><p>Detail → Contract on Chain</p><ul><li><p>Storage : Link/HashString/DistributedStorageSolution/OnChain</p></li><li><p>TokenID</p></li><li><p>ContractURI</p></li><li><p>……</p></li></ul></li><li><p>Appearance → No really matter now</p></li></ul><p>Let&apos;s do it with a demo: Jay Chou&apos;s Instagram Profile</p><ol><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://opensea.io/">https://opensea.io/</a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://opensea.io/assets/0x67d9417c9c3c250f61a83c7e8658dac487b56b09/10000">Phanta Bear #10000</a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://opensea.io/0x1087f515f7faae8b35045e91092ea8878b757849">Wallet Address</a></p></li><li><p>Read Contract - As a buyer</p></li></ol><h3 id="h-13-how-to-mint-a-nft" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">1.3 How to mint a NFT</h3><blockquote><p>Almost as easy as posting a Wechat moment.</p></blockquote><p>Thinking about posting in Web 2.0, what you need are:</p><ul><li><p>Smart Phone</p></li><li><p>Idea</p></li><li><p>Platform(Centralized): Wechat/Facebook/Instgram/Twitter/Weibo/Tiktok</p></li><li><p>Create</p></li><li><p>Post</p></li></ul><p>In Web 3.0, what you need are:</p><ul><li><p>Wallet Address</p></li><li><p>Digital Arts</p></li><li><p>Exchange/Platform</p></li><li><p>BlockChain</p></li><li><p>Gas Fee</p></li></ul><h3 id="h-14-mint-our-nft" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">1.4 Mint our NFT</h3><p>As we mention in the last chapter, here is a realistic solution:</p><ul><li><p>Wallet Address : Meta Msk</p></li><li><p>Digital Arts : From you a&apos;ll</p></li><li><p>Exchange/Platform : OpenSea</p></li><li><p>BlockChain &amp; Contract &amp; Storage : Polygon/ERC 1155/IPFS</p></li><li><p>Gas Fee : Free for minting/Fee for Selling/AirDrop Only in our Club</p></li></ul><blockquote><p>This is not a utopia, it is just another real world.</p></blockquote><p>Now we are talking about NFT &amp; Block Chain application, it&apos;s kinda like people in 80s talking about the usage of the Internet, maybe in the future we will laugh at ourselves for how stupid we were, but this is the on-going history in 2020s.</p><h3 id="h-15-risk-and-forcasting" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">1.5 Risk &amp; Forcasting</h3><ul><li><p>Regulation - almost empty</p></li><li><p>Infrastructure - pretty weak comparing with web2.0</p></li><li><p>Finacial Bubble</p></li><li><p>Economic Value - Ownership Reconization</p></li><li><p>Energy Consuming - From PoW to PoS</p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/7ebd0b748f5ef84862a00d09da42fcf788a1284c88d4552f711d6e84c9d7d7b5.png" alt="Gartner&apos;s Report on Emerging Technologies 2021" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Gartner&apos;s Report on Emerging Technologies 2021</figcaption></figure><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/d27e3d88e6842e08583e7a94f7101e057c88df88b3cae2bfb8f9c2964e4c2f91.png" alt="Summary" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Summary</figcaption></figure><h1 id="h-welcome-to-web-30" class="text-4xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Welcome to WEB 3.0!</h1><p>cwray written with ❤️ in Shanghai.</p><p>Feb. 2022</p>]]></content:encoded>
            <author>cwray-s-lab-for-web-3@newsletter.paragraph.com (cwray's Lab for Web 3)</author>
        </item>
    </channel>
</rss>