AI Muse, aims to revolutionize the NFT market by empowering users to easily create and sell their digital assets, encouraging more artists and collectors to participate in the NFT space.
AI Muse is an NFT generator mobile application that utilizes AI algorithms and prompts to simplify the NFT creation process, making it accessible to a wider audience. The AI-generated artwork is unique and reflects the personal preferences and styles of the user, resulting in one-of-a-kind NFTs.
- Clone the repository from GitHub:
git clone https://github.com/yatendra2001/ai_muse.git
- Create a file keys.dart under lib directory and get the following keys:
const DALL_E_API = "***get_api_key_from_OpenAI_DALL-E***";
const NFT_STORAGE_API =
"***get_api_key_from_NFT.Storage***";
const NFT_PORT_API = "***get_api_key_from_NFTPort.xyz***";
const CONTRACT_NAME = "Name you want to give to your contract";
const CONTRACT_SYMBOL = "*****give_your_own_token_symbol_like_AMC******";
const CONTRACT_ADDRESS = <Follow below step 3 and 4 for this>;
const CONTRACT_ADDRESS_MANTLE_TESTNET =
"Follow step 5 for this";
const WALLET_OWNER = "****your_wallet_account_address*****";
const WALLET_PRIVATE_KEY =
"*****your_wallet_private_key******";
const POLYGONSCAN_KEY = "*****get_api_key_from_polygon_scan";
const ALCHEMY_KEY_TEST =
"***get_api_key_from_alchmey_for_polygon_testnet***";
const ALCHEMY_KEY_PROD =
"***get_api_key_from_alchmey_for_polygon_mainnet***";
- Navigate to project's backend directory:
cd smart_contract
- Clone and run the backend to get CONTRACT_ADDRESS for keys.dart file:
npx hardhat run scripts/deploy.js --network Main
- Run the following to get CONTRACT_ADDRESS_MANTLE_TESTNET for keys.dart file:
npx hardhat run scripts/deploy.js --network mantle-testnet
- Navigate to project's root directory:
cd -
- Check for Flutter setup and connected devices:
flutter doctor
- Run the app:
flutter run
Contribution to the project can be made if you have some improvements for the project or if you find some bugs. You can contribute to the project by reporting issues, forking it, modifying the code and making a pull request to the repository.
Please make sure you specify the commit type when opening pull requests:
feat: The new feature you're proposing
fix: A bug fix in the project
style: Feature and updates related to UI improvements and styling
test: Everything related to testing
docs: Everything related to documentation
refactor: Regular code refactoring and maintenance
To know more extensively about how to contribute to this project, read our Contribution Guide.
The project is released under the MIT License. The license can be found here.
For help getting started with Flutter, view online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.