├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── banner.png ├── package.json ├── public ├── config │ ├── abi.json │ ├── config.json │ ├── images │ │ ├── bg.jpg │ │ ├── example.gif │ │ ├── gif.gif │ │ ├── logo.png │ │ ├── middlelogo.png │ │ ├── new.gif │ │ ├── newlogo.png │ │ ├── save.gif │ │ ├── team1.png │ │ ├── team2.png │ │ └── team3.png │ └── theme.css ├── index.html ├── manifest.json └── robots.txt ├── src ├── App.js ├── index.js ├── pages │ └── Mint.js ├── redux │ ├── blockchain │ │ ├── blockchainActions.js │ │ └── blockchainReducer.js │ ├── data │ │ ├── dataActions.js │ │ └── dataReducer.js │ └── store.js ├── reportWebVitals.js └── styles │ ├── font.woff │ ├── globalStyles.js │ └── reset.css └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/README.md -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/banner.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/package.json -------------------------------------------------------------------------------- /public/config/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/public/config/abi.json -------------------------------------------------------------------------------- /public/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/public/config/config.json -------------------------------------------------------------------------------- /public/config/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/public/config/images/bg.jpg -------------------------------------------------------------------------------- /public/config/images/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/public/config/images/example.gif -------------------------------------------------------------------------------- /public/config/images/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/public/config/images/gif.gif -------------------------------------------------------------------------------- /public/config/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/public/config/images/logo.png -------------------------------------------------------------------------------- /public/config/images/middlelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/public/config/images/middlelogo.png -------------------------------------------------------------------------------- /public/config/images/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/public/config/images/new.gif -------------------------------------------------------------------------------- /public/config/images/newlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/public/config/images/newlogo.png -------------------------------------------------------------------------------- /public/config/images/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/public/config/images/save.gif -------------------------------------------------------------------------------- /public/config/images/team1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/public/config/images/team1.png -------------------------------------------------------------------------------- /public/config/images/team2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/public/config/images/team2.png -------------------------------------------------------------------------------- /public/config/images/team3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/public/config/images/team3.png -------------------------------------------------------------------------------- /public/config/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/public/config/theme.css -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/src/App.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/Mint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/src/pages/Mint.js -------------------------------------------------------------------------------- /src/redux/blockchain/blockchainActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/src/redux/blockchain/blockchainActions.js -------------------------------------------------------------------------------- /src/redux/blockchain/blockchainReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/src/redux/blockchain/blockchainReducer.js -------------------------------------------------------------------------------- /src/redux/data/dataActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/src/redux/data/dataActions.js -------------------------------------------------------------------------------- /src/redux/data/dataReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/src/redux/data/dataReducer.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/styles/font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/src/styles/font.woff -------------------------------------------------------------------------------- /src/styles/globalStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/src/styles/globalStyles.js -------------------------------------------------------------------------------- /src/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/src/styles/reset.css -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/highmountaindev109/nft_mint_approve_react/HEAD/yarn.lock --------------------------------------------------------------------------------