├── .gitignore ├── README.md ├── contracts ├── Milk.sol ├── common │ └── ERC1155SupplyCC.sol └── itemFactory.sol ├── hardhat.config.ts ├── package.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolCatsNFTPublic/SolidityInterviewTest/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolCatsNFTPublic/SolidityInterviewTest/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Milk.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolCatsNFTPublic/SolidityInterviewTest/HEAD/contracts/Milk.sol -------------------------------------------------------------------------------- /contracts/common/ERC1155SupplyCC.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolCatsNFTPublic/SolidityInterviewTest/HEAD/contracts/common/ERC1155SupplyCC.sol -------------------------------------------------------------------------------- /contracts/itemFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolCatsNFTPublic/SolidityInterviewTest/HEAD/contracts/itemFactory.sol -------------------------------------------------------------------------------- /hardhat.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolCatsNFTPublic/SolidityInterviewTest/HEAD/hardhat.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolCatsNFTPublic/SolidityInterviewTest/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolCatsNFTPublic/SolidityInterviewTest/HEAD/tsconfig.json --------------------------------------------------------------------------------