<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:cc="http://cyber.law.harvard.edu/rss/creativeCommonsRssModule.html">
    <channel>
        <title><![CDATA[Stories by Creator ⚡ on Medium]]></title>
        <description><![CDATA[Stories by Creator ⚡ on Medium]]></description>
        <link>https://medium.com/@creatorchain?source=rss-b690c2093588------2</link>
        <image>
            <url>https://cdn-images-1.medium.com/fit/c/150/150/1*UTpyWhc5i2DPsMB9sBlCfg.png</url>
            <title>Stories by Creator ⚡ on Medium</title>
            <link>https://medium.com/@creatorchain?source=rss-b690c2093588------2</link>
        </image>
        <generator>Medium</generator>
        <lastBuildDate>Tue, 02 Jun 2026 16:00:13 GMT</lastBuildDate>
        <atom:link href="https://medium.com/@creatorchain/feed" rel="self" type="application/rss+xml"/>
        <webMaster><![CDATA[yourfriends@medium.com]]></webMaster>
        <atom:link href="http://medium.superfeedr.com" rel="hub"/>
        <item>
            <title><![CDATA[How to Deploy Smart Contracts on Creator L2]]></title>
            <link>https://creatorchain.medium.com/how-to-deploy-smart-contracts-on-creator-l2-562fdb1725bc?source=rss-b690c2093588------2</link>
            <guid isPermaLink="false">https://medium.com/p/562fdb1725bc</guid>
            <category><![CDATA[eth]]></category>
            <category><![CDATA[ethreum]]></category>
            <category><![CDATA[creator-l2]]></category>
            <dc:creator><![CDATA[Creator ⚡]]></dc:creator>
            <pubDate>Mon, 24 Feb 2025 10:15:12 GMT</pubDate>
            <atom:updated>2025-02-24T10:15:12.996Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*vlaNFkeyN3YL43XgtSMaGg.png" /></figure><h3>Introduction</h3><p><a href="https://creatorchain.io">Creator L2</a> is a high-performance Layer 2 blockchain built on the OP Stack, offering developers scalability, low transaction fees, and a robust environment for building decentralized applications (dApps). In this guide, we’ll walk you through deploying a smart contract on Creator L2 using Solidity, Hardhat, and Viem.</p><h3>Prerequisites</h3><p>Before deploying a smart contract on Creator, ensure you have the following:</p><ul><li>Node.js installed (v16 or later)</li><li>Hardhat (Ethereum development environment)</li><li>Metamask or any EVM-compatible wallet</li><li>Test ETH on Creator L2 (available via the <a href="https://thirdweb.com/creator">Creator faucet</a>)</li></ul><h3>Step 1: Set Up Your Development Environment</h3><p>Start by creating a new project and installing dependencies:</p><pre>mkdir creator-smart-contract &amp;&amp; cd creator-smart-contract<br>npm init -y<br>npm install --save-dev hardhat</pre><p>Initialize Hardhat:</p><pre>npx hardhat</pre><p>Choose “Create an empty hardhat.config.js” and proceed.</p><h3>Step 2: Create a Smart Contract</h3><p>Create a new directory for contracts and write a simple Solidity contract:</p><pre>mkdir contracts &amp;&amp; touch contracts/MyContract.sol</pre><p>Edit MyContract.sol:</p><pre>// SPDX-License-Identifier: MIT<br>pragma solidity ^0.8.19;<br>contract MyContract {<br>    string public message;<br>constructor(string memory _message) {<br>        message = _message;<br>    }<br>}</pre><h3>Step 3: Configure Hardhat for Creator L2</h3><p>Modify hardhat.config.js:</p><pre>require(&quot;@nomicfoundation/hardhat-toolbox&quot;);<br>module.exports = {<br>  solidity: &quot;0.8.19&quot;,<br>  networks: {<br>    creator: {<br>      url: &quot;https://rpc.creatorchain.io&quot;,<br>      accounts: [&quot;YOUR_PRIVATE_KEY&quot;]<br>    }<br>  }<br>};</pre><p>Replace YOUR_PRIVATE_KEY with your wallet’s private key.</p><h3>Step 4: Compile and Deploy</h3><p>Compile the contract:</p><pre>npx hardhat compile</pre><p>Deploy using a deployment script (scripts/deploy.js):</p><pre>const hre = require(&quot;hardhat&quot;);<br>async function main() {<br>  const MyContract = await hre.ethers.getContractFactory(&quot;MyContract&quot;);<br>  const contract = await MyContract.deploy(&quot;Hello, Creator!&quot;);<br>  await contract.deployed();<br>  console.log(&quot;Contract deployed at:&quot;, contract.address);<br>}<br>main().catch((error) =&gt; {<br>  console.error(error);<br>  process.exit(1);<br>});</pre><p>Run the deployment script:</p><pre>npx hardhat run scripts/deploy.js --network creator</pre><h3>Step 5: Interacting with the Contract using Viem</h3><p>To interact with your contract in a frontend app, install Viem:</p><pre>npm install viem</pre><p>Use Viem to read the contract state:</p><pre>import { createPublicClient, http } from &#39;viem&#39;;<br>import { creatorTestnet } from &#39;viem/chains&#39;;<br>const client = createPublicClient({<br>  chain: creator,<br>  transport: http()<br>});<br>const contractAddress = &quot;YOUR_DEPLOYED_CONTRACT_ADDRESS&quot;;<br>const abi = [<br>  &quot;function message() public view returns (string)&quot;<br>];<br>async function getMessage() {<br>  const message = await client.readContract({<br>    address: contractAddress,<br>    abi,<br>    functionName: &quot;message&quot;<br>  });<br>  console.log(&quot;Contract message:&quot;, message);<br>}<br>getMessage();</pre><h3>Conclusion</h3><p>You’ve successfully deployed a smart contract on Creator L2 and interacted with it using Viem. This is just the beginning — start building your dApps on Creator today!</p><p>For more resources, visit <a href="https://docs.creatorchain.io/general-info">Creator’s Documentation</a>.</p><p>#Creator #SmartContract #Web3 #Superchain</p><p><strong>Connect with Us on Socials:</strong><br><a href="https://www.creatorchain.io/">Website</a> | <a href="https://x.com/buildonCreator">Twitter</a> | <a href="https://creatorchain.medium.com/">Blog</a> | <a href="https://discord.gg/ebGCCkBX">Discord</a> | <a href="https://t.me/BuildOnCreator">Telegram</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=562fdb1725bc" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[What is a Layer 2 Blockchain and Why Does it Matter?]]></title>
            <link>https://creatorchain.medium.com/what-is-a-layer-2-blockchain-and-why-does-it-matter-3c6d2c8294d7?source=rss-b690c2093588------2</link>
            <guid isPermaLink="false">https://medium.com/p/3c6d2c8294d7</guid>
            <category><![CDATA[layer-2-solution]]></category>
            <category><![CDATA[creator-l2]]></category>
            <category><![CDATA[optimism]]></category>
            <category><![CDATA[ethereum]]></category>
            <dc:creator><![CDATA[Creator ⚡]]></dc:creator>
            <pubDate>Thu, 30 Jan 2025 14:22:40 GMT</pubDate>
            <atom:updated>2025-01-30T14:22:40.014Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*3hLDsTQABAdr9chsS0MTiQ.png" /></figure><p>As blockchain adoption rapidly grows, the need for scalability, affordability, and speed becomes more pressing. This is where <strong>Layer 2 (L2) blockchains</strong> come into play, offering innovative solutions to address the limitations of Layer 1 (L1) networks like Ethereum.</p><p>In this article, we’ll break down what a Layer 2 blockchain is, why it’s essential for the future of blockchain technology, and how it’s transforming the Web3 ecosystem.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*jAQ1vnH1YLSzcJC2k1JT4g.png" /></figure><h3>What is a Layer 2 Blockchain?</h3><p>A <strong>Layer 2 blockchain</strong> is a network built on top of a Layer 1 blockchain, Ethereum. Instead of processing transactions directly on the main chain, Layer 2 solutions handle transactions off-chain and then bundle or settle them on the main chain.</p><h4>Key Characteristics of L2 Blockchains:</h4><ol><li><strong>Built on Layer 1</strong>: Inherits the security and decentralization of the main blockchain.</li><li><strong>Offload Transactions</strong>: Reduces the burden on Layer 1 by processing transactions off-chain.</li><li><strong>Lower Costs and Faster Speeds</strong>: Achieves scalability while significantly reducing transaction fees.</li></ol><h3>How Do Layer 2 Solutions Work?</h3><p>Layer 2 solutions use various technologies to optimize performance:</p><h4>1. Rollups</h4><ul><li><strong>Optimistic Rollups</strong>: Assume transactions are valid and only verify them if challenged.</li><li><strong>Zero-Knowledge (ZK) Rollups</strong>: Use cryptographic proofs to verify batches of transactions before posting them to Layer 1.</li></ul><h4>2. Sidechains</h4><ul><li>Independent chains connected to the main blockchain via a bridge, designed to process specific types of transactions.</li></ul><h4>3. Appchains</h4><ul><li>Just like sidechains, these are chains specifically designed for one application.</li></ul><h3>Why Does Layer 2 Matter?</h3><h4>1. Scalability</h4><p>Layer 1 blockchains like Ethereum are powerful but have limitations in transaction throughput. Layer 2 solutions offload much of this work, enabling thousands of transactions per second (TPS).</p><h4>2. Lower Costs</h4><p>High gas fees on Ethereum can make it inaccessible for everyday users. Layer 2 solutions drastically reduce costs, making blockchain technology affordable for everyone.</p><h4>3. Faster Transactions</h4><p>By processing transactions off-chain, L2 solutions reduce confirmation times, providing near-instant transactions for users.</p><h4>4. Enhanced User Experience</h4><p>Layer 2 blockchains abstract the complexities of blockchain interactions, creating seamless experiences for both developers and end-users.</p><h4>5. Supporting Mass Adoption</h4><p>For Web3 to reach mainstream adoption, it must handle millions of users simultaneously. Layer 2 solutions provide the scalability needed to onboard the next billion users.</p><h3>Use Cases of Layer 2 Blockchains</h3><p>Layer 2 solutions are revolutionizing various sectors, including:</p><ol><li><strong>DeFi</strong>: Enabling low-cost trading, lending, and staking.</li><li><strong>Gaming</strong>: Supporting high-speed microtransactions for in-game economies.</li><li><strong>NFTs</strong>: Making minting and trading affordable and scalable.</li><li><strong>Social Applications</strong>: Creating blockchain-based social networks with low latency.</li><li><strong>Enterprise Solutions</strong>: Offering scalable tools for supply chain, identity, and financial systems.</li><li><strong>DePin: </strong>Enabling physical infrastructure</li></ol><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*lmVU1KpdJpZb0zPhbaP2iw.png" /></figure><h3>The Role of Creator L2 in the Layer 2 Landscape</h3><p>Creator L2 is a prime example of a next-generation Layer 2 blockchain. Built on the Superchain’s OP Stack, it offers:</p><ul><li><strong>Lightning-fast transactions</strong> ⚡</li><li><strong>Low fees</strong> 💸</li><li><strong>Interoperability with other OP Chains</strong> 🤝</li><li><strong>A reward-driven ecosystem for developers and users</strong> 🏆</li></ul><p>Creator L2 isn’t just scaling Ethereum; it’s empowering builders and innovators to create the future of Web3.</p><h3>Challenges and the Road Ahead</h3><p>While Layer 2 solutions are promising, challenges remain:</p><ul><li><strong>Interoperability</strong>: Ensuring seamless communication between L2s and Layer 1.</li><li><strong>Decentralization</strong>: Maintaining the trustless nature of blockchain technology.</li><li><strong>Adoption</strong>: Educating users and developers about the benefits of Layer 2.</li></ul><p>Despite these challenges, Layer 2 solutions are crucial for a decentralized and scalable blockchain ecosystem.</p><h3>Conclusion</h3><p>Layer 2 blockchains are the engines driving blockchain technology to new heights. By addressing the limitations of Layer 1, they unlock possibilities for scalability, affordability, and accessibility.</p><p>Whether you’re a developer, a business, or a blockchain enthusiast, understanding and leveraging Layer 2 solutions like Creator L2 can help you build and thrive in the decentralized future.</p><p>Let’s embrace the potential of Layer 2 and take blockchain adoption to the next level!</p><p>#Creator #Blockchain #Web3 #Superchain</p><p><strong>Connect with Us on Socials:</strong><br><a href="https://www.creatorchain.io/">Website</a> | <a href="https://x.com/buildonCreator">Twitter</a> | <a href="https://creatorchain.medium.com/">Blog</a> | <a href="https://discord.gg/ebGCCkBX">Discord</a> |<a href="https://t.me/BuildOnCreator">Telegram</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=3c6d2c8294d7" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Sendtokens is Live on Creator L2]]></title>
            <link>https://creatorchain.medium.com/sendtokens-is-live-on-creator-l2-fd2f99736b42?source=rss-b690c2093588------2</link>
            <guid isPermaLink="false">https://medium.com/p/fd2f99736b42</guid>
            <category><![CDATA[ethereum]]></category>
            <category><![CDATA[layer-2-solution]]></category>
            <category><![CDATA[sendtokens]]></category>
            <category><![CDATA[creator-l2]]></category>
            <dc:creator><![CDATA[Creator ⚡]]></dc:creator>
            <pubDate>Fri, 24 Jan 2025 10:37:13 GMT</pubDate>
            <atom:updated>2025-01-24T10:37:13.253Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*fB5UdFfklAbEV9rfMilnZw.png" /></figure><blockquote><strong>Introduction:</strong><br>We are excited to announce that <a href="https://sendtokens.xyz">SendTokens</a> is now integrated into the Creator L2 ecosystem, enhancing our platform with easy and fast transactions. This integration enables users to interact with our ecosystem with greater ease and efficiency.</blockquote><h3>What is Sendtokens ?</h3><p>Sendtokens is a self custody wallet that allows users to send cryptocurrencies to anyone via usernames. The wallet aims to simplify the process of sending and receiving cryptocurrencies, making it easy for anyone to participate in crypto space.</p><p>Link: <a href="https://sendtokens.xyz">https://sendtokens.xyz</a></p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*5FA4bbn4QKexO4WEl2nUrA.png" /></figure><h3>Key Features of Sendtokens</h3><ul><li><strong>Simplified Transactions:</strong> SendTokens allows users to send cryptocurrencies to anyone seamlessly via usernames, eliminating the need for complex wallet addresses.</li><li><strong>CryptoPin</strong>: This innovative feature allows users to send cryptocurrency to friends and family without requiring wallet addresses or SendTokens usernames. Users can generate a unique 10-digit pin, functioning similarly to a crypto gift card, making the process more accessible and user-friendly.</li><li><strong>User-Friendly Interface:</strong> Designed with a focus on simplicity, SendTokens offers an intuitive interface that caters to both beginners and experienced users, making cryptocurrency management straightforward.</li></ul><h3><strong>Aligning with Creator’s Blockchain Vision</strong></h3><p>The integration of SendTokens into the Creator L2 ecosystem reinforces our commitment to providing a scalable, accessible, and user-centric blockchain environment. This collaboration enhances the capabilities of both platforms, enabling:</p><ul><li><strong>Simplified Transactions</strong>: Users can send cryptocurrencies to anyone via usernames, eliminating the need for complex wallet addresses and making transactions more intuitive.</li><li><strong>Self-Custody</strong>: SendTokens offers a decentralized, self-custodial wallet, ensuring users have complete control over their digital assets, aligning with Creator’s emphasis on security and user empowerment.</li><li><strong>Enhanced Accessibility</strong>: By simplifying the process of sending and receiving cryptocurrencies, this integration makes blockchain technology more approachable, fostering broader adoption within the Creator community.</li></ul><p>This partnership exemplifies our shared vision of making blockchain technology more user-friendly and secure, paving the way for increased engagement and innovation within the Creator L2 ecosystem.</p><h3>Explore Now</h3><p>We invite users to explore the enhanced capabilities brought by Sendtokens’s integration with Creator L2. Experience a world of seamless, secure, and innovative blockchain interactions.</p><p>For more information, visit:</p><ul><li>Sendtokens: <a href="https://sendtokens.xyz">https://sendtokens.xyz</a></li><li>Creator L2: <a href="https://creatorchain.io/">https://creatorchain.io</a></li></ul><p>Join us in this exciting journey as we continue to build and expand the decentralized future of the internet.</p><p>#Creator #Sendtokens #Web3 #Superchain</p><p><strong>Connect with Us on Socials:</strong><br><a href="https://www.creatorchain.io/">Website</a> | <a href="https://x.com/buildonCreator">Twitter</a> | <a href="https://creatorchain.medium.com/">Blog</a> | <a href="https://discord.gg/ebGCCkBX">Discord</a> |<a href="https://t.me/BuildOnCreator">Telegram</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=fd2f99736b42" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Creator’s Presence at the Nextbridge Africa Community Call in Enugu]]></title>
            <link>https://creatorchain.medium.com/creators-presence-at-the-nextbridge-africa-community-call-in-enugu-e43849be213b?source=rss-b690c2093588------2</link>
            <guid isPermaLink="false">https://medium.com/p/e43849be213b</guid>
            <category><![CDATA[creator-l2]]></category>
            <category><![CDATA[nextbridge-africa]]></category>
            <category><![CDATA[ethereum]]></category>
            <dc:creator><![CDATA[Creator ⚡]]></dc:creator>
            <pubDate>Tue, 21 Jan 2025 10:58:34 GMT</pubDate>
            <atom:updated>2025-01-21T10:58:34.531Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*MP84nZp-CFl97fgvAPJLhA.png" /></figure><p>Last Saturday, Nextbridge Africa hosted their inaugural community call, marking a significant milestone in fostering innovation and collaboration. The Creator Team proudly participated in this exciting event, contributing to its vibrant and engaging atmosphere.</p><p>The call brought together a diverse group of tech enthusiasts, developers, and innovators, creating a platform for sharing ideas, networking, and building partnerships. The Creator Team showcased its groundbreaking Layer 2 blockchain solutions, emphasizing the ease of building on the Creator ecosystem and its commitment to supporting the next generation of blockchain innovators.</p><h4><strong>Key highlights of the community call included:</strong></h4><ul><li>A brief overview of Creator’s mission to drive Web3 adoption across Africa.</li><li>Insightful discussions on how Ethereum’s ecosystem empowers developers and fosters collaboration.</li><li>Networking opportunities with attendees passionate about decentralized technologies.</li></ul><p>Attendees were not only introduced to Creator’s robust blockchain infrastructure but also inspired by the team’s vision of transforming how developers and organizations interact with scalable, low-cost solutions.</p><p>The Creator Team’s active participation underscored its commitment to engaging with local tech communities, showcasing its solutions, and inspiring future leaders in the blockchain space. This event set a powerful tone for what’s possible when innovation meets community-driven action.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*rOl3rtQsmKMSgB0MugOg_A.jpeg" /></figure><h3><strong>Workshop: Exploring the Creator Ecosystem</strong></h3><p>As part of the event, our Developer Relations Engineer hosted an engaging workshop aimed at introducing attendees to Creator Network and its dynamic ecosystem. The session was designed to provide a comprehensive overview of Creator’s capabilities, including its Layer 2 blockchain technology, scalable infrastructure, and low-fee transaction capabilities.</p><p>Participants were guided through hands-on activities that demonstrated how to build on Creator Network effectively. From setting up a development environment to deploying smart contracts, the workshop empowered attendees with practical knowledge and tools to get started in the Web3 space.</p><h4>The workshop also covered key features of Creator Network, such as:</h4><ul><li>How it facilitates seamless interoperability within the Superchain ecosystem.</li><li>Opportunities for developers to explore innovative dApp ideas.</li><li>Incentives such as Creator Rewards for developers and users building on the network.</li></ul><p>Attendees expressed enthusiasm, sharing their aspirations to contribute to the Creator ecosystem by developing decentralized applications, organizing events, and leveraging Creator’s resources to expand their blockchain expertise.</p><p>Through this interactive and impactful workshop, Creator Network reinforced its commitment to fostering innovation, building communities, and driving adoption across universities and tech hubs.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*kLMdRACgfjESvH3E0_x-nw.jpeg" /></figure><h3>Networking and Games</h3><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*FUbS8r0-YdYlpPVONeno-g.jpeg" /></figure><p>The meetup featured an exciting blend of networking and interactive game sessions, creating a lively and engaging atmosphere for all attendees. These activities served as a perfect icebreaker, encouraging participants to connect, share ideas, and collaborate while enjoying a relaxed and fun environment.</p><p>The networking sessions provided attendees with an opportunity to meet like-minded tech enthusiasts, developers, and innovators, fostering meaningful connections that could lead to future collaborations within the Creator ecosystem.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*d5Y4EEVYhnFR4xeUE1-m1g.jpeg" /></figure><p>Meanwhile, the game sessions brought a fresh and entertaining dynamic to the meetup. Through team-based challenges and friendly competitions, participants not only had fun but also worked together to solve puzzles and achieve objectives, promoting collaboration and camaraderie.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*OnDDUYIJt5eq0Bdo5hIQUw.jpeg" /></figure><p>These elements added a unique touch to the event, ensuring that attendees left with both valuable insights about Creator and a sense of community spirit.</p><h3><strong>Conclusion</strong></h3><p>The meetup was a resounding success, blending learning, networking, and fun to create a memorable experience for everyone involved. Participants had the opportunity to deepen their understanding of the Creator ecosystem, connect with other passionate individuals, and engage in exciting activities that fostered collaboration and community spirit.</p><p>This event demonstrated Creator’s commitment to not only driving blockchain innovation but also building a thriving and inclusive ecosystem. The positive energy and valuable exchanges from the meetup are just the beginning, as we look forward to more impactful gatherings, collaborations, and milestones in our journey toward empowering developers and communities across the globe.</p><p>We thank all attendees for making this event a remarkable one and invite everyone to join us as we continue to build the future of Web3 together.</p><p>#Creator #CommunityCall #NextbridgeAfrica #Web3 #Superchain</p><p><strong>Connect with Us on Socials:</strong><br><a href="https://www.creatorchain.io/">Website</a> | <a href="https://x.com/buildonCreator">Twitter</a> | <a href="https://creatorchain.medium.com/">Blog</a> | <a href="https://discord.gg/ebGCCkBX">Discord</a> |<a href="https://t.me/BuildOnCreator">Telegram</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=e43849be213b" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Orochi Network is Live on Creator L2]]></title>
            <link>https://creatorchain.medium.com/orochi-network-is-live-on-creator-l2-c5fab8610a9a?source=rss-b690c2093588------2</link>
            <guid isPermaLink="false">https://medium.com/p/c5fab8610a9a</guid>
            <category><![CDATA[orochi-network]]></category>
            <category><![CDATA[ethereum]]></category>
            <category><![CDATA[creator-l2]]></category>
            <category><![CDATA[oracles-network]]></category>
            <dc:creator><![CDATA[Creator ⚡]]></dc:creator>
            <pubDate>Wed, 15 Jan 2025 08:38:19 GMT</pubDate>
            <atom:updated>2025-01-15T08:38:19.348Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*HNKUDNYhbzCv-Sco5NZnpQ.png" /></figure><blockquote><strong>Introduction:</strong><em><br></em>We are excited to announce that <a href="https://www.orochi.network/orocle"><strong>Orochi Network’s Orocle Service</strong></a> is now integrated into <strong>Creator L2</strong>, enhancing our ecosystem with decentralized oracle capabilities. This integration enables decentralized applications (DApps) on Creator L2 to securely access real-world data without relying on centralized oracles, thereby improving data accuracy, security, and reliability.</blockquote><h3><strong>What is Orocle?</strong></h3><p>Orocle is a decentralized oracle service developed by Orochi Network that fetches and verifies off-chain data for use within blockchain smart contracts. Unlike traditional centralized oracles, Orocle operates on a provable model, reducing the risks associated with single points of failure and enhancing trust through a distributed network of nodes.</p><p>Link: <a href="https://docs.orochi.network/orochi-network/orocle-v2.html">https://docs.orochi.network/orochi-network/orocle-v2.html</a></p><h3><strong>Key Features of Orocle</strong></h3><ul><li><strong>Eliminates Single Points of Failure</strong>: By utilizing a decentralized network, Orocle ensures that data retrieval and verification are distributed, mitigating the risks associated with centralized oracles.</li><li><strong>Ensures Data Accuracy and Verification</strong>: Orocle employs zero-knowledge proofs (ZKPs) to fetch and verify off-chain data, providing DApps with accurate and tamper-proof information.</li><li><strong>Supports Secure Integration with External Data Sources</strong>: Designed to integrate seamlessly with various blockchain platforms, Orocle offers flexibility and a wider reach, enhancing the functionality of DApps across different networks.</li></ul><h3><strong>Aligning with Creator’s Blockchain Vision</strong></h3><p>The integration of Orocle into Creator L2 reinforces our commitment to providing a scalable, accessible, and user-centric blockchain ecosystem. This partnership enhances the capabilities of both platforms, enabling:</p><ul><li><strong>Enhanced Ecosystem Growth</strong>: DApps on Creator L2 can now leverage Orocle’s decentralized oracle services to access real-world data securely and efficiently.</li><li><strong>Innovation Unleashed</strong>: Combining Orocle’s zero-knowledge data availability with Creator’s scalable infrastructure paves the way for advancements in DeFi, NFTs, and cross-chain interoperability, delivering seamless user experiences.</li><li><strong>Advancing Adoption</strong>: This collaboration positions Creator L2 as a preferred destination for developers, innovators, and crypto enthusiasts seeking cutting-edge solutions in the blockchain space.</li></ul><h3><strong>Explore Now</strong></h3><p>We invite developers and users to explore the enhanced capabilities brought by Orocle’s integration with Creator L2. Experience a world of seamless, secure, and innovative blockchain interactions.</p><p>For more information, visit:</p><ul><li>Orochi Network: <a href="https://www.orochi.network/">https://www.orochi.network/</a></li><li>Creator L2: <a href="https://creatorchain.io/">https://creatorchain.io</a></li></ul><p>Join us in this exciting journey as we continue to build and expand the decentralized future of the internet.</p><p>#Creator #OrochiNetwork #Web3 #Superchain</p><p><strong>Connect with Us on Socials:</strong><br><a href="https://www.creatorchain.io/">Website</a> | <a href="https://x.com/buildonCreator">Twitter</a> | <a href="https://creatorchain.medium.com/">Blog</a> | <a href="https://discord.gg/ebGCCkBX">Discord</a> |<a href="https://t.me/BuildOnCreator">Telegram</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=c5fab8610a9a" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Revoke.cash is live on Creator L2]]></title>
            <link>https://creatorchain.medium.com/revoke-cash-is-live-on-creator-l2-bd11c077c567?source=rss-b690c2093588------2</link>
            <guid isPermaLink="false">https://medium.com/p/bd11c077c567</guid>
            <category><![CDATA[ethereum]]></category>
            <category><![CDATA[security]]></category>
            <category><![CDATA[layer-2]]></category>
            <category><![CDATA[creator-l2]]></category>
            <dc:creator><![CDATA[Creator ⚡]]></dc:creator>
            <pubDate>Mon, 06 Jan 2025 20:34:59 GMT</pubDate>
            <atom:updated>2025-01-06T20:34:59.261Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*7_ZMYV4yQirP1SVz145mDQ.png" /></figure><blockquote><strong>Introduction:</strong><br>We’re excited to welcome <a href="https://revoke.cash/"><strong>Revoke.cash</strong></a> into the Creator Network Ecosystem! With this collaboration, users can revoke token approvals to avoid potential risks on the Creator L2 network.</blockquote><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*IuBUrgznt_Bc540GFLQx7A.png" /></figure><h3>What is Revoke.cash?</h3><p>Revoke.cash is a security tool designed to help cryptocurrency users manage and revoke token approvals granted to decentralized applications (dApps). When interacting with dApps, users often authorize these platforms to spend tokens or NFTs on their behalf. Over time, unused or forgotten approvals can pose security risks, as malicious actors might exploit them to access funds without consent. Revoke.cash enables users to inspect and revoke such approvals, enhancing wallet security.</p><p>Link: <a href="https://revoke.cash">https://revoke.cash</a></p><h3><strong>Key Features:</strong></h3><ul><li><strong>Token Approval Management:</strong> Users can view all active token approvals associated with their wallets and revoke unnecessary or potentially risky permissions.</li><li><strong>Multi-Network Support:</strong> The platform supports over 100 networks, including Ethereum, BNB Chain, and Creator L2, allowing users to manage approvals across various blockchains.</li><li><strong>Browser Extension:</strong> Revoke.cash offers a browser extension that alerts users when they are about to sign potentially harmful token approvals, providing an additional layer of protection against phishing scams.</li></ul><h3>Aligning with Creator’s Blockchain Vision</h3><p>The integration of Revoke.cash with the Creator blockchain allows users to be able to inspect all the contracts they’ve approved to spend tokens on their behalf and revoke access for those no longer needed.</p><p>This integration aligns with Creator’s vision of enhancing user security and control within the blockchain space.</p><p>Revoke.cash offers a browser extension that helps protect users from common crypto scams by alerting them when they’re about to sign a token approval, thereby preventing potential phishing attacks.</p><p>Additionally, Revoke.cash provides educational resources to help users understand token approvals and maintain proper wallet hygiene.</p><p>Integrating Revoke.cash with the Creator blockchain empowers users to take back control of their wallets, ensuring a safer and more transparent environment for decentralized finance and application interactions.</p><p>#Creator #RevokeCash #Security #Web3 #Superchain</p><p><strong>Connect with Us on Socials:</strong><br><a href="https://www.creatorchain.io/">Website</a> | <a href="https://x.com/buildonCreator">Twitter</a> | <a href="https://creatorchain.medium.com/">Blog</a> | <a href="https://discord.gg/ebGCCkBX">Discord</a> | <a href="https://t.me/BuildOnCreator">Telegram</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=bd11c077c567" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Interacting with a Smart Contract on Creator L2 with Viem]]></title>
            <link>https://creatorchain.medium.com/interacting-with-a-smart-contract-on-creator-l2-with-viem-c44b6766501e?source=rss-b690c2093588------2</link>
            <guid isPermaLink="false">https://medium.com/p/c44b6766501e</guid>
            <category><![CDATA[viem]]></category>
            <category><![CDATA[ethereum]]></category>
            <category><![CDATA[smart-contracts]]></category>
            <category><![CDATA[creator-l2]]></category>
            <dc:creator><![CDATA[Creator ⚡]]></dc:creator>
            <pubDate>Sun, 05 Jan 2025 09:27:42 GMT</pubDate>
            <atom:updated>2025-01-05T14:59:50.394Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*az9x0KXa-EW3_0DFGmPL_w.png" /></figure><p>This article will be a guide for you on how you can interact with Smart contracts deployed on Creator Testnet with Viem.</p><h3>What is Viem?</h3><blockquote><em>Viem is a TypeScript interface for Ethereum that provides low-level stateless primitives for interacting with Ethereum.</em></blockquote><h3>Viem on Creator L2</h3><p>The Creator L2 network details have already been integrated into the viem/chains codebase, simplifying the process for developers to create powerful dApps using Viem on the Creator L2 Testnet.</p><h3><strong>Getting Started</strong></h3><ol><li><strong>Add Creator L2 to Your Wallet</strong><br> Make sure Creator L2<strong> </strong>is added to your MetaMask or any EVM-compatible wallet. You can find the network details <a href="https://docs.creatorchain.io/general-info/network">here</a>.</li><li><strong>Bridge Sepolia ETH to CreatorL2</strong><br> Use the <a href="https://bridge.creatorchain.io/">bridge</a> to transfer Sepolia ETH to Creator L2 ETH.</li><li><strong>Install Node.js</strong><br> Ensure Node.js is installed on your computer.</li><li><strong>Sharpen Your JavaScript Skills</strong><br> Have a basic understanding of JavaScript and familiarity with a framework or library. You’ll be using them to build dApps on Creator.</li></ol><p>With these prerequisites in place, you’re ready to start building! 🚀</p><h3>Deployment of Smart Contract on Creator</h3><p>I have a deployed smart contract. This contract includes a function for storing and retrieving numbers on-chain.</p><p>This contract is deployed on Creator. You can <a href="https://explorer.creatorchain.io/address/0x3fFE200b32ED779f06Dda526E9535a19825d39bb">explore</a> it here:</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*86SkwyWu4ilf9330TRAtgQ.png" /></figure><h3>Let’s Get Started</h3><p>The smart contract has been deployed and we are ready to interact with it on our frontend using <a href="https://viem.sh/">Viem</a>. We’ll be using <a href="https://react.dev/">React.js</a> for this and installing it with <a href="https://vitejs.dev/">Vite.js</a>.</p><pre># npm 7+, extra double-dash is needed:<br>npm create vite@latest creator-storage -- --template react</pre><p>After installation, open the project folder in your preferred IDE, such as <a href="https://code.visualstudio.com">VS Code</a>.</p><pre>cd creator-storage &amp;&amp; npm i viem</pre><h3>Edit the React Template</h3><p>We need to replace the content in app.jsx</p><p>This is current the default template in the app.jsx/tsx file</p><pre>import { useState } from &#39;react&#39;<br>import reactLogo from &#39;./assets/react.svg&#39;<br>import viteLogo from &#39;/vite.svg&#39;<br>import &#39;./App.css&#39;<br><br>function App() {<br>  const [count, setCount] = useState(0)<br><br>  return (<br>    &lt;&gt;<br>      &lt;div&gt;<br>        &lt;a href=&quot;https://vitejs.dev&quot; target=&quot;_blank&quot;&gt;<br>          &lt;img src={viteLogo} className=&quot;logo&quot; alt=&quot;Vite logo&quot; /&gt;<br>        &lt;/a&gt;<br>        &lt;a href=&quot;https://react.dev&quot; target=&quot;_blank&quot;&gt;<br>          &lt;img src={reactLogo} className=&quot;logo react&quot; alt=&quot;React logo&quot; /&gt;<br>        &lt;/a&gt;<br>      &lt;/div&gt;<br>      &lt;h1&gt;Vite + React&lt;/h1&gt;<br>      &lt;div className=&quot;card&quot;&gt;<br>        &lt;button onClick={() =&gt; setCount((count) =&gt; count + 1)}&gt;<br>          count is {count}<br>        &lt;/button&gt;<br>        &lt;p&gt;<br>          Edit &lt;code&gt;src/App.jsx&lt;/code&gt; and save to test HMR<br>        &lt;/p&gt;<br>      &lt;/div&gt;<br>      &lt;p className=&quot;read-the-docs&quot;&gt;<br>        Click on the Vite and React logos to learn more<br>      &lt;/p&gt;<br>    &lt;/&gt;<br>  )<br>}<br><br>export default App</pre><p>Edit and change to this to initialize viem</p><pre>import { useState } from &#39;react&#39;<br>import viteLogo from &#39;/vite.svg&#39;<br>import &#39;./App.css&#39;<br>import { createPublicClient, http } from &#39;viem&#39;<br>import { creatorTestnet } from &#39;viem/chains&#39;<br><br>const client = createPublicClient({<br>  chain: creatorTestnet,<br>  transport: http(),<br>})<br><br>function App() {<br>  const [number, setNumber] = useState(0)<br>  return (<br>    &lt;&gt;<br>      &lt;h1&gt;Vite + Creator&lt;/h1&gt;<br>      &lt;div className=&quot;card&quot;&gt;<br>        &lt;button&gt;<br>          Number in storage is {number}<br>        &lt;/button&gt;<br><br>      &lt;/div&gt;<br>    &lt;/&gt;<br>  )<br>}<br><br>export default App</pre><p>I’ve initialized Viem in the project and made some UI adjustments. Now, let’s delve into using Viem to make the project reactive. First, let’s import createWalletClient from Viem.</p><pre>import { createPublicClient, http, createWalletClient, custom,parseEther  } from &#39;viem&#39;</pre><p>Then initialize it in the code</p><pre>const wallet_client = createWalletClient({<br>  chain: creatorTestnet,<br>  transport: custom(window.ethereum)<br>})</pre><p>To access the available wallet in the browser, we use window.ethereum. You&#39;ll need to copy the contract&#39;s <a href="https://www.alchemy.com/overviews/what-is-an-abi-of-a-smart-contract-examples-and-usage">ABI</a> to your frontend. Create a new folder named contract inside the src folder, and then create a file called abi.js.</p><pre>const abi = [<br>    {<br>        &quot;inputs&quot;: [],<br>        &quot;name&quot;: &quot;retrieve&quot;,<br>        &quot;outputs&quot;: [<br>            {<br>                &quot;internalType&quot;: &quot;uint256&quot;,<br>                &quot;name&quot;: &quot;&quot;,<br>                &quot;type&quot;: &quot;uint256&quot;<br>            }<br>        ],<br>        &quot;stateMutability&quot;: &quot;view&quot;,<br>        &quot;type&quot;: &quot;function&quot;<br>    },<br>    {<br>        &quot;inputs&quot;: [<br>            {<br>                &quot;internalType&quot;: &quot;uint256&quot;,<br>                &quot;name&quot;: &quot;_number&quot;,<br>                &quot;type&quot;: &quot;uint256&quot;<br>            }<br>        ],<br>        &quot;name&quot;: &quot;store&quot;,<br>        &quot;outputs&quot;: [],<br>        &quot;stateMutability&quot;: &quot;nonpayable&quot;,<br>        &quot;type&quot;: &quot;function&quot;<br>    }<br>]</pre><p>Next, we’ll import it into App.jsx</p><pre>import ABI from &quot;./contract/abi&quot;</pre><p>We’ve finished importing the ABI. Now, let’s create a function named store within the App function</p><pre>const store = async (number) =&gt; {<br>    const { request } = await client.simulateContract({<br>      address: &#39;0x3fFE200b32ED779f06Dda526E9535a19825d39bb&#39;,<br>      abi: ABI,<br>      functionName: &#39;store&#39;,<br>      args: [parseEther(number)]<br>    });<br>    const hash = await wallet_client.writeContract(request);<br>    return hash;<br>  }</pre><p>The store function is used to interact with the store function from the contract. In the code above, we&#39;re passing the _number parameter from the contract using the args option. The parameter input is parsed with ethers to ensure the contract can understand it.</p><h3>Fectching datas from the smart contract</h3><p>Don’t worry, you’ll see it! To view the output from the smart contract, we’ll need to make a call to the contract. Similar to regular API calls with Axios or Fetch, we’ll use Viem to fetch the request from the smart contract through the ABI. Add the following code after the store function.</p><pre>const retrieve = async () =&gt; {<br>    const data = await client.readContract({<br>      address: &#39;0x3fFE200b32ED779f06Dda526E9535a19825d39bb&#39;,<br>      abi: ABI,<br>      functionName: &#39;retrieve&#39;,<br>      account<br>    });<br><br>    return data;<br>  }</pre><p>To use the dApp, we need to connect a wallet. We’ll create a React hook named useConnect for easy wallet connection. Start by creating a hooks folder and a useConnect.js file within it. Paste the following code into the file:</p><pre>import { useState, useEffect } from &#39;react&#39;;<br><br>export const useWallet = () =&gt; {<br>  const [account, setAccount] = useState(null);<br>  const [error, setError] = useState(null);<br><br>  // Function to connect wallet<br>  const connectWallet = async () =&gt; {<br>    if (typeof window.ethereum !== &#39;undefined&#39;) {<br>      try {<br>        // Request wallet connection<br>        const accounts = await window.ethereum.request({ method: &#39;eth_requestAccounts&#39; });<br>        <br>        // Set the first connected account<br>        setAccount(accounts[0]);<br>        setError(null);  // Clear any previous error<br>      } catch (err) {<br>        // Handle error if user rejects the request or if there&#39;s another issue<br>        setError(&#39;User rejected the connection request or an error occurred.&#39;);<br>      }<br>    } else {<br>      setError(&#39;No Ethereum provider found. Please install MetaMask.&#39;);<br>    }<br>  };<br><br>  // Optionally: Detect account change or network change<br>  useEffect(() =&gt; {<br>    if (typeof window.ethereum !== &#39;undefined&#39;) {<br>      const handleAccountsChanged = (accounts) =&gt; {<br>        if (accounts.length &gt; 0) {<br>          setAccount(accounts[0]);<br>        } else {<br>          setAccount(null); // Disconnected<br>        }<br>      };<br><br>      window.ethereum.on(&#39;accountsChanged&#39;, handleAccountsChanged);<br><br>      return () =&gt; {<br>        window.ethereum.removeListener(&#39;accountsChanged&#39;, handleAccountsChanged);<br>      };<br>    }<br>  }, []);<br><br>  return { account, connectWallet, error };<br>};</pre><p>The useConnect hook simplifies wallet connection, eliminating the need to rewrite the code in every page. Although it&#39;s not strictly necessary for this project, we&#39;ll use the useEffect hook to call the retrieve function, preventing unnecessary re-renders.</p><pre>useEffect(() =&gt; {<br>    retrieve().then((data) =&gt; {<br>      setNumber(formatEther(data))<br>    })<br>  }, [number, setNumber]);</pre><p>Finally, let’s review the complete code</p><pre>import { useEffect, useState } from &#39;react&#39;<br>import viteLogo from &#39;/vite.svg&#39;<br>import &#39;./App.css&#39;<br>import { createPublicClient, http, createWalletClient, custom, parseEther, formatEther } from &#39;viem&#39;<br>import { creatorTestnet } from &#39;viem/chains&#39;<br>import { abi as ABI } from &quot;./contract/abi&quot;;<br>import { useWallet } from &#39;./hooks/useConnect&#39;<br><br>const client = createPublicClient({<br>  chain: creatorTestnet,<br>  transport: http(),<br>})<br><br>const wallet_client = createWalletClient({<br>  chain: creatorTestnet,<br>  transport: custom(window.ethereum)<br>})<br><br>function App() {<br>  const [number, setNumber] = useState(0);<br>  const { account, connectWallet, error } = useWallet();<br><br>  const store = async (number) =&gt; {<br>    const { request } = await client.simulateContract({<br>      address: &#39;0x3fFE200b32ED779f06Dda526E9535a19825d39bb&#39;,<br>      abi: ABI,<br>      functionName: &#39;store&#39;,<br>      args: [parseEther(number)],<br>      account<br>    });<br><br>    const hash = await wallet_client.writeContract(request);<br><br>    return hash;<br>  }<br>  const retrieve = async () =&gt; {<br>    const data = await client.readContract({<br>      address: &#39;0x3fFE200b32ED779f06Dda526E9535a19825d39bb&#39;,<br>      abi: ABI,<br>      functionName: &#39;retrieve&#39;,<br>      account<br>    });<br><br>    return data;<br>  }<br><br>  useEffect(() =&gt; {<br>    retrieve().then((data) =&gt; {<br>      setNumber(formatEther(data))<br>    })<br>  }, [number, setNumber]);<br>  return (<br>    &lt;&gt;<br>      &lt;h1&gt;Vite + Creator&lt;/h1&gt;<br>      &lt;button onClick={connectWallet}&gt;<br>        {account? account : &quot;Connect Wallet&quot;}<br>      &lt;/button&gt;<br>      &lt;div className=&quot;card&quot;&gt;<br>        &lt;button onClick={() =&gt; {<br>          store(String(Number(number) + 1))<br>        }}&gt;<br>          Number in storage is {number}<br>        &lt;/button&gt;<br><br>      &lt;/div&gt;<br>    &lt;/&gt;<br>  )<br>}<br><br>export default App</pre><h3>Conclusion</h3><p>This tutorial provided a guide through creating a web application and connecting it to a smart contract deployed on Creator Testnet using Viem.</p><p>#Creator #Viem #Web3 #Superchain</p><p><strong>Connect with Us on Socials:</strong><br><a href="https://www.creatorchain.io/">Website</a> | <a href="https://x.com/buildonCreator">Twitter</a> | <a href="https://creatorchain.medium.com/">Blog</a> | <a href="https://discord.gg/ebGCCkBX">Discord</a> | <a href="https://t.me/BuildOnCreator">Telegram</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=c44b6766501e" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[December Recap 2024]]></title>
            <link>https://creatorchain.medium.com/december-recap-2024-6b31205a1d90?source=rss-b690c2093588------2</link>
            <guid isPermaLink="false">https://medium.com/p/6b31205a1d90</guid>
            <category><![CDATA[ethereum]]></category>
            <category><![CDATA[creator-l2]]></category>
            <category><![CDATA[optimism]]></category>
            <category><![CDATA[superchain]]></category>
            <dc:creator><![CDATA[Creator ⚡]]></dc:creator>
            <pubDate>Tue, 31 Dec 2024 12:16:56 GMT</pubDate>
            <atom:updated>2024-12-31T12:16:56.277Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*z74a7zMu9RW6R6A653rcsQ.png" /></figure><h3>December Recap</h3><p>Our December Recap has arrived! This month we have many updates from our Ecoystem,Partners and Team! Time to jump in.</p><h3>Ecosystem Updates</h3><p>We had an incredible month onboarding new projects into our ecosystem, bringing the total to over 20+ projects.</p><p><strong>New Ecosystem Projects Include:</strong></p><ul><li>VB Audit</li><li>SafePal</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*cXwGdNFQz3LC5Hp3-YXfUw.png" /></figure><h3>Creathon (Creator Hackathon)</h3><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*ZEUllG2QJeDZ2jESGsZkzg.jpeg" /></figure><p>We’re thrilled to announce our first hackathon, kicking off on <strong>January 19th</strong>, marking the start of an exciting year of activities in 2025!</p><p>This is your chance to unleash your creativity, build innovative products, and contribute to shaping the future of Web3. Join us to bring your groundbreaking ideas to life, collaborate with like-minded builders, and earn rewards for your impactful solutions on the Creator ecosystem.</p><p><strong><em>🗓️ Hackathon Dates:</em></strong><em> January 19th — February 24th, 2025<br> </em><strong><em>💰 Prize Pool:</em></strong><em> $1,250 for 10 winners</em></p><p>Get ready to innovate and be part of Web3 history! 🌟</p><h3>Event Sponsorship</h3><figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*9R4pulkD1SLScZEj3lBYUw.jpeg" /></figure><p>We are thrilled to sponsor the <strong>NextBridge Africa Community Call</strong> happening on <strong>January 18th</strong> in Enugu, Nigeria. This partnership marks a significant milestone in our journey into the vibrant African ecosystem.</p><p>As a sponsor, <strong>Creator L2</strong> is proud to contribute by:</p><ul><li><strong>Fostering Networking Opportunities:</strong> Connecting with top tech professionals, educators, and students from across Africa.</li><li><strong>Showcasing Creator L2:</strong> Highlighting how our scalable Layer 2 blockchain empowers the next wave of African innovation.</li></ul><p>We look forward to an inspiring event and building stronger ties with the African tech community! 🌍</p><h3>Conclusion</h3><p>As 2024 draws to a close, we reflect on the incredible milestones we’ve achieved since our testnet launch. This year was just the beginning, and we’re excited to reach even greater heights in the year ahead. Here’s to an even more impactful 2025! 🚀</p><p>#Creator #EOY #Web3 #Superchain</p><p><strong>Connect with Us on Socials:</strong><br><a href="https://www.creatorchain.io/">Website</a> | <a href="https://x.com/buildonCreator">Twitter</a> | <a href="https://creatorchain.medium.com/">Blog</a> | <a href="https://discord.gg/ebGCCkBX">Discord</a> | <a href="https://t.me/BuildOnCreator">Telegram</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=6b31205a1d90" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[SafePal live on Creator L2]]></title>
            <link>https://creatorchain.medium.com/safepal-live-on-creator-l2-3dfc2f438342?source=rss-b690c2093588------2</link>
            <guid isPermaLink="false">https://medium.com/p/3dfc2f438342</guid>
            <category><![CDATA[creator-l2]]></category>
            <category><![CDATA[wallet]]></category>
            <category><![CDATA[safepal]]></category>
            <category><![CDATA[ethereum]]></category>
            <dc:creator><![CDATA[Creator ⚡]]></dc:creator>
            <pubDate>Mon, 23 Dec 2024 22:05:39 GMT</pubDate>
            <atom:updated>2024-12-23T22:06:05.215Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*7kJpLVtAEmbfBVykWp0eiA.png" /></figure><h3>SafePal is Live on Creator L2</h3><blockquote><strong>Introduction:</strong><br>We’re thrilled to welcome <a href="https://safepal.com/en/">SafePal</a> into the Creator Network Ecosystem! With this integration, ecosystem enthusiasts can now effortlessly send, receive and manage their assets on Creator L2 Network.</blockquote><figure><img alt="" src="https://cdn-images-1.medium.com/max/704/1*1q3wQEpx7eoCrHkFoQ00OQ.jpeg" /></figure><h3>What is SafePal ?</h3><p>SafePal is your gateway to the rapidly expanding galaxy of decentralized applications. Our broad asset support and cross-chain compatibility make it easy to do everything from buying and selling NFTs to blockchain gaming to liquidity mining, all from the safety of your crypto wallet.</p><p>Link: <a href="https://safepal.com/en/">https://safepal.com/en/</a></p><h3>Key Features</h3><ul><li><strong>DApp Discovery</strong>: Seamlessly interact with hundreds of DApps.</li><li><strong>NFT Marketplace Access</strong>: Buy, collect, and sell NFTs across marketplaces and on any device.</li><li><strong>DeFi Exploration</strong>: Safely try uncharted DeFi projects with ease and peace of mind.</li><li><strong>Effortless Cross-Chain Asset Management</strong>: Manage your assets across multiple blockchains in one unified interface.</li></ul><figure><img alt="" src="https://cdn-images-1.medium.com/max/684/1*CmuHi5Mqyhnj9afAIHEE7w.jpeg" /></figure><h4>Aligning with Creator’s Blockchain Vision</h4><p>This partnership reinforces Creator’s commitment to providing a scalable, accessible, and user-centric blockchain ecosystem.<br>SafePal’s integration expands the Creator Network’s usability and solidifies our mission to enable decentralized interactions in a frictionless manner.</p><ul><li><strong>Empowering Ecosystem Growth</strong>: SafePal users can now interact with Creator Network’s Layer 2 scalability to enjoy lightning-fast transactions and low fees.</li><li><strong>Unleashing Innovation</strong>: This synergy showcases Creator’s aim to redefine DeFi, NFTs, and cross-chain interoperability while delivering seamless user experiences.</li><li><strong>A Step Toward Adoption</strong>: By integrating SafePal, the Creator L2 Network takes a significant stride toward becoming a preferred destination for developers, innovators, and crypto enthusiasts alike.</li></ul><h4>Explore Now</h4><p>Start using SafePal with Creator L2 today to unlock a world of seamless, secure, and innovative blockchain experiences.</p><p>#Creator #SafePal #Web3 #Superchain</p><p><strong>Connect with Us on Socials:</strong><br><a href="https://www.creatorchain.io/">Website</a> | <a href="https://x.com/buildonCreator">Twitter</a> | <a href="https://creatorchain.medium.com/">Blog</a> | <a href="https://discord.gg/ebGCCkBX">Discord</a> |<a href="https://t.me/BuildOnCreator">Telegram</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=3dfc2f438342" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Creator DApp Store is live]]></title>
            <link>https://creatorchain.medium.com/creator-dapp-store-is-live-ebc5514b0858?source=rss-b690c2093588------2</link>
            <guid isPermaLink="false">https://medium.com/p/ebc5514b0858</guid>
            <category><![CDATA[ethereum]]></category>
            <category><![CDATA[dapps]]></category>
            <category><![CDATA[creator-l2]]></category>
            <dc:creator><![CDATA[Creator ⚡]]></dc:creator>
            <pubDate>Mon, 23 Dec 2024 21:19:14 GMT</pubDate>
            <atom:updated>2024-12-23T21:19:14.495Z</atom:updated>
            <content:encoded><![CDATA[<figure><img alt="" src="https://cdn-images-1.medium.com/max/1024/1*kGw9ktKDqYnQd4qLO94s1w.png" /></figure><p>We are excited to announce the launch of our <strong>DApp Ecosystem</strong> Store by <a href="https://explorer.creatorchain.io/apps">Blockscout</a>!</p><p>With this launch, users can now explore various projects in our ecosystem and test them seamlessly.</p><h3>Currently Listed on the Store</h3><p>Our DApp Store currently features over four DApps, with more coming soon:</p><ol><li><strong>Comet Bridge</strong> ☄️<br><em>The seamless interlink communication aggregator for Ethereum, Bitcoin, and all Layer 1s.</em></li><li><strong>Emmet Finance</strong> <em>(Coming Soon)</em><br><em>A cross-chain bridge, swap aggregator, and provider of a Cross-Chain Messaging (CCM) protocol on TON and EVM blockchains.</em></li><li><strong>NFTs2Me</strong><br><em>A multichain, user-friendly platform for creating, deploying, and managing your NFT collection.</em></li><li><strong>ZNS Connect</strong><br><em>Decentralized naming solutions for the #Web3 era, personalized for blockchain interactions.</em></li></ol><h3>Explore the Store</h3><p>Check out the <a href="https://explorer.creatorchain.io/apps">Creator DApp Store</a> today and discover innovative solutions that empower the Creator ecosystem. Stay tuned as we onboard even more exciting projects!</p><p>#Creator #DApps #Web3 #Superchain</p><p><strong>Connect with Us on Socials:</strong><br><a href="https://www.creatorchain.io/">Website</a> | <a href="https://x.com/buildonCreator">Twitter</a> | <a href="https://creatorchain.medium.com/">Blog</a> | <a href="https://discord.gg/ebGCCkBX">Discord</a> | <a href="https://t.me/BuildOnCreator">Telegram</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=ebc5514b0858" width="1" height="1" alt="">]]></content:encoded>
        </item>
    </channel>
</rss>