"use client"; import Image from "next/image"; import Link from "next/link"; import type { NextPage } from "next"; import { useAccount } from "wagmi"; import { BugAntIcon, MagnifyingGlassIcon } from "@heroicons/react/24/outline"; import { Address } from "~~/components/scaffold-eth"; const Home: NextPage = () => { const { address: connectedAddress } = useAccount(); return ( <>

Welcome to Scaffold-ETH 2 (SpeedRunEthereum Challenge: Tokenization extension)

Connected Address:

Challenge: Tokenization

challenge banner

🎫 Create a unique token to learn the basics of 🏗️ Scaffold-ETH 2. You'll use 👷‍♀️ HardHat {" "} to compile and deploy smart contracts. Then, you'll use a template React app full of important Ethereum components and hooks. Finally, you'll deploy an NFT to a public network to share with friends! 🚀

🌟 The final deliverable is an app that lets users purchase and transfer NFTs. Deploy your contracts to a testnet then build and upload your app to a public web server. Submit the url on{" "} SpeedRunEthereum.com {" "} !

Tinker with your smart contract using the{" "} Debug Contracts {" "} tab.

Explore your local transactions with the{" "} Block Explorer {" "} tab.

); }; export default Home;