Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mujeebsulayman/nft-mart
https://github.com/mujeebsulayman/nft-mart
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mujeebsulayman/nft-mart
- Owner: MujeebSulayman
- License: mit
- Created: 2024-10-08T09:34:23.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-17T21:22:58.000Z (3 months ago)
- Last Synced: 2024-10-20T12:43:17.248Z (3 months ago)
- Language: TypeScript
- Homepage: https://nft-mart-seven.vercel.app/
- Size: 12.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# NFT Mart
NFT Mart is a decentralized marketplace for discovering, collecting, and selling extraordinary NFTs. Built with Next.js, Hardhat, and Ethers.js, this project provides a seamless experience for NFT enthusiasts and creators.
## Features
- Browse and explore a wide range of NFTs
- Create and mint your own NFTs
- Buy and sell NFTs using cryptocurrency
- Real-time bidding and auction system
- User-friendly interface with responsive design
- Secure wallet integration using Rainbow Kit
- Smart contract integration for NFT transactions## Technologies Used
- Next.js 13
- React 18
- TypeScript
- Hardhat
- Ethers.js
- Tailwind CSS
- Redux Toolkit
- Rainbow Kit
- Framer Motion## Getting Started
### Prerequisites
- Node.js (v14 or later)
- npm or yarn
- MetaMask or any Ethereum wallet### Installation
1. Clone the repository:
```
git clone https://github.com/mujeebSulayman/nft-mart.git
```2. Navigate to the project directory:
```
cd nft-mart
```3. Install dependencies:
```
npm install
```
or
```
yarn install
```4. Create a `.env` file in the root directory and add the following environment variables:
```
NEXT_PUBLIC_ALCHEMY_ID=your_alchemy_api_key
NEXT_PUBLIC_PROJECT_ID=your_project_id
```### Running the Development Server
1. Start the Hardhat node:
```
npx hardhat node
```2. In a new terminal, run the development server:
```
npm run dev
```
or
```
yarn dev
```3. Open [http://localhost:3000](http://localhost:3000) in your browser to view the application.
## Smart Contracts
The main smart contract for this project is `Nftmart.sol`, which handles the creation, minting, and trading of NFTs. You can find it in the `contracts/` directory.
To deploy the smart contract:
1. Compile the contract:
```
npx hardhat compile
```2. Deploy the contract:
```
npx hardhat run scripts/deploy.js --network localhost
```## Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
## License
This project is licensed under the MIT License. See the `LICENSE` file for details.
## Acknowledgements
- OpenZeppelin for secure smart contract libraries
- Rainbow Kit for wallet integration
- Hardhat for Ethereum development environment