ComMeme is a revolutionary platform that combines meme culture with blockchain technology to create a unique tokenization system. The platform enables users to tokenize memes and participate in a Universal Basic Income (UBI) system.
- Meme Tokenization: Convert your favorite memes into unique digital assets
- UBI Distribution: Receive regular UBI tokens through the platform
- Gasless Transactions: Enjoy seamless transactions without worrying about gas fees
- Email Authentication: Secure and easy-to-use authentication system
- Multi-Chain Support: Built on UnichainSepolia network
- Frontend: React, Vite, TypeScript
- Authentication: Supabase
- Blockchain: UnichainSepolia
- Smart Contracts: Solidity
- Styling: Tailwind CSS
- Clone the repository:
git clone https://github.com/yourusername/commeme-blockchain.git
cd commeme-blockchain- Install dependencies:
pnpm install- Create a
.envfile in the root directory with your Supabase credentials:
VITE_SUPABASE_URL=your_supabase_url
VITE_SUPABASE_ANON_KEY=your_supabase_anon_key
VITE_RELAY=http://localhost:3000
- Start the development server:
pnpm devcommeme-frontend/
├── src/
│ ├── components/ # React components
│ ├── lib/ # Utility functions and configurations
│ ├── hooks/ # Custom React hooks
│ └── App.tsx # Main application component
├── public/ # Static assets
└── package.json # Project dependencies
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
For any questions or suggestions, please open an issue in the repository.
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
Currently, two official plugins are available:
- @vitejs/plugin-react uses Babel for Fast Refresh
- @vitejs/plugin-react-swc uses SWC for Fast Refresh
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
- Configure the top-level
parserOptionsproperty like this:
export default {
// other rules...
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: ['./tsconfig.json', './tsconfig.node.json', './tsconfig.app.json'],
tsconfigRootDir: __dirname,
},
}- Replace
plugin:@typescript-eslint/recommendedtoplugin:@typescript-eslint/recommended-type-checkedorplugin:@typescript-eslint/strict-type-checked - Optionally add
plugin:@typescript-eslint/stylistic-type-checked - Install eslint-plugin-react and add
plugin:react/recommended&plugin:react/jsx-runtimeto theextendslist