├── .DS_Store ├── .env-example ├── .gitignore ├── README.md ├── doc-resources ├── The-Boiler-Plate.png └── text.md ├── package.json ├── public ├── favicon.ico ├── icons │ ├── close.svg │ ├── discord.svg │ ├── menu.svg │ └── twitter.svg ├── img │ └── logo.png ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.test.tsx ├── App.tsx ├── MintButton.tsx ├── Minter.tsx ├── PhaseHeader.tsx ├── candy-machine.ts ├── connection.tsx ├── countdown.tsx ├── index.tsx ├── logo.svg ├── react-app-env.d.ts ├── reportWebVitals.ts ├── setupTests.ts ├── userCSS.css ├── userSettings.tsx ├── userSettingsInterfaces.tsx └── utils.ts ├── tsconfig.json └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/.env-example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/README.md -------------------------------------------------------------------------------- /doc-resources/The-Boiler-Plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/doc-resources/The-Boiler-Plate.png -------------------------------------------------------------------------------- /doc-resources/text.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/public/icons/close.svg -------------------------------------------------------------------------------- /public/icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/public/icons/discord.svg -------------------------------------------------------------------------------- /public/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/public/icons/menu.svg -------------------------------------------------------------------------------- /public/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/public/icons/twitter.svg -------------------------------------------------------------------------------- /public/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/public/img/logo.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/MintButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/src/MintButton.tsx -------------------------------------------------------------------------------- /src/Minter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/src/Minter.tsx -------------------------------------------------------------------------------- /src/PhaseHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/src/PhaseHeader.tsx -------------------------------------------------------------------------------- /src/candy-machine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/src/candy-machine.ts -------------------------------------------------------------------------------- /src/connection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/src/connection.tsx -------------------------------------------------------------------------------- /src/countdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/src/countdown.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/userCSS.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/src/userCSS.css -------------------------------------------------------------------------------- /src/userSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/src/userSettings.tsx -------------------------------------------------------------------------------- /src/userSettingsInterfaces.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/src/userSettingsInterfaces.tsx -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyboylehub/candymachine-v2-boiler-mint-site-noFLP/HEAD/yarn.lock --------------------------------------------------------------------------------