├── .env.template ├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.tsx ├── Header.tsx ├── Home.tsx ├── MintButton.tsx ├── MintCountdown.tsx ├── candy-machine.ts ├── connection.tsx ├── index.css ├── index.tsx ├── logo.svg ├── react-app-env.d.ts ├── reportWebVitals.ts ├── setupTests.ts └── utils.ts ├── tsconfig.json └── yarn.lock /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/.env.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } 4 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/src/Header.tsx -------------------------------------------------------------------------------- /src/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/src/Home.tsx -------------------------------------------------------------------------------- /src/MintButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/src/MintButton.tsx -------------------------------------------------------------------------------- /src/MintCountdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/src/MintCountdown.tsx -------------------------------------------------------------------------------- /src/candy-machine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/src/candy-machine.ts -------------------------------------------------------------------------------- /src/connection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/src/connection.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crossmint/candy-machine-react-ui/HEAD/yarn.lock --------------------------------------------------------------------------------