├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── components ├── AirdropForm.tsx ├── AppBar.tsx ├── Deposit.tsx ├── Swap.tsx ├── TokenSwapForm.tsx ├── WalletContextProvider.tsx └── Withdraw.tsx ├── models └── Airdrop.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx └── index.tsx ├── public ├── favicon.ico ├── solanaLogo.png └── vercel.svg ├── styles ├── Home.module.css └── globals.css ├── tsconfig.json └── utils └── constants.ts /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/README.md -------------------------------------------------------------------------------- /components/AirdropForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/components/AirdropForm.tsx -------------------------------------------------------------------------------- /components/AppBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/components/AppBar.tsx -------------------------------------------------------------------------------- /components/Deposit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/components/Deposit.tsx -------------------------------------------------------------------------------- /components/Swap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/components/Swap.tsx -------------------------------------------------------------------------------- /components/TokenSwapForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/components/TokenSwapForm.tsx -------------------------------------------------------------------------------- /components/WalletContextProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/components/WalletContextProvider.tsx -------------------------------------------------------------------------------- /components/Withdraw.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/components/Withdraw.tsx -------------------------------------------------------------------------------- /models/Airdrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/models/Airdrop.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/solanaLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/public/solanaLogo.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unboxed-Software/solana-token-swap-frontend/HEAD/utils/constants.ts --------------------------------------------------------------------------------