├── .gitignore ├── README.md ├── contracts ├── Greeter.sol └── NFTea.sol ├── hardhat.config.js ├── package.json ├── scripts ├── deploy.js └── sample-script.js └── test └── sample-test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/NFT-Tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/NFT-Tutorial/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Greeter.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/NFT-Tutorial/HEAD/contracts/Greeter.sol -------------------------------------------------------------------------------- /contracts/NFTea.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/NFT-Tutorial/HEAD/contracts/NFTea.sol -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/NFT-Tutorial/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/NFT-Tutorial/HEAD/package.json -------------------------------------------------------------------------------- /scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/NFT-Tutorial/HEAD/scripts/deploy.js -------------------------------------------------------------------------------- /scripts/sample-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/NFT-Tutorial/HEAD/scripts/sample-script.js -------------------------------------------------------------------------------- /test/sample-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWeb3DAO/NFT-Tutorial/HEAD/test/sample-test.js --------------------------------------------------------------------------------