{"id":28953814,"url":"https://github.com/wraithkingdev555/nft-mint-sc-in-sui","last_synced_at":"2026-02-11T10:34:56.260Z","repository":{"id":279140395,"uuid":"931755179","full_name":"wraithkingdev555/nft-mint-sc-in-sui","owner":"wraithkingdev555","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-12T20:01:01.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-23T18:51:42.196Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Move","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wraithkingdev555.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-12T19:58:05.000Z","updated_at":"2025-02-24T00:45:05.000Z","dependencies_parsed_at":"2025-02-24T02:37:27.131Z","dependency_job_id":"05b2c509-5e28-458a-9c9e-e4d5a8c818ea","html_url":"https://github.com/wraithkingdev555/nft-mint-sc-in-sui","commit_stats":null,"previous_names":["sandkingdev/nft-mint-sc-in-sui","wraithkingdev555/nft-mint-sc-in-sui"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wraithkingdev555/nft-mint-sc-in-sui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wraithkingdev555%2Fnft-mint-sc-in-sui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wraithkingdev555%2Fnft-mint-sc-in-sui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wraithkingdev555%2Fnft-mint-sc-in-sui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wraithkingdev555%2Fnft-mint-sc-in-sui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wraithkingdev555","download_url":"https://codeload.github.com/wraithkingdev555/nft-mint-sc-in-sui/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wraithkingdev555%2Fnft-mint-sc-in-sui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270690144,"owners_count":24628817,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-16T02:00:11.002Z","response_time":91,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-23T18:39:30.353Z","updated_at":"2025-08-16T09:08:42.629Z","avatar_url":"https://github.com/wraithkingdev555.png","language":"Move","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NFT-tutorial\n\nThis repository contains a Non-Fungible Token (NFT) Minting Smart Contract written for the Sui blockchain.\n\n## 🚀 Features\n\n- Mint NFTs with unique attributes.\n- Transfer ownership of NFTs securely.\n- Leverages the Sui blockchain for scalability and low-cost transactions.\n- Beginner-friendly implementation for learning and experimenting.\n\n## 🛠️ Tech Stack\n\n- **Sui Move:** For writing and deploying smart contracts on the Sui blockchain.\n- **Sui CLI:** For interacting with the Sui network and deploying the contract.\n- **TypeScript (Optional):** For testing and interacting with the contract.\n\n\n## 📦 Project Structure\n\n```\n|-- interaction/           # Optional scripts to interact with the contract  \n|   |-- devnet.sh          # Script to deploy contract\n|-- sources/               # Contains the Move source code  \n|   |-- nft.move           # NFT minting and management logic  \n|   |-- ownership.move     # Ownership logic\n|-- tests/                 # Optional tests for the smart contract  \n|-- move.toml              # Project configuration for Sui Move  \n```\n\n## 📚 How to Use\n\n### Prerequisites\n\n1. Install the Sui CLI.\n2. Set up a Sui Wallet or test account.\n\n### Setup\n\n1. Clone this repository:\n\n```\ngit clone https://github.com/sandkingdev/nft-mint-sc-in-sui.git\ncd nft-mint-sc-in-sui \n```\n\n2. Build the project:\n\n```\nsui move build  \n```\n\n3. Test the contract:\n\n```\nsui move test  \n```\n\n4. Deploy to the Sui blockchain:\n```\nsui client publish --gas-budget 1000  \n```\n\n## Minting an NFT\nOnce deployed, you can mint an NFT by calling the mint function in the contract. Use the Sui CLI or integrate with a frontend to interact with the contract.\n\n\n## 🤝 Contributing\nFeel free to fork the repository, make improvements, and submit pull requests!\n\n## 🌟 Acknowledgements\n\n- The Sui Move Documentation for clear guidance on Sui development.\n- Open-source contributors who build the ecosystem!\n\n\n\n```bash\n    sui client call \\\n        --function initialize_collection \\\n        --module nft_mint \\\n        --package \u003cpackage_object_id\u003e \\\n        --args \u003cowner_cap_object_id\u003e \\\n        --gas-budget 50000000\n\n    sui client call \\\n        --function initialize_collection \\\n        --module nft_mint \\\n        --package \u003cpackage_object_id\u003e \\\n        --args \u003ccollection_object_id\u003e \\\n            \u003cnft_name_vector_format\u003e \\\n            \u003cnft_description_vector_format\u003e \\\n            \u003cnft_image_url_vector_format\u003e \\\n            \u003crecipient_address\u003e \\\n        --gas-budget 50000000   \n```\n\n````\n    sui client call \\\n        --function mint_to_sender \\\n        --module nft_mint \\\n        --package 0x1fc866f447e1befbc1f64f6b0a41dba46e14826b66c89b8c1ee99dbf8f77b879 \\\n        --args 0xc6a871937bae50b0e3fafc8ea8bc6e99e4a70f1cb5e5d8846ba4047c28ecaeac \\\n        --gas-budget 50000000\n\n    \u003c!-- sui client call \\\n        --function mint_to_sender \\\n        --module nft_mint \\\n        --package 0x1fc866f447e1befbc1f64f6b0a41dba46e14826b66c89b8c1ee99dbf8f77b879 \\\n        --args 0xd594a588de36bc841d30ac066056bfa1aa846275fc98a8a4bbc9a19b8fe9b48e FirstNFTName1 FirstNftDescription1 https://nft_url_1 0x9681785da120c47b331e5f22a393eb39adb2e5dc856729a5c1ad3d292d35f2f3 \\\n        --gas-budget 50000000 --\u003e\n\nsui client call \\\n    --function mint_to_sender \\\n    --module nft_mint \\\n    --package 0x1fc866f447e1befbc1f64f6b0a41dba46e14826b66c89b8c1ee99dbf8f77b879 \\\n    --args 0xd594a588de36bc841d30ac066056bfa1aa846275fc98a8a4bbc9a19b8fe9b48e \\\n           0x46697273744e46544e616d6531 \\\n           0x46697273744e66744465736372697074696f6e31 \\\n           0x68747470733a2f2f6e66745f75726c5f31 \\\n           0x9681785da120c47b331e5f22a393eb39adb2e5dc856729a5c1ad3d292d35f2f3 \\\n    --gas-budget 50000000        \n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwraithkingdev555%2Fnft-mint-sc-in-sui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwraithkingdev555%2Fnft-mint-sc-in-sui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwraithkingdev555%2Fnft-mint-sc-in-sui/lists"}