├── .babelrc ├── .gitignore ├── README.md ├── contracts ├── Migrations.sol └── NFT.sol ├── images ├── 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 │ ├── 1.json │ ├── 10.json │ ├── 11.json │ ├── 12.json │ ├── 13.json │ ├── 14.json │ ├── 15.json │ ├── 16.json │ ├── 17.json │ ├── 18.json │ ├── 19.json │ ├── 2.json │ ├── 20.json │ ├── 3.json │ ├── 4.json │ ├── 5.json │ ├── 6.json │ ├── 7.json │ ├── 8.json │ └── 9.json ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── scripts └── mint.js ├── test └── .gitkeep └── truffle-config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/NFT.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/contracts/NFT.sol -------------------------------------------------------------------------------- /images/gallery/american-gothic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/american-gothic.jpg -------------------------------------------------------------------------------- /images/gallery/arnolfini-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/arnolfini-portrait.jpg -------------------------------------------------------------------------------- /images/gallery/at-eternity_s-gate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/at-eternity_s-gate.jpg -------------------------------------------------------------------------------- /images/gallery/cafe-terrace-at-night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/cafe-terrace-at-night.jpg -------------------------------------------------------------------------------- /images/gallery/chalk-cliffs-on-r_gen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/chalk-cliffs-on-r_gen.jpg -------------------------------------------------------------------------------- /images/gallery/girl-with-a-pearl-earring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/girl-with-a-pearl-earring.jpg -------------------------------------------------------------------------------- /images/gallery/heracles-and-the-nemea-lion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/heracles-and-the-nemea-lion.jpg -------------------------------------------------------------------------------- /images/gallery/lady-agnew-of-lochnaw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/lady-agnew-of-lochnaw.jpg -------------------------------------------------------------------------------- /images/gallery/lady-with-an-ermine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/lady-with-an-ermine.jpg -------------------------------------------------------------------------------- /images/gallery/mona-lisa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/mona-lisa.jpg -------------------------------------------------------------------------------- /images/gallery/napoleon-crossing-the-alps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/napoleon-crossing-the-alps.jpg -------------------------------------------------------------------------------- /images/gallery/paradise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/paradise.jpg -------------------------------------------------------------------------------- /images/gallery/portrait-of-madame-x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/portrait-of-madame-x.jpg -------------------------------------------------------------------------------- /images/gallery/the-astronomer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/the-astronomer.jpg -------------------------------------------------------------------------------- /images/gallery/the-battle-of-alexander-at-issus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/the-battle-of-alexander-at-issus.jpg -------------------------------------------------------------------------------- /images/gallery/the-entombment-of-christ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/the-entombment-of-christ.jpg -------------------------------------------------------------------------------- /images/gallery/the-misanthrope.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/the-misanthrope.jpg -------------------------------------------------------------------------------- /images/gallery/the-scream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/the-scream.jpg -------------------------------------------------------------------------------- /images/gallery/the-swing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/the-swing.jpg -------------------------------------------------------------------------------- /images/gallery/wanderer-above-the-sea-of-fog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/gallery/wanderer-above-the-sea-of-fog.jpg -------------------------------------------------------------------------------- /images/metadata/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/1.json -------------------------------------------------------------------------------- /images/metadata/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/10.json -------------------------------------------------------------------------------- /images/metadata/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/11.json -------------------------------------------------------------------------------- /images/metadata/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/12.json -------------------------------------------------------------------------------- /images/metadata/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/13.json -------------------------------------------------------------------------------- /images/metadata/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/14.json -------------------------------------------------------------------------------- /images/metadata/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/15.json -------------------------------------------------------------------------------- /images/metadata/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/16.json -------------------------------------------------------------------------------- /images/metadata/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/17.json -------------------------------------------------------------------------------- /images/metadata/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/18.json -------------------------------------------------------------------------------- /images/metadata/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/19.json -------------------------------------------------------------------------------- /images/metadata/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/2.json -------------------------------------------------------------------------------- /images/metadata/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/20.json -------------------------------------------------------------------------------- /images/metadata/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/3.json -------------------------------------------------------------------------------- /images/metadata/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/4.json -------------------------------------------------------------------------------- /images/metadata/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/5.json -------------------------------------------------------------------------------- /images/metadata/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/6.json -------------------------------------------------------------------------------- /images/metadata/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/7.json -------------------------------------------------------------------------------- /images/metadata/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/8.json -------------------------------------------------------------------------------- /images/metadata/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/images/metadata/9.json -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/package.json -------------------------------------------------------------------------------- /scripts/mint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/scripts/mint.js -------------------------------------------------------------------------------- /test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dappuniversity/nft_batch_minting/HEAD/truffle-config.js --------------------------------------------------------------------------------