├── Part1 ├── NFT-ERC721-Sample-Collection-SmartContract.sol ├── README.md ├── components │ ├── config.js │ ├── nftabi.json │ └── web3connect.js └── pages │ ├── _app.js │ ├── api │ └── hello.js │ ├── denied.js │ ├── index.js │ └── welcome.js └── README.md /Part1/NFT-ERC721-Sample-Collection-SmartContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/Web3-NFT-User-Authentication/HEAD/Part1/NFT-ERC721-Sample-Collection-SmartContract.sol -------------------------------------------------------------------------------- /Part1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/Web3-NFT-User-Authentication/HEAD/Part1/README.md -------------------------------------------------------------------------------- /Part1/components/config.js: -------------------------------------------------------------------------------- 1 | 2 | export const nftcontract = "REPLACE WITH NFT SMART CONTRACT ADDRESS"; 3 | -------------------------------------------------------------------------------- /Part1/components/nftabi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/Web3-NFT-User-Authentication/HEAD/Part1/components/nftabi.json -------------------------------------------------------------------------------- /Part1/components/web3connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/Web3-NFT-User-Authentication/HEAD/Part1/components/web3connect.js -------------------------------------------------------------------------------- /Part1/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/Web3-NFT-User-Authentication/HEAD/Part1/pages/_app.js -------------------------------------------------------------------------------- /Part1/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/Web3-NFT-User-Authentication/HEAD/Part1/pages/api/hello.js -------------------------------------------------------------------------------- /Part1/pages/denied.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/Web3-NFT-User-Authentication/HEAD/Part1/pages/denied.js -------------------------------------------------------------------------------- /Part1/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/Web3-NFT-User-Authentication/HEAD/Part1/pages/index.js -------------------------------------------------------------------------------- /Part1/pages/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/Web3-NFT-User-Authentication/HEAD/Part1/pages/welcome.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/net2devcrypto/Web3-NFT-User-Authentication/HEAD/README.md --------------------------------------------------------------------------------