<?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>FILTER8</title>
        <link>https://paragraph.com/@filter8</link>
        <description>ARE WE DRAWING THE WORLD OR IS THE WORLD THAT MAKES US DRAW.</description>
        <lastBuildDate>Mon, 24 Aug 2026 03:07:25 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>https://github.com/jpmonette/feed</generator>
        <language>en</language>
        <image>
            <title>FILTER8</title>
            <url>https://storage.googleapis.com/papyrus_images/9989f4e0ae40af8a4373116237ae795c0a76c72a139c569b0731df621d5b764d.png</url>
            <link>https://paragraph.com/@filter8</link>
        </image>
        <copyright>All rights reserved</copyright>
        <item>
            <title><![CDATA[Minting ON-CHAIN erc-1155 tokens on $HAM]]></title>
            <link>https://paragraph.com/@filter8/minting-on-chain-erc-1155-tokens-on-ham</link>
            <guid>Emzjkks8iRgyeYEJKFOU</guid>
            <pubDate>Sat, 17 Aug 2024 11:10:05 GMT</pubDate>
            <description><![CDATA[Welcome to a tutorial on minting fully on-chain erc-1155 tokens on the Ham L3 network using Net Protocol.Minting ON-CHAINMinting on-chain refers to the process of uploading the entire artwork directly onto the blockchain. The main advantage of this method is that all the data is fully stored in a decentralized manner, eliminating the need for external storage solutions. However, a significant drawback is that it is limited by file size and file type constraints. In this tutorial, we will spec...]]></description>
            <content:encoded><![CDATA[<p>Welcome to a tutorial on minting fully on-chain erc-1155 tokens on the Ham L3 network using Net Protocol.</p><h2 id="h-minting-on-chain" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Minting ON-CHAIN</h2><p>Minting on-chain refers to the process of uploading the entire artwork directly onto the blockchain. The main advantage of this method is that all the data is fully stored in a decentralized manner, eliminating the need for external storage solutions.</p><p>However, a significant drawback is that it is limited by file size and file type constraints. In this tutorial, we will specifically focus on saving SVG files as data URIs on the Ham blockchain.</p><p>For more detailed information about on-chain NFTs, I recommend reading this wonderful article:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.fullyonchain.art/articles/why-fully-on-chain">https://www.fullyonchain.art/articles/why-fully-on-chain</a></p><h2 id="h-ham-chain" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Ham Chain 🍖</h2><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://ham.fun/">Ham Chain</a> is a fast, cost-effective Layer 3 blockchain built on the OP Stack and Base. While saving files directly on the blockchain can be expensive, using Layer 3 solutions like Ham Chain reduces these costs, making on-chain file storage more affordable.</p><p>Besides that, Ham is at the forefront of a paradigm shift where users are prioritizing control, ownership, privacy, and interoperability over the censorship and ad-ridden experiences managed by centralized corporations.</p><p>Ham is empowering social connections with fun experiences built on decentralized systems.</p><p>A perfect place to start putting our art on-chain.</p><h2 id="h-net-protocol" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Net Protocol</h2><p>In order to mint our artwork on-chain, we will need a smart contract to be injected into the blockchain. For this tutorial we gonna use: <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.netprotocol.app/">Net protocol</a>.</p><p>Net Protocol is a decentralized permissionless messaging protocol written by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/AspynPalatnick">Aspyn</a>. Net is completely free and open source. You can explore the code on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://github.com/stuckinaboot/Net">GitHub</a> for more information.</p><p>Besides the messaging board, Net Protocol also offers a minting page to create smart contracts for Ham and Base, which we will discuss at the end of this tutorial.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/76bf6a1568de5d76ced0b8d55fcfba00799bd79feab4c5d17f34e12bbf3a4469.png" alt="Net protocol on Ham" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Net protocol on Ham</figcaption></figure><h2 id="h-minting-on-your-art" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">Minting on your Art</h2><p>Let us start minting our art fully on-chain on Ham. This requires the following steps:</p><ol><li><p>create our artwork</p></li><li><p>convert our art to a svg file</p></li><li><p>compress our file</p></li><li><p>convert our svg file to a data uri base64 code</p></li><li><p>mint our art</p><p>First, we need to create a piece of art. I&apos;m a fan of pixel art, so I designed a charming Tiny Dino holding a ham. To save this image on-chain, we need to convert it into an SVG format, which can then be rendered by our browser as a data URI.</p></li></ol><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/c62fee95847b56a093702dde775a3b8219ecae18021faa10a148c4d6fd2495f9.png" alt="png file " blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">png file</figcaption></figure><p>Next, we need to convert our png file into an svg file. There are various online tools, and I found this one quite handy:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.freeconvert.com/png-to-svg/download">https://www.freeconvert.com/png-to-svg/download</a></p><p>After converting our PNG to an SVG, I strongly recommend compressing the file. As we know, file size is crucial for on-chain storage—the smaller, the better. That&apos;s why compression is our best friend in this process.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://vecta.io/nano">https://vecta.io/nano</a></p><p>Attached, you will find the compressed version of our SVG. We saved 74.3% without losing quality! Pretty cool.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/f643f2be12827f061edbc9d83db21989458dda5f782411465a17be92946cc39a.png" alt="compressed svg" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">compressed svg</figcaption></figure><p>Finally, we&apos;re ready to convert our image into a piece of code by turning the SVG into a Base64 data URI string using a Base64 encoder:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://base64.guru/converter/encode/image/svg">https://base64.guru/converter/encode/image/svg</a></p><p>What you get is a code snippet, which miraculously represents your art as a piece of code. You can copy the code into your browser window, and it should render the image above.</p><p><code>data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5OTIiIGhlaWdodD0iOTkyIiB4bWxuczp2PSJodHRwczovL3ZlY3RhLmlvL25hbm8iPjxwYXRoIGQ9Ik0wIDBoOTkydjk5MkgwVjB6IiBmaWxsPSIjZjU0MjQ3Ii8+PHBhdGggZD0iTTM3MiAzMTBoMjQ4djYyaDYydjEyNGgtNjJ2NjJoNjJ2NjJINTU4djYySDQzNHY2MmgtNjJ2LTYyaC02MnYtNjJoNjJWNDM0aDYydi02MmgtNjJ2LTYyeiIgZmlsbD0iIzU3OGMzYyIvPjxwYXRoIGQ9Ik0zNzIgMTg2aDE4NnY2MmgxMjR2NjJIMzcyVjE4NnoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzcyIDMxMGgyNDh2MTI0aC02MnYtNjJoLTYydjYyaC02MnYtNjJoLTYydi02MnoiIGZpbGw9IiM1NzhjM2MiLz48cGF0aCBkPSJNNjIwIDYyMGg2MnY2Mmg2MnYtNjJoNjJ2MTI0SDYyMFY2MjB6IiBmaWxsPSIjY2MzZjNmIi8+PHBhdGggZD0iTTQzNCA0OTZoMTI0djE4Nkg0MzR2LTYyaDYydi02MmgtNjJ2LTYyeiIgZmlsbD0iIzA4NDNmOSIvPjxwYXRoIGQ9Ik02MjAgNzQ0aDE4NnY2Mkg2MjB2LTYyeiIgZmlsbD0iI2ZiNmY3YyIvPjxwYXRoIGQ9Ik02ODIgNTU4aDYydjEyNGgtNjJWNTU4eiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik01NTggNTU4aDEyNHY2Mkg1NTh2LTYyem0tNjIgMTI0aDYydjYyaC02MnYtNjJ6IiBmaWxsPSIjNTc4YzNjIi8+PHBhdGggZD0iTTMxMCA1NThoNjJ2NjJoLTYydi02MnoiIGZpbGw9IiNmZmMyYjQiLz48cGF0aCBkPSJNMjQ4IDU1OGg2MnY2MmgtNjJ2LTYyeiIgZmlsbD0iIzU3OGMzYyIvPjxwYXRoIGQ9Ik03NDQgNDk2aDYydjYyaC02MnYtNjJ6bS0xMjQgMGg2MnY2MmgtNjJ2LTYyeiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik01NTggNDk2aDYydjYyaC02MnYtNjJ6IiBmaWxsPSIjZjU0MjQ3Ii8+PHBhdGggZD0iTTMxMCA0MzRoNjJ2NjJoLTYydi02MnoiIGZpbGw9IiNmZmMyYjQiLz48cGF0aCBkPSJNNTU4IDM3Mmg2MnY2MmgtNjJ2LTYyeiIvPjxwYXRoIGQ9Ik00OTYgMzcyaDYydjYyaC02MnYtNjJ6IiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTQzNCAzNzJoNjJ2NjJoLTYydi02MnoiLz48cGF0aCBkPSJNMzcyIDM3Mmg2MnY2MmgtNjJ2LTYyeiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0zMTAgMzEwaDYydjYyaC02MnYtNjJ6IiBmaWxsPSIjZmZjMmI0Ii8+PC9zdmc+</code></p><p>Finally, we can inscribe our code snipped on the blockchain using the Net Protocol Open Edition Smart Contract Creator:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.netprotocol.app/app/inscribed-drops/create">https://www.netprotocol.app/app/inscribed-drops/create</a></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/df27a103df0daf48ee533fd2374a424f11dbae067c311a8ad0bd12cadae85599.png" alt="Inscribe on Net Protocol" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Inscribe on Net Protocol</figcaption></figure><p>Net Protocols creator page is quite simple. The important part here is that you paste your code into the “Enter url manually...“ field, and you are connected to the Ham network. (You can also use the tool on Base if you are connected with your wallet to Base.)</p><p>Next, we give our artwork a name, description, mint price, and supply. Then press the magical “Inscribe drop” button.</p><p>A final pop-up window will appear, summarizing your drop. This also serves as a checkpoint—if your art is coded correctly, you should see a small thumbnail of your image.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/2861759755f982a681a38b2ac5b499b8abe204d1b89f0181fa6ffa88a08492e7.png" alt="review window" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">review window</figcaption></figure><p>And voila, we successfully inscribed our art fully on-chain on the Ham Network!</p><p>There are no secondary royalties and no fee to create an inscribed drop. On every mint of a paid inscribed drop, there’s a 5% fee (95% of mint fees go to the creator who made the drops, and 5% is a fee to me to help support the development of the Net protocol). On free inscribed drops, there’s no fee.</p><p>Big up for the developers providing creators with tools for putting our art on-chain. Special thanks to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://warpcast.com/aspyn">Asypn</a> of Net Protocol and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://warpcast.com/deployer">Deployer</a> of Ham Chain.</p><hr><p>Thanks for your time and interest for on-chain art. You can visit <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://filter8.xyz/">filter8.xyz</a> for more information.</p><p>You can find me on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://warpcast.com/filter8">warpcaster</a> or <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/filter8_tez">twitter</a>.</p><p>Wish you a wonderful day.</p><p>Your Filter <strong>💜</strong></p><hr><p>Attached you can find my already successfully inscribed artworks on 🍖 Ham.</p><p><strong>Dino loves Ham</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.netprotocol.app/app/inscribed-drops/mint/ham/0">https://www.netprotocol.app/app/inscribed-drops/mint/ham/0</a></p><p><strong>Net Dino:</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.netprotocol.app/app/inscribed-drops/mint/ham/1">https://www.netprotocol.app/app/inscribed-drops/mint/ham/1</a></p><p><strong>Hamcaster:</strong></p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.netprotocol.app/app/inscribed-drops/mint/ham/2">https://www.netprotocol.app/app/inscribed-drops/mint/ham/2</a></p><hr><div data-type="subscribeButton" class="center-contents"><a class="email-subscribe-button" href="null">Subscribe</a></div>]]></content:encoded>
            <author>filter8@newsletter.paragraph.com (FILTER8)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/d8a29c14149cf3435027331c83e43827e530b7d4d09b329ef4dfb643abadfca2.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[THE BLOCK 8PEPEN CODE]]></title>
            <link>https://paragraph.com/@filter8/the-block-8pepen-code</link>
            <guid>BOmw9zWCAeHGpKWhdatO</guid>
            <pubDate>Wed, 24 Apr 2024 21:17:14 GMT</pubDate>
            <description><![CDATA[BLOCK 8PEPEN is a generative artwork in which the RGB values are determined by the Block number of the Base Network. The following article delves into the code that powers this unique piece of art.THE OPEPEN FRAMEWORKThe fundamental structure of the artwork is an 8x8 pixel representation of an Opepen silhouette. Opepen serves as an open art canvas/protocol, encouraging participation from artists worldwide who contribute their interpretations of its shape.Basic Opepen shapeThe 8PEPEN symbolize...]]></description>
            <content:encoded><![CDATA[<p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://highlight.xyz/mint/66258cd8a9abba67ec41e639">BLOCK 8PEPEN</a> is a generative artwork in which the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://en.wikipedia.org/wiki/RGB_color_model">RGB</a> values are determined by the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://basescan.org/blocks">Block number</a> of the Base Network. The following article delves into the code that powers this unique piece of art.</p><h2 id="h-the-opepen-framework" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">THE OPEPEN FRAMEWORK</h2><p>The fundamental structure of the artwork is an <strong>8x8 pixel</strong> representation of an <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://opepen.art/">Opepen</a> silhouette. Opepen serves as an open art canvas/protocol, encouraging participation from artists worldwide who contribute their interpretations of its shape.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0c703fe67700298a9968ce0bbd5db3f29bfcf3ee2b6612ef1f61d8072741fbac.png" alt="Basic Opepen shape" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Basic Opepen shape</figcaption></figure><p>The 8PEPEN symbolizes the most simplified form achievable in pixel format, consisting of a total of <strong>64 pixels</strong> arranged in an 8x8 grid.</p><h2 id="h-the-block-8pepen" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">THE BLOCK 8PEPEN</h2><p>The code driving this artwork generates infinite variations based on the <strong>Block Height</strong> of each minted piece. Utilizing block data enables ensuring that each minted artwork is unique to its respective block.</p><p>The Block Height, or Block Number, influences <strong>four key layers</strong> of the artwork:</p><ol><li><p>The canvas background color</p></li><li><p>The position and color of the eyes</p></li><li><p>The background color of the body</p></li><li><p>The color and pixel count of the 8pepen body</p></li></ol><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/ae1b43fc644dcb1fe5a5d606592bda4e8eee267bac111805ebebaa547bb0f355.png" alt="Block 8pepen Layer" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Block 8pepen Layer</figcaption></figure><h3 id="h-1-the-background" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">1. THE BACKGROUND</h3><p>To enhance the dynamic nature of the artwork, I&apos;ve opted to calculate the background color based on the <strong>last three digits</strong> of the block number on the Base Network.</p><p>Let&apos;s consider BLOCK 8PEPEN #1 as an illustrative example:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://opensea.io/assets/0xBE17f4056bBad5640e0060975A9585d8E9Ac0C3D/1">https://opensea.io/assets/0xBE17f4056bBad5640e0060975A9585d8E9Ac0C3D/1</a></p><p>For BLOCK 8PEPEN #1, with a block number of <strong>13473826</strong>, the RGB values are derived from the last three digits as follows:</p><p>R: 6 (multiplied by 25 to fit within the 0-255 range) -&gt; R = 6 * 25 = 200</p><p>G: 2 (multiplied by 25) -&gt; G = 2 * 25 = 50</p><p>B: 3 (multiplied by 25) -&gt; B = 6 * 25 = 150</p><p>Thus, the calculated RGB color for the background of this artwork would be (R: 200, G: 50, B: 150).</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/4d61019a4205190caef4926b8c76f006a50ee18401e32224c5011ef37da71fa6.png" alt="Background calculation" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Background calculation</figcaption></figure><h3 id="h-2-the-eyes" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">2. THE EYES</h3><p>For the eyes of BLOCK 8PEPEN, they play a significant role in humanizing its shape. The direction of the eyes, either left or right, is determined by the last digit of the block number. Here&apos;s the logic:</p><ul><li><p>When the last digit is <strong>odd,</strong> the eyes look to the <strong>right</strong> side.</p></li><li><p>When the last digit is <strong>even</strong>, the eyes look to the <strong>left</strong> side.</p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/5b26fd7ea254c5c1456a070737d6d0ac158541ca60c26f8055b62b2855f35529.png" alt="Eyes position" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Eyes position</figcaption></figure><h3 id="h-3-the-body-background" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">3. THE BODY BACKGROUND</h3><p>To determine the background color of the body in BLOCK 8PEPEN, a <strong>grayscale</strong> value is derived from the <strong>fourth last digit</strong> of the block number. The higher the digit, the darker the background; conversely, the lower the digit, the lighter the background.</p><p>Starting from a base RGB value of (250, 250, 250), the grayscale value decreases by a factor of 20 for each increment in the digit. At 0, the body background color will be nearly white, while at 9, it will be nearly black.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/7e9c8424aaf1024359565d78eaa05d5e7bf00afc39a8ad47df42fd33af3bedf2.png" alt="Body Background color" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Body Background color</figcaption></figure><h3 id="h-4-the-body-color-and-pixels" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">4. THE BODY COLOR AND PIXELS</h3><p>For the body of BLOCK 8PEPEN, a grid of random pixels is generated, with the <strong>randomness</strong> of colors influenced by the RGB components of the <strong>last</strong> <strong>four digits</strong> of the block number.</p><p>The number of <strong>random pixels drawn</strong> is determined by the <strong>fifth last digit</strong> of the block number, contributing to variability in the appearance of the grid. A lower digit results in fewer pixels being drawn, increasing the probability of the body&apos;s background color being visible.</p><p>The body color itself is determined by a random function, ensuring that every token minted has a unique combination of colors, even if multiple tokens are minted within the same block.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0d6d10377258beb2b5e8a6114c35c975bbce52bf67ac20ab8649fd72bf61fafd.png" alt="Random Pixel function" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Random Pixel function</figcaption></figure><p>Random colors are generated for each 64 pixel within the canvas. The randomness is influenced by the RGB components of the <strong>last 3 digits.</strong></p><p>For each color component (red, green, blue), a random value between 0 and 255 is generated, and the corresponding RGB component of the number (<code>r</code>, <code>g</code>, <code>b</code>) is added to it. This helps ensure that the generated colors are influenced by the RGB components of the number.</p><p>The scaling factor for each color component is adjusted based on the fourth last digit of the number. If this digit is even, the scaling factor is set to 2, otherwise, it remains 1.</p><h2 id="h-unlimited-and-free" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">UNLIMITED &amp; FREE</h2><p>In conclusion, <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="">BLOCK 8PEPEN</a> embodies a fusion of art and technology, where each piece is a unique reflection of the blockchain&apos;s data.</p><p>Join the journey of discovery and creativity by collecting your own BLOCK 8PEPEN token. The token is <strong>free to mint</strong> on with an <strong>unlimited supply</strong>. The code is written to ensure not a single generated artwork is the same.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://highlight.xyz/mint/66258cd8a9abba67ec41e639">https://highlight.xyz/mint/66258cd8a9abba67ec41e639</a></p><p>Embrace the uniqueness of blockchain art and be part of a global community shaping the future of digital expression.Start your collection now and become a part of the groundbreaking <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://opepen.art/">Opepen</a> movement.</p><hr><p>Thanks for your time and interest in my art. You can visit <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://filter8.xyz/">filter8.xyz</a> for more information.</p><p>You can find me on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://warpcast.com/filter8">warpcaster</a> or twitter.</p><p>Wish you a wonderful day.</p><p>Your Filter <strong>💜</strong></p><div data-type="subscribeButton" class="center-contents"><a class="email-subscribe-button" href="null">Subscribe</a></div>]]></content:encoded>
            <author>filter8@newsletter.paragraph.com (FILTER8)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/d75fecc1e1260cfc055f20c99dc2812a90044f1d3766b507a60b8dff6eaabd0c.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[TICKER FROM AN ARTISTIC PERSPECTIVE]]></title>
            <link>https://paragraph.com/@filter8/ticker-from-an-artistic-perspective</link>
            <guid>WAsNfylOZgG6e3W3gyLv</guid>
            <pubDate>Mon, 18 Mar 2024 20:09:59 GMT</pubDate>
            <description><![CDATA[As an artist you often struggle to find a topic worth to work on. You have no inspiration to create something meaningful. Events in the Crypto space like the latest Rug-Pull from Ticker happening on Warpcast on the 18th of March 2024 can be a source for artistic output. Despite the economical pain it creates, it can push creativity into unknown paths.THE STARTI noticed Ticker from people starting to share posts from this project. It should be a meme coin released on Base. Personally I am very...]]></description>
            <content:encoded><![CDATA[<p>As an artist you often struggle to find a topic worth to work on. You have no inspiration to create something meaningful. Events in the Crypto space like the latest Rug-Pull from <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://warpcast.com/ticker">Ticker</a> happening on Warpcast on the 18th of March 2024 can be a source for artistic output.</p><p>Despite the economical pain it creates, it can push creativity into unknown paths.</p><h2 id="h-the-start" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">THE START</h2><p>I noticed Ticker from people starting to share posts from this project. It should be a meme coin released on Base. Personally I am very careful with meme coins, because I don’t have enough knowledge about their dynamics. I was attracted by the name, the design and the rapid growth of the channel subscribers.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/af12580034fc937ff7d7b382a51e858e5cb8635afc1238a75ecb382b9fe98f65.png" alt="TICKER PFP" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">TICKER PFP</figcaption></figure><p>The Ticker PFP represent 3 green ticks, which we see in crypto price charts indicating a constant upward movement (which is a worth a meme itself ).</p><h2 id="h-the-tickers" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">THE TICKERS</h2><p>Attracted by the design and the green color (0, 255, 0) I created a 24x24px Ticker template including an Ear, inspired by the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://cryptopunks.app/">CryptoPunks</a> , to make a reference to a pfp.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/846ca10cb0918f6dc68ab836fc85902645a663feaa5cd24461667a9e77cd91cb.png" alt="THE TICKER TEMPLATE" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">THE TICKER TEMPLATE</figcaption></figure><p>Seeing the rapid growth I set my the limit to finish a 100 hand drawn pixel art collection in 24 hours. For simplicity and constraint I chose to work in a simple 1 Bit format.</p><p>While creating the artworks I started to incorporate 3 main characteristic elements:</p><ul><li><p>The classic PFP with a mouth, eyes, ear trait…</p></li><li><p>Electronic parts like, keyboards, screen, electronic circuits…</p></li><li><p>Crypto related elements like, arrows, checks, charts, money…</p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/bac71076b08d37facdd763c9d25bf81fa0dd94bee9791d5d05896455decea160.png" alt="3 characteristics of THE TICKERS" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">3 characteristics of THE TICKERS</figcaption></figure><p>The collection is available on Zora minted on the Base Layer with a price of 0.001 eth. The 100 unique artworks are a memorial to the first big rug pull on Warpcaster and are part of the RGB Trilogy.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="">nft://8453/0x11Add0602684c15C434e13f006b7048aE5147ef8/?showBuying=true&amp;showMeta=true</a></p><h2 id="h-the-rgb-trilogy" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">THE RGB TRILOGY</h2><p>Creative thoughts often come after you finished the work, seeing in out on-chain ready for others to collect and enjoy. After releasing THE TICKERS collection I came up with the idea to build a 1 Bit RGB Trilogy. A set of 3 collections that are connected though the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://en.wikipedia.org/wiki/RGB_color_spaces">RGB</a> color space minted on 3 different L2 chains.</p><ul><li><p>R (255,0,0) BRAIN OP on Optimism</p></li><li><p>G (0,255,0) THE TICKERS on Base</p></li><li><p>B (0,0,255) t.b.a on Zora</p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/cf73d55863d091d15ff989f38484cc2e610445d787f0fcc31fe106b187211532.png" alt="R G B Colors" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">R G B Colors</figcaption></figure><h3 id="h-brain-op" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">BRAIN OP</h3><p>BRAIN OP represents the first collection of the trilogy with the color RED. It is a free collection of 1337 Brains created on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.optimism.io/">Optimism</a> one day after the epic airdrop for all L2 creators.</p><p>It is inspired by <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://1337skulls.xyz/brians">Brains</a> a CC0 collection of the amazing <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://1337skulls.xyz/">1337-Skull</a> collective. I created a 1 Bit version with new traits using the color code RGB code 255,0,0.</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="">nft://10/0x73b83837AC091C59BbbBD3FC41b92033dC431814/?showBuying=true&amp;showMeta=true</a></p><h2 id="h-trust-in-real-people" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">TRUST IN REAL PEOPLE</h2><p>Although rugging people is not good, it happens over and over in the crypto space. I think we can learn and get inspired to create artworks around things happening to us. Good or bad.</p><p>Look for real people with real connections and reputation in the space no matter what they are building. Listen to the OG in the space, so we don’t do the same mistake again.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/d06aeab2434b0d1b55d1e20cfedaba1c9c69f0cb9ca8e68c8e159cdf47cc50fc.png" alt="BE REAL" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">BE REAL</figcaption></figure><p>I love to collect and try to search for real people to buy art from. Sometimes it does not play out, but at least I got a piece of art in my wallet to enjoy.</p><p>There is no security for not nothing in this world. But one thing I believe is Karma.</p><hr><p>Thanks for your time and interest in my art you can find more information about me and art on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://filter8.xyz/">filter8.xyz</a>.</p><p>find me on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://warpcast.com/filter8">warpcaster</a> or <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="">twitter</a> and say hello.</p><p>Wish you a wonderful day.</p><p>Your Filter <strong>💜</strong></p>]]></content:encoded>
            <author>filter8@newsletter.paragraph.com (FILTER8)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/6274cfad0a53994e9c94248bd9bbb9f06afd24c7c272ff3e2cf5bf154d28844e.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[ART WITH LIMITATION]]></title>
            <link>https://paragraph.com/@filter8/art-with-limitation</link>
            <guid>XTcfqIH32XM8tQuteAbY</guid>
            <pubDate>Sun, 04 Feb 2024 14:44:50 GMT</pubDate>
            <description><![CDATA[All humans have one limitation in life. The limitation of how long they are going to live on planet earth. Getting creative on how to use this time is an art of its own.LIMITATION OF TIMEMy creative journey began on the streets of my hometown and spread globally over time. This was thehe first time I experienced the limitation of time and space. It became part of my creative journey. You often only have a time window of 10 to 15 minutes to create your masterpiece before you have to leave the ...]]></description>
            <content:encoded><![CDATA[<p>All humans have one limitation in life. The limitation of how long they are going to live on planet earth. Getting creative on how to use this time is an art of its own.</p><h2 id="h-limitation-of-time" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">LIMITATION OF TIME</h2><p>My creative journey began on the streets of my hometown and spread globally over time. This was thehe first time I experienced the limitation of time and space. It became part of my creative journey.</p><p>You often only have a time window of 10 to 15 minutes to create your masterpiece before you have to leave the spot. The challenge is to create something satisfying in such a short time within the limitation of the location and the colors you have brought with you that night.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/017745a9a522c0634be76bf25682d110ba8e19b6dc8b5a95d55be0039c2f9508.jpg" alt="Limitation of Time &amp; Space" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Limitation of Time &amp; Space</figcaption></figure><h2 id="h-limitation-of-storage" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">LIMITATION OF STORAGE</h2><p>Growing up also means more responsibility and I had to left my crazy graffiti life. What brought me back to create art was the blockchain technology. Storing my art permanently on-chain, being able to share and connect with people globally was overwhelming. But like everything in life, I also found limitation on the blockchain.</p><p>Storing art natively on-chain and making it immortal comes with the limitation of storage and style. The first no code solution I found was <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.8bidou.com/">8bidou</a>, a bitmap minter on the tezos blockchain. To make minting affordable, the platform limited the size to 8x8 px and stores the art in a pixel array saved fully on-chain. Pixels become my new spray paint and <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://filter8.xyz/">FILTER8</a> my new alias.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/8f519c123a066935c795a195e28a15895eb9c70536a137ba2e90b48cdf2cdc6e.png" alt="Smol Portrait Collection on Tezos " blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Smol Portrait Collection on Tezos</figcaption></figure><h2 id="h-limitation-of-size" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">LIMITATION OF SIZE</h2><p>Limit storage means limited space. Working over a year with only 64 pixels deepen my understanding of expressing something meaningful within such a small canvas. I was getting obsessed on how small i can get.</p><p>January this year I released the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://opensea.io/collection/weeping-pixels">Weeping Pixels</a> collection with the limitation of 6 colors on a 6x6 canvas. Weeping Pixels originated from Pivs “that feel when” exhibition on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://foundation.app/world/tfw/exhibition/348">foundation</a>. This taught me how important colors are, when reducing it to the limit.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/ede49e4a73c924c54601a4163918176a5c970a17a3655dc82fe61f686be57318.png" alt="Weeping Pixels on Base " blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Weeping Pixels on Base</figcaption></figure><h2 id="h-limitation-of-colors" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">LIMITATION OF COLORS</h2><p>Limiting yourself to certain size is one thing, but limiting yourself to colors is the next step. When researching about bitmap images I came across the 16 color palette used in the first windows machines. Caught by the nostalgic feel, the strong colors and the reference to something life changing become my go to colors for my pixel projects.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/b6941887272bcf2f268f49990d606a2ded3fb43b769ff8a0862d4f70b24a5f6a.png" alt="Artworks on FX-HASH" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Artworks on FX-HASH</figcaption></figure><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/e3693ff605dd8d48588b006d7e0a6f4997fb86da929ee4ff709463610ea67f8c.png" alt="Windows 95 colors palette" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Windows 95 colors palette</figcaption></figure><h2 id="h-limitation-of-style" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">LIMITATION OF STYLE</h2><p>When Jack approached me to make an Opepen set I was honored and accepted the challenge to work within the next limitation. The limitation of style. Opepen follows certain rules of aesthetic and making my style merge within such a strong iconic image set the bar high.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/2ed0279732729978aa609ca8b6ca1b8eb0f530f6c20d91984c6f729e0bfd8d5b.png" alt="The limitation of Style" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">The limitation of Style</figcaption></figure><p>My starting point was the most limiting design I was able to make with my style. The 1- Bit 8x8 Opepen. Being so reduced I felt they needed some description to make them even recognizable.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/82ae4eb20bf48c418991be9780bb2338aabffbb3e0e333f0b72b10720680a307.png" alt="1 bit Opepen" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">1 bit Opepen</figcaption></figure><p>In the seconds iteration I increased the canvas size to 16x16 and introduced my signature color scheme. Having learned from the my previews projects, I knew that the colors are going to play a crucial role in the final artworks. The reference to the Windows NT systems is an important factor for the set, representing the 3 DECADES OF MAGIC, merging the old designs with the NEW TECHNOLOGIES.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/9379419aa5122673eb191249369593d759791890cfc3551866c80db36dbbcb7e.png" alt="First Iteration of the NEW TECHNOLOGY Opepen Set" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">First Iteration of the NEW TECHNOLOGY Opepen Set</figcaption></figure><p>When exploring the old Windows Icons, one style element that stuck out, where the lines that cut each other out, creating the 3d effect you see on nearly every windows icon. This was the starting point for each edition and set the framework to work with.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/f4555b1b7dc205a043d5ea0eb8031eb819e44d527d6d12273f8dee3f94497fb7.png" alt="Design Limitation" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">Design Limitation</figcaption></figure><h2 id="h-new-technology" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">NEW TECHNOLOGY</h2><p>A deeper look into the editions with its Windows Icon counter part. Also check out Jacks <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/jackbutcher/status/1753465795244409290">twitter post</a> with his view on the collection.</p><h3 id="h-time" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">TIME</h3><p>The Edition of 1 represents time. The the most valuable asset we all have in our life!</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/d2f0411898e26de4eaf5c41fc1a9feb3e2c58e479167de8fb3a42add5e43ea30.png" alt="" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="hide-figcaption"></figcaption></figure><h3 id="h-floppy" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">FLOPPY</h3><p>The Edition of 4 represents the Limitation of Storage we face in every phase of technology.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/3680ce12f50ba29c34dce5cf218e9b585e6dd6f1f5d5e2e4b6a1c6a3ff694638.png" alt="FLOPPY" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">FLOPPY</figcaption></figure><h3 id="h-file" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">FILE</h3><p>The Edition of 5 represents the FILE system where all the data is saved.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/42c14b3e1ddcbbeee88036c9a427ef8e0da03d4237c8fd09a33af8f76c6779e4.png" alt="FILE" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">FILE</figcaption></figure><h3 id="h-folder" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">FOLDER</h3><p>Edition of 10 is an homage to the legendary yellow folder to maintain your files organized.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/53093791f3240983b59c46c730d415345dd0be8648b2c08e3448aa9e64179482.png" alt="FOLDER" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">FOLDER</figcaption></figure><h3 id="h-drive" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">DRIVE</h3><p>The Edition of 20 represents the drive. The disc where all the data is pulled from.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0e0e9a8db3b71753b798bb272a5d133b946a7a84a73188c2c61a1a830ca8f137.png" alt="DRIVE" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">DRIVE</figcaption></figure><h3 id="h-pc" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">PC</h3><p>The Edition of 40 represents the Personal computer which makes all the beautiful things visible, from the screens to browser windows to artworks. This set was the most challenging to create, because it required a dive deep into the visual components of all old icons.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/f425865952fec18081da7ad1bd7880e76a7a42196edeb1291189dbc3ce226a65.png" alt="PC" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">PC</figcaption></figure><p>Constraints can seem like the last thing you’d want for a creative project, but they’re actually beneficial when it comes to create good work. They force you to be on point in a short and powerful way and create unique art.</p><h2 id="h-the-future-is-unwritten" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">THE FUTURE IS UNWRITTEN</h2><p>I wrote this article to give a deeper inside about my art and the Opepen Collection I created with love and intention. Thanks to Luke for taking his time to write his <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://twitter.com/lukeweaver_eth/status/1753849718751572149">advice</a> for me and future unknown artist to release an Opepen Set.</p><p>At this given time the outcome of the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://opepen.art/sets/030">set 30</a> is uncertain. The link to the collection gonna be this one or maybe another one. The future is unwritten.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/bb802ea4472c26e102cacbedac9287a18828ad158fc6c3ffb773abca97b1edbf.png" alt="NEW TECHNOLOGY ( full set )" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">NEW TECHNOLOGY ( full set )</figcaption></figure><p>Thanks for your time and interest in my art you can find more information about me and art on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://filter8.xyz/">filter8.xyz</a>.</p><p>Wish you a wonderful day.</p><p>Your Filter</p>]]></content:encoded>
            <author>filter8@newsletter.paragraph.com (FILTER8)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/5a6a4ce5ad24302c513783545667e93988e119a1f006955bcb627c1740aa9cfa.png" length="0" type="image/png"/>
        </item>
        <item>
            <title><![CDATA[HOW TO MINT ON THE FARCASTERS CONTRACT]]></title>
            <link>https://paragraph.com/@filter8/how-to-mint-on-the-farcasters-contract</link>
            <guid>4TELDJsMgyaVNnizIuub</guid>
            <pubDate>Tue, 02 Jan 2024 06:35:12 GMT</pubDate>
            <description><![CDATA[Wellcome to THE FARCASTERS , a 100px collaborative Art Project on Farcaster for Farcasters minting on the Zora Network with CC0 license.1. CREATE YOUR ARTWORKTo keep the collection interesting and challenge your creativity we crafted THE FARCASTERS APP on p5.js to create the art uploaded to the contract.the canvas has a size of 10x10 px and comes with the original FARCASTERS Template. Feel free to contribute your own version to the collection, though it is not a must. You can create channel i...]]></description>
            <content:encoded><![CDATA[<p>Wellcome to <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://warpcast.com/~/channel/farcasters">THE FARCASTERS</a> , a 100px collaborative Art Project on <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://www.farcaster.xyz/">Farcaster</a> for Farcasters minting on the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="">Zora Network</a> with CC0 license.</p><h2 id="h-1-create-your-artwork" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">1. CREATE YOUR ARTWORK</h2><p>To keep the collection interesting and challenge your creativity we crafted <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://editor.p5js.org/filter8/full/EhrAYtxMZ">THE FARCASTERS APP</a> on p5.js to create the art uploaded to the contract.</p><ul><li><p>the canvas has a size of 10x10 px and comes with the original FARCASTERS Template. Feel free to contribute your own version to the collection, though it is not a must. You can create channel icons, pfps or just nice little 100px artworks.</p></li><li><p>The App uses the 16 colors from the <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://en.wikipedia.org/wiki/List_of_8-bit_computer_hardware_graphics#IBM_PC/XT_and_compatible_systems">4-bit RGBI palette</a> found in win95 plus Farcasters PURPLE signature color.</p></li><li><p>To preview your artwork how it will look as PFP we added a nice little overlay button</p></li><li><p>Finally you can save your artwork as .png. The App saves the artwork in the size of 1000x1000px</p></li></ul><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/2627d775cce1ecb7c71bc5b05b351a59eb2e982b38c08c095ee3cba085817735.png" alt="THE FARCASTERS App v1" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">THE FARCASTERS App v1</figcaption></figure><h2 id="h-2-upload-your-artwork" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">2. UPLOAD YOUR ARTWORK</h2><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://zora.co/collect/zora:0xf9fd0c7b68c4203cb271f08c4eb637e5d5d688cd">THE FARCASTERS</a> Collection is minted on the Zora Network using the handy <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://support.zora.co/en/articles/8618354-what-is-a-collaborator">collaborators</a> option on the platform, where different wallets can collaborate together on the same contract. Minting your artwork to the contract will add it to the collection.</p><h3 id="h-minting-with-warps" class="text-2xl font-header !mt-6 !mb-4 first:!mt-0 first:!mb-0">MINTING WITH WARPS</h3><p>THE FARCASTERS collection was designed being Warpcaster native, meaning you should be able to collect artworks using your warps within the app. As this feature is pretty new, you have to follow some guidelines to make the button available in the warpcaster app.</p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/ecef7e6bdeaca4f3683bf702e80cc01b501ae72c5ecdefca02341d4cf14e80d8.png" alt="MINTING WITH WRAPS IN WARPCASTER" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">MINTING WITH WRAPS IN WARPCASTER</figcaption></figure><h2 id="h-set-up-minting-page" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">SET UP MINTING PAGE</h2><ol><li><p>UPLOAD: Once your artwork is ready start adding your awesome artwork.</p></li><li><p>COLLECTION: Be sure you select THE FARCASTERS to be uploaded in that collection</p></li><li><p>PRICE: set price to 0. Setting your price to ZERO does not mean your artwork is free. You will be rewarded according to Zoras Reward Protocol. Read more about <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://support.zora.co/en/articles/8192123-understanding-protocol-rewards-on-zora">here</a> .</p></li><li><p>MINT DURATION: How long your artwork can be collected is a fun way to play. Make 24 hours or 1 year. It’s all up to you!</p></li><li><p>MINT FIRST EDITION: minting your first edition will put the contract on chain and activate your artwork for wraps.</p></li><li><p>MINT START: make it available now is recommended.</p></li><li><p>EDITION SIZE: Keeping your edition <em>open</em> will make it available as long as mint duration is active. <em>1 of 1</em> will not activate the wrap button as the artwork contract is not created on the blockchain yet. <em>Fixed</em> Edition are a nice way to limit the artworks and make it more special.</p></li><li><p>MINT LIMIT PER ADDRESS: If you don’t want your artwork be collected more than one time per wallet set <em>Custom</em> to 1.</p></li><li><p>ATTRIBUTES: Attributes are saved within the metadata of your token and can be useful to filter the collection grows it grows over time. We recommend using at least : Colors (1-17) , Artist ( your name) , Style ( Character, font, …) …</p></li><li><p>10. Press CREATE !</p></li></ol><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0e4cb6e9d0dc4195776ff4ccbc3e27287c20ce31a09435a0739fc16631672cc4.png" alt="UPLOAD" blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">UPLOAD</figcaption></figure><h2 id="h-3-share-your-artwork" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">3. SHARE YOUR ARTWORK</h2><p>Nice your artwork is now part of THE FARCASTERS collection.</p><p>Once your minting page is online and running don’t forget to share your creation on our warpcast channel:</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://warpcast.com/~/channel/farcasters">https://warpcast.com/~/channel/farcasters</a></p><figure float="none" data-type="figure" class="img-center" style="max-width: null;"><img src="https://storage.googleapis.com/papyrus_images/0ae42ccc3ef61f6081bf66be7a27ea1a22b320d578659e08b82c6255146a70e7.png" alt="100px MINTED ARTWORKS " blurdataurl="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=" nextheight="600" nextwidth="800" class="image-node embed"><figcaption HTMLAttributes="[object Object]" class="">100px MINTED ARTWORKS</figcaption></figure><h2 id="h-4-sign-up" class="text-3xl font-header !mt-8 !mb-4 first:!mt-0 first:!mb-0">4. SIGN UP</h2><p>If you are curious and want to join THE FARCASTERS CREW submit your entry using the form below. We are looking forward to have you on board!</p><p><a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://tally.so/r/3EW5EL">https://tally.so/r/3EW5EL</a></p><p>Thanks for reading. Farcaster is more than a new social network. It is a movement.</p><p>You can find all our important links on our linktree <a target="_blank" rel="noopener noreferrer nofollow ugc" class="dont-break-out" href="https://linktr.ee/farcasters">THE FARCASTERS</a></p>]]></content:encoded>
            <author>filter8@newsletter.paragraph.com (FILTER8)</author>
            <enclosure url="https://storage.googleapis.com/papyrus_images/1eeea161bf730568ccd18d895bb886794d159902072cef106f9cc110f49479d7.png" length="0" type="image/png"/>
        </item>
    </channel>
</rss>