├── .gitignore ├── README.md ├── components ├── BoilerPlate.jsx ├── Navbar.jsx ├── ProjectCard.jsx ├── RenderedComponent.tsx ├── Requirements.jsx └── tokens │ ├── CreateAccount.tsx │ └── CreateMint.tsx ├── contexts ├── TransitionContextProvider.jsx └── WalletContextProvider.jsx ├── interfaces └── tokens.ts ├── models └── serialize │ ├── StudentIntro.ts │ └── StudentIntroReference.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── faucet │ ├── finished.tsx │ └── starter.tsx ├── index.jsx ├── minter │ ├── finished.tsx │ └── starter.tsx ├── movies │ ├── finished.tsx │ └── starter.tsx ├── sendsol │ ├── finished.jsx │ └── starter.jsx ├── serialize │ ├── finished.tsx │ └── starter.tsx ├── tokens │ ├── finished.tsx │ └── starter.tsx ├── viewer │ ├── finished.tsx │ └── starter.tsx └── wallets │ ├── finished.tsx │ └── starter.tsx ├── postcss.config.js ├── projects └── projects.ts ├── public ├── favicon.ico ├── helius-orange.png └── helius-white.png ├── scripts ├── serialize │ ├── StudentIntroCoordinator.ts │ └── StudentIntroCoordinatorReference.ts └── tokens │ └── InitializeKeypair.ts ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/README.md -------------------------------------------------------------------------------- /components/BoilerPlate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/components/BoilerPlate.jsx -------------------------------------------------------------------------------- /components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/components/Navbar.jsx -------------------------------------------------------------------------------- /components/ProjectCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/components/ProjectCard.jsx -------------------------------------------------------------------------------- /components/RenderedComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/components/RenderedComponent.tsx -------------------------------------------------------------------------------- /components/Requirements.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/components/Requirements.jsx -------------------------------------------------------------------------------- /components/tokens/CreateAccount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/components/tokens/CreateAccount.tsx -------------------------------------------------------------------------------- /components/tokens/CreateMint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/components/tokens/CreateMint.tsx -------------------------------------------------------------------------------- /contexts/TransitionContextProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/contexts/TransitionContextProvider.jsx -------------------------------------------------------------------------------- /contexts/WalletContextProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/contexts/WalletContextProvider.jsx -------------------------------------------------------------------------------- /interfaces/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/interfaces/tokens.ts -------------------------------------------------------------------------------- /models/serialize/StudentIntro.ts: -------------------------------------------------------------------------------- 1 | 2 | export class StudentIntro { 3 | 4 | } -------------------------------------------------------------------------------- /models/serialize/StudentIntroReference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/models/serialize/StudentIntroReference.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/faucet/finished.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/faucet/finished.tsx -------------------------------------------------------------------------------- /pages/faucet/starter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/faucet/starter.tsx -------------------------------------------------------------------------------- /pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/index.jsx -------------------------------------------------------------------------------- /pages/minter/finished.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/minter/finished.tsx -------------------------------------------------------------------------------- /pages/minter/starter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/minter/starter.tsx -------------------------------------------------------------------------------- /pages/movies/finished.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/movies/finished.tsx -------------------------------------------------------------------------------- /pages/movies/starter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/movies/starter.tsx -------------------------------------------------------------------------------- /pages/sendsol/finished.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/sendsol/finished.jsx -------------------------------------------------------------------------------- /pages/sendsol/starter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/sendsol/starter.jsx -------------------------------------------------------------------------------- /pages/serialize/finished.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/serialize/finished.tsx -------------------------------------------------------------------------------- /pages/serialize/starter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/serialize/starter.tsx -------------------------------------------------------------------------------- /pages/tokens/finished.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/tokens/finished.tsx -------------------------------------------------------------------------------- /pages/tokens/starter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/tokens/starter.tsx -------------------------------------------------------------------------------- /pages/viewer/finished.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/viewer/finished.tsx -------------------------------------------------------------------------------- /pages/viewer/starter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/viewer/starter.tsx -------------------------------------------------------------------------------- /pages/wallets/finished.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/wallets/finished.tsx -------------------------------------------------------------------------------- /pages/wallets/starter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/pages/wallets/starter.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/postcss.config.js -------------------------------------------------------------------------------- /projects/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/projects/projects.ts -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/helius-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/public/helius-orange.png -------------------------------------------------------------------------------- /public/helius-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/public/helius-white.png -------------------------------------------------------------------------------- /scripts/serialize/StudentIntroCoordinator.ts: -------------------------------------------------------------------------------- 1 | 2 | export class StudentIntroCoordinator { 3 | 4 | }; -------------------------------------------------------------------------------- /scripts/serialize/StudentIntroCoordinatorReference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/scripts/serialize/StudentIntroCoordinatorReference.ts -------------------------------------------------------------------------------- /scripts/tokens/InitializeKeypair.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/scripts/tokens/InitializeKeypair.ts -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masterzorgon/solana-frontend-development-course/HEAD/yarn.lock --------------------------------------------------------------------------------