├── 1-token-launchpad-starter ├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ └── TokenLaunchpad.jsx │ ├── index.css │ └── main.jsx └── vite.config.js ├── 2-token-launchpad-with-adapter ├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ └── TokenLaunchpad.jsx │ ├── index.css │ └── main.jsx └── vite.config.js ├── 3-token-launchpage-without-metadata copy └── node_modules │ └── @solana │ └── spl-token │ └── src │ ├── actions │ └── createMint.ts │ ├── instructions │ └── initializeMint2.ts │ └── state │ └── mint.ts ├── 3-token-launchpage-without-metadata ├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ └── TokenLaunchpad.jsx │ ├── index.css │ └── main.jsx └── vite.config.js ├── 4-token-launchpage-with-metadata ├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ └── react.svg │ ├── components │ │ └── TokenLaunchpad.jsx │ ├── index.css │ └── main.jsx └── vite.config.js └── 5-token-launchpage-with-metadata-and-mint ├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public └── vite.svg ├── src ├── App.css ├── App.jsx ├── assets │ └── react.svg ├── components │ └── TokenLaunchpad.jsx ├── index.css └── main.jsx └── vite.config.js /1-token-launchpad-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/1-token-launchpad-starter/.gitignore -------------------------------------------------------------------------------- /1-token-launchpad-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/1-token-launchpad-starter/README.md -------------------------------------------------------------------------------- /1-token-launchpad-starter/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/1-token-launchpad-starter/eslint.config.js -------------------------------------------------------------------------------- /1-token-launchpad-starter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/1-token-launchpad-starter/index.html -------------------------------------------------------------------------------- /1-token-launchpad-starter/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/1-token-launchpad-starter/package-lock.json -------------------------------------------------------------------------------- /1-token-launchpad-starter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/1-token-launchpad-starter/package.json -------------------------------------------------------------------------------- /1-token-launchpad-starter/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/1-token-launchpad-starter/public/vite.svg -------------------------------------------------------------------------------- /1-token-launchpad-starter/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/1-token-launchpad-starter/src/App.css -------------------------------------------------------------------------------- /1-token-launchpad-starter/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/1-token-launchpad-starter/src/App.jsx -------------------------------------------------------------------------------- /1-token-launchpad-starter/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/1-token-launchpad-starter/src/assets/react.svg -------------------------------------------------------------------------------- /1-token-launchpad-starter/src/components/TokenLaunchpad.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/1-token-launchpad-starter/src/components/TokenLaunchpad.jsx -------------------------------------------------------------------------------- /1-token-launchpad-starter/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/1-token-launchpad-starter/src/index.css -------------------------------------------------------------------------------- /1-token-launchpad-starter/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/1-token-launchpad-starter/src/main.jsx -------------------------------------------------------------------------------- /1-token-launchpad-starter/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/1-token-launchpad-starter/vite.config.js -------------------------------------------------------------------------------- /2-token-launchpad-with-adapter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/2-token-launchpad-with-adapter/.gitignore -------------------------------------------------------------------------------- /2-token-launchpad-with-adapter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/2-token-launchpad-with-adapter/README.md -------------------------------------------------------------------------------- /2-token-launchpad-with-adapter/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/2-token-launchpad-with-adapter/eslint.config.js -------------------------------------------------------------------------------- /2-token-launchpad-with-adapter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/2-token-launchpad-with-adapter/index.html -------------------------------------------------------------------------------- /2-token-launchpad-with-adapter/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/2-token-launchpad-with-adapter/package-lock.json -------------------------------------------------------------------------------- /2-token-launchpad-with-adapter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/2-token-launchpad-with-adapter/package.json -------------------------------------------------------------------------------- /2-token-launchpad-with-adapter/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/2-token-launchpad-with-adapter/public/vite.svg -------------------------------------------------------------------------------- /2-token-launchpad-with-adapter/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/2-token-launchpad-with-adapter/src/App.css -------------------------------------------------------------------------------- /2-token-launchpad-with-adapter/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/2-token-launchpad-with-adapter/src/App.jsx -------------------------------------------------------------------------------- /2-token-launchpad-with-adapter/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/2-token-launchpad-with-adapter/src/assets/react.svg -------------------------------------------------------------------------------- /2-token-launchpad-with-adapter/src/components/TokenLaunchpad.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/2-token-launchpad-with-adapter/src/components/TokenLaunchpad.jsx -------------------------------------------------------------------------------- /2-token-launchpad-with-adapter/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/2-token-launchpad-with-adapter/src/index.css -------------------------------------------------------------------------------- /2-token-launchpad-with-adapter/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/2-token-launchpad-with-adapter/src/main.jsx -------------------------------------------------------------------------------- /2-token-launchpad-with-adapter/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/2-token-launchpad-with-adapter/vite.config.js -------------------------------------------------------------------------------- /3-token-launchpage-without-metadata copy/node_modules/@solana/spl-token/src/actions/createMint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/3-token-launchpage-without-metadata copy/node_modules/@solana/spl-token/src/actions/createMint.ts -------------------------------------------------------------------------------- /3-token-launchpage-without-metadata copy/node_modules/@solana/spl-token/src/instructions/initializeMint2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/3-token-launchpage-without-metadata copy/node_modules/@solana/spl-token/src/instructions/initializeMint2.ts -------------------------------------------------------------------------------- /3-token-launchpage-without-metadata copy/node_modules/@solana/spl-token/src/state/mint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/3-token-launchpage-without-metadata copy/node_modules/@solana/spl-token/src/state/mint.ts -------------------------------------------------------------------------------- /3-token-launchpage-without-metadata/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/3-token-launchpage-without-metadata/.gitignore -------------------------------------------------------------------------------- /3-token-launchpage-without-metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/3-token-launchpage-without-metadata/README.md -------------------------------------------------------------------------------- /3-token-launchpage-without-metadata/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/3-token-launchpage-without-metadata/eslint.config.js -------------------------------------------------------------------------------- /3-token-launchpage-without-metadata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/3-token-launchpage-without-metadata/index.html -------------------------------------------------------------------------------- /3-token-launchpage-without-metadata/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/3-token-launchpage-without-metadata/package-lock.json -------------------------------------------------------------------------------- /3-token-launchpage-without-metadata/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/3-token-launchpage-without-metadata/package.json -------------------------------------------------------------------------------- /3-token-launchpage-without-metadata/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/3-token-launchpage-without-metadata/public/vite.svg -------------------------------------------------------------------------------- /3-token-launchpage-without-metadata/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/3-token-launchpage-without-metadata/src/App.css -------------------------------------------------------------------------------- /3-token-launchpage-without-metadata/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/3-token-launchpage-without-metadata/src/App.jsx -------------------------------------------------------------------------------- /3-token-launchpage-without-metadata/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/3-token-launchpage-without-metadata/src/assets/react.svg -------------------------------------------------------------------------------- /3-token-launchpage-without-metadata/src/components/TokenLaunchpad.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/3-token-launchpage-without-metadata/src/components/TokenLaunchpad.jsx -------------------------------------------------------------------------------- /3-token-launchpage-without-metadata/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/3-token-launchpage-without-metadata/src/index.css -------------------------------------------------------------------------------- /3-token-launchpage-without-metadata/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/3-token-launchpage-without-metadata/src/main.jsx -------------------------------------------------------------------------------- /3-token-launchpage-without-metadata/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/3-token-launchpage-without-metadata/vite.config.js -------------------------------------------------------------------------------- /4-token-launchpage-with-metadata/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/4-token-launchpage-with-metadata/.gitignore -------------------------------------------------------------------------------- /4-token-launchpage-with-metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/4-token-launchpage-with-metadata/README.md -------------------------------------------------------------------------------- /4-token-launchpage-with-metadata/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/4-token-launchpage-with-metadata/eslint.config.js -------------------------------------------------------------------------------- /4-token-launchpage-with-metadata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/4-token-launchpage-with-metadata/index.html -------------------------------------------------------------------------------- /4-token-launchpage-with-metadata/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/4-token-launchpage-with-metadata/package-lock.json -------------------------------------------------------------------------------- /4-token-launchpage-with-metadata/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/4-token-launchpage-with-metadata/package.json -------------------------------------------------------------------------------- /4-token-launchpage-with-metadata/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/4-token-launchpage-with-metadata/public/vite.svg -------------------------------------------------------------------------------- /4-token-launchpage-with-metadata/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/4-token-launchpage-with-metadata/src/App.css -------------------------------------------------------------------------------- /4-token-launchpage-with-metadata/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/4-token-launchpage-with-metadata/src/App.jsx -------------------------------------------------------------------------------- /4-token-launchpage-with-metadata/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/4-token-launchpage-with-metadata/src/assets/react.svg -------------------------------------------------------------------------------- /4-token-launchpage-with-metadata/src/components/TokenLaunchpad.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/4-token-launchpage-with-metadata/src/components/TokenLaunchpad.jsx -------------------------------------------------------------------------------- /4-token-launchpage-with-metadata/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/4-token-launchpage-with-metadata/src/index.css -------------------------------------------------------------------------------- /4-token-launchpage-with-metadata/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/4-token-launchpage-with-metadata/src/main.jsx -------------------------------------------------------------------------------- /4-token-launchpage-with-metadata/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/4-token-launchpage-with-metadata/vite.config.js -------------------------------------------------------------------------------- /5-token-launchpage-with-metadata-and-mint/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/5-token-launchpage-with-metadata-and-mint/.gitignore -------------------------------------------------------------------------------- /5-token-launchpage-with-metadata-and-mint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/5-token-launchpage-with-metadata-and-mint/README.md -------------------------------------------------------------------------------- /5-token-launchpage-with-metadata-and-mint/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/5-token-launchpage-with-metadata-and-mint/eslint.config.js -------------------------------------------------------------------------------- /5-token-launchpage-with-metadata-and-mint/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/5-token-launchpage-with-metadata-and-mint/index.html -------------------------------------------------------------------------------- /5-token-launchpage-with-metadata-and-mint/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/5-token-launchpage-with-metadata-and-mint/package-lock.json -------------------------------------------------------------------------------- /5-token-launchpage-with-metadata-and-mint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/5-token-launchpage-with-metadata-and-mint/package.json -------------------------------------------------------------------------------- /5-token-launchpage-with-metadata-and-mint/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/5-token-launchpage-with-metadata-and-mint/public/vite.svg -------------------------------------------------------------------------------- /5-token-launchpage-with-metadata-and-mint/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/5-token-launchpage-with-metadata-and-mint/src/App.css -------------------------------------------------------------------------------- /5-token-launchpage-with-metadata-and-mint/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/5-token-launchpage-with-metadata-and-mint/src/App.jsx -------------------------------------------------------------------------------- /5-token-launchpage-with-metadata-and-mint/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/5-token-launchpage-with-metadata-and-mint/src/assets/react.svg -------------------------------------------------------------------------------- /5-token-launchpage-with-metadata-and-mint/src/components/TokenLaunchpad.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/5-token-launchpage-with-metadata-and-mint/src/components/TokenLaunchpad.jsx -------------------------------------------------------------------------------- /5-token-launchpage-with-metadata-and-mint/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/5-token-launchpage-with-metadata-and-mint/src/index.css -------------------------------------------------------------------------------- /5-token-launchpage-with-metadata-and-mint/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/5-token-launchpage-with-metadata-and-mint/src/main.jsx -------------------------------------------------------------------------------- /5-token-launchpage-with-metadata-and-mint/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/100xdevs-cohort-3/week-6-web3-token-launchpad/HEAD/5-token-launchpage-with-metadata-and-mint/vite.config.js --------------------------------------------------------------------------------