Xemen is a versatile project, designed to offer users a seamless experience in managing their Solana wallets and conducting transactions. In this project, users can sign up, receive a Solana wallet, and use their wallet balance to purchase products or transfer funds (future feature). This project also incorporates e-commerce functionality, allowing users to sell or purchase products on the platform.
While currently focused on Solana Devnet transactions for hackathon purposes, Xemen provides a solid foundation for building a robust blockchain-based payment and e-commerce solution.
-
Next.js - Full-stack framework for building the backend and frontend.
-
Prisma ORM - Object-relational mapping for PostgreSQL database.
-
PostgreSQL - Database for storing user and transaction data.
-
Next Auth - Authentication system for secure user login.
-
Solana - Blockchain platform for managing Solana wallets and transactions.
-
React.js - JavaScript framework for building user interfaces.
-
ShadCN - A utility-first CSS framework for building responsive designs.
-
Tailwind CSS - Utility-first CSS framework for styling.
- Solana Wallet Integration: Upon signup, users receive a Solana wallet.
- Transaction Logic: Users can send and receive money using their Solana wallet balance (as per now via selling or purchasing,In future will improve it by wallet to wallet transaction).
- E-commerce Functionality: Users can sell and purchase products.
- Devnet Transactions: Currently, transactions are conducted on Solana Devnet for testing and development purposes.
- Secure Authentication: Users can authenticate themselves via Google,Discord,Github for secure authentication.
- Add funds: Users can Add solana from any faucet. But we have given faucet solana official link to add funds to solana wallet. Users can go to the site and give their public key to get a solana airdrop there.
- At first,Fork the repo Then
git clone <repo_url>
cd Xemen
npm install
- Copy the
.env.example
file to.env
:
cp .env.example .env
- Update the
.env
file with the necessary environment variables, including database credentials and Solana API keys.
- Run the following commands to set up your database schema and generate Prisma client:
npx prisma migrate dev
or
npx prisma db push
- If you need to regenerate the Prisma client, run:
npx prisma generate
- For development mode, run:
npm run dev
- For production mode, build and start the server:
npm run build
npm run start
- Sign Up: Create an account and receive a Solana wallet.
- Add Money: Add funds to your Solana wallet from the Solana Devnet.
- Make Purchases: Use your wallet balance to purchase products on the platform.
- Sell Products: List products for sale on the platform.
- Mainnet Integration: Transition from Solana Devnet to Mainnet for real-world transactions.
- Wallet-to-Wallet Transfers: Implement the ability to transfer funds between wallets.
- Additional Payment Methods: Integrate more payment options like UPI or traditional bank transfers.
This project is licensed under the MIT License.
This is a Next.js project bootstrapped with create-next-app
.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
This project uses next/font
to automatically optimize and load Inter, a custom Google Font.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.