├── .babelrc ├── .env.example ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc ├── LICENSE ├── README.md ├── index.d.ts ├── index.html ├── package.json ├── public ├── CMCproof.html └── favicon.png ├── src ├── assets │ ├── images │ │ ├── coinbase.png │ │ └── home.png │ └── svg │ │ ├── Logo.svg │ │ ├── arkhia.svg │ │ ├── axelar.svg │ │ ├── flare.svg │ │ ├── new-logo-dark.svg │ │ ├── squid.svg │ │ └── thorchain.svg ├── components │ ├── LaunchAppButton │ │ └── index.tsx │ └── MixPanel │ │ └── index.tsx ├── constants │ └── index.ts ├── hooks │ ├── index.ts │ └── types.ts ├── index.tsx ├── layout │ ├── Header │ │ ├── MenuItems.tsx │ │ ├── MobileMenu │ │ │ ├── MenuIcon.tsx │ │ │ ├── index.tsx │ │ │ └── styled.tsx │ │ ├── index.tsx │ │ └── styled.tsx │ ├── index.tsx │ └── styled.tsx ├── logo.svg ├── pages │ ├── App.tsx │ └── Home │ │ ├── index.tsx │ │ └── styled.tsx ├── state │ ├── application │ │ └── actions.ts │ ├── index.ts │ └── user │ │ ├── actions.ts │ │ ├── hooks.ts │ │ └── reducer.ts ├── theme │ ├── index.tsx │ └── styled.d.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/.babelrc -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | VITE_MIXPANEL_TOKEN="" -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run pre-commit-hook 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/package.json -------------------------------------------------------------------------------- /public/CMCproof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/public/CMCproof.html -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/public/favicon.png -------------------------------------------------------------------------------- /src/assets/images/coinbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/assets/images/coinbase.png -------------------------------------------------------------------------------- /src/assets/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/assets/images/home.png -------------------------------------------------------------------------------- /src/assets/svg/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/assets/svg/Logo.svg -------------------------------------------------------------------------------- /src/assets/svg/arkhia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/assets/svg/arkhia.svg -------------------------------------------------------------------------------- /src/assets/svg/axelar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/assets/svg/axelar.svg -------------------------------------------------------------------------------- /src/assets/svg/flare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/assets/svg/flare.svg -------------------------------------------------------------------------------- /src/assets/svg/new-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/assets/svg/new-logo-dark.svg -------------------------------------------------------------------------------- /src/assets/svg/squid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/assets/svg/squid.svg -------------------------------------------------------------------------------- /src/assets/svg/thorchain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/assets/svg/thorchain.svg -------------------------------------------------------------------------------- /src/components/LaunchAppButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/components/LaunchAppButton/index.tsx -------------------------------------------------------------------------------- /src/components/MixPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/components/MixPanel/index.tsx -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/hooks/types.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/layout/Header/MenuItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/layout/Header/MenuItems.tsx -------------------------------------------------------------------------------- /src/layout/Header/MobileMenu/MenuIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/layout/Header/MobileMenu/MenuIcon.tsx -------------------------------------------------------------------------------- /src/layout/Header/MobileMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/layout/Header/MobileMenu/index.tsx -------------------------------------------------------------------------------- /src/layout/Header/MobileMenu/styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/layout/Header/MobileMenu/styled.tsx -------------------------------------------------------------------------------- /src/layout/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/layout/Header/index.tsx -------------------------------------------------------------------------------- /src/layout/Header/styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/layout/Header/styled.tsx -------------------------------------------------------------------------------- /src/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/layout/index.tsx -------------------------------------------------------------------------------- /src/layout/styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/layout/styled.tsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/pages/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/pages/App.tsx -------------------------------------------------------------------------------- /src/pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/pages/Home/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/styled.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/pages/Home/styled.tsx -------------------------------------------------------------------------------- /src/state/application/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/state/application/actions.ts -------------------------------------------------------------------------------- /src/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/state/index.ts -------------------------------------------------------------------------------- /src/state/user/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/state/user/actions.ts -------------------------------------------------------------------------------- /src/state/user/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/state/user/hooks.ts -------------------------------------------------------------------------------- /src/state/user/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/state/user/reducer.ts -------------------------------------------------------------------------------- /src/theme/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/theme/index.tsx -------------------------------------------------------------------------------- /src/theme/styled.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/src/theme/styled.d.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangolindex/pangolin.exchange/HEAD/yarn.lock --------------------------------------------------------------------------------