{"id":20389394,"url":"https://github.com/arnaudband/ccip_masterclass_3","last_synced_at":"2025-07-15T13:11:29.270Z","repository":{"id":252765566,"uuid":"841383075","full_name":"ArnaudBand/ccip_masterclass_3","owner":"ArnaudBand","description":"The Cross-Chain NFT Project is a decentralized application (dApp) built using Solidity and Foundry. It enables users to mint, transfer, and manage Non-Fungible Tokens (NFTs) across multiple blockchain networks, providing a seamless and interoperable NFT experience.","archived":false,"fork":false,"pushed_at":"2024-08-13T20:57:54.000Z","size":37,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-29T15:11:49.897Z","etag":null,"topics":["arbitrum","ccip","ethereum-blockchain","foundry","nft","sepolia","solidity"],"latest_commit_sha":null,"homepage":"","language":"Solidity","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/ArnaudBand.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":"2024-08-12T09:48:50.000Z","updated_at":"2024-08-13T20:57:57.000Z","dependencies_parsed_at":"2025-01-15T09:38:39.577Z","dependency_job_id":"2987c9ba-f091-4510-87e3-136d47932247","html_url":"https://github.com/ArnaudBand/ccip_masterclass_3","commit_stats":null,"previous_names":["arnaudband/ccip_masterclass_3"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ArnaudBand/ccip_masterclass_3","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArnaudBand%2Fccip_masterclass_3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArnaudBand%2Fccip_masterclass_3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArnaudBand%2Fccip_masterclass_3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArnaudBand%2Fccip_masterclass_3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ArnaudBand","download_url":"https://codeload.github.com/ArnaudBand/ccip_masterclass_3/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ArnaudBand%2Fccip_masterclass_3/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265437620,"owners_count":23765124,"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","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":["arbitrum","ccip","ethereum-blockchain","foundry","nft","sepolia","solidity"],"created_at":"2024-11-15T03:17:54.791Z","updated_at":"2025-07-15T13:11:29.232Z","avatar_url":"https://github.com/ArnaudBand.png","language":"Solidity","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Cross-Chain NFT Project\n\n## Overview\n\nThe Cross-Chain NFT Project is a decentralized application (dApp) built using Solidity and Foundry. It enables users to mint, transfer, and manage Non-Fungible Tokens (NFTs) across multiple blockchain networks, providing a seamless and interoperable NFT experience.\n\n## Features\n\n- **Cross-Chain Minting**: Mint NFTs on one blockchain and seamlessly transfer them to another.\n- **Interoperability**: Allows NFTs to operate across different blockchain networks such as Ethereum, Binance Smart Chain, and Polygon.\n- **Security**: The smart contracts are designed with security best practices and have undergone rigorous testing.\n- **Optimized for Efficiency**: Smart contracts are optimized to minimize gas fees, ensuring scalability across multiple chains.\n- **User-Friendly**: Provides a straightforward interface for minting and transferring NFTs.\n\n## Tech Stack\n\n- **Smart Contracts**: Solidity\n- **Testing \u0026 Deployment**: Foundry\n- **Blockchain Networks**: Ethereum Sepolia, Arbittrum Sepolia\n- **Oracles**: Chainlink\n- **Frontend**: Optional (React, Next.js)\n\n## Installation\n\n### Prerequisites\n\n- Foundry: [Install Foundry](https://book.getfoundry.sh/getting-started/installation)\n- Metamask Wallet\n\n### Clone the Repository\n\n```bash\ngit https://github.com/ArnaudBand/ccip_masterclass_3\ncd ccip_masterclass_3\n```\n\n\n### Install Foundry\n\nMake sure you have Foundry installed. If not, follow these steps:\n\n```bash\ncurl -L https://foundry.paradigm.xyz | bash\nfoundryup\n```\n\n### Compile Smart Contracts\n\nCompile your Solidity contracts using Foundry:\n\n```bash\nforge build\n```\n\n### Run Tests\n\nRun the tests to ensure everything is working correctly:\n\n```bash\nforge test\n```\n\n### Deploy Smart Contracts\n\nConfigure your deployment settings in `script/Deploy.s.sol`. Then deploy to your preferred network:\n\n```bash\nforge script script/Deploy.s.sol --rpc-url \u003cYOUR_RPC_URL\u003e --private-key \u003cYOUR_PRIVATE_KEY\u003e --broadcast\n```\n\nReplace `\u003cYOUR_RPC_URL\u003e` with your node's RPC URL (e.g., Infura, Alchemy) and `\u003cYOUR_PRIVATE_KEY\u003e` with your private key.\n\n### Deploy Verification (Optional)\n\nIf you want to verify your contracts on Etherscan:\n\n```bash\nforge verify-contract --contract \u003cCONTRACT_PATH:CONTRACT_NAME\u003e --chain-id \u003cCHAIN_ID\u003e --etherscan-api-key \u003cYOUR_API_KEY\u003e\n```\n\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgements\n\n- [Foundry](https://getfoundry.sh/) for testing and deployment tools.\n- [Chainlink](https://chain.link/) for providing decentralized oracles.\n- [OpenZeppelin](https://openzeppelin.com/) for secure Solidity libraries.\n\n## Contact\n\nFor any inquiries or issues, please reach out to [bandonkeyea@gmail.com](mailto:bandonkeyea@gmail.com) or create an issue on this repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farnaudband%2Fccip_masterclass_3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farnaudband%2Fccip_masterclass_3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farnaudband%2Fccip_masterclass_3/lists"}