AI-Muse

所属分类:前端开发
开发工具:Dart
文件大小:9858KB
下载次数:0
上传日期:2023-03-19 08:26:24
上 传 者sh-1993
说明:  AI Muse是一款去中心化的退化AI移动应用程序,允许您在单点上创建和铸造NFT。
(AI Muse is a decentralised degenerative AI mobile application that allows you to create and mint NFT(s) on single tap.)

文件列表:
aimuse-ethforall-2023-winner-develop_sol (0, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\.metadata (1668, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\.vscode (0, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\.vscode\settings.json (68, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\CONTRIBUTING.md (3343, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\LICENCE (1061, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\analysis_options.yaml (1453, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android (0, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app (0, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\build.gradle (2235, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src (0, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\debug (0, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\debug\AndroidManifest.xml (412, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main (0, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main\AndroidManifest.xml (2108, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main\kotlin (0, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main\kotlin\com (0, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main\kotlin\com\example (0, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main\kotlin\com\example\ai_muse (0, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main\kotlin\com\example\ai_muse\MainActivity.kt (124, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main\res (0, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main\res\drawable-v21 (0, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main\res\drawable-v21\launch_background.xml (438, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main\res\drawable (0, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main\res\drawable\launch_background.xml (434, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main\res\mipmap-hdpi (0, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main\res\mipmap-hdpi\ic_launcher.png (5196, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main\res\mipmap-mdpi (0, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main\res\mipmap-mdpi\ic_launcher.png (2909, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main\res\mipmap-xhdpi (0, 2023-08-02)
aimuse-ethforall-2023-winner-develop_sol\android\app\src\main\res\mipmap-xhdpi\ic_launcher.png (8428, 2023-08-02)
... ...

## AI Muse 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. ![Group 6](https://firebasestorage.googleapis.com/v0/b/pikc-scanner.appspot.com/o/aimuse%2Fcover_pic.png?alt=media&token=09b04d90-0969-413e-87dc-9dbe1fdf81ec) ## Introduction 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. ## Usage 1. Clone the repository from GitHub: ```bash git clone https://github.com/yatendra2001/ai_muse.git ``` 2. Create a file keys.dart under lib directory and get the following keys: ```bash 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 = ; 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***"; ``` 3. Navigate to project's backend directory: ```bash cd smart_contract ``` 4. Clone and run the backend to get CONTRACT_ADDRESS for keys.dart file: ```bash npx hardhat run scripts/deploy.js --network Main ``` 5. Run the following to get CONTRACT_ADDRESS_MANTLE_TESTNET for keys.dart file: ```bash npx hardhat run scripts/deploy.js --network mantle-testnet ``` 6. Navigate to project's root directory: ```bash cd - ``` 7. Check for Flutter setup and connected devices: ```bash flutter doctor ``` 8. Run the app: ```bash flutter run ``` ## Contributing 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](https://github.com/yatendra2001/AI-Muse/blob/develop_sol/CONTRIBUTING.md). ## License The project is released under the [MIT License](http://www.opensource.org/licenses/mit-license.php). The license can be found [here](LICENSE). ## Flutter For help getting started with Flutter, view [online documentation](https://flutter.dev/docs), which offers tutorials, samples, guidance on mobile development, and a full API reference. ### If you like it, make sure to star our repo :)

近期下载者

相关文件


收藏者