<?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>Fab</title>
        <link>https://paragraph.com/@fabrizio</link>
        <description>I like blockchain and category theory.</description>
        <lastBuildDate>Sat, 08 Aug 2026 17:36:13 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[Governance tokens, and the art of doing more with less]]></title>
            <link>https://paragraph.com/@fabrizio/governance-tokens-and-the-art-of-doing-more-with-less</link>
            <guid>BFcfwe2b34IGYpQzqo6D</guid>
            <pubDate>Sat, 15 Jan 2022 21:26:34 GMT</pubDate>
            <description><![CDATA[Any mathematician is well aware of the following counterintuitive fact: often, the more restrictions you give to your mathematical models the more powerful they become. This is akin to what happens in some artistic disciplines; for instance, for traditional painters it was considered “acceptable” to paint only on a restricted set of materials (frescoes, canvas, wooden panels) using a restricted set of mediums (such as oil). If on one hand this greatly limited the kind of things they could do,...]]></description>
            <content:encoded><![CDATA[<p>Any mathematician is well aware of the following counterintuitive fact: often, the more restrictions you give to your mathematical models the more powerful they become. This is akin to what happens in some artistic disciplines; for instance, for traditional painters it was considered “acceptable” to paint only on a restricted set of materials (frescoes, canvas, wooden panels) using a restricted set of mediums (such as oil). If on one hand this greatly limited the kind of things they could do, on the other hand this self-imposed lack of freedom prompted them to improve their technique to manage to achieve the unachievable.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/ce0b01eb9581890c1fabe48866865cb5a3542bffbb48516b2f52249ac12d75e1.jpg" alt="&quot;Hey Raffaello, we have some empty walls, can you make the room look cooler and bigger?&quot; Raffaello Sanzio, Stanza della segnatura. Fresco, 1509-1511, Musei Vaticani. Source: Wikipedia." blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">&quot;Hey Raffaello, we have some empty walls, can you make the room look cooler and bigger?&quot; Raffaello Sanzio, Stanza della segnatura. Fresco, 1509-1511, Musei Vaticani. Source: Wikipedia.</figcaption></figure><p>Teleporting to our current situation, we are increasingly witnessing the idea of <em>token-based</em> governance systems, where people can take part to discussions about governance of a given platform and cast their vote, their voting power being based on how many tokens of a given type they hold. Often, these tokens are airdropped to early users, following the idea that early users should be rewarded for their contributions.</p><p><em>These systems have problems.</em> The simplest one that comes to mind is: <em>How does the voting system work, and is it fair?</em> This is not an easy question, and a guy named Kenneth Arrow even won a Nobel Prize in economics because, among other things, he <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://en.wikipedia.org/wiki/Arrow%27s_impossibility_theorem">proved</a> how there is no voting system satisfying at the same time a bunch of criteria that we would deem desirable. But even without citing the upper echelons of academia, we see that token-based voting procedures have a problem in that <em>voting power is proportional to the number of tokens held</em>, often turning a superficially fair system into a kleptocracy.</p><p>But the elephant in the room is actually that <em>governance tokens have financial value</em>. That is, they can be bought, sold and freely transferred. This creates a huge conflict of interest, for the very simple fact that voters’ stake in a governance system is conflated with a financial investment. As such, voters are incentivized to taking decisions that increase the value of the tokens they hold. As usual, this conflict of interest comes up in full force in dire situations: if a given DAO is failing, it may be way more convenient to sell your governance tokens leaving everyone in the shit than using them to vote and propose sound governance strategies.</p><p>…But then, why are governance tokens so widely used? A couple of reasons come to mind: The first, innocent one, is that it is simply the most obvious thing people could come up with, and simple often wins in tech. The second, way less innocent, is that setting up governance tokens and airdropping them to early users is a very convenient way for a project to raise funds: the project keeps a part of the minted tokens, airdrops the rest, and as soon as the token acquires financial value and is listed on exchanges the project ends up with a few million dollars in its own treasury.</p><p>Can we make this better? I think that, without diving too deep in philosophical discussions, we can already improve the situation by creating new tools from the ones we got, and to do so we will have to restrict what we can do with our tokens. But first, let’s understand how tokens work.</p><h2 id="h-erc-20" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">ERC-20</h2><p>These are the most well-known tokens around. When we talk about ERC-20 tokens, we are talking about a <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethereum.org/en/developers/docs/standards/tokens/erc-20/"><em>standard</em></a>. That is, to be an ERC-20 token, the token smart contract must provide some well-defined functionalities in a standardized way. Those, called <em>methods</em> and <em>events</em>, are:</p><pre data-type="codeBlock" text="function name() public view returns (string)
function symbol() public view returns (string)
function decimals() public view returns (uint8)
function totalSupply() public view returns (uint256)
function balanceOf(address _owner) public view returns (uint256 balance)
function transfer(address _to, uint256 _value) public returns (bool success)
function transferFrom(address _from, address _to, uint256 _value) public returns (bool success)
function approve(address _spender, uint256 _value) public returns (bool success)
function allowance(address _owner, address _spender) public view returns (uint256 remaining)

event Transfer(address indexed _from, address indexed _to, uint256 _value)
event Approval(address indexed _owner, address indexed _spender, uint256 _value)
"><code><span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">name</span>(<span class="hljs-params"></span>) <span class="hljs-title"><span class="hljs-keyword">public</span></span> <span class="hljs-title"><span class="hljs-keyword">view</span></span> <span class="hljs-title"><span class="hljs-keyword">returns</span></span> (<span class="hljs-params"><span class="hljs-keyword">string</span></span>)
<span class="hljs-title"><span class="hljs-keyword">function</span></span> <span class="hljs-title">symbol</span>(<span class="hljs-params"></span>) <span class="hljs-title"><span class="hljs-keyword">public</span></span> <span class="hljs-title"><span class="hljs-keyword">view</span></span> <span class="hljs-title"><span class="hljs-keyword">returns</span></span> (<span class="hljs-params"><span class="hljs-keyword">string</span></span>)
<span class="hljs-title"><span class="hljs-keyword">function</span></span> <span class="hljs-title">decimals</span>(<span class="hljs-params"></span>) <span class="hljs-title"><span class="hljs-keyword">public</span></span> <span class="hljs-title"><span class="hljs-keyword">view</span></span> <span class="hljs-title"><span class="hljs-keyword">returns</span></span> (<span class="hljs-params"><span class="hljs-keyword">uint8</span></span>)
<span class="hljs-title"><span class="hljs-keyword">function</span></span> <span class="hljs-title">totalSupply</span>(<span class="hljs-params"></span>) <span class="hljs-title"><span class="hljs-keyword">public</span></span> <span class="hljs-title"><span class="hljs-keyword">view</span></span> <span class="hljs-title"><span class="hljs-keyword">returns</span></span> (<span class="hljs-params"><span class="hljs-keyword">uint256</span></span>)
<span class="hljs-title"><span class="hljs-keyword">function</span></span> <span class="hljs-title">balanceOf</span>(<span class="hljs-params"><span class="hljs-keyword">address</span> _owner</span>) <span class="hljs-title"><span class="hljs-keyword">public</span></span> <span class="hljs-title"><span class="hljs-keyword">view</span></span> <span class="hljs-title"><span class="hljs-keyword">returns</span></span> (<span class="hljs-params"><span class="hljs-keyword">uint256</span> balance</span>)
<span class="hljs-title"><span class="hljs-keyword">function</span></span> <span class="hljs-title">transfer</span>(<span class="hljs-params"><span class="hljs-keyword">address</span> _to, <span class="hljs-keyword">uint256</span> _value</span>) <span class="hljs-title"><span class="hljs-keyword">public</span></span> <span class="hljs-title"><span class="hljs-keyword">returns</span></span> (<span class="hljs-params"><span class="hljs-keyword">bool</span> success</span>)
<span class="hljs-title"><span class="hljs-keyword">function</span></span> <span class="hljs-title">transferFrom</span>(<span class="hljs-params"><span class="hljs-keyword">address</span> _from, <span class="hljs-keyword">address</span> _to, <span class="hljs-keyword">uint256</span> _value</span>) <span class="hljs-title"><span class="hljs-keyword">public</span></span> <span class="hljs-title"><span class="hljs-keyword">returns</span></span> (<span class="hljs-params"><span class="hljs-keyword">bool</span> success</span>)
<span class="hljs-title"><span class="hljs-keyword">function</span></span> <span class="hljs-title">approve</span>(<span class="hljs-params"><span class="hljs-keyword">address</span> _spender, <span class="hljs-keyword">uint256</span> _value</span>) <span class="hljs-title"><span class="hljs-keyword">public</span></span> <span class="hljs-title"><span class="hljs-keyword">returns</span></span> (<span class="hljs-params"><span class="hljs-keyword">bool</span> success</span>)
<span class="hljs-title"><span class="hljs-keyword">function</span></span> <span class="hljs-title">allowance</span>(<span class="hljs-params"><span class="hljs-keyword">address</span> _owner, <span class="hljs-keyword">address</span> _spender</span>) <span class="hljs-title"><span class="hljs-keyword">public</span></span> <span class="hljs-title"><span class="hljs-keyword">view</span></span> <span class="hljs-title"><span class="hljs-keyword">returns</span></span> (<span class="hljs-params"><span class="hljs-keyword">uint256</span> remaining</span>)

<span class="hljs-title"><span class="hljs-keyword">event</span></span> <span class="hljs-title">Transfer</span>(<span class="hljs-params"><span class="hljs-keyword">address</span> <span class="hljs-keyword">indexed</span> _from, <span class="hljs-keyword">address</span> <span class="hljs-keyword">indexed</span> _to, <span class="hljs-keyword">uint256</span> _value</span>)
<span class="hljs-title"><span class="hljs-keyword">event</span></span> <span class="hljs-title">Approval</span>(<span class="hljs-params"><span class="hljs-keyword">address</span> <span class="hljs-keyword">indexed</span> _owner, <span class="hljs-keyword">address</span> <span class="hljs-keyword">indexed</span> _spender, <span class="hljs-keyword">uint256</span> _value</span>)
</span></code></pre><p>What this means is that your token contract must implement the functions and events listed above, in a way or another. For instance, there must be a function called <code>balanceOf</code> that takes an ETH address in input and returns an integer number of 256 bits as output. This function represents how many tokens a given address owns.</p><p>The ERC-20 basic template can then be extended in multiple ways, often obeying complex mechanics. One of the simplest additions one can implement are <code>mint</code> and <code>burn</code> functions that, as the name says, allow to mint and burn a given number of tokens for an address when certain conditions are met.</p><p>As soon as you implement the functions above, your contract is an ERC-20, and platforms like Uniswap will be naturally compatible with it, meaning that you will be able to set up a liquidity pool and so on and so forth and swap your tokens for other tokens.</p><p>By taking a look at the spec above, we see that ERC-20 is designed with one fundamental property in mind, that is, the <em>possibility of transferring it</em>. Even more importantly, the <code>approve</code> and <code>allowance</code> functions let us authorize someone else to transfer a given number of tokens on our behalf. This is precisely the mechanics that allows platforms like Uniswap and other DEXes to perform swaps. This out of the box ability to transfer is exactly what makes tokens into financial assets: as soon as I can swap resource A for resource B, I can compare demand and offer for A against B and deduce a price.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/68eddf0cc548647bbdbc9b5bd925131836f084542298600d23b908543ba9cdec.jpg" alt="A direct consequence of transferrability is that assets can be priced. The moment this happens, price dynamics ensue." blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">A direct consequence of transferrability is that assets can be priced. The moment this happens, price dynamics ensue.</figcaption></figure><h2 id="h-erc-721" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">ERC-721</h2><p>This is the standard defining NFTs. The methods and events of NFTs can be found <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethereum.org/en/developers/docs/standards/tokens/erc-721/">here</a>. They have been suitably shaped so that the ERC-721 standard takes something <strong>away</strong> from ERC-20: fungibility.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/a4f6a54c974f857066ad6d0e2be5d2ca1fcc9a34b8f9af839985585ec6c93c06.webp" alt="As soon as you take fungibility out of the picture, you get stuff like this." blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">As soon as you take fungibility out of the picture, you get stuff like this.</figcaption></figure><p>Whereas ERC-20 tokens are fungible, which means that any two tokens are indistinguishable one from the other, ERC-721 tokens are not. In particular, every single ERC-721 token has a unique <code>tokenId</code> that allows to precisely identify it among all others.</p><p>As one can see, here we are restricting what the token contract can do, as we are taking properties away from the ERC-20 standard. This has resulted in a <em>very expressive</em> standard that, as any cryptonaut knows, resulted in an insane amount of art, games and services being created. Indeed, ERC-721 is by all means the building block of the decentralized metaverse.</p><h2 id="h-what-if-we-keep-playing-this-game" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">What if we keep playing this game?</h2><p>Many other token standards exist, for instance <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ethereum.org/en/developers/docs/standards/tokens/erc-1155/">ERC-1155</a> optimizes both ERC-20 and ERC-721 unifying their features and allowing for batch transfers to save gas. Indeed, anyone can propose a new token standard to the Ethereum community, that can or cannot officially be recognized as such depending on various things. With governance in mind, let us try to venture through an extreme path.</p><h3 id="h-ntts-non-transferrable-tokens" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">NTTs: Non-Transferrable Tokens</h3><p>This feels like an oxymoron. NTTs are just standard ERC-20 tokens endowed with a mint and burn function, where the <code>transfer</code> method has been erased. That is, we can mint and burn these tokens, we can check people’s balances, but we cannot transfer them. This has an immediate consequence, that is, NTTs cannot have any financial value, since they cannot be exchanged.</p><p>Why in the world would anyone be interested in this? There are circumstances. For instance, let’s think about billionaires: these people are often the owners of huge corporations, and much of their wealth is in stocks. As such, even if they have enough money to live a thousand lives in luxury, they won’t be able to give away their wealth, because this would mean losing control of the corporation they manage.</p><p>In a DAO-like situation this mechanics could be avoided, as people could convert part of their ERC-20 tokens into NTTs, that is, they could sell their ERC-20 token and receive some NTTs back. As soon as NTTs hold the same voting powers of ERC-20, this literally means taking away the financial value, and not the governance value, from a user. So a particularly wealthy person could give away part of their fortune without losing the ability to contribute or control a project they care about. In other words, your favourite billionaire can now donate part of their wealth to solve world hunger without giving up on despotically managing their megacorp.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/c5a8e2b62f9d279c8b0204bbaedb5c1e14fdc75995e626db1c36359dba1bb9ed.jpg" alt="The reassuring expression of a billionaire that can now donate everything to the poor, solve the world hunger problem and yet continue to manage his own megacorp for no economic return whatsoever." blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">The reassuring expression of a billionaire that can now donate everything to the poor, solve the world hunger problem and yet continue to manage his own megacorp for no economic return whatsoever.</figcaption></figure><p>In the opposite way, a user may convert NTTs into ERC-20, for instance as part of a mechanism of financial incentives. In general, I imagine NTTs as being paired to ERC-20 in a mixed system, where financial and non-financial incentives act at the same time in a compartmentalized way. For instance, investors in a project may receive ERC-20, while team members could have the majority of their tokens in NTTs. This allows the team to withhold control over the project without being able to rugpull the users.</p><h3 id="h-nats-non-approvable-tokens" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">NATs: Non-Approvable Tokens</h3><p>This proposition is milder than the previous one, and resolves some technical problems. Indeed, NTTs are fully non-transferrable and, as such, cannot be moved if, for instance, one has to change wallet address for security reasons. There may still be ways to achieve this, for instance by a community-authorized mechanism of sequential burns and mints, but things will immediately start getting bureaucratic and complicated.</p><p>NATs instead can be transferred, but they lack the approval interface that is needed to make them compatible with DEXes. As such, the financial value of these tokens is not completely taken away, but it is greatly reduced as one can acquire and sell NATs only off the counter. For sure, there may still be collusion where an interested party acquires governance in a project by buying tokens, but this risk is highly mitigated.</p><p>In an ERC-20 based governance platform, consider indeed the following situation:</p><ul><li><p>Platform X creates a governance token Y. Early contributors get tokens airdrops.</p></li><li><p>The Y tokens hold considerable financial value, and some contributors sell them at a profit. Even if they care about the platform they contributed to, this makes sense to them because $$$.</p></li><li><p>Some individual Z that did fuck-nothing up until then decides to “invest” in the platform, by buying a lot of token Y.</p></li><li><p>The wealthy individual Z can obtain nearly total control of the governance platform, depending on their wealth.</p></li></ul><p>What I wrote above is made possible by the fact that Z just has to go on Uniswap to buy Y. To avoid this potentially disastrous outcome, the team behind platform X must be very clever about how they set up liquidity pools and so on and so forth. Also, they will need to keep a consistent part of the token share in their treasury.</p><p>In a NAT-based approach, all these risks are mitigated by the fact that Z will have to contact token holders individually and convince them to sell. What NATs take away is not transferrability, but <em>transferrability through an intermediary,</em> which is how things are exchanged today anonimously and quickly over the internet.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/1b063eeaae3d4587bee63f7c796b2247ac8f0fefa2cf85469ab88b9d93e7efb5.jpg" alt="Compared to ERC-20, NATs take out the straight path to transfer, that is, DEXes. NTTs take out everything." blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Compared to ERC-20, NATs take out the straight path to transfer, that is, DEXes. NTTs take out everything.</figcaption></figure><h3 id="h-ctts-centralized-transfer-tokens" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">CTTs: Centralized-Transfer Tokens</h3><p>This is yet another concept, that again plays with how transfer functions in ERC-20 are implemented. The idea here is that a transfer doesn’t happen immediately, <em>but must be approved by the token contract through the governance system.</em></p><p>In this setting, when A wants to transfer to B, they cannot do it directly. They send a transaction, and the transaction is marked as “pending”. Every fixed amount of time, the community has the possibility to approve/reject batches of pending transactions. I imagine this procedure to be performed in an almost semi-automated way. For instance, all the transactions below a certain amount could automatically approved. Yet, when particularly suspicious or consistent transactions come through, people can bring this to the attention of the community.</p><p>CTTs may be especially useful in systems where tokens give rights to a share of funds contained in a vault. This was the case in projects like ConstitutionDAO, where people deposited ETH and got a governance token called PEOPLE in return. When ConstitutionDAO implemented the possibility to claim back one’s contribution, members of the DAO had the possibility to burn their tokens to claim back the ETH they originally put in. Even more prominently, the vault concept is a core one in DeFi projects such as YFI: You put money in and receive vault tokens back. As time passes the vault value goes up, and your vault tokens allow you - at least in principle - to withdraw more money than you put in.</p><p>CTTs would allow the implementation of a system where people can come in and out of a given DAO or Vault but the process is not instantaneous. This could protect the project from a rug pull or from sudden loss of operative margin in times of high volatility.</p><h2 id="h-wrapping-up" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Wrapping up</h2><p>All in all, I think that today’s token standards, being built around the concept of transferrability, assume a free-market-centered perspective on things. That is, they either directly or indirectly rely on the idea that “free markets are efficient” when it comes to pricing and incentives. Unfortunately the efficiency of free markets is bollocks, as it has been <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://en.wikipedia.org/wiki/Liberal_paradox">proved</a> by Sen in 1970 (again, he too got a Nobel Prize in Economics for this). Moreover, if considering tokens as an intrinsically transferrable property is very appropriate in some contexts such as finance, it may give rise to a distorted set of incentives in contexts such as governance.</p><p>Indeed, I do believe that there are some type of goods and services that are more justly and efficiently distributed in a semi-centralized way, such as public resources and welfare. <em>Semi-centralized</em> here refers to economic policy, not to people’s agency and ownership: with this I mean that <em>the economic set of incentives around some goods and services should not be entirely dictated by markets.</em> In all these cases, ERC-20 and ERC-721 standards may not be the best choice. As we see for NFTs, that stemmed out of ERC-20 by imposing restrictions on fungibility, I do believe that alternative token forms that may be more suitable for governance and welfare projects can stem from further restricting the transferrability properties of ERC-20.</p><p>I think that the propositions I made here, that should by all means be considered just as toy models, may transform into something useful in the future if they are met with curiosity and become object of further study.</p>]]></content:encoded>
            <author>fabrizio@newsletter.paragraph.com (Fab)</author>
        </item>
        <item>
            <title><![CDATA[You don't need to lead the revolution to be the revolution: the underrated importance of bystanders and Rasputins]]></title>
            <link>https://paragraph.com/@fabrizio/you-don-t-need-to-lead-the-revolution-to-be-the-revolution-the-underrated-importance-of-bystanders-and-rasputins</link>
            <guid>aarFwitGh050xNVUF9zF</guid>
            <pubDate>Sun, 09 Jan 2022 16:45:04 GMT</pubDate>
            <description><![CDATA[TL;DRPeople often take part to revolutions just for the vibes or to find purpose;Very few people know what is actually happening;Those who know often are not the ones that you think.The idea of Crypto and DAOs as a potentially revolutionary force is a popular one among Cryptoentusiasts, directly or indirectly justifying postures such as the destruction of traditional finance for the benefit of the masses and the importance of collective efforts in making Crypto accessible to everyone. Of cour...]]></description>
            <content:encoded><![CDATA[<p>TL;DR</p><ul><li><p>People often take part to revolutions just for the vibes or to find purpose;</p></li><li><p>Very few people know what is actually happening;</p></li><li><p>Those who know often are not the ones that you think.</p></li></ul><p>The idea of Crypto and DAOs as a potentially revolutionary force is a popular one among Cryptoentusiasts, directly or indirectly justifying postures such as the destruction of traditional finance for the benefit of the masses and the importance of collective efforts in making Crypto accessible to everyone.</p><p>Of course, people that are used to <em>reason</em> about things know that the situation is way more complex than it looks like, and that the lore behind many Cryptocommunities is a strong libertarian one that may eventually result in way more inequality than the one we have now in traditional systems. Yet, Crypto remains very strongly ideologically appealing to many, if only for the idea of <strong>being part of a revolutionary force</strong>. Why?</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/7e28d04166b680e229a4cc7a4b482c84b43653826feb12a131ae2ba2d0ee72c5.jpg" alt="Eugène Delacroix: La Liberté guidant le peuple. Oil on canvas, 1830. Museé du Louvre, Paris. Souce: Wikipedia." blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Eugène Delacroix: La Liberté guidant le peuple. Oil on canvas, 1830. Museé du Louvre, Paris. Souce: Wikipedia.</figcaption></figure><p>My belief is that many people live in a world that is - or at least feels - totally devoid of purpose. We work, we have our lives, our families, but many of us lack that “why?” in their ordinary lives that propels them to literally wake up everyday and do what they do. This feeling (that constitutes the very essence of living in a decadent society) can strike everyone, from the poorest to the wealthiest, and is traditionally a great catalyst for either personal depression or political involvement of any sort, or both. We are all desperately looking to <em>matter</em>, in a way or another, because <em>mattering</em> and <em>purpose</em> are very scarce resources that our current societal asset doesn’t seem to guarantee. This is, in my opinion, for two main reasons:</p><ul><li><p>1 - Socially, we seem to value material things a lot. In a society where media constantly recirculates the idea that “money and property are the only thing that really matters” it feels almost oxymoronic to follow ideologies or to pursue spirituality.</p></li><li><p>2 - In the last decade, with the advent of social media platforms, <em>mattering</em> seems to be perceived as more and more connected with <em>following</em> and <em>recognition</em>. Does it really matter what you do and think if you don’t have a bunch of followers acknowledging it?</p></li></ul><p>Yet, the idea that what one does contributes to a greater cause that is going to make humanity better in the long run is a fundamental need for the majority of us humans. The end result is a <em>fetishization of purpose</em>, where people ascribe ideologies of various sorts as defining parts of their essence, even if, thinking about it a bit harder, in reality they probably would not feel too attached to them. I guess this is true for a huge chunk of Cryptodegens, vax deniers, Jordan Peterson fans, pronoun warriors, followers of the cult of KeK, and so on and so forth, you name it. In any of these “ideological” movements there is a tiny core of people that <em>really</em> believes in what they are doing, and a majority of <em>others</em> that jump on the revolution bandwagon just to have a reason to keep living (“we are leading a revolutioooon!”). The funny thing is that, obviously, everyone feels part of the core, and no one can - by definition - acknowledge to be an <em>other</em>.</p><h2 id="h-so-what" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">So what?</h2><p>All of this is absolutely fine, and what I wrote above about <em>others</em> should not be considered offensive: in the end, it’s just a matter of people finding purpose, that per se is a noble endeavor. Moreover, almost every revolution has been led by a tiny bunch of people followed by a huge swarm of unawares that didn’t know precisely why they were taking part to the community effort, or why it really mattered, but kept being part of it - and often <em>fought</em> for it - basically for its vibe.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/81bdeb31d264b8f38a0472d1df299c9d85d8ab00818dd4b2330c7a750ecd0ac9.jpg" alt="Giuseppe Pellizza da Volpedo: Il quarto stato. Oil on canvas, 1898-1901. Museo del Novecento di Milano. Souce: Wikipedia." blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Giuseppe Pellizza da Volpedo: Il quarto stato. Oil on canvas, 1898-1901. Museo del Novecento di Milano. Souce: Wikipedia.</figcaption></figure><p>In Crypto, this is for sure the feeling. There are a bunch of words thrown up in the air all the time - decentralization, DAO, trustless, governance - and very very few people that really have a the global vision to put all them in place. The majority of Cryptoentusiasts possesses only a vague feeling that “something cool is happening”, and tries to uniform to the social rituals of their environment to belong - think about <em>gm</em>, pepe gifs, and all the <em>memetics</em> surrounding Crypto Twitter, for instance.</p><h2 id="h-but-then-whos-leading-the-decentralized-crypto-revolution" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">But then who’s leading the decentralized Crypto revolution?</h2><p>In Crypto, everything seems to be happening at the same time, and the “epicenter of total coolness” is often perceived to be far from the social circle you are in. Moreover, very few people can look at themselves in the mirror and truly acknowledge that they <em>are</em> <em>leading</em> the Crypto revolution. I am actually sure that this holds true also for many Cryptoinfluencers, that may as well be considered prophets by their followers but, deep down, are tortured by that very same feeling of <em>not knowing precisely what is going on</em> that everyone, in a way or another, feels. Not to mention that rare human breed of idiots that put stuff like “Forbes 30 under 30” in their bios.</p><p>The <em>necessity of protagonism</em> driven by point 2 above often makes us conflate <em>mattering</em> and <em>public recognition</em> and, as result, we tend to imagine that <em>visible</em> people are the ones leading the community effort. When we realize that these people often do not have much more clue of what is going on than the layperson, then the natural question to ask is: <em>who is leading the Crypto revolution?</em></p><p>To answer, let’s look at the main types of actor in the Crypto ecosystem right now.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/232fcd75e6dda9433042ea9d817072830b40efd9b248f92dfaa6c9df35aae4ff.jpg" alt="Valentine Cameron Prinsep - La revolution. Oil on canvas, 1896. Royal Academy of Arts. Source: Wikipedia." blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Valentine Cameron Prinsep - La revolution. Oil on canvas, 1896. Royal Academy of Arts. Source: Wikipedia.</figcaption></figure><h3 id="h-the-bystanders" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">The bystanders</h3><p>The <em>bystander</em>, is, by definition, one that “stands by”, that is, one that is just there, with no particular will of gaining any recognition. Our social media-focused society has basically taught us to either directly or indirectly pity these people for their unforgivable lack of public visibility. But take a look at all the paintings above: In all of them, some “main subjects” are surrounded by a mass of bystanders. If you were to remove them, the main subjects would look like powerless, deranged individuals.</p><p>Indeed the bystander is the very core of any collective effort, and has been historically the most important actor in a revolution, even if we have never been taught to appreciate it. This is because the real force of a revolution lies in its numbers, and bystanders make up the vast majority of the people taking part in any collective effort. They are there, they just vibe, sometimes they do not speak publicly but prefer to listen. In the case of Crypto, this is the submerged part of the Twitter iceberg, that enormous mass of people that rarely tweet, and often read. They use dapps, they talk about web3 with their friends, and <em>lead adoption by adopting.</em> If you are part of this crowd, you should be aware that you are part of this revolution as much as your favourite Cryptoinfluencer is. As the title says, you don’t need to <em>lead</em> the revolution to <em>be</em> the revolution. But let’s keep going.</p><h3 id="h-the-influencers" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">The influencers</h3><p>By <em>influencer</em> here I mean whoever has a <em>direct</em> influence on the masses, which includes but it is not limited to people shilling coins on Twitter. These are the people constantly - and often erroneously - being identified as <em>thought leaders.</em> The whole point here is that being able to build a huge fanbase and having the necessary intellectual toolkit to see, understand and influence the <em>zeitgeist</em> are different skillsets. Indeed, many Cryptoinfluencers are too busy tending to their fanbases to really pause for a second and understand what is going on. This contributes to the overwhelming feeling that “everything moves out of its own accord, as if it were part of a collective will, and I’m often far away from the epicenter of coolness”. If we imagine society as a graph where actors represent the vertexes and social relationships represent the edges, then we may say that Crypto at the moment looks somewhat like this:</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/e55a2ed58f80386e06951f9248ad4b636df250e653b61fa4712b128e678e5ece.png" alt="An highly idealized network graphs of people and their relationships in the Crypto ecosystem." blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">An highly idealized network graphs of people and their relationships in the Crypto ecosystem.</figcaption></figure><p>As we can see, everything looks fairly decentralized: There are four main “aggregation clouds” of <em>bystanders</em> each one gravitating around its own <em>influencer</em>, respectively named A, B, C, D. As one can see, many people belonging to one of these social circles have also ties with people that tend to gravitate around other social circles. So even if there are four “thought leaders” all in all they do not seem to exert an insane amount of influence. This really is a decentralized revolution!</p><h3 id="h-unless-here-come-the-rasputins" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">Unless… Here come the Rasputins</h3><p>I use the word <em>Rasputin</em> to represent people that do not necessarily have a huge public following, but are very <em>influential among influencers</em>. They are relatively unknown to the public and basically work in the shadows. Let’s take the figure above again into consideration, but let’s add something:</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/3c182479d819adff4856f3d27ace3d2a0bbe7f1d80c14e8f9063364916918155.png" alt="X is virtually unknown to everyone, but exerts a huge influence over the whole network. I am pretty sure that someone more versed than me in graph theory could make an argument about differentiating X from A,B,C,D in terms of centrality measures and node-relevance definitions." blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">X is virtually unknown to everyone, but exerts a huge influence over the whole network. I am pretty sure that someone more versed than me in graph theory could make an argument about differentiating X from A,B,C,D in terms of centrality measures and node-relevance definitions.</figcaption></figure><p>In the figure above, X is the <em>Rasputin</em>. X has close ties with the main influencers of the four aggregation clouds, but with no one else. As such, X is virtually unknown to the public (this network has 25 actors and 20 of them are unaware of who X is), but can influence people that influence, relay ideas between them, and basically reach the whole network much faster and much more efficiently than any other actor. Even more interestingly, X will rarely take the blame or merit for what is happening, a task that, usually, will fall upon A,B,C,D.</p><p>The essence of being a <em>Rasputin</em> is having a lot of power without being necessarily publicly accountable for it. The <em>Rasputins</em> are the true ones often leading a revolution. This has been like this in many important times in history, and it will keep being this way. For sure, this is also the case in Crypto.</p><h2 id="h-so-what-can-i-do" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">So what can I do?</h2><p>First of all, be aware that this is the reality of things.</p><p>Second of all, do not fret about lack of public visibility. Being influential is not what matters to be <em>really</em> influential.</p><p>Third, understand that being here just for the vibes is absolutely ok, and you can claim to be a core component of this revolution as much as your favourite Cryptoinfluencer can.</p><p>But what if you want to <em>really</em> matter more? In that case understand who the <em>Rasputins</em> are. Identify where it is that power is really created, relayed and exercised. Connect with those circles instead of trying to build a stupid following. More importantly, keep in mind that the bread and butter to really influence the state of things is having ideas: we are in desperate needs of those and I can guarantee you that many of the people having really powerful ideas in Crypto right now may not necessarily be on your side. If we really want to turn Crypto in a comedy of the commons where the result is a net positive not just for the Cryptocommunity, but for the whole of humanity, we will need way more <em>Rasputins</em> with way more powerful and community-oriented ideas than we have now.</p><p>My own feeling is that there is still time to save Crypto from the Szabo-ultralibertarian dystopia it is slowly turning into, but this window of opportunity is closing. So please, be clever about how you will spend your next months/year in this ecosystem. It will most likely be determinant.</p>]]></content:encoded>
            <author>fabrizio@newsletter.paragraph.com (Fab)</author>
        </item>
        <item>
            <title><![CDATA[A moral analysis of ConstitutionDAO]]></title>
            <link>https://paragraph.com/@fabrizio/a-moral-analysis-of-constitutiondao</link>
            <guid>bLgtH5JYv1N5J1e2ncXs</guid>
            <pubDate>Fri, 07 Jan 2022 20:39:43 GMT</pubDate>
            <description><![CDATA[I’ve written this piece ages ago, but I found the time to publish it only now. Sorry! For those of you that aren&apos;t already hardwired into the crypto-metaverse, let me give a very quick summary of what happened a few weeks ago.There are only 13 known extant original printed copies of the American Constitution. All but two are currently owned by public institutions.A few weeks ago it became known that one of the mentioned two private collectors would be putting their copy of the constituti...]]></description>
            <content:encoded><![CDATA[<p><strong>I’ve written this piece ages ago, but I found the time to publish it only now. Sorry!</strong></p><p>For those of you that aren&apos;t already hardwired into the crypto-metaverse, let me give a very quick summary of what happened a few weeks ago.</p><ul><li><p>There are only 13 known extant original printed copies of the American Constitution. All but two are currently owned by public institutions.</p></li><li><p>A few weeks ago it became known that one of the mentioned two private collectors would be putting their copy of the constitution up for auction at Sotheby&apos;s.</p></li><li><p>A group of people that watched too many Nick Cage movies thought &quot;what if?&quot; and fired up a DAO (Decentralised Autonomous Organization) to take part in the auction and buy it.</p></li><li><p>The mechanism was simple: You give them ETH and receive governance tokens. The ETH was to be used for the auction, the goverance token to vote and decide about what to do with the constitution afterwards (how to take care of it, where to put it on display etc).</p></li><li><p>The ConstitutionDAO - as it was called - managed to get over 40 million dollars in ETH in a matter of days.</p></li><li><p>The auction happened, ConstitutionDAO did unfortunately lose, but nevertheless became legend.</p></li></ul><h2 id="h-why-does-this-matter" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Why does this matter?</h2><p>Aside of the considerations that are obvious for everyone in crypto (power of memetics/degens, investment opportunities, DAOs are the future of finance, etc.) and the incredible entertaining value of the experience (personally I&apos;m more than happy to have provided a few $$ to literally watch the auction live on Youtube with the same state of mind I am in when I&apos;m watching the World Cup finals), there is something much more going on. Let me explain.</p><p>Up to now, decentralised autonomous organizations have mainly developed around the idea of investing and finance. The mechanics is simple: You put crypto in, you receive some tokens in return, the DAO does something and your tokens will hopefully increase in value. This has been true for DeFi liquidity pools and farms, for many governance tokens (that are often considered to be the equivalent of shares in a company by their owners, but don&apos;t tell the SEC please) and for NFTs, that are often bought to be resold - flipped, as we say - more than for their intrinsic artistic value. With ConstitutionDAO something else happened. <strong>A copy of the constitution of the most powerful country on Earth, that along with France bootstrapped the process of modern Democracy in the whole western world, was owned by a private collector.</strong> When you think about it, this sounds so ludicrous to be straight up paradoxical: No other document has influenced the lives of the people in the US and more in general in the post-WWII world more than this one. It literally contains the law and guiding principles that build up a democracy, which by definition should empower people. The thing even starts with the words &quot;<strong>We, the people</strong>&quot; and <strong>yet</strong> it is <strong>owned</strong> by someone. The moral perversion of all this should be absolutely evident. Mind me, I say <strong>moral</strong> and not <strong>legal</strong>, because legally there is nothing wrong going on, it&apos;s a historic manuscript that can be bought and sold like any other old book. It&apos;s the content and political significance of the manuscript that turns everything in a moral crime.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/14b153005a6ab2ed18e0a8d3eaf9ca917bfd4d3cd80f671905a8a810446f42f3.jpg" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><p>And well, having understood this, we are finally able to frame ConstitutionDAO actions in different terms: A bunch of people - a community - banded together to take the Constitution out of the hands of a private collector and transform it into what it was supposed to be from the start, <strong>a public good</strong>. This is unprecedented, and totally different from the usual &quot;DAO as a mean of investing&quot; lore that has been underlining the crypto world for so long. To be more blunt, what I am saying is that I don&apos;t give a <em>flying fuck</em> that people managed to raise 40M in a week, the real important thing is how this happened to <strong>make justice to a moral wrong</strong>.</p><p>For sure, as in any revolution there are a bunch of idiots following the crowd not really understanding what is going on. I am very sure many people <em>invested</em> in this project, that is, they put money in hoping for a return. As of me, and I&apos;m sure as of many others, this thought never fucking ever crossed our minds in that moment. In an epic twitter space hosted by Cal shortly after the auction I have been able to talk with many other participants, and the whole situation was very poetic: Everyone was saying something, some considerations more trivial, some less, but there was this underlying feeling that something important had just happened. As it is for any milestone event, one is not exactly able to pinpoint <em>why</em> what&apos;s happening is important, but the gut feeling stays. In simple terms, when you are witnessing history in the making you don&apos;t really know precisely what you are witnessing until, well, history is made.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/81bdeb31d264b8f38a0472d1df299c9d85d8ab00818dd4b2330c7a750ecd0ac9.jpg" alt="Giuseppe Pellizza da Volpedo: Il quarto stato. Oil on canvas, 1898-1901. Museo del Novecento di Milano. Souce: Wikipedia." blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Giuseppe Pellizza da Volpedo: Il quarto stato. Oil on canvas, 1898-1901. Museo del Novecento di Milano. Souce: Wikipedia.</figcaption></figure><p>In my opinion, which per what I said above may just be part of the story, or altogether wrong, the real important event here is having proved how DAOs aren&apos;t just a nice tool to do investment and finance, but how they can indeed be increadibly useful to operate in the space of public goods. This is unprecedented, and we can barely imagine where this will lead.</p><h2 id="h-what-then" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">What then?</h2><p>As one could imagine, having failed to acquire the Constitution we were then in the pickle of having more than forty million dollars and zero clue about what to do with them. An obvious suggestion was to give them back to the people that wanted to leave the project. This was made difficult by some nasty technicalities, namely that the crowdfund and token distribution happened on ETH Layer 1 and that many people made small donations, around 200$. Another suggestion was to keep going, and use the money to do something nice. This is the thing that interested me the most. I didn&apos;t think we should have just spent the money to seek an economic return. I thought, instead, that we should have kept in mind the moral significance of what we just did, and persever in this direction, the one of the public good. In any case, in the end the project closed shop, part of the ETH got redeemed and many people sold their tokens.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/14cac3b892236cb326386e350adc689a695788449bfb78c78f2baac694ec9bdb.jpg" alt="Isaac Asimov: Foundation. Cover of the first edition. Source: Wikipedia." blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Isaac Asimov: Foundation. Cover of the first edition. Source: Wikipedia.</figcaption></figure><p>I don&apos;t know if you are familiar with Isaac Asimov&apos;s work, but in his <em>Foundation Cycle</em> he describes this collective, called <em>Foundation</em>, that has the purpose of preserving knowledge and history in the event of a tremendous societal collapse, to aid the reconstruction of civilization. This is what ConstitutionDAO made me think of. I like to think that our intent may have been similar: In a world where everything is owned by the few, where inestimable art pieces are kept away in underground vaults as a mean of economic insurance, where inequality is tearing our society apart, we had the possibility of taking care of the public space, of returning things to the public good, and of managing them together. If you don&apos;t think this is increadibly important you&apos;re ngmi, not just in crypto but in life.</p><p>To conclude, this is the moral lesson that the ConstitutionDAO taught me:</p><p><strong>We, the people shall embark on a mission to reclaim all the tangible and intangible cultural heritage of humanity from private collectors and owners, and return it to the public good.</strong></p><p>I still hope that, one day, the Foundation will begin.</p><h2 id="h-acknowledgements" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Acknowledgements</h2><p>I want to thank everyone at ConstitutionDAO for having made this possible, everyone that participated in the crowdfund, Cal for the wonderful Twitter space and the gracious hosting after the auction, the degens in the YT auction live chat that were priceless, and all my colleagues and friends for useful inputs for this piece. Thanks to you all now I can proudly say “I was there”.</p>]]></content:encoded>
            <author>fabrizio@newsletter.paragraph.com (Fab)</author>
        </item>
    </channel>
</rss>