<?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>serendipitously</title>
        <link>https://paragraph.com/@serendipitously</link>
        <description>Ideas, explorations, resources, and lessons learned. Because sharing is caring.</description>
        <lastBuildDate>Tue, 28 Jul 2026 15:30:59 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>serendipitously</title>
            <url>https://storage.googleapis.com/papyrus_images/3cf1797d06e64a346dd077ea4a596a88</url>
            <link>https://paragraph.com/@serendipitously</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[nftsave - NFTs (self) custody all the way]]></title>
            <link>https://paragraph.com/@serendipitously/nft-save</link>
            <guid>3wcW0Zm66ekIbJJW5tMh</guid>
            <pubDate>Wed, 29 May 2024 00:00:00 GMT</pubDate>
            <description><![CDATA[Collect NFT metadata from your wallets, pin ipfs content to your local node, download images, find out interesting things about your NFTs from an SQLite database. And python tips.]]></description>
            <content:encoded><![CDATA[<p>I did <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/hardymathieu/nftsave">a thing</a>. And I wanted to make it public. The below is essentially the Github's readme, but it's much nicer to read it here.</p><div class="relative header-and-anchor"><h2 id="h-why">Why?</h2></div><p>"NFTs are just pointers to a server." Often true, but if that "server" is the ipfs, then you can actually (self) custody the files as well as the Non-Fungible Token. I'd been meaning to find a way to do that "at scale" and after finding no reasonable existing solution, decided to whip it up myself. Because "don't trust, verify", "Not your key, not your coins", and all that. </p><p>(If unconvinced, learn more about why NFTs are awesome from <a target="_blank" rel="nofollow" class="dont-break-out" href="https://6529.io/education/tweetstorms/"><u>Punk6529</u></a>.)</p><div class="relative header-and-anchor"><h2 id="h-what-is-it">What is it?</h2></div><p>Collect NFT data from your wallets, pin ipfs content to your local node, download images, find out interesting things about your NFTs from an SQLite database.</p><p style="text-align: start">It's basically connecting two APIs together (Opensea =&gt; IPFS), with some interesting side-effects.</p><div class="relative header-and-anchor"><h2 id="h-disclaimer">Disclaimer</h2></div><p>I can't really code <span data-name="yum" class="emoji" data-type="emoji"><img src="https://cdn.jsdelivr.net/npm/emoji-datasource-apple/img/apple/64/1f60b.png" draggable="false" loading="lazy" align="absmiddle"></span> <br>Or really can't code. <br>I'll let you judge.</p><p style="text-align: start">If you do, you'll figure it out soon if you start looking at the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/hardymathieu/nftsave">files</a>. So I might as well come out now. This was all put together with the help of various LLMs who helped me translate from English to Python. And, surprisingly, it runs.</p><p style="text-align: start">That's all I need it to do. It runs and it gets me my NFT data as intended.</p><p style="text-align: start">It's likely quite inelegant, It's probably super inefficient. I haven't tried following good practices (even the ones I know about) but the objective was to get it running. I can now speak computer (if we keep the analogy, probably with the fluency of a 3 year old), and get it to do my bidding (just like I do my 3 year old's if he asks nicely), and that's awesome. Completely new unlock. I have no illusion that it's turned me into a dev. It hasn't. But it did allow me to go beyond using just the terminal/basic bash scripts/no code tools I never managed to do my bidding/GUI. And that's quite interesting. And while the LLMs did do a lot of the work, I did pickup quite some new skills when putting it together (learning about venv, the SQlite db, SQL queries, Python with cron, IPFS and its API...); and that's always nice.</p><p style="text-align: start">Maybe I'll look into optimizing it, although for these sort of things I enjoy 0 -&gt; 1 more than 1 -&gt; 1.5; so probably not. If you, dear reader, on the other hand do enjoy perfecting things, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/hardymathieu/nftsave"><strong>contributions </strong></a><strong>are very welcome!</strong></p><p style="text-align: start"><strong>I'm just sharing it because it might help someone else (1) custody their own NFTs so they can safeguard things they care about (2) realize that LLMs are pretty good at translating EN to Python and that you can get computers to do things for you if you leverage the power of that translation engine. Which I think are both worthwhile things to share.</strong></p><div class="relative header-and-anchor"><h2 id="h-how-i-use-it">How I use it</h2></div><p>I have cron jobs that run each of the scripts, in the right sequence, so as to achieve the ojective. It's easy, you edit your crontab everything just runs on a schedule.</p><div class="relative header-and-anchor"><h2 id="h-whats-in-it">What's in it?</h2></div><p>Basically 5 steps: Ask Opensea for everything you hold &gt; extract the CIDs &gt; put it all in a database &gt; Pin the CIDs to your IPFS node &gt; download all the images.</p><div class="relative header-and-anchor"><h3 id="h-1-opensea-to-csv">1/ Opensea to csv</h3></div><p style="text-align: start"><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/hardymathieu/nftsave/blob/main/opensea2csv.py"><u>This one</u></a></p><p style="text-align: start">Uses the <a target="_blank" rel="nofollow" class="dont-break-out" href="https://docs.opensea.io/"><u>Opensea API </u></a>to get all the NFTs I have on all the wallets I give it for all the chains I want (that Opensea supports). And lists it all in a CSV file for use later, and a txt file with a list of everything the run collected, for safekeeping.</p><div class="relative header-and-anchor"><h3 id="h-2-extract-cids">2/ Extract CIDs</h3></div><p style="text-align: start"><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/hardymathieu/nftsave/blob/main/extractcid.py"><u>It's here</u></a></p><p style="text-align: start">Now that I have all the info from OpenSea, I need to extract the CIDs I will later pin to my ipfs node, whether in the "metadata" or "image" fields. Some of it is in base64 so that needs to be translated. That gets written to another csv file</p><div class="relative header-and-anchor"><h3 id="h-3-pushing-it-all-to-a-database">3/ Pushing it all to a database</h3></div><p style="text-align: start"><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/hardymathieu/nftsave/blob/main/all2db.py"><u>Can be found here</u></a></p><p style="text-align: start">At this step, we read the nfts.csv file and the nft_cids.csv file, join them with the unique_key we created, and turn that all into a SQLite database. Because that's easier to play with than 2 csv files. As noted below, I could have just gone and written to an SQLite database for the two steps above as well. But I didn't know about SQlite when I wrote those scripts, and didn't really feel like rewriting them because they work.</p><div class="relative header-and-anchor"><h3 id="h-4-pinning-it-all-to-my-ipfs-node">4/ Pinning it all to my IPFS node</h3></div><p style="text-align: start"><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/hardymathieu/nftsave/blob/main/topin.py"><u>It's what this does</u></a></p><p style="text-align: start">Since IPFS (kubo) has <a target="_blank" rel="nofollow" class="dont-break-out" href="https://docs.ipfs.tech/reference/kubo/rpc/"><u>an RPC API</u></a>, we can use that to read the db and pin very CID we encounter. There was a python client implementation I never managed to get to work so I'm just doing the API calls directly. It works and it's really easier to understand.</p><p style="text-align: start">I find ipfs to be super confusing but I think I got it all to work. I now have about 2GB of "pinned" data (that don't show up in the "files" section of the GUI client, because that's apparently the <a target="_blank" rel="nofollow" class="dont-break-out" href="https://docs.ipfs.tech/concepts/file-systems/"><u>MFS</u></a> and it's something else for some reason).</p><p style="text-align: start">I didn't go the complicated route and I recursively pin everything. I figured that way I'm doing a public service to all of the other owners of the same collections I'm holding. I mark it as "pinned" in the database so I don't try doing that again at the next run.</p><div class="relative header-and-anchor"><h3 id="h-5-downloading-all-images">5/ downloading all images</h3></div><p style="text-align: start"><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/hardymathieu/nftsave/blob/main/dl_images.py"><u>Like so. Because why not?</u></a></p><p style="text-align: start">This is just so I can display them on my TV or find them easily if needed. It doesn't actually "back them up" since the authoritative server is the one referenced in the NFT metadata. And if the media at that link is taken down, there's no way I can prove I had downloaded it beforehand. That's why onchain or ipfs NFTs are vastly superior to those pointing to a company server somewhere. But sometimes NFTs are just fun and you don't care how long their media stays only. They're still a marker that something happened at sometime. And I'll still have the media for my own enjoyment if I want to. Don't overthink it. I mark it as downloaded in the DB so I don't redownload it at the next run.</p><div class="relative header-and-anchor"><h2 id="h-obvious-changes-to-make-if-you-want-to-improve-it">Obvious changes to make, if you want to improve it</h2></div><ul><li><p>Don't write your API keys in the script file, use <a target="_blank" rel="nofollow" class="dont-break-out" href="https://help.openai.com/en/articles/5112595-best-practices-for-api-key-safety#h_a1ab3ba7b2"><u>environment variables</u></a> instead</p></li><li><p>Use the SQLite db from the start instead of relying on csv files initially. I only learned about SQLite after I had already created the first two scripts. And I didn't want to go back and change everything. It works :)</p></li><li><p>Make all the variables much easier to find (wallets, chains, API Keys,...) so it's easier to maintain -- but there aren't that many, it's quite manageable (and indicated in the comments of the code).</p></li><li><p>If one thing requires that another thing be finished, build that into the script (as opposed to scheduling cron jobs naively 6 hours apart as "that should be enough") -- I found out I can use "<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="http://subprocess.call"><u>subprocess.call</u></a>" to create 1 file that will quite naively run the 5 scripts sequentially. That's more than enough for my needs and I can just create 1 cron job instead of 5, so I'm now using that :)</p></li><li><p>Make sure everything (csv, db, logs,...) gets outputted/created inside the folder where the script it running or at least someplace more manageable than /home/hardymathieu. Because it can get a little messy. And the backup config (rsync) would be easier if there was more order.</p></li><li><p>Find an alternative to the OpenseaAPI just in case I can't rely on it anymore one of these days. Or to get data from more chains (Gnosis would be nice). I'm not going to run a node for each (<em>gasp</em>) so it would likely need to be another marketplace / infra provider with convenient APIs (Blur's are currently invite-only; <a target="_blank" rel="nofollow" class="dont-break-out" href="https://docs.alchemy.com/reference/nft-api-quickstart"><u>Alchemy</u></a> could be useful but currently it's easier just with Opensea)</p></li></ul><div class="relative header-and-anchor"><h2 id="h-psa-a-note-if-like-me-youre-newish-to-python-and-shy">PSA: A note if, like me, you're new(ish) to Python, and shy</h2></div><p>The language (python) is great. Supported everywhere I could think of, docs are good, large community, and hence the LLMs got plenty of training data. But managing where it runs and the conflicts between all the things you install with "pip" is an incredible PITA. <a target="_blank" rel="nofollow" class="dont-break-out" href="https://x.com/NickADobos/status/1792180024281579719"><u>See here for a great example.</u></a> I have had issues with that forever.</p><p style="text-align: start">I discovered 2 amazing things that really solve that:</p><ul><li><p>(1) <strong>colab.google.com</strong> : super easy notebooks where you can just get to writing code without worrying about the infra. Thanks Google for all the free compute. I do all of my prototyping there. It works in 99.9999% of the cases where I need it. Obviously it can't work with my ipfs node (because it's not exposed to the internet, <a target="_blank" rel="nofollow" class="dont-break-out" href="https://docs.ipfs.tech/reference/kubo/rpc/"><u>as it shouldn't be</u></a>) but for steps 1,2,3 and 5 that's where I first wrote all the code. The tweaking required when porting it over to my actual computer is absolutely minimal. Especially with the second amazing thing.</p></li><li><p>(2) <strong>venv</strong>, and right now I think it's the best thing after sliced bread.</p></li></ul><p style="text-align: start">I'd actually learned of <a target="_blank" rel="nofollow" class="dont-break-out" href="https://docs.python.org/3/library/venv.html"><u>venv</u></a> a while back, and it felt a little intimidating. It turns out, once you actually try it, it's really not. It gets you one Python environment in one folder. That's it, and that's awesome.</p><p style="text-align: start">Just so you don't have to go and hunt down a guide on using venv, here is all you really need to know:</p><div class="relative header-and-anchor"><h2 id="h-to-create-the-venv-in-linux-you-do">To create the venv in Linux you do</h2></div><pre data-type="codeBlock" language="shell"><code>python -m venv /home/hardymathieu/nftipfs</code></pre><p style="text-align: start">That creates everything you need to run python thingies into one isolated, dedicated folder</p><div class="relative header-and-anchor"><h2 id="h-then-to-pip-install-stuff-you-do">Then, to "pip install" stuff, you do</h2></div><pre data-type="codeBlock" language="shell"><code>/home/hardymathieu/nftipfs/bin/python /home/hardymathieu/nftipfs/bin/pip install YOUR_PACKAGE</code></pre><p style="text-align: start">And it won't conflict with anything else you might have done in any other project. It's like a little container for that project. Think of it like a PortableApp or a docker container.</p><div class="relative header-and-anchor"><h2 id="h-to-run-your-py-files">To run your .py files</h2></div><p style="text-align: start">(assuming they're in the same folder)</p><pre data-type="codeBlock" language="shell"><code>/home/hardymathieu/nftipfs/bin/python /home/hardymathieu/nftipfs/yourfile.py</code></pre><div class="relative header-and-anchor"><h2 id="h-venv-and-cron">venv and Cron</h2></div><p style="text-align: start">To make a .py script run correctly with cron, just add this at the top of your .py file, so that bash knows how to run it.</p><pre data-type="codeBlock" language="python"><code><span class="hljs-comment">#!/home/hardymathieu/nftipfs/bin/python </span>
<span class="hljs-comment">#-*- coding: utf-8 -*-</span></code></pre><p style="text-align: start">and make it executable</p><pre data-type="codeBlock" language="shell"><code><span class="hljs-meta prompt_">$ </span><span class="bash">sudo <span class="hljs-built_in">chmod</span> +x /home/hardymathieu/nftipfs/opensea2csv.py</span></code></pre><p style="text-align: start">then add the script to crontab</p><div class="relative header-and-anchor"><h1 id="h-backup">Backup</h1></div><p style="text-align: start">To make sure you don't lose any of your hard work, and information gathered by all the daily cron jobs, use rsync and create a backup of the nfts.csv, nft_cids.csv, SQLite database, .ipfs folder you might also want to backup all the .py files, and (if they aren't in the same place) possibly the folders where you have your python venv</p>]]></content:encoded>
            <author>serendipitously@newsletter.paragraph.com (Mathieu Hardy | hardymathieu.eth)</author>
            <category>crypto</category>
            <category>wallet</category>
            <category>resources</category>
            <category>nft</category>
            <category>tutorial</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/80566251c3539d19eb0742756538237a.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Exploring Wallets]]></title>
            <link>https://paragraph.com/@serendipitously/what-is-your-wallet</link>
            <guid>xuXIxXsq86AxUniDYjhv</guid>
            <pubDate>Tue, 21 Feb 2023 00:00:00 GMT</pubDate>
            <description><![CDATA[Today I have a very hard time recommending wallets to anyone because I understand the shortcomings of most solutions and I know people won't be very happy with what's available. So what would be good?]]></description>
            <content:encoded><![CDATA[<p>I&apos;m pretty sure this is the year (smart)wallets really break through. I already said it <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://paragraph.xyz/@serendipitously/themes-thoughts-2023">here</a>.</p><p>I think it&apos;s important we get those, because we&apos;re never going to on-board the world on-chain using Seed Phrases and Ledgers. They&apos;re scary and they&apos;re clunky to use. </p><p>I <strong>want</strong> everyone to move off of exchanges and to a self-custodial model.</p><p>I also <strong>believe </strong>that if we did manage to give everyone a key-pair we could unlock crypto&apos;s latent potential. There&apos;s the obvious $ aspect, but it would also allow everyone to have an identity (Sign In With Ethereum, Lens,...), vote on Snapshot proposals (direct democracy?), use encrypted messaging without overlords (xmtp), get <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://paragraph.xyz/@serendipitously/non-fungible-thesis">NFTs of everything</a>,...</p><p><strong>But today I have a very hard time recommending anything</strong> to anyone because I understand the shortcomings of most solutions and I know people won&apos;t be very happy with what&apos;s available.</p><p>Here&apos;s what I&apos;d like to see vs what I&apos;m seeing and where the trade-offs are. I&apos;ll keep documenting as time goes by.</p><h1>What I&apos;d like to see</h1><div><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.xyz/editor/callout/information-icon.png" class="callout-button"/><div class="callout-content"><div><p>Summary of the list below:</p><ul><li><p>No seed-phrase</p></li><li><p>Understanding what happens if the provider goes &quot;poof&quot;</p></li><li><p>Easy transactions</p></li><li><p>Readable transactions, attack protection</p></li><li><p>Mobile-first</p></li><li><p>Start simple and grow with me</p></li><li><p>Support multiple addresses / accounts</p></li><li><p>Customisable signing</p></li><li><p>Cross-chain</p></li><li><p>Social</p></li><li><p>No-brainer on-off ramp</p></li><li><p>(more) Useful stuff built in so I don&apos;t have to think about it too much</p></li><li><p>Bonus: rewarding &amp; opens channel to a CEX</p></li></ul></div></div></div></div><p>More or less in order of importance</p><ul><li><p><strong>No seed-phrase</strong></p><ul><li><p>That&apos;s #1. If a wallet requires a Seed Phrase I can&apos;t recommend it. It takes over 3 hours to explain what it is and how to keep it safe. Total non-starter. Everything else is somewhat negotiable, but this really isn&apos;t.</p></li></ul></li><li><p><strong>Understanding what happens if the provider goes &quot;poof&quot;</strong></p><ul><li><p>With seed phrases, if your wallet provider ends service for whatever reason, you just put those 12 words in any other wallet and you&apos;re back. That&apos;s a nice model. But since no one knows how to secure those 12 words, it&apos;s only nice in theory.</p></li><li><p>With smart contract wallets or MPC solutions, you&apos;re not <em>that</em> independent. Which is reassuring but means you need to understand what happens if you trusted sidekick disappears.</p><ul><li><p>For example, this is how <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://support.argent.xyz/hc/en-us/articles/360002733217-How-to-move-assets-out-of-Argent-using-another-Ethereum-wallet-AKA-the-Emergency-Kit-">Argent</a> does it. This is <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://zengo.com/how-zengo-guarantees-access-to-customers-funds/">ZenGo</a>.</p></li></ul></li></ul></li><li><p><strong>Easy transactions</strong></p><ul><li><p>This means that you can pay for &quot;gas&quot; in whatever token you happen to have. Most people don&apos;t start by getting gas tokens. Nor should they. This really needs to be abstracted away.</p></li><li><p>Transaction should be batched, you shouldn&apos;t have to worry about nonces,...I know this means it will have to be a smart wallet / account abstraction wallet, and that&apos;s fine.</p></li></ul></li><li><p><strong>Readable transactions, attack protections</strong></p><ul><li><p>No one understands what&apos;s written in Metamask, so it needs to be turned readable (<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://rabby.io">rabby.io</a> and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://joinfire.xyz">joinfire.xyz</a> are interesting) and the legitimacy of the transaction should be checked (<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://harpie.io">harpie.io</a>&apos;s RPC solution is interesting).</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://Revoke.cash">Revoke.cash</a> - like feature or just &quot;closing channels&quot; so you&apos;re not long-term exposed to SC risk.</p></li></ul></li><li><p><strong>Mobile first</strong></p><ul><li><p>Wallet Connect is for the web</p></li></ul></li><li><p><strong>Start simple and grow with me</strong></p><ul><li><p>It&apos;s likely someone&apos;s first interaction with Crypto is going to be fairly &quot;basic&quot;. They&apos;re going to buy or get gifted 20€ worth of something in crypto, or receive a POAP for attending a thing, or get an NFT with a &quot;real life&quot; purchase, or play a game and get an item, or get a Web3 social or Reddit profile. For that they need something real simple.</p></li><li><p>Then their (Web3) online presence will grow, they&apos;ll get more items, move more money on chain, go interchain,... and they would ideally like to keep that same &quot;wallet&quot; and not move everything over to someplace else. They should be able to go to the settings and &quot;power up&quot; their wallet.</p></li></ul></li><li><p><strong>Support for multiple addresses / accounts (at least 3)</strong></p><ul><li><p>Signing is always risky, and you don&apos;t want to keep all your eggs in one basket.</p></li><li><p>Nobody wants to easily broadcast their crypto net-worth to the world 100% of the time.</p></li></ul></li><li><p><strong>Customisable signing</strong></p><ul><li><p>If I&apos;m sending 10€ to Gitcoin Grants from my &quot;everyday&quot; account, I can probably just approve with the Biometrics on my phone. But if I&apos;m moving an NFT worth 20K€ from my vault, I probably want 2FA and a friend to validate from a remote location.</p></li></ul></li><li><p><strong>Cross-chain</strong></p><ul><li><p>Ideally, it supports all the chains, everywhere. Because you never know where people want to go, and you really don&apos;t want them to be asking themselves the &quot;custody&quot; question more than once. </p></li><li><p>Since the &apos;ideal&apos; seems to be really far off, an acceptable trade-off would be to have Bitcoin + all the EVM chains. Further &quot;trading-off&quot;, I&apos;d accept BTC+Ethereum+Ethereum Layer 2&apos;s. Yes, this leaves a lot of cool options off the table, but it does cover a pretty large swath of the crypto market and places where there&apos;s actually something to do.</p><ul><li><p>Everyone who starts in crypto wants to buy some Bitcoin.</p></li><li><p>Crypto is risky enough, I&apos;m not going to suggest wBTC or tBTC instead of BTC. I can&apos;t quite see why you&apos;d want to add a layer of risk if you don&apos;t have to.</p></li></ul></li></ul></li><li><p><strong>Social</strong></p><ul><li><p>It might very soon be the best reason to open your wallet daily. Your wallet can show you the latest on Lens and Farcaster and allow you to send DMs over XMTP.</p></li><li><p>Push protocol for native notifications from everything you care about on-chain</p></li><li><p>Your &quot;daily wallet&quot; should come with an ENS subdomain (like Argent&apos;s and Coinbase&apos;s)</p><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://hardymathieu.argent.xyz/">Argent&apos;s</a> personal page with the ENS is genius, and this should be more broadly implemented</p></li></ul></li><li><p>Daily wallet also comes with a free NFT PfP </p></li></ul></li><li><p><strong>No-Brainer on/off ramp</strong></p><ul><li><p>I actually think MtPellerin currently has the best on-ramp experience in Crypto (haven&apos;t tried off-ramping yet). I feel this is actually solved. It should just be natively integrated into the wallet.</p></li></ul></li><li><p><strong>(more) Useful stuff Built in so I don&apos;t have to think about it too much</strong></p><ul><li><p>Swaps and &quot;table-stakes&quot; DeFi protocols should be easily accessible from within the app (Liquid stake, lend, borrow)</p></li><li><p>Bridging to L2 and sidechains, and a &quot;gas top-up&quot; <em>à-la-rabby&quot;</em></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://delegate.cash">delegate.cash</a> so Vault never signs, Wallet Connect to connect to everything, Easy DCA with MtPellerin &amp; Mean_Fi</p></li><li><p>CO2 offset with Klima</p></li><li><p>Gitcoin Grants integration</p></li></ul></li><li><p><strong>Bonus Points</strong></p><ul><li><p><strong>Rewarding</strong>: uses MEV-Share so the user and the wallet both make money on their transactions when it&apos;s possible.</p></li><li><p><strong>Never custodial again: </strong>on the off-chance that DeFi can&apos;t satisfy all your needs, you should be able to open a &quot;channel&quot; from your wallet to an exchange (Kraken, Coinbase, Binance or whatever). You would then be able to trade on the exchange and they could &quot;simply&quot; take the money out of your wallet as needed and deposit as needed. No need to actually &quot;deposit&quot; or &quot;withdraw&quot; from the exchange.</p></li></ul></li></ul><h1>What exists, and how it compares</h1><p>Only focusing on the ones without seed phrases. Because I&apos;m thinking about what I&apos;d recommend to my mum.</p><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://Argent.xyz">Argent.xyz</a> . The OG, my favourite so far, I&apos;ve been using it since 2020. This is the only Ethereum/EVM wallet (aside from a Ledger) I have ever recommended.</p><ul><li><p>No seed phrase, access to ZKSync, good protection, mobile first, a lot of good things easily accessible,<strong><em> very smooth </em></strong>(as in, by far one of the most stable and pleasant app to use in Crypto).</p></li><li><p>But only has one account, relatively expensive to deploy on Ethereum, only Ethereum and ZKsync (for now), suffers from being a smart contract (it&apos;s not their fault, but for example there is no XMTP integration with SC wallets and other protocols also don&apos;t support SCW)</p></li><li><p>I know the roadmap is full of interesting things and will keep watching closely, but I also think there are some things (like Polygon PoS) they will likely never support.</p><ul><li><p>I don&apos;t want my mum to accidentally give out her ETH address to someone sending tokens on Polygon or call me asking why she can&apos;t connect to &quot;The Smurfs Society&quot; game so I&apos;m not putting it in the hands of people as a &quot;general purpose&quot; wallet. I&apos;ll tell them to use it in very specific circumstances and not try to have it do anything else.</p></li></ul></li></ul></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.obvious.technology/">Obvious!</a> It&apos;s got a seed-phrase but it&apos;s also got <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.obvious.technology/blogs/say-goodbye-to-seed-phrase-management-with-obvious-and-silence-labs">seedless recovery</a>, so I&apos;ll allow it because it feels kind of &quot;seedless&quot;. </p><ul><li><p>there&apos;s no BTC, but it does support a remarkable number of EVM chains. Since it&apos;s still seed-based, there&apos;s no reason why they couldn&apos;t add Bitcoin.</p></li><li><p>But since it&apos;s seed-based, once could reuse the seed with TrustWallet or Exodus to get in on the Bitcoin action. I&apos;m not as worried about seed phrase security as I am about recovery, so that could be an option. Not for my mum, but a somewhat tech savvy friend.</p></li></ul></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://sequence.app/auth">Sequence</a>: sign up as you would on Web2, supports quite a few EVM chains (Ethereum, Polygon, Arbitrum 1 &amp; Nova, Optimism, Avalanche, and BNB Smart Chain) with more to come. It has quite a lot to like (switches network by itself, for example) but feels a lot less &quot;noob friendly&quot; than Argent. And I can&apos;t find what happens if they go bankrupt.</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out dont-break-out" href="http://Linen.app">Linen.app</a> built on top of safe, it&apos;s interesting. it&apos;s mobile-first and on 3 chains. But it doesn&apos;t have swaps, and no wallet-connect. So it&apos;s really just kind of a dumb safe for now. But I like where it&apos;s going.</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out dont-break-out" href="http://wallet.ambire.com">Ambire</a> . </p><ul><li><p>Supports quite a few EVM chain</p></li><li><p>Web app is not intuitive to use, signup flow is weird, and there&apos;s no mobile offering. The $Wallet token feels like an unnecessary (but obtrusive) gimmick.</p></li></ul></li><li><p><strong>Keeping my eye on</strong></p><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://Pillar.fi">Pillar.fi</a> . It still uses a seed-phrase (but I&apos;m not sure why) but shouldn&apos;t for much longer. I find it clunky, the app is a little buggy, but it&apos;s promising and the thing they&apos;re building on (<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://etherspot.io/">etherspot</a>) is definitely interesting.</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://braavos.app/">Braavos</a>. Only on Starknet, but lots of cool ideas.</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://zengo.com/">ZenGo</a> . There are no seed-phrases and it supports quite a few chains, but no ETH L2s.</p></li><li><p>Solana Saga &amp; ethOS because if we actually could use the &quot;secure element&quot; in our phones to hold and use the private keys, most of these problems would be solved already.</p></li><li><p>Exodus and TrustWallet: they&apos;re pretty good wallets, but they require managing seed phrases. If they could improve in the direction of &quot;Obvious&quot;, or be used in conjunction with a seed managed by &quot;Obvious&quot;.</p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://blog.instadapp.io/avocado-non-custodial/">Avocado</a> by Instadapp, because the concept of &quot;gas abstraction&quot; and &quot;chain abstraction&quot; is really interesting.</p></li></ul></li></ul><h1>So, which wallet is my mum getting?</h1><p>None. Because nothing really satisfies it all. And there is really nothing for her to do on-chain right now anyways.</p><p>To everyone else, I&apos;ll keep recommending one - or several - of the above, but making sure they undersand the caveats.</p><p>And I&apos;ll keep my eyes peeled for something better. The <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://litprotocol.com/community">tech primitives are here</a> so it shouldn&apos;t take very long 🤞.</p><p></p>]]></content:encoded>
            <author>serendipitously@newsletter.paragraph.com (Mathieu Hardy | hardymathieu.eth)</author>
            <category>crypto</category>
            <category>wallet</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/dd74fceacf0a65c239eeef3274890e5b.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[Crypto Themes & Thoughts of 2023]]></title>
            <link>https://paragraph.com/@serendipitously/themes-thoughts-2023</link>
            <guid>c9zbttRlkeCWRHeNjWNv</guid>
            <pubDate>Mon, 20 Feb 2023 00:00:00 GMT</pubDate>
            <description><![CDATA[A living list of stuff I'm looking at through time. Definitely N.F.A., and "loosely held".]]></description>
            <content:encoded><![CDATA[<h2>February 2023</h2><h3>Because it seems their time has come</h3><p><strong>These two feel like the most important</strong></p><ul><li><p>ETH scaling with Layer 2, sometimes with privacy: Arbitrum, zkSync, Starknet, Aztec, Polygon Hermez,...</p><ul><li><p>We&apos;ll probably see relatively <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://l2beat.com/scaling/tvl">low-value-add L2s</a> like we saw with Alt-L1s last cycle, where most of the TVL is the L2&apos;s own token. Those are likely not worth anyone&apos;s time.</p></li></ul></li><li><p>SmartContract Wallets, or Smart Wallets, or &quot;the future of wallets&quot; because <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://twitter.com/punk6529/status/1461742366696652809?lang=en">&quot;Seed-Phrases&quot; kill adoption</a>. Currently they&apos;re all &quot;missing&quot; something, but they&apos;ll get there.</p><ul><li><p>Check out <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://Argent.xyz">Argent.xyz</a> for the closest thing to the ideal experience (or <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://linen.app">linen.app</a>, Safe (gnosis), <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.ambire.com/">Ambire</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.biconomy.io/">biconomy</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://sequence.app/auth">Sequence</a>,  <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://zallo.io"><u>zallo.io</u></a><u>, </u><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.pillar.fi/">Pillar</a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://braavos.app/">Braavos</a> or <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.coindesk.com/web3/2023/01/31/immutablex-to-launch-all-in-one-passport-solution-to-onboard-new-gamers-into-web3/">this article</a> for other examples)</p></li></ul></li></ul><p><strong>This is Interesting</strong></p><ul><li><p>Privacy Tech:</p><ul><li><p>Aztec, Oasis, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://vitalik.ca/general/2023/01/20/stealth.html">Stealth addresses</a></p></li><li><p>ZK proofs for privacy: Sismo.io</p></li></ul></li><li><p>Liquid Staking: Lido, Rocketpool, and DVT (Obol)</p></li><li><p>Modular setup &amp; Shared Security: EigenLayer, Celestia, Cosmos, Fuel</p></li><li><p>Social Experiments: Optimism &amp; Canto</p></li><li><p>Social Networks: Lens, Farcaster, Nostr</p></li><li><p>#RealYield: GMX et al.</p></li><li><p>Regen: with VCM markets first (Klima)</p></li><li><p>&quot;pure information&quot; assets (RWA) moving on-chain first: VCM, Indices (ie:QQQ is on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://Gains.Trade">Gains.Trade</a>), Loyalty points</p></li></ul><h3>Proll&apos;y Bullcrap</h3><ul><li><p>AI coins</p></li><li><p>Memechains</p></li><li><p>A new Alt-L1 for no good reasons (written in &quot;move&quot;, higher TPS,...)</p></li></ul><p></p>]]></content:encoded>
            <author>serendipitously@newsletter.paragraph.com (Mathieu Hardy | hardymathieu.eth)</author>
            <category>crypto</category>
            <category>themes</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/dcb7ebd6f58f28fc9d22a90d14111031.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[Punk6529's Non Fungible Thesis]]></title>
            <link>https://paragraph.com/@serendipitously/non-fungible-thesis</link>
            <guid>LBh8gAKCDrMkRoYI67jE</guid>
            <pubDate>Wed, 15 Feb 2023 00:00:00 GMT</pubDate>
            <description><![CDATA[I wanted to have a link to which I could point people to so they can quickly discover Punk6529's ideas. This is now it.]]></description>
            <content:encoded><![CDATA[<p>I have enjoyed Punk6529’s interviews and content for over a year. I took the opportunity of his appearance on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://podcast.banklesshq.com/158-youre-not-bullish-enough-on-nfts-with-punk6529"><u>Bankless’s podcast</u></a> to try and sum-up, his views.</p><p>He&apos;s got tweetstorms and podcasts appearances, but those aren’t format most people can “grok” quickly. I’ve often wished there was something I could point them to so they can quickly get the gist and have more resources at their disposal.</p><p>So I made an attempt. It took the Bankless Podcast Episode 158, ran it through Whisper TTS and then re-cut it to get as close to a short article written in Punk’s own words as possible. This isn’t exhaustive, and it’s re-ordered so it’s easier to follow along, but I tried to keep it as <em>verbatim </em>as possible. And I added timestamps so you can find <em>roughly</em> where the content is in the podcast.</p><hr><p style="text-align: center"><strong>Table of Content</strong></p><ul><li><p>Why we need Crypto</p><ul><li><p>We have built a world where network effects lead to centralisation</p></li><li><p>Centralisation leads to the erosions of freedom</p></li><li><p>Crypto could win for the same reasons</p></li></ul></li><li><p>Why such a vocal NFT lover? A Multi-Part Theory</p><ul><li><p>It’s the first real consumer app for crypto</p></li><li><p>We need to move while it’s new</p><ul><li><p>It’s a blue-ocean, not heavily regulated</p></li><li><p>Incentives are aligned with others</p></li><li><p>Regulators don’t actually want Facebook to own 50% of the economy</p></li></ul></li></ul></li><li><p>It’s not Invevitable</p></li><li><p>(NF)Advice from Punk6529: I found out by trying, and you should too</p></li><li><p>Related content for thinking about this further</p></li></ul><hr><h1>Why we need Crypto</h1><h2>We have built a world where network effects lead to centralisation</h2><div><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.xyz/editor/callout/information-icon.png" class="callout-button"/><div class="callout-content"><div><p>between 09:46 &amp; 14:49</p></div></div></div></div><p><strong><em>A world that digitizes and is structured on databases actually ends up centralizing and what people would think of as back-end technology choices that nobody in the social, political, sociological field has thought about for one second, actually end up reshaping the contours of society.</em></strong></p><p>We are increasingly reliant on Trusted Third Parties. Your life is organised and intermediated by thousands of centralized Databases - Bank Accounts, Email, Uber, Airbnb, Messages, Twitter, Hotel Bookings, National Identity.</p><h3>Centralisation leads to the erosions of freedom</h3><div><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.xyz/editor/callout/information-icon.png" class="callout-button"/><div class="callout-content"><div><p>between 25:55 &amp; 36:20</p></div></div></div></div><p><strong>What is happening is a progressive erosion of freedom that is happening very quietly, very much in the background, without anyone particularly thinking about it.</strong>  <strong>And it is being driven, it&apos;s the technological equivalent of “the medium as the message.</strong> And the medium in this case is large-scale, big data companies that have network effects. And then, secondarily, in some countries, governments.</p><p>And so, if you violate their terms of service, but honestly, if the CEO of Uber wakes up  and says, I don&apos;t like the look on that guy&apos;s face, you&apos;re off the platform. No due process, no what have you, because something that was decentralized in the physical world - hailing a taxi - is now fully centralized.  It is now becoming centralized with a centralized chokepoint. And sometimes the government might lean on private chokepoints.</p><p>The second bucket that has gone along with this is post 9-11, the U.S. has put an incredible amount of effort into AML and KYC. We have gone from a point where cash was viewed neutrally, to cash is now viewed with suspicion. There is no chance cash could have gotten launched today if it didn&apos;t already exist. And so the net effect is being shaped by the technology stack. The point is, this trend is showing no signs of stopping. It is not dramatically changing from day to day, but every day of the last 20 years it&apos;s going in one direction only. </p><p>And what happens at the end, the end state of this, is you will have X firms (where X is a number between 20 and 50, or 100 max) and Y government services (where Y is less than 10), which might include CBDC, and all of those very large databases will intermediate everything. <strong>And once that choke point exists, once that honeypot exists, there is a danger it will be exploited</strong>.</p><div><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.xyz/editor/callout/information-icon.png" class="callout-button"/><div class="callout-content"><div><p>36:20</p></div></div></div></div><p>And if you can shut down transactions, you shut down everything else, right?</p><blockquote><p>There are <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://twitter.com/punk6529/status/1494444624630403083?ref_src=twsrc%5Etfw%7Ctwcamp%5Etweetembed%7Ctwterm%5E1494444624630403083%7Ctwgr%5E692a6bb78500a31210722bca65f1dfb986ec9120%7Ctwcon%5Es1_&amp;ref_url=https%3A%2F%2Fwww.redditmedia.com%2Fmediaembed%2Fsvac5e%3Fresponsive%3Dtrueis_nightmode%3Dfalse"><u>no other constitutional rights in substance without freedom to transact</u></a></p></blockquote><p>And this infrastructure that is getting set up bit by bit, and it&apos;s getting set up not because business leaders of America are evil, that&apos;s not why it&apos;s happening. It is an artifact of the technology that is available to us, and that technology - the internet - leads to network effects.</p><h3>Crypto could win for the same reasons</h3><div><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.xyz/editor/callout/information-icon.png" class="callout-button"/><div class="callout-content"><div><p> 39:42 - 40:30</p></div></div></div></div><p>(...) “And so, exactly in the opposite way, if crypto survives, all crypto has to do is survive.</p><p>If crypto survives, its own network effects, its own technology architecture, its own way it shapes its social environment will be a huge counterweight to this.</p><p>The fundamental permissionlessness of the architecture will lead over time to significant, different, and in fact the opposite of what I&apos;m worried about, social structures around it, and that&apos;s very, very good, and that&apos;s what I believed before NFTs, right? The freedom to transact stuff was a pre-NFT theory.  It does not involve any NFTs, and I think it&apos;s really important, to be honest.</p><h1>Why such a vocal NFT lover? A Multi-Part Theory</h1><div><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.xyz/editor/callout/information-icon.png" class="callout-button"/><div class="callout-content"><div><p>42:54</p></div></div></div></div><p>I think NFTs are our best shot, or if not our best shot, an equally good shot as everything else combined, at achieving this decentralization.</p><h2>It&apos;s the first real consumer app</h2><ol><li><p>Until now we were re-product market fit, Because you&apos;re just talking about the technology. <strong>But the whole discussion in the NFT space is at the quote-unquote application layer. And this is a truism in technology: When you start talking about the application, not the technology, you are at the beginning of the consumerization.</strong></p></li><li><p><strong>Unlike every previous form of cryptoassets large organizations have an incentive to get involved in the NFT space.</strong></p></li></ol><h2>We need to move while it&apos;s new</h2><p>It’s important we do it while people think it’s a joke. For 3 reasons.</p><h3><strong>1 - Because it’s a blue Ocean, and not Heavily regulated</strong></h3><div><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.xyz/editor/callout/information-icon.png" class="callout-button"/><div class="callout-content"><div><p>01:05:20</p></div></div></div></div><p>The metaverse in a decade is going to be your all-encompassing ambient digital environment.</p><p>And if that is a centralized firm that controls that digital space, getting kicked out of  that digital space is like being cast out into the darkness.</p><p>And eventually when the hardware works, if these are backed by a centralized company, what you&apos;re going to have is not only everything we discussed so far, but biometric data, field of vision data, all streaming to one place. <strong>Once you have that honeypot, someone is going to abuse it.</strong></p><p>And so my view is we have a moment in time. That moment in time is two to three years. It&apos;s right now.  And it is while people think this is a joke.</p><div><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.xyz/editor/callout/information-icon.png" class="callout-button"/><div class="callout-content"><div><p>01:11:04</p></div></div></div></div><p>We&apos;re going to have a lot of digital objects. Our economy is not going to get less digital. It&apos;s going to get more digital.</p><p>The network effects for metaversy type stuff are not built yet.  Nobody has figured it out yet.  And so we have a period where the underlying technology or platform or API that will be  the network effect is up for grabs. So it could be, just to simplify, it&apos;s not exactly right, but to simplify, it could be  that everyone issues their digital objects to NFTs or everyone issues them as digital  collectibles on the Facebook Horizon API.</p><p><strong>Right now, Facebook has not won this technology shift.</strong></p><p>These things happen. Technology shifts. You have a new scramble, usually another firm wins. <strong>Here we have an opportunity to actually win a technology shift.</strong></p><p><strong>We have an opportunity that the default way to issue a digital object is an NFT.</strong></p><p>Is it an open question where you can store the database of arbitrary non-financial digital  objects?</p><p>Yes.</p><p>It&apos;s an open question.  It is an opportunity.</p><p>It is an opportunity we can win, not to have like 0.1% market share as we do in like payments and banking, but 70% market share.</p><p>An in-game sword on polygon in some blockchain game, is that something that today there&apos;s a huge federal apparatus to regulate the in-game objects in riot games?</p><p>No</p><p>So is there some huge federal apparatus to check what galleries in New York are selling and make sure the buyers don&apos;t buy overpriced Andy Warhol prints?</p><p>No</p><p>You don&apos;t have a very heavy regulatory infrastructure.</p><p>So my view is, to summarize, it is possibly our first true consumer application.</p><h3><strong>2 - because the incentives are aligned with other players</strong></h3><div><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.xyz/editor/callout/information-icon.png" class="callout-button"/><div class="callout-content"><div><p>01:15:44</p></div></div></div></div><p>it is possible you can tip over the large organizations to say, it is in our business interests, we will make more money issuing this digital wearable as an NFT than running  it through Facebook.</p><p>And one and two will work in tandem with each other.</p><h3><strong>3 - because regulators don’t actually want Facebook to own 50% of the economy</strong></h3><p>And it is in a part of the world that is not as threatening as to the state, right?</p><p>What here you get to say instead: “look, do you really want Facebook extracting 50% of the digital economy for the next 50 years?”</p><p>As a regulator, as a politician, does that sound like anything?</p><p>Maybe Facebook shouldn&apos;t own everything for the next 50 years, right?</p><p>It&apos;s an easier sell, right?</p><p>And possibly, possibly, question mark, possibly, we can actually have some productive relationship with the regulatory state in this regard.</p><h1>It&apos;s not inevitable!</h1><div><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.xyz/editor/callout/information-icon.png" class="callout-button"/><div class="callout-content"><div><p>01:24:36</p></div></div></div></div><p>I don&apos;t think it&apos;s inevitable.  Nothing in life is inevitable. Bad decisions get made by society and society goes back 30 years, right?</p><div><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.xyz/editor/callout/information-icon.png" class="callout-button"/><div class="callout-content"><div><p>between 56:04 &amp; 58:21</p></div></div></div></div><p><strong>Legislation could make crypto in general unusable. </strong></p><p>And so bucket one, I think there&apos;s a pathway contingent on, we don&apos;t end up with legislation  that makes crypto in general unusable.  Legislation that&apos;s going to come into place in January 1st, 2024, arguably makes crypto  unusable in the United States, right?  If you do a transaction, more than 10,000, it is a felony if you don&apos;t report, if you  do not report your counterparty&apos;s KYC information within 10 days, right?  It&apos;s absurd.  It passed the infrastructure bill last year. </p><p>It&apos;s the transposition of the cash requirement transaction to crypto, but it is written extraordinarily aggressively.</p><p>And I don&apos;t see how you could use actually a DeFi exchange if that comes into law, right? Like you don&apos;t know what the counterparty is.</p><p>It&apos;s a little bit more survivable in NFTs because what will happen is OpenSea will KYC or something so you can sell NFTs that are more than 10 ETH.</p><p>And do the reporting for you because like if they don&apos;t do the reporting for you, everyone&apos;s going to go to jail.</p><p>I mean, doing this report to counterparty in 10 days or it&apos;s a felony is a very, very strict rule, right?</p><p>They don&apos;t need to send everyone to jail, right?</p><p>They just need people to pull back, right?</p><p>People do not like committing felonies, right?</p><p>Saying like, oh, you&apos;re committing felonies is bad for adoption.</p><p>If you buy your, you know, whatever nice generative art online, you&apos;ve now committed a felony, it&apos;s very bad for adoption of crypto, right?</p><p>But it also means like when you&apos;re on the other side of an exchange where you don&apos;t know at all what the counterparty is, and you have more sense of what the counterparty is than an NFT, then you&apos;re doing it in a decentralized exchange, right?</p><p>Decentralized exchange, if this continues as is, are finished, right? </p><p>But they will have to become completely CEDEFI, KYC, blah, blah, to be compliant.  Anyway, so everything I’m saying here is contingent on crypto does not becoming unusable.</p><h1>(N.F.)Advice from Punk6529: I found out by trying, and you should too</h1><div><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.xyz/editor/callout/information-icon.png" class="callout-button"/><div class="callout-content"><div><p>between 15:18 &amp; 16:18</p></div></div></div></div><p>I have this general approach to technology that when you&apos;re not sure, you should just try it. Most errors on the technology side, like most people that start missing changes in technology, is because they try and read about it and figure out by reading about it if it makes sense.</p><p>And my experience is that just doesn&apos;t work. You can&apos;t read about, in summer 2013, about Bitcoin and say, oh, does Bitcoin make sense?</p><p>You have to download a node and send someone a Bitcoin, maybe on the other side of the world. And then you do it and say, oh, wow, that was amazing. I can&apos;t believe that just happened, right? </p><p><strong>People use PFP avatars. Let&apos;s use a PFP avatar and see what it feels like, right?</strong></p><hr><h1>Related content to go further</h1><ul><li><p>David Heinemeier Hansson : <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://world.hey.com/dhh/i-was-wrong-we-need-crypto-587ccb03"><u>I was wrong, we need crypto</u></a> or his interview on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.youtube.com/watch?v=cie-d3FsiYE"><u>Bankless</u></a></p></li><li><p>Punk6529 on A16Z : <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://web3-with-a16z.simplecast.com/episodes/nfts-use-cases-art-tech-adoption-mainstreaming"><u>https://web3-with-a16z.simplecast.com/episodes/nfts-use-cases-art-tech-adoption-mainstreaming</u></a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.youtube.com/watch?v=2Un_S1Z8yQo"><u>The world according to Punk 6529 on RealVision</u></a> (April 8 2022) and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://typefully.com/shivsakhuja/the-world-according-to-punk-6529-a-IlbYYJj"><u>a nice Mindmap summing up that interview</u></a></p></li><li><p>Jan 2023 <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.realvision.com/shows/raoul-pal-adventures-in-crypto/videos/the-world-according-to-punk6529-part-ii-gAoA?tab=details"><u>Punk6529’s second appearance on RealVision</u></a></p></li><li><p>6529 tweetstorms registry - <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://6529.io/education/tweetstorms/"><u>https://6529.io/education/tweetstorms/</u></a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://sites.libsyn.com/247424/size/5/?search=Josh+Rosenthal"><u>Crypto Renaissance and Crypto Revolution: Josh Rosenthal on Bankless </u></a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://sites.libsyn.com/247424/120-reinventing-the-internet-marc-andreessen-chris-dixon-of-a16z"><u>Andreesesen and Dixon on Reinventing the Internet</u></a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://6529.io">6529.io</a> for everything Punk#6529</p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/6d7fa4d3ec57a1d7fa1a83807b36033d.jpg" blurDataURL="data:image/jpeg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAEAAMDASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAf/xAAdEAACAgIDAQAAAAAAAAAAAAABBAIDAAUGESFR/8QAFQEBAQAAAAAAAAAAAAAAAAAABQb/xAAXEQEBAQEAAAAAAAAAAAAAAAABACEx/9oADAMBAAIRAxEAPwCfcsces2a90tk+bL9eixYSxM9zmrVOR9P2RxjGGBlSnL//2Q==" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p></p>]]></content:encoded>
            <author>serendipitously@newsletter.paragraph.com (Mathieu Hardy | hardymathieu.eth)</author>
            <category>crypto</category>
            <category>use cases</category>
            <category>thesis</category>
            <category>resources</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/e30ca8ea91af014bcc742039c34bdef1.jpg" length="0" type="image/jpg"/>
        </item>
        <item>
            <title><![CDATA[Market Fit ? Yes. Crypto use cases & looking at the future]]></title>
            <link>https://paragraph.com/@serendipitously/market-fit-yes-crypto-use-cases-and-looking-at-the-future</link>
            <guid>jpmJwXM8LWCp5A3DHB2l</guid>
            <pubDate>Mon, 30 Jan 2023 15:13:50 GMT</pubDate>
            <description><![CDATA[Dissecting each crypto startup, each chain, each DAO, each governance token would take many pages, and it&apos;s not quite the point.But, for those wh...]]></description>
            <content:encoded><![CDATA[<p>Dissecting each crypto startup, each chain, each DAO, each governance token would take many pages, and it&apos;s not quite the point.</p><p>But, for those who don’t yet see what crypto can bring to the table, here is a bird’s eye view of some use cases that are actually working today and where we think we will see more working tomorrow. Admittedly, the second part is a lot more speculative than the first. Neither is a comprehensive list, it is just meant to give an idea of the state of play &amp; direction of travel.</p><h1 style="text-align: start"><strong>Today</strong></h1><h2 style="text-align: start"><strong>(Decentralized) Finance</strong></h2><p style="text-align: start">Decentralized Exchanges (Uniswap chief amongst them). They create liquidity for tokens without the need for a central party in a way that wasn’t possible before. It has done over 1 trillion in volume over 3 years.</p><p style="text-align: start">Compound, Aave, Maker, allow you to lend and borrow against your assets without the need for an entity to sit in the middle and add fees and time to the process.</p><p style="text-align: start"><em>And if you take a look at Celsius, BlockFi and other Centralized Finance solutions that have recently collapsed, you might come out thinking that those DeFi alternatives are doing a pretty good job.</em></p><p style="text-align: start">Stablecoins: sending stable value around the world in minutes for pennies is amazing. It has a lot of drawbacks compared to the traditional banking systems but also has a lot of advantages. For rich people it’s worse than banking (sometimes), but for the not so rich it often allows them to do something which was previously not doable (<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://cointelegraph.com/news/twitter-and-stripe-roll-out-usdc-payout-program-for-creators-via-polygon"><u>like getting paid by Twitter through stripe</u></a>). Take a look at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.circle.com/hubfs/PDFs/2301StateofUSDCEconomy_Web.pdf?hsCtaTracking=4baaa56e-c84f-4e02-990b-3ba7994812ec%7C01d5168e-a22d-4138-91db-50cf8d657299"><u>Circle&apos;s &quot;State of the USDC economy&quot;</u></a> for an in-depth look.</p><p style="text-align: start">If you want more links to “the real world” (even if we could endlessly debate that concept), take a look at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://goldfinch.finance">goldfinch.finance</a> or <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://jia.xyz">jia.xyz</a> that lends to real businesses, helping liquidity flow across borders and accessing the developing world credit problem.</p><h2 style="text-align: start"><strong>(Decentralized) Science</strong></h2><p style="text-align: start">NFTs are also being used for IP in Decentralized Science at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://medium.com/molecule-blog/an-open-bazaar-for-drug-development-molecule-protocol-a47978dd914"><u>Molecule DAO</u></a>. In the same vein, for DeSci <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.vitadao.com/"><u>VitaDao</u></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://labdao.xyz/"><u>LabDao</u></a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://vibebio.com/"><u>Vibebio</u></a> might also be worth a look. Peer-reviewing scientific papers <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.thelancet.com/action/showPdf?pii=S0140-6736%2898%2990307-5"><u>was one of the first use cases identified for the internet in 1998</u></a> so don’t underestimate what all those smart people can do.</p><h2 style="text-align: start"><strong>(Decentralized) Real World or Digital Assets Marketplaces</strong></h2><p style="text-align: start">NFTs give physical properties to digital items (mainly, scarcity &amp; programmability). In a few short years, it has become a market trading close to a hundred billion. It’s mostly art (for now). But also a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://cointelegraph.com/news/anonymous-hacker-served-with-restraining-order-via-nft"><u>restraining order</u></a>.</p><p style="text-align: start">Braintrust is a decentralized talent network, which very much looks like a co-op.</p><p style="text-align: start"><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.nytimes.com/2022/02/06/technology/helium-cryptocurrency-uses.html#:~:text=On%20a%20basic%20level%2C%20Helium,long%20distances%20using%20radio%20frequencies."><u>Helium</u></a> has a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.readthegeneralist.com/briefing/helium"><u>very interesting way</u></a> of making a decentralized wireless network for IoT come to life</p><p style="text-align: start"><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://filecoin.io/"><u>Filecoin</u></a>: buy decentralized storage for your digital stuff for cheaper than at Amazon.</p><p style="text-align: start"><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://Toucan.earth"><u>Toucan.earth</u></a> &amp; <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://blog.hardy.digital/market-fit-yes-web-3-use-cases-looking-at-the-future/klimadao.finance"><u>KlimaDao</u></a>: bringing carbon markets on-chain. Recently cited by Mark Cuban on the Bankless podcast as the best use case for crypto.</p><p style="text-align: start"><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://twitter.com/arbitrum/status/1540441771485831169?s=20&amp;t=yTGqMZhfwcYRKOnVmtuYkg"><u>Norway</u></a>: Bring transparency into who owns what in private companies</p><h2 style="text-align: start"><strong>Customer / Owner Relationship Management (ORM vs CRM)</strong></h2><p style="text-align: start">Customers are no longer fungible! <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.salesforce.com/products/web3/nft/"><u>Salesforce</u></a>, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://saylcloud.com/"><u>Sayl</u></a>, and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://blog.hardy.digital/market-fit-yes-web-3-use-cases-looking-at-the-future/arianee.fr"><u>Arianee</u></a> all offer a way to build a community around your own or other’s digital assets.</p><h2 style="text-align: start"><strong>Skeptical?</strong></h2><p style="text-align: start">If ever the skeptic you might feel tempted to say that it’s all speculation and useless, feel free. But “someone” definitely finds it useful. And there are 30 million installs of Metamask and an estimated 100 million people dabbling in Crypto, and according to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://medium.com/electric-capital/electric-capital-developer-report-2021-f37874efea6d"><u>Electric Capital</u></a>, there were around 23K monthly active developers in crypto in December 2022 (versus 27K engineers at Google, but then again, Uniswap is ran by 50 people and Robinhood needs over 3000 to function). People are spending money to use products, even if you find them silly or circular. So it’s not a tsunami yet, but there’s definitely something brewing.</p><h1 style="text-align: start"><strong>Tomorrow, the day after, and decades later</strong></h1><p style="text-align: start"><strong>Real World Assets (RWA):</strong> There is 0 reason why stocks and bonds and every title piece of paper, PDF or database record that proves that you own something should continue to be a digitized form of paper managed by incredibly expensive companies like clearstream and take days to settle when you want to send it over to someone else. Every single one of those is moving to a blockchain like system (<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://finance.yahoo.com/news/investment-manager-hamilton-lane-opens-133000632.html?guccounter=1&amp;guce_referrer=aHR0cHM6Ly9zZWFyY2guYnJhdmUuY29tLw&amp;guce_referrer_sig=AQAAADLFZBuNVos12oXfpMIzSxhHwVjqy187GyiHd5kbc_WeZ7mlbdQsg7-EMJ7Zr_h5q6JBgUm-sm1CEZKGpw-MB_PbQGLRvvk_n9LtF6wFdX4lc7ieG-wrVnhMAtBkD_c2nc54kl61ze8F9JXH0P_7r58sKnJzCIlhTE5IxoFJrnjH">and here is an example from early 2023</a>). The EU has recently launched a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www2.deloitte.com/lu/en/pages/financial-services/articles/dlt-pilot-regime-out-now-eu-digital-securities-metaverse.html"><u>DLT pilot regime</u></a> to explore just that. The only reason we’re not there yet is because of inertia and the fact that when managing Trillions, it pays to make sure you know what you’re doing. But it’s definitely the direction of travel.</p><p style="text-align: start"><strong>Regenerative Finance</strong>: internalizing climate externalities, creating global markets for global problems/solutions, financial inclusion, UBI, community market places, … The number of things currently being tried is amazing. Explore it with<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://twitter.com/owocki"> @owocki</a> on the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://availableon.com/greenpill">Greenpill podcast</a>.</p><p style="text-align: start"><strong>Decentralised Identities &amp; Decentralised social networks, or crypto Social</strong>. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://Lens.xyz"><u>Lens.xyz</u></a> is a great example. So are Nostr and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://Farcaster.xyz">Farcaster.xyz</a>.  By promising that you own your relationships and that developers can’t be kept / excluded / censored from building apps on the network, they offer a great advantage over the walled gardens and predatory actions of web2 social networks. Because of the network effects, this is likely to be even more of a “winner takes all” than web2 was, but the winner won&apos;t be able to prey on you and &quot;<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://pluralistic.net/2023/01/21/potemkin-ai/#hey-guys">enshittify</a>&quot; your experience, because you&apos;ll be able to leave with your entire social graph intact.</p><p style="text-align: start"><strong>Crypto gaming</strong>: some gamers love crypto, some gamers hate crypto. But the composability that web3 brings to game is likely to make it irresistible to most developers and communities. Major game studios have started building for crypto recently and it will likely take a couple of years before the games are out. Building games is hard business.</p><p style="text-align: start"><strong>Token-gated communities &amp; commerce</strong>: Sayl &amp; Salesforce referenced in the “today” section already allude to that. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://help.shopify.com/en/manual/products/digital-service-product/nfts/blockchain-app-partners#token-gating-apps"><u>Shopify</u></a> is making web-shops “wallet aware” and turning the users into “non-fungible buyers” or “non-fungible website visitor”.</p><p style="text-align: start"><strong>Working for a DAO</strong>: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://consensys.net/blog/villagedao/what-is-villagedao-and-why-does-it-matter/"><u>VillageDAO</u></a> from Consensys</p><p style="text-align: start"><strong>Zero-knowledge Proofs</strong>: Blockchains are very transparent today, and a bit of a privacy nightmare. The ability to prove that something is true (for example, that your are over 18) without the need to actually show your ID card (where is also written your address and name, which is useless to prove that you are 18) is what ZK proofs enable. It should enable more privacy, and is something that <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://aztec.network/"><u>Aztec</u></a> - amongst other - is working on.</p><h2 style="text-align: start"><strong>Rethink Everything</strong></h2><p style="text-align: start">Ultimately, what’s interesting about tomorrow is that crypto offers an opportunity for rethinking almost everything we do today, from money systems to representative democracies. Like the internet in its early days.</p><p style="text-align: start">But the internet in its early days was missing some key pieces of infrastructure. Crypto probably is too, but it has much more than Web2 ever had. And the activity in the DAOs of today are very reminiscent of the early internet forums used for collaboration. But now they have a cap table and an internet-native bank account they can spend from.</p><p style="text-align: start">We won’t get “there” without a lot of experiments, many of which will fail. Sometimes bubbles will form because everyone gets overly short-term enthusiastic. But it has always been part of the learning process and one should be cautious about treading on the frontier. Innovation comes from the fringe, if you are looking for safety, stability , and predictability it might be best to wait it out on the sidelines. There’s nothing wrong with that.</p>]]></content:encoded>
            <author>serendipitously@newsletter.paragraph.com (Mathieu Hardy | hardymathieu.eth)</author>
            <category>crypto</category>
            <category>use cases</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/d8e47778299a0df3bffaab598cdb1d02.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[Good links to learn more]]></title>
            <link>https://paragraph.com/@serendipitously/good-links-to-learn-more</link>
            <guid>W83aE2CrVxfzHtOwcxar</guid>
            <pubDate>Mon, 30 Jan 2023 15:07:48 GMT</pubDate>
            <description><![CDATA[A collection of worthwhile content. As much for me as for you.]]></description>
            <content:encoded><![CDATA[<p>There are a lot of links to very valuable content below. But do you know what&apos;s more important for learning than reading? Doing!</p><p style="text-align: start">Even if you read, watch and listen to everything listed here, you&apos;ll only have a very superficial and theoretical understanding of the space. The only way to truly understand the power and shortcomings of crypto is to use it. That’s what it’s for, after all. Reading about driving a car won’t give you much of an idea about what driving a car is actually like. The same goes for crypto. Just like driving, “doing” crypto is a little intimidating at first, but not that hard to get the hang of.</p><h1 style="text-align: start"><strong>Doing</strong></h1><p style="text-align: start">Here is to get you started (coming soon...)</p><h1 style="text-align: start"><strong>External Content</strong></h1><h2 style="text-align: start"><strong>General Understanding</strong></h2><ul><li><p>Adreessen Horrowit&apos;s long list: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://a16z.com/2018/02/10/crypto-readings-resources/"><u>https://a16z.com/2018/02/10/crypto-readings-resources/</u></a></p></li><li><p>HBR Ideacast 581: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://hbr.org/podcast/2017/06/blockchain-what-you-need-to-know"><u>https://hbr.org/podcast/2017/06/blockchain-what-you-need-to-know</u></a></p></li></ul><h2 style="text-align: start"><strong>Innovation Literature</strong></h2><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://hbr.org/2015/12/what-is-disruptive-innovation"><u>https://hbr.org/2015/12/what-is-disruptive-innovation</u></a></p></li><li><p>JTBD<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://hbr.org/podcast/2016/12/the-jobs-to-be-done-theory-of-innovation"><u> https://hbr.org/podcast/2016/12/the-jobs-to-be-done-theory-of-innovation</u></a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.gartner.com/en/research/methodologies/gartner-hype-cycle"><u>https://www.gartner.com/en/research/methodologies/gartner-hype-cycle</u></a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.icopilots.com/building-a-proper-innovation-portfolio-1/"><u>https://www.icopilots.com/building-a-proper-innovation-portfolio-1/</u></a></p></li></ul><h2 style="text-align: start"><strong>Recent Reports &amp; Theses</strong></h2><h3 style="text-align: start"><strong>2023</strong></h3><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://messari.io/crypto-theses-for-2023"><u>https://messari.io/crypto-theses-for-2023</u></a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.developerreport.com/developer-report">https://www.developerreport.com/developer-report</a></p></li></ul><h3 style="text-align: start"><strong>2022</strong></h3><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out dont-break-out" href="https://a16zcrypto.com/state-of-crypto-report-a16z-2022/"><u>https://a16zcrypto.com/state-of-crypto-report-a16z-2022/</u></a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out dont-break-out" href="https://messari.io/pdf/messari-report-crypto-theses-for-2022.pdf"><u>https://messari.io/pdf/messari-report-crypto-theses-for-2022.pdf</u></a> - discussed here as well <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out dont-break-out" href="https://www.youtube.com/watch?v=n3PExi_z4mc"><u>https://www.youtube.com/watch?v=n3PExi_z4mc</u></a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out dont-break-out" href="https://www.notboring.co/p/web3-use-cases-the-future"><u>https://www.notboring.co/p/web3-use-cases-the-future</u></a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out dont-break-out" href="https://www.notboring.co/p/web3-use-cases-today"><u>https://www.notboring.co/p/web3-use-cases-today</u></a></p></li></ul><h2 style="text-align: start"><strong>Pieces of Crypto Thinkings - from VCs, Founders, and Thinkers</strong></h2><ul><li><p><strong>Crypto Natives - can be a little obscure. Maybe don&apos;t start with this :) </strong></p><ul><li><p>Vitalik Buterin Blog: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://vitalik.ca/"><u>https://vitalik.ca/</u></a> – it’s all good, maybe just skip the lifestyle sections :)</p></li><li><p>DataAlways / Tripoli </p><ul><li><p>on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://Mirror.xyz">Mirror.xyz</a>: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://dataalways.mirror.xyz/">https://dataalways.mirror.xyz/</a></p></li><li><p>on Substack: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://dataalways.substack.com/">https://dataalways.substack.com/</a></p></li></ul></li><li><p>Jon Charbonneau: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://joncharbonneau.substack.com/">https://joncharbonneau.substack.com/</a></p></li><li><p>Cobie: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://cobie.substack.com/">https://cobie.substack.com/</a></p></li></ul></li><li><p><strong>VCs-turned-Media - Generally quite understandable</strong></p><ul><li><p>Packy McCormack on “Not Boring”</p><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.notboring.co/p/the-laboratory-for-complex-problems?s=w"><u>https://www.notboring.co/p/the-laboratory-for-complex-problems?s=w</u></a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.notboring.co/p/celo-building-a-regenerative-economy"><u>https://www.notboring.co/p/celo-building-a-regenerative-economy</u></a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.notboring.co/p/zero-knowledge"><u>https://www.notboring.co/p/zero-knowledge</u></a></p></li></ul></li><li><p>A16Z (and friends)</p><ul><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://future.com/metaverse-infrastructure-technology-games/"><u>https://future.com/metaverse-infrastructure-technology-games/</u></a></p></li><li><p>Chris Dixon (A16Z) and Naval Ravikant on Web3 with Tim Ferris <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://youtu.be/DlNDYMNJ5zQ"><u>https://youtu.be/DlNDYMNJ5zQ</u></a></p></li><li><p>Chris Dixon (A16Z) on Mental Models for Web3: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.youtube.com/watch?v=jezH_7qEk50"><u>https://www.youtube.com/watch?v=jezH_7qEk50</u></a></p></li><li><p>Marc Andreessen &amp; Chris Dixon of A16Z compare Crypto to early internet in “reinventing the internet” <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.youtube.com/watch?v=RXHITeaGB8Q"><u>https://www.youtube.com/watch?v=RXHITeaGB8Q</u></a></p></li></ul></li><li><p>Electric Capital’s yearly Developer Ecosystem Report</p><ul><li><p>2021: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://medium.com/electric-capital/electric-capital-developer-report-2021-f37874efea6d"><u>https://medium.com/electric-capital/electric-capital-developer-report-2021-f37874efea6d</u></a></p></li><li><p>2022: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.developerreport.com/developer-report"><u>https://www.developerreport.com/developer-report</u></a></p></li></ul></li></ul></li><li><p><strong>Crypto-Media</strong></p><ul><li><p>Bankless - videos on Youtube are also available in their newsletter if you prefer reading</p><ul><li><p>Crypto Renaissance from an Historian’s perspective: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.youtube.com/watch?v=karddOiv4ZA"><u>https://www.youtube.com/watch?v=karddOiv4ZA</u></a></p></li><li><p>Crypto Revolution from an Historian’s perspective: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.youtube.com/watch?v=0psJ5JjjNrw"><u>https://www.youtube.com/watch?v=0psJ5JjjNrw</u></a></p></li><li><p>Why Bankless is Wrong - Cosmos: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.youtube.com/watch?v=Vbomgw-PGRE"><u>https://www.youtube.com/watch?v=Vbomgw-PGRE</u></a></p></li><li><p>Beyond Coin Voting Governance (V Buterin): <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.youtube.com/watch?v=apU83PaErrE&amp;t=2s"><u>https://www.youtube.com/watch?v=apU83PaErrE&amp;t=2s</u></a></p></li><li><p>Internet Reset with Reddit Founder Alexis Ohanian <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.youtube.com/watch?v=Zimx60Rx8cM"><u>https://www.youtube.com/watch?v=Zimx60Rx8cM</u></a></p></li><li><p>Ark-Invest on investing in the future: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.youtube.com/watch?v=AsGubNtWeSo"><u>https://www.youtube.com/watch?v=AsGubNtWeSo</u></a></p></li></ul></li></ul></li><li><p><strong>Other Things</strong></p><ul><li><p>On collaboration in DAOs: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.youtube.com/watch?v=903tHM4RA9k"><u>https://www.youtube.com/watch?v=903tHM4RA9k</u></a></p></li><li><p>The identity problem in Tech: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://thedefiant.io/identity-is-the-one-vulnerability-being-exploited-across-all-systems-its-the-mother-of-all-battles-santiago-siri/"><u>https://thedefiant.io/identity-is-the-one-vulnerability-being-exploited-across-all-systems-its-the-mother-of-all-battles-santiago-siri/</u></a></p></li><li><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://hbr.org/2022/05/why-build-in-web3"><u>https://hbr.org/2022/05/why-build-in-web3</u></a></p></li></ul></li><li><p><strong>Contrarians</strong></p><ul><li><p>Cory Doctorow on Blockchain, Crypto Web3: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://anchor.fm/life-itself/episodes/Cory-Doctorow-on-Blockchain--Crypto--Web3-e1hmcfk/a-a7gpq18"><u>https://anchor.fm/life-itself/episodes/Cory-Doctorow-on-Blockchain--Crypto--Web3-e1hmcfk/a-a7gpq18</u></a></p></li><li><p>Molly White: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://web3isgoinggreat.com/">https://web3isgoinggreat.com/</a></p></li></ul></li></ul><p></p>]]></content:encoded>
            <author>serendipitously@newsletter.paragraph.com (Mathieu Hardy | hardymathieu.eth)</author>
            <category>crypto</category>
            <category>resources</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/caaae7f38697622b2211696b448d1409.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[Optimistic on all things crypto]]></title>
            <link>https://paragraph.com/@serendipitously/optimistic-on-all-things-crypto</link>
            <guid>tW0IC7vYSiguYENxQcIv</guid>
            <pubDate>Mon, 30 Jan 2023 15:01:59 GMT</pubDate>
            <description><![CDATA[When numbers go up, everyone is a genius and no one needs a thesis. It’s when numbers go down and doubt seeps in that we need to remember why we are here in the first place.]]></description>
            <content:encoded><![CDATA[<p>Initially written and published in June 2022 elsewhere.</p><h1>Intro</h1><p>When numbers go up, everyone is a genius and no one needs a thesis. It’s when numbers go down and doubt seeps in that we need to remember why we are here in the first place.</p><p style="text-align: start">We will start by looking at the unstoppable force of digitalization and the appeal of decentralization as the major undercurrents that are powering the natural move to Web3. To understand why this natural move does not appear to be following a straight line, we will look back at theories of tech cycles and disruption. We will conclude with a reflection on prices and their power over us.  </p><p style="text-align: start">And just so we’re clear: none of this is very original thinking. It is merely a collection of other people’s thinking on the topic of tech, disruptive innovation, and adoption. We’re just trying to be helpful by aggregating it all. It’s also not financial advice, it’s for information purposes only.</p><p style="text-align: start">We’ll stay high-level and won’t deep dive into specific assets or examples here, but we’ll put out an accompanying piece that details some of the use cases we see today and tomorrow.</p><div><div class="callout-base callout-info" data-node-view-wrapper="" style="white-space:normal"><img src="https://paragraph.xyz/editor/callout/information-icon.png" class="callout-button"/><div class="callout-content"><div><p style="text-align: start">I&apos;ll save you the trouble of doing it yourself, <strong>here is ChatGPT&apos;s summary</strong>:</p><p style="text-align: start">In the first part, I argue that digitalization is unstoppable and driven by the desire to minimize costs and maximize opportunities. I see crypto as the next logical step of the internet, allowing for the digitization of all forms of value. I also highlights the coordination advantage of crypto, including the possibility of direct democracy, rapid iteration, and global reach. I also address the criticism of crypto by highlighting the limitations of traditional financial systems, and the appeal of decentralization for those without access to traditional banking services.</p><p style="text-align: start">I the second part I look at the reason behind the technology adoption process and why it&apos;s not a straight line. The Hype Cycle, a graphical representation by Gartner, explains the 5 phases of technology maturity and adoption over time. According to Gartner, any new technology tends to go through a 25-year adoption cycle and it is attributed to the span of a generation. The theory of disruptive innovation by Clayton Christensen describes how a smaller company with fewer resources can challenge established businesses by successfully targeting overlooked segments, delivering more suitable functionality, and then moving upmarket to deliver the performance mainstream customers require. I note that the disruptor&apos;s offer is often a lot worse than the existing state of play for most people, but to some of the market, it enables radically new use cases. </p><p>I conclude with a note on the fact that crypto is in a unique position as assets are publicly traded but that while daily prices exist, they are mostly a distraction.</p></div></div></div></div><p style="text-align: start"></p><h1 style="text-align: start"><strong>The unstoppable forces: Maximum Value, Maximum Freedom</strong></h1><h2 style="text-align: start"><strong>Everything that can become digital will become digital</strong></h2><p style="text-align: start">That’s what history tells us and we have no reason to think that will stop anytime soon. One could argue that “crypto” is just the next logical step of the internet. After having digitized and then digitalized much of our “information” world*, all the value also gets digitalized. That is why “web3” is often used interchangeably with “crypto”.</p><p style="text-align: start">This unstoppable movement to digitalization is fundamentally driven by the rational choices of economic actors looking to minimize their costs and maximize their opportunities.</p><h3 style="text-align: start"><strong>Bits over Atoms</strong></h3><p style="text-align: start">Bits are cheaper to handle and infinitely more malleable than atoms. Bits, in fact, mostly have a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://g.co/kgs/hYKHEg"><u>zero marginal cost</u></a>.</p><blockquote><p style="text-align: start"><em>A digitized invoice - in PDF format as opposed to paper - is immensely more practical to have than the printed-out version. But that is still very </em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://en.wikipedia.org/wiki/Skeuomorph"><em><u>skeuomorphic</u></em></a><em> and it doesn’t leverage all of the advantages of computers. As can be attested by the fact that we had to develop OCR (optical character recognition) software to read those PDFs to automate accounting. But when you think about what is actually useful information in an invoice, it could very well be served like a webpage or in </em><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://github.com/OpenPEPPOL/peppol-bis-invoice-3/blob/master/rules/examples/base-example.xml"><em><u>XML</u></em></a><em>, and be natively machine readable.</em></p></blockquote><p>Much of our lives has already been transformed into bits: news, emails, music, movies,...</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/2ad97853bdd1d317a823e7e2dc905b12.gif" blurDataURL="data:image/gif;base64,R0lGODlhBAAEAIQAAExpcRMAACYeEdXNxy0mHiMaEPz58z8yJ2lcRd7a2PLs6uHd29DIwE9DNerl3evm4ldOOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQFBwAAACwAAAAABAAEAAAFDiAzGE5zQAhRBMKiPEkIADs=" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">from 1981 to 2013 information moved online</figcaption></figure><p>But much of our lives have not yet been. Because computers are amazing copying machines and we didn’t yet know how to create digital scarcity. We only knew about digital abundance.</p><p style="text-align: start">Stocks, Bonds, Real Estate, Hotel and Concert tickets, money, etc...are all digitalized today, but are not digital. Clearstream keeps track of stocks and bonds as if they were PDF copies of the paper of the past. Real Estate records are maintained in centralized ledgers by the states in what is essentially the Excel version of the leather books they used to have. Your concert ticket is just the PDF rendition of a centralized booking database with a QR code that links to that same database for convenience. The bank issues you money by typing numbers in a computer as opposed to writing it in a big book, but the process hasn’t changed, and “clearing” the books with other banks can still happen only about twice a day because they don’t share much infrastructure.</p><p style="text-align: start">All of those are like the PDF version of invoices: more practical than paper, but retaining much of the attributes of paper and gaining almost no “digital” characteristics.<br>Up until now, there were no good solutions. But crypto solves that.</p><p style="text-align: start">Your shares can be a fungible ERC20 or ERC1404 token. So can your Euros. Your invoice can be an ERC721, also known as NFT. So can your concert ticket or hotel stay.</p><p style="text-align: start">This makes them cheaper, more transferable, and more useful. So it will move there. And it will make the first wave of digitalization look very small in comparison. There is no telling how quickly it will happen but that has been the direction of history since the invention of the Telegraph. Until we find a better technology than blockchains to create digital scarcity, that’s where our bets will be.</p><h3 style="text-align: start"><strong>Coordination Advantage</strong></h3><p style="text-align: start">In a pre-digital world, you have shareholder general assemblies and building co-op voting and vote tallying done with everyone in a big room holding up hands or writing on little pieces of paper.</p><p style="text-align: start">In a digitized world, because Covid struck, those assemblies are held over Zoom. But it’s the same meetings, with the same agenda, held at the same pace, and they check identity &amp; ownership the same way as in the pre-digital world.</p><p style="text-align: start">In a digitalized world, Decentralized Autonomous Organizations have all their token-holders vote asynchronously as often as needed.</p><p style="text-align: start">Imagine the opportunities for direct democracy.</p><p style="text-align: start">And seeing as though there isn’t the problem of databases that can’t speak to one another anymore, your community is de-facto global. And you can pay your contributors globally too, without ever wondering if they have access to a bank account, because now everyone does, and whether your bank will have correspondents that will manage to get money over there.</p><p style="text-align: start">The technological primitives also allow for more rapid iteration, more ownership and upside participation for the users, new governance and economic models, and more liquid and efficient capital markets.</p><p style="text-align: start">Crypto has no regard for the artificial nation-state barriers and existing local monopolies. It is credibly neutral and de-facto global. It offers the option of “opting out” of your local circumstances to a degree, greatly mitigating the effects of the “geographical lottery”. It is therefore likely to win (but not without challenges). It’s, in fact, hard to see a world where all this tech is NOT playing a role.</p><h2 style="text-align: start"><strong>The appeal of decentralisation</strong></h2><p style="text-align: start">Before we dive into it, let’s address a common criticism. Much of the comments thus far have revolved around “why would I need that”, or “I can use Paypal/my bank/Transferwise to send money”. And yes, you probably can. But there are billions of people that don’t enjoy your level of freedom or legal certainty and (relative) currency stability. There is also nothing that absolutely guarantees that you will continue to enjoy those privileges forever.</p><p style="text-align: start">If globalization was the bringing together of the world’s countries and conglomerates, decentralization is the bringing together of the world’s people. There is a reason why you hear so much about “community” in Web3.</p><p style="text-align: start">While critics speak of “atomization” (everyone going back to his own little individual self), the careful observer will notice that Web3 is full of communities around shared projects. People meet and collaborate at an incredible rate.</p><p style="text-align: start">What the critics call “atomization” is probably just lamenting that individuals are opting into shared communities as opposed to being forcefully enrolled into the communities of old (religions and nation-states, for example).</p><p style="text-align: start">The reliability of math and the option to “(build and) choose your own tribe” are offering a compelling alternative (substitution) for the diminishing trust in existing institutions (<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://messari.io/pdf/messari-report-crypto-theses-for-2022.pdf"><u>see Messari’s first part of the #1 thesis for 2022</u></a>).</p><h3 style="text-align: start"><strong>Versus &quot;The State&quot;</strong></h3><p style="text-align: start">In a Volatile, Uncertain, Complex, and Ambiguous (VUCA) world, having assets that are “out of this world” offers some comfort as a “fallback” in case the proverbial sh*t were to hit the fan. Portable digital private property that can’t be stopped and is accepted worldwide is already a compelling enough reason to stash some money on a blockchain as opposed to under your mattress. If your local institutions turn unfriendly and you can make it out, a 12 words seed phrase is a lot easier to carry than a backpack full of gold or bills. If the company your work for is “in the clouds”, unincorporated, and pays you in a globally accepted asset, you are much less likely to be at the mercy of your local dictator.</p><p style="text-align: start">In that regard, Bitcoin is a property right. It’s a little unsure what it might be worth but it’s unlikely to be worth 0. And you’re pretty much guaranteed (at least today) to find a buyer anywhere in the world. It’s the most portable and non-seizable property that exists (if you self-custody).</p><p style="text-align: start">States are in the business of creating public goods** but don’t create private property. They often help safeguard it but have also been known to seize it. So it makes sense to look to non-state actors for safeguarding digital scarcity.</p><p style="text-align: start">As it is unlikely that the 184 governments of the world will be able to collude to ban self-sovereign blockchains (seeing as though they have never managed to coherently collude on anything thus far), it makes for an interesting new “balance” in the new world order.</p><h3 style="text-align: start"><strong>Versus &quot;Centralized Big-Tech&quot;</strong></h3><p style="text-align: start">Centralized “Big-Tech&apos;&apos; has obviously gone too far. We don’t need anything else to make the case than to tell you to look at the EU commission and the USA Congress’s take on Facebook, Google, and Apple.</p><p style="text-align: start">Regulators have tried forcing centralized tech companies to make data portable from one system to another, to make them acknowledge that they are custodians of your data but do not actually own it and that you should be free to do with your data as you please.</p><p style="text-align: start">It’s pretty obvious that it’s not working. When you can export your data there is nowhere to re-import it to. You pretty much have 0 visibility in real-time on who has what data about you, and getting data to be removed from processing is no walk in the park.</p><p style="text-align: start">Having to beg your bank to share your identity with another provider, or having to ask Facebook to know who your friends are, does not make one feel like they have much agency.</p><p style="text-align: start">Developers who built on the Twitter open APIs or Zynga who built on Facebook early-on know too well how a platform shutting off 3rd party access to APIs can kill a startup.</p><p style="text-align: start">Whether you&apos;re broadcasting or in the audience, owning your relationships is crucial.</p><p style="text-align: start">And the takeaway from the attempts at regulating big tech is that between the legacy tech and the entrenched interests, it’s better to leapfrog them than to try and bend them to do something they weren’t built for.</p><p style="text-align: start">Web3/Crypto are built around the ideals of &quot;protocols&quot; (like SMTP or TCP/IP which we have used for decades) that allow for you to own your social graph, reveal truths about yourself without revealing information (zero-knowledge proofs), allows for portable identity and reputations systems to be built, and for all of that to be in your control. Including the ability to delegate that control if it’s too much work, and to take it back if you’re not happy with the service.</p><h1 style="text-align: start"><strong>The Great Constants: Tech Cycles and Disruption Theory</strong></h1><p style="text-align: start">Thus far in this article, we have seen that:</p><ul><li><p>There is an economic incentive to digitalize everything; to minimize costs and maximize opportunities.</p></li><li><p>There is also a political incentive to guarantee oneself maximum freedom and option, be it freedom from state or tech “tyranny”.</p></li></ul><p style="text-align: start">So why is there not a straight line from here to there? The answer is an interesting mix of human psychology and market forces. Let’s start with frameworks that attempt to explain what we’re seeing, and why it looks like things we’ve seen before.</p><h2 style="text-align: start"><strong>Gartner&apos;s Hype Cycle</strong></h2><p style="text-align: start">The <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://en.wikipedia.org/wiki/Gartner_hype_cycle"><u>Hype Cycle</u></a> is the graphical representation of how technologies mature and get adopted through 5 phases, over time, while being more or less “visible” to those not actively working on it.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/954a03a6b33eb62009a387256ce506f6.png" blurDataURL="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAIAAAA7ljmRAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAMklEQVR4nAEnANj/AE5PUaKhobm5ueTh4QBtYmSFeXokHx91bW0ASUlJREJDlpmaxMrLY84RxktEmMUAAAAASUVORK5CYII=" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p style="text-align: start">It is undeniably a simplification but it provides an interesting “grid” through which to interpret the world. This is how the story goes: a new technology comes to the fore, is widely presented in the media and popular culture, and we collectively get to thinking it is going to solve everything. But it doesn’t actually do much yet. Once the “overinflated” promises don’t immediately materialize (and some outright scams blow up in everyone’s faces), we collectively lose patience and hope. But some true believers stick through it and keep building even when no one is paying attention. After a while, their solutions come out and they are actually usable, and good. It doesn’t solve everything but it solves a lot of things. They get adopted by the majority and become the new normal.</p><p style="text-align: start">Some technologies go through this really quickly. Others take decades. Some get a lot more attention than others in public media while some are important in some very niche media only. Some tech dies along the way and never actually makes it to the plateau of productivity. But pretty much all the “tech” you’ve ever encountered has gone through this cycle: your car, your TV, your phone landline, your personal computer, your grandparents’ cassette player, your smartphone, streaming, fintech,...</p><p style="text-align: start">Blockchain, Crypto, Metaverse, DeFi,... are all going more or less quickly through this cycle too. <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://blogs.gartner.com/avivah-litan/2021/07/14/hype-cycle-for-blockchain-2021-more-action-than-hype/"><u>Here is what Gartner published in mid-2021</u></a>.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0b32dd13ab71fe1cf0e8119b412c5257.png" blurDataURL="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAIAAAB2XpiaAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAFUlEQVR4nGMwFGdTZWGIdTb79eoxAA75BBUr8GBUAAAAAElFTkSuQmCC" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p style="text-align: start">It’s been said (but the quote is attributed to many people) that &quot;any new technology tends to go through a 25-year adoption cycle&quot;. This makes sense since that is about the span of a generation. The people who adopted “a” tech early just grow old with it and their kids consider it to be a normal part of their lives.</p><p style="text-align: start">There is however a bit of a variation in that timeframe because some technology is more “fundamental” than others, and as technology advantages compound, you can build on the previous tech to spread the new tech. Web2 didn’t have Web2 to help it propagate. Web3 does.</p><p style="text-align: start">But there are some constants too l<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://en.wikipedia.org/wiki/Technology_adoption_life_cycle"><u>ike the rate at which humans learn and are willing to try new things</u></a>.</p><h2 style="text-align: start"><strong>Theory of disruptive innovation</strong></h2><p style="text-align: start">The Hype-Cycle is a useful simplification for thinking about the trajectory one technology takes. But how do technologies and businesses evolve relative to each other?</p><p style="text-align: start">To answer that question, we can turn first to Clayton Christensen’s <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://hbr.org/2015/12/what-is-disruptive-innovation"><u>theory of disruptive innovation</u></a>. Let’s quote the HBR article’s quick recap of the idea:</p><blockquote><p style="text-align: start"><em>“Disruption” describes a process whereby a smaller company with fewer resources is able to successfully challenge established incumbent businesses. Specifically, as incumbents focus on improving their products and services for their most demanding (and usually most profitable) customers, they exceed the needs of some segments and ignore the needs of others. Entrants that prove disruptive begin by successfully targeting those overlooked segments, gaining a foothold by delivering more-suitable functionality—frequently at a lower price. Incumbents, chasing higher profitability in more-demanding segments, tend not to respond vigorously. Entrants then move upmarket, delivering the performance that incumbents’ mainstream customers require, while preserving the advantages that drove their early success. When mainstream customers start adopting the entrants’ offerings in volume, disruption has occurred.</em></p></blockquote><p style="text-align: start">As is clear from the quote, the disruptor’s offer is often a lot worse than the existing state of play <strong>for most people</strong>. To the mainstream, it will often look like a toy. Just like digital cameras took crappy pictures initially. Or how clunky it is to make a transaction on Ethereum and need to pay gas fees to a network.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/6112b0ba7b8cc34c9ac93fa3b2b2cedf.png" blurDataURL="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAECAIAAADETxJQAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAM0lEQVR4nAEoANf/AHl+gefo6nl+gQAtLC5LQUSdoqYAWFVVjoaInKCjAHV2dpiZmejo520jE0VYAuedAAAAAElFTkSuQmCC" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p style="text-align: start">But to some of the market, this new “<a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://cdixon.org/2010/01/03/the-next-big-thing-will-start-out-looking-like-a-toy"><u>toy</u></a>” makes something previously inaccessible accessible. Or it enables radically new use cases. This is very much in line with Gandhi&apos;s famous quote: “First they ignore you, then they laugh at you, then they fight you, then you win.”</p><p style="text-align: start">Digital Cameras allowed you to take crappy pictures, but you could now take pictures of absolutely everything all the time. Sending tokenized US Dollars on the blockchain is a lot less convenient than using Venmo but there are now 7.5 billion people who don’t have Venmo that can finally get some USD, when it was previously unthinkable.</p><p style="text-align: start">Bitcoin is a lot more volatile than the Euro, so why would we use it? Well, maybe it’s not much use to us, but in Argentina the IMF WEO reported a 3-year cumulative rate of inflation of 216% as of December 2021 and a forecast annual rate of inflation of 48% for 2022 and 42% for 2023. And in Lebanon, The IMF WEO reported a 3-year cumulative rate of inflation of 173% as of December 2020, but noted that “for Lebanon, data and projections for 2021-27 are omitted due to an unusually high degree of uncertainty. Venezuela remains hyperinflationary with the 3-year cumulative inflation rate in excess of 2,330,000% in December 2021 and a forecast annual inflation rate of 500% and 500% for 2022 and 2023, respectively. If <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.ey.com/en_gl/ifrs-technical-resources/hyperinflationary-economies-updated-april-2022"><u>those are the economies you live in</u></a>, Bitcoin’s volatility is much less of a concern. And the fact that it’s a clunky experience to get your hands on some tokenized US Dollars won’t deter you very much.</p><p style="text-align: start">Crypto was meant, amongst other things, to increase financial inclusion and offer robust services in a low-trust environment. That is <em>definitely</em> an overlooked segment.</p><h2 style="text-align: start"><strong>A16Z&apos;s Innovation Cycles</strong></h2><p style="text-align: start">The Hype Cycle presents how technology usually goes from discovery to acceptance. And the theory of disruptive innovation explains how most radical changes in industries start in the low end of the market with sub-par products to previously under-served participants.</p><p style="text-align: start">To complement the understanding, it is useful to also call on one venture capitalist’s look at what is happening to the crypto ecosystem in particular.</p><p style="text-align: start">A16Z’s vantage point is interesting: Marc Andressen and Ben Horrowitz were there for the birth of the internet with the first major browser, Netscape. They then started investing in tech companies and were one of the first ones to invest in blockchain &amp; crypto companies. They have described the inability to natively move value over the internet as its “original sin”. And they see crypto as the best way to remedy that and take the internet to its logical conclusion of being the network for everything.</p><p style="text-align: start">When it comes to crypto, they have theorized the existence of identifiable <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://a16zcrypto.com/state-of-crypto-report-a16z-2022/"><u>innovation cycles</u></a>.</p><p style="text-align: start">In their view, the increase in prices brings more interest to the space, which leads to new ideas and new projects being funded, and the cycle to start over. They call it <strong>“the price-innovation cycle”</strong>. And even though it all seems very chaotic and volatile, it is possible to discern this underlying logic. And the feedback loop, over time, fuels long-term growth.</p><p style="text-align: start">And to those who would not find it sufficient - and although there are plenty of examples, wish to display their lack of research by asking repeatedly “where are the use cases?” - we can say this: To a large degree, that question is entirely irrelevant. When Tim Brenner-Lee invented the WorldWideWeb he had no idea what you’d be able to do with your phone in 2022. And those that venture into making predictions (like <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.google.com/search?q=ray+kurzweil+predictions+timeline&amp;oq=ray+kurtzweil+pred&amp;aqs=chrome.2.69i57j0i13l9.5777j0j7&amp;sourceid=chrome&amp;ie=UTF-8"><u>Ray Kurzweil</u></a>, who claims an 86% accuracy rate with his predictions going back to the 90s) are often laughed at because they sound outlandish when made.</p><p style="text-align: start">Much like with the internet and the GPS, a system of permissionless innovation and composability will enable unpredictable use cases. What we are able to predict today is but an extension of what already exists because we are very bad at thinking exponentially and in compounding returns. The next 7 years of building with blockchain and smart contracts will undoubtedly bring more use cases than the first seven. Because, like interest, innovation compounds. We obviously need to be able to see a road from “here” to “there” without resorting to “magical thinking”, but we believe there are more than enough examples to do so (see these articles for examples).</p><p style="text-align: start">Web(2) was called a bubble because it had lots of users and no business model (money). Web(3) gets called a bubble because it has lots of business models (and money) but no users. It’s reasonable to assume that, wherever you start, one tends to attract the other. It’s uncertain, but it isn’t unreasonable.</p><h1 style="text-align: start"><strong>Prices are distracting</strong></h1><p style="text-align: start">Software eats the world. Self-sovereign, permissionless, and decentralized economies offer an alternative to yesteryear’s institutions. Decentralized Autonomous Organizations are speedrunning governance and offering new tools for collaboration on a planetary scale. The spread of those new paradigms follows a historically pretty well-charted path in how they are perceived and adopted. Even the peculiarities specific to crypto are theorized by now.</p><p style="text-align: start"><strong>But oh, my! the prices, look at the prices! It moved! Did you see it move? Oh my god, it’s moving so much today!</strong></p><p style="text-align: start">Yes. It moved. If you read any of the points above you will have understood that we are very much at the beginning of everything. Crypto people say “we are early”. Yes, it is early. And we don’t see a lot of pension funds investing massively in crypto and crypto companies, what we see are Venture Capitalists and individuals. That is because at this stage <strong>blockchains and blockchain apps are (de)centralized liquid high-growth tech startups </strong>(or at least that’s the best analogy). They are crowdfunded and funded with venture capital. Just like most other entrepreneurial endeavors.</p><p style="text-align: start"><em>“De” is between parenthesis because the operations aren’t always quite decentralized, sometimes the ownership is not either, but it is definitely accessible in a decentralized way (ie: uniswap). And is often on the way to decentralization.</em></p><p style="text-align: start">The difference with so many of the high growth-tech startups of the past is that they are</p><p style="text-align: start">(1) available for anyone to invest in, whereas it used to be only Venture Capitalists (VC) who could invest</p><p style="text-align: start">(2) liquid, meaning you can pretty much trade any of them at any time; whereas VC positions used to be somewhat illiquid and almost never publicly traded.</p><p style="text-align: start">This is great because it is giving a lot of people the possibility to invest into high-growth tech startups, but the nature of the investment - it’s early and risky - means that it is also the first thing to be sold for cash by those who want to take fewer risks when times become more uncertain.</p><p style="text-align: start">The fact that that price point exists is leading people to believe that it’s important and they should be looking at it. Whereas if they are investing like VCs, with a 5 to 10-year time horizon, they really shouldn’t. Because the price will likely move for a whole host of reasons that has nothing to do with the intrinsic value of the undertaking<br>This is the psychology of a market cycle. It exists everywhere, and it looks a lot like the Gartner Hype Cycle, except it happens much faster and not necessarily in parallel with technology development. There is usually a trigger, but it can be many different things.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/2b64a407134e03b0ec090d75787c64aa.png" blurDataURL="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAIAAAA7ljmRAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAMElEQVR4nGOISgoMifFVNpJilmZg+PP/R3ySn5W9Sk5VMsP+I3vzi9I7WysfPLoDAAULEC3Wa9Y5AAAAAElFTkSuQmCC" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p style="text-align: start">Karen Bennett, writer at <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="http://cheatsheet.com">cheatsheet.com</a>, has the created the amazing chart (above) showing the psychology of a market cycle. It describes the most common emotions people experience as the market fluctuates. These human emotions drive our financial markets much more than the market fundamentals.<br><br>You must absolutely avoid repeating this behaviour until you&apos;re broke.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/cca3b8c79b69246473a79184d1bb951f.png" blurDataURL="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAIAAAA7ljmRAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAMklEQVR4nAEnANj/AL6+vpWWlTk7OXh5eAC8vLt4eXhBPz9ycHAA3t7egHx8gHx83t7ecx8T4nhi20cAAAAASUVORK5CYII=" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>Looking at crypto prices makes it hard to resist the temptation, because those numbers feel meaningful, when in fact - in the short term - they aren’t.</p><p style="text-align: start">What is important is to have an investment thesis, a time horizon, and the conviction to hold your portfolio through it all to resist the mind(‘s) tricks. Many called Facebook crazy <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.notboring.co/p/web3-use-cases-today#:~:text=when%20facebook%20bought%20instagram%20for%20%241%20billion%20in%202012%2C%20some%20people%20thought%20it%20was%20crazy"><u>when it acquired Instagram for 1 Billion</u></a>, and between 1999 and 2001 Amazon’s stock plummeted 92%. And that was in the public markets.</p><p style="text-align: start">In 2018 the price of most Cryptos crashed hard, while the rest of the market was doing pretty well. At the time there wasn’t much you could “do” with crypto. No “market-fit”, so to say. Since November 2021, it is crashing because there may have been a bit of a bubble, but there were bubbles everywhere, and because everything else is crashing too.</p><p style="text-align: start">But the situation is undoubtedly different. You can do things in and with crypto. It’s visible, if anything, because regulators are stepping in. You can’t say Crypto is useless and unscalable and at the same time want the regulators to limit the use of stablecoins to € 200m a day in transactions. If regulators feel it should be limited, it’s because they know it might be very appealing.</p><p style="text-align: start">So beware of the prices, they don’t tell the full story. If you agree with our arguments in “unstoppable force”, understand the naturally slow uptake, and learn to recognize the market cycles for startups, you may get to enjoy the rewards when it finally works out.</p><p style="text-align: start">Take it from Gartner, from July 2021</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/6d3a6ca1704be641530708e7892f0200.png" blurDataURL="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAACCAIAAADwyuo0AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAI0lEQVR4nGMwEGOpT4uuT4vevXQOQ5q33e6lcz7cv/H+/jUAg0kM/RL7zMwAAAAASUVORK5CYII=" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><hr><p>* While digitization is the act of getting material into zeros and ones, digitalization is about creating native digital assets. So, whereas an e-book is a digitized book, Wikipedia is a digitalized (or digital) encyclopedia. The process by which Wikipedia came to be is unfathomable in a physical world. If you had to reprint Wikipedia every time someone made an edit, you would very quickly run out of paper.</p><p style="text-align: start">** <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out dont-break-out" href="https://www.khanacademy.org/economics-finance-domain/microeconomics/market-failure-and-the-role-of-government/externalities-topic/a/public-goods-cnx#:~:text=Summary,others%20from%20using%20a%20good."><u>From Khanacademy</u></a>: A public good has two key characteristics: it is nonexcludable and nonrivalrous. These characteristics make it difficult for market producers to sell the good to individual consumers. Nonexcludable means that it is costly or impossible for one user to exclude others from using a good. Nonrivalrous means that when one person uses a good, it does not prevent others from using it.<br></p>]]></content:encoded>
            <author>serendipitously@newsletter.paragraph.com (Mathieu Hardy | hardymathieu.eth)</author>
            <category>crypto</category>
            <category>thesis</category>
            <enclosure url="https://storage.googleapis.com/papyrus_images/93a58471da4a2a6df0331e2f837de97d.png" length="0" type="image/png"/>
        </item>
    </channel>
</rss>