{"id":28178495,"url":"https://github.com/slycompiler/nft-marketplace-solidity","last_synced_at":"2026-05-01T13:33:05.235Z","repository":{"id":333472668,"uuid":"791052851","full_name":"slycompiler/NFT-marketplace-solidity","owner":"slycompiler","description":"NFT marketplace(solidity)","archived":false,"fork":false,"pushed_at":"2024-04-24T02:24:49.000Z","size":581,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-29T10:06:18.230Z","etag":null,"topics":["javascript","nft-marketplace","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/slycompiler.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-04-24T02:24:29.000Z","updated_at":"2024-09-10T13:26:41.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/slycompiler/NFT-marketplace-solidity","commit_stats":null,"previous_names":["slycompiler/nft-marketplace-solidity"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/slycompiler/NFT-marketplace-solidity","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slycompiler%2FNFT-marketplace-solidity","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slycompiler%2FNFT-marketplace-solidity/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slycompiler%2FNFT-marketplace-solidity/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slycompiler%2FNFT-marketplace-solidity/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/slycompiler","download_url":"https://codeload.github.com/slycompiler/NFT-marketplace-solidity/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/slycompiler%2FNFT-marketplace-solidity/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32499681,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"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":["javascript","nft-marketplace","solidity"],"created_at":"2025-05-16T01:12:36.560Z","updated_at":"2026-05-01T13:33:05.189Z","avatar_url":"https://github.com/slycompiler.png","language":"Solidity","funding_links":[],"categories":[],"sub_categories":[],"readme":"#### Local setup\n\nTo run this project locally, follow these steps.\n\n1. Clone the project locally, change into the directory, and install the dependencies:\n\n```sh\ngit clone https://github.com/dabit3/polygon-ethereum-nextjs-marketplace.git\n\ncd polygon-ethereum-nextjs-marketplace\n\n# install using NPM or Yarn\nnpm install\n\n# or\n\nyarn\n```\n\n2. Start the local Hardhat node\n\n```sh\nnpx hardhat node\n```\n\n3. With the network running, deploy the contracts to the local network in a separate terminal window\n\n```sh\nnpx hardhat run scripts/deploy.js --network localhost\n```\n\n4. Start the app\n\n```\nnpm run dev\n```\n\n### Configuration\n\nTo deploy to Polygon test or main networks, update the configurations located in __hardhat.config.js__ to use a private key and, optionally, deploy to a private RPC like Infura.\n\n```javascript\nrequire(\"@nomiclabs/hardhat-waffle\");\nconst fs = require('fs');\nconst privateKey = fs.readFileSync(\".secret\").toString().trim() || \"01234567890123456789\";\n\n// infuraId is optional if you are using Infura RPC\nconst infuraId = fs.readFileSync(\".infuraid\").toString().trim() || \"\";\n\nmodule.exports = {\n  defaultNetwork: \"hardhat\",\n  networks: {\n    hardhat: {\n      chainId: 1337\n    },\n    mumbai: {\n      // Infura\n      // url: `https://polygon-mumbai.infura.io/v3/${infuraId}`\n      url: \"https://rpc-mumbai.matic.today\",\n      accounts: [privateKey]\n    },\n    matic: {\n      // Infura\n      // url: `https://polygon-mainnet.infura.io/v3/${infuraId}`,\n      url: \"https://rpc-mainnet.maticvigil.com\",\n      accounts: [privateKey]\n    }\n  },\n  solidity: {\n    version: \"0.8.4\",\n    settings: {\n      optimizer: {\n        enabled: true,\n        runs: 200\n      }\n    }\n  }\n};\n```\n\nIf using Infura, update __.infuraid__ with your [Infura](https://infura.io/) project ID.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslycompiler%2Fnft-marketplace-solidity","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fslycompiler%2Fnft-marketplace-solidity","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslycompiler%2Fnft-marketplace-solidity/lists"}