├── .babelrc ├── .env.example ├── .gitignore ├── ImagesReadMe ├── mainnet.png ├── metamaskMatic.png ├── mumbai.png └── testMatic.png ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── backEnd │ ├── abis │ │ ├── Address.json │ │ ├── Context.json │ │ ├── ERC165.json │ │ ├── ERC721.json │ │ ├── EnumerableMap.json │ │ ├── EnumerableSet.json │ │ ├── IERC165.json │ │ ├── IERC721.json │ │ ├── IERC721Enumerable.json │ │ ├── IERC721Metadata.json │ │ ├── IERC721Receiver.json │ │ ├── Migrations.json │ │ ├── NFT.json │ │ ├── Ownable.json │ │ ├── SafeMath.json │ │ └── Strings.json │ ├── contracts │ │ ├── Migrations.sol │ │ └── NFT.sol │ ├── migrations │ │ ├── 1_initial_migration.js │ │ └── 2_deploy.js │ ├── scripts │ │ ├── gallery │ │ │ ├── american-gothic.jpg │ │ │ ├── arnolfini-portrait.jpg │ │ │ ├── at-eternity_s-gate.jpg │ │ │ ├── cafe-terrace-at-night.jpg │ │ │ ├── chalk-cliffs-on-r_gen.jpg │ │ │ ├── girl-with-a-pearl-earring.jpg │ │ │ ├── heracles-and-the-nemea-lion.jpg │ │ │ ├── lady-agnew-of-lochnaw.jpg │ │ │ ├── lady-with-an-ermine.jpg │ │ │ ├── mona-lisa.jpg │ │ │ ├── napoleon-crossing-the-alps.jpg │ │ │ ├── paradise.jpg │ │ │ ├── portrait-of-madame-x.jpg │ │ │ ├── the-astronomer.jpg │ │ │ ├── the-battle-of-alexander-at-issus.jpg │ │ │ ├── the-entombment-of-christ.jpg │ │ │ ├── the-misanthrope.jpg │ │ │ ├── the-scream.jpg │ │ │ ├── the-swing.jpg │ │ │ └── wanderer-above-the-sea-of-fog.jpg │ │ ├── metadata │ │ │ ├── american-gothic.json │ │ │ ├── arnolfini-portrait.json │ │ │ ├── at-eternity_s-gate.json │ │ │ ├── cafe-terrace-at-night.json │ │ │ ├── chalk-cliffs-on-r_gen.json │ │ │ ├── girl-with-a-pearl-earring.json │ │ │ ├── heracles-and-the-nemea-lion.json │ │ │ ├── lady-agnew-of-lochnaw.json │ │ │ ├── lady-with-an-ermine.json │ │ │ ├── mona-lisa.json │ │ │ ├── napoleon-crossing-the-alps.json │ │ │ ├── paradise.json │ │ │ ├── portrait-of-madame-x.json │ │ │ ├── the-astronomer.json │ │ │ ├── the-battle-of-alexander-at-issus.json │ │ │ ├── the-entombment-of-christ.json │ │ │ ├── the-misanthrope.json │ │ │ ├── the-scream.json │ │ │ ├── the-swing.json │ │ │ └── wanderer-above-the-sea-of-fog.json │ │ ├── mint.js │ │ └── nftsData.js │ └── test │ │ ├── helpers.js │ │ └── test.js ├── components │ ├── App.js │ ├── Loading.js │ ├── Main.js │ ├── Navbar.js │ └── Style.css ├── images │ ├── eth.png │ └── logo.png ├── index.js ├── serviceWorker.js └── store │ ├── actions.js │ ├── configureStore.js │ ├── interactions.js │ ├── reducers.js │ └── selectors.js └── truffle-config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/.babelrc -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/.gitignore -------------------------------------------------------------------------------- /ImagesReadMe/mainnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/ImagesReadMe/mainnet.png -------------------------------------------------------------------------------- /ImagesReadMe/metamaskMatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/ImagesReadMe/metamaskMatic.png -------------------------------------------------------------------------------- /ImagesReadMe/mumbai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/ImagesReadMe/mumbai.png -------------------------------------------------------------------------------- /ImagesReadMe/testMatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/ImagesReadMe/testMatic.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/backEnd/abis/Address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/abis/Address.json -------------------------------------------------------------------------------- /src/backEnd/abis/Context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/abis/Context.json -------------------------------------------------------------------------------- /src/backEnd/abis/ERC165.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/abis/ERC165.json -------------------------------------------------------------------------------- /src/backEnd/abis/ERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/abis/ERC721.json -------------------------------------------------------------------------------- /src/backEnd/abis/EnumerableMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/abis/EnumerableMap.json -------------------------------------------------------------------------------- /src/backEnd/abis/EnumerableSet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/abis/EnumerableSet.json -------------------------------------------------------------------------------- /src/backEnd/abis/IERC165.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/abis/IERC165.json -------------------------------------------------------------------------------- /src/backEnd/abis/IERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/abis/IERC721.json -------------------------------------------------------------------------------- /src/backEnd/abis/IERC721Enumerable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/abis/IERC721Enumerable.json -------------------------------------------------------------------------------- /src/backEnd/abis/IERC721Metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/abis/IERC721Metadata.json -------------------------------------------------------------------------------- /src/backEnd/abis/IERC721Receiver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/abis/IERC721Receiver.json -------------------------------------------------------------------------------- /src/backEnd/abis/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/abis/Migrations.json -------------------------------------------------------------------------------- /src/backEnd/abis/NFT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/abis/NFT.json -------------------------------------------------------------------------------- /src/backEnd/abis/Ownable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/abis/Ownable.json -------------------------------------------------------------------------------- /src/backEnd/abis/SafeMath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/abis/SafeMath.json -------------------------------------------------------------------------------- /src/backEnd/abis/Strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/abis/Strings.json -------------------------------------------------------------------------------- /src/backEnd/contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/contracts/Migrations.sol -------------------------------------------------------------------------------- /src/backEnd/contracts/NFT.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/contracts/NFT.sol -------------------------------------------------------------------------------- /src/backEnd/migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /src/backEnd/migrations/2_deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/migrations/2_deploy.js -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/american-gothic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/american-gothic.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/arnolfini-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/arnolfini-portrait.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/at-eternity_s-gate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/at-eternity_s-gate.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/cafe-terrace-at-night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/cafe-terrace-at-night.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/chalk-cliffs-on-r_gen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/chalk-cliffs-on-r_gen.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/girl-with-a-pearl-earring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/girl-with-a-pearl-earring.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/heracles-and-the-nemea-lion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/heracles-and-the-nemea-lion.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/lady-agnew-of-lochnaw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/lady-agnew-of-lochnaw.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/lady-with-an-ermine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/lady-with-an-ermine.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/mona-lisa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/mona-lisa.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/napoleon-crossing-the-alps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/napoleon-crossing-the-alps.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/paradise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/paradise.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/portrait-of-madame-x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/portrait-of-madame-x.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/the-astronomer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/the-astronomer.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/the-battle-of-alexander-at-issus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/the-battle-of-alexander-at-issus.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/the-entombment-of-christ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/the-entombment-of-christ.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/the-misanthrope.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/the-misanthrope.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/the-scream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/the-scream.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/the-swing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/the-swing.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/gallery/wanderer-above-the-sea-of-fog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/gallery/wanderer-above-the-sea-of-fog.jpg -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/american-gothic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/american-gothic.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/arnolfini-portrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/arnolfini-portrait.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/at-eternity_s-gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/at-eternity_s-gate.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/cafe-terrace-at-night.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/cafe-terrace-at-night.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/chalk-cliffs-on-r_gen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/chalk-cliffs-on-r_gen.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/girl-with-a-pearl-earring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/girl-with-a-pearl-earring.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/heracles-and-the-nemea-lion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/heracles-and-the-nemea-lion.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/lady-agnew-of-lochnaw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/lady-agnew-of-lochnaw.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/lady-with-an-ermine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/lady-with-an-ermine.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/mona-lisa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/mona-lisa.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/napoleon-crossing-the-alps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/napoleon-crossing-the-alps.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/paradise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/paradise.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/portrait-of-madame-x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/portrait-of-madame-x.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/the-astronomer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/the-astronomer.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/the-battle-of-alexander-at-issus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/the-battle-of-alexander-at-issus.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/the-entombment-of-christ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/the-entombment-of-christ.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/the-misanthrope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/the-misanthrope.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/the-scream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/the-scream.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/the-swing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/the-swing.json -------------------------------------------------------------------------------- /src/backEnd/scripts/metadata/wanderer-above-the-sea-of-fog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/metadata/wanderer-above-the-sea-of-fog.json -------------------------------------------------------------------------------- /src/backEnd/scripts/mint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/mint.js -------------------------------------------------------------------------------- /src/backEnd/scripts/nftsData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/scripts/nftsData.js -------------------------------------------------------------------------------- /src/backEnd/test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/test/helpers.js -------------------------------------------------------------------------------- /src/backEnd/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/backEnd/test/test.js -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/components/Loading.js -------------------------------------------------------------------------------- /src/components/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/components/Main.js -------------------------------------------------------------------------------- /src/components/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/components/Navbar.js -------------------------------------------------------------------------------- /src/components/Style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/components/Style.css -------------------------------------------------------------------------------- /src/images/eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/images/eth.png -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/images/logo.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/index.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/store/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/store/actions.js -------------------------------------------------------------------------------- /src/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/store/configureStore.js -------------------------------------------------------------------------------- /src/store/interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/store/interactions.js -------------------------------------------------------------------------------- /src/store/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/store/reducers.js -------------------------------------------------------------------------------- /src/store/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/src/store/selectors.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatricksDeCoder/nft_masterclass_deploy_polygon/HEAD/truffle-config.js --------------------------------------------------------------------------------