├── .eslintrc.json ├── .github └── dependabot.yml ├── .gitignore ├── README.md ├── dist ├── background.js ├── bridge.png ├── content.js ├── dashboard.css ├── dashboard.html ├── dex-trade.png ├── icons │ ├── arrow-down.svg │ ├── arrow-up.svg │ ├── dashboard-icon.png │ ├── discord.svg │ ├── earn.png │ ├── github.svg │ ├── metamask.png │ ├── question-mark-in-circle.svg │ ├── referral-icon.png │ ├── telegram.svg │ ├── wallet-connected.png │ ├── wallet.png │ └── x.svg ├── login.png ├── logo-black-2x.png ├── logo.png ├── manifest.json ├── masalogo.png ├── mint.png ├── page-views.png ├── popup.css ├── popup.html ├── popup.js ├── popup.js.LICENSE.txt ├── react_dashboard.css ├── react_dashboard.js ├── react_dashboard.js.LICENSE.txt ├── react_popup.css ├── react_popup.js ├── react_popup.js.LICENSE.txt ├── referrals.css ├── referrals.html ├── swap.png └── wallet-connected.png ├── package.json ├── public ├── bridge.png ├── dashboard.css ├── dashboard.html ├── dex-trade.png ├── icons │ ├── arrow-down.svg │ ├── arrow-up.svg │ ├── dashboard-icon.png │ ├── discord.svg │ ├── earn.png │ ├── github.svg │ ├── metamask.png │ ├── question-mark-in-circle.svg │ ├── referral-icon.png │ ├── telegram.svg │ ├── wallet-connected.png │ ├── wallet.png │ └── x.svg ├── login.png ├── logo-black-2x.png ├── logo.png ├── manifest.json ├── masalogo.png ├── mint.png ├── page-views.png ├── popup.css ├── popup.html ├── referrals.css ├── referrals.html ├── swap.png └── wallet-connected.png ├── src ├── background.ts ├── background │ ├── clickEventData.ts │ ├── messageListener.ts │ ├── navigationListener.ts │ ├── pageView.ts │ └── postData.ts ├── constants.ts ├── content.ts ├── content │ ├── clickData.ts │ └── urlChangeTracker.ts ├── dashboard.ts ├── header │ └── header.ts ├── popup.ts ├── popup │ ├── domContentLoaded.ts │ ├── metamask.ts │ └── permissionUpdate.ts ├── react │ ├── Dashboard.index.tsx │ ├── Dashboard.tsx │ ├── Popup.index.tsx │ ├── Popup.tsx │ ├── components │ │ ├── AlternativeButton.tsx │ │ ├── Button.tsx │ │ ├── Column.tsx │ │ ├── EnableTracking.tsx │ │ └── Row.tsx │ ├── contexts │ │ └── DashboardContextProvider.tsx │ ├── features │ │ ├── Dashboard │ │ │ ├── ActivityMetrics.tsx │ │ │ ├── Content.tsx │ │ │ ├── Dashboard.tsx │ │ │ ├── Header.tsx │ │ │ ├── IntroPage.tsx │ │ │ ├── PercentChange.tsx │ │ │ ├── Sidebar.tsx │ │ │ ├── SidebarItem.tsx │ │ │ ├── StatCard.tsx │ │ │ ├── Tooltip.tsx │ │ │ └── TotalPoints.tsx │ │ └── Popup │ │ │ ├── MetamaskConnectButton.tsx │ │ │ ├── Popup.tsx │ │ │ ├── index.ts │ │ │ └── styles.scss │ ├── helpers │ │ ├── calculateMetrics.tsx │ │ └── permissionUpdate.ts │ ├── hooks │ │ ├── useMetamask.ts │ │ ├── useMetrics.ts │ │ ├── useRouter.ts │ │ └── useSoulnames.ts │ ├── icons │ │ └── LittleMetamaskIcon.tsx │ └── styles │ │ ├── _dashboard.scss │ │ ├── _popup.scss │ │ ├── globals.scss │ │ └── index.scss └── referrals.ts ├── tsconfig.json ├── webpack └── webpack.config.cjs └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/README.md -------------------------------------------------------------------------------- /dist/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/background.js -------------------------------------------------------------------------------- /dist/bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/bridge.png -------------------------------------------------------------------------------- /dist/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/content.js -------------------------------------------------------------------------------- /dist/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/dashboard.css -------------------------------------------------------------------------------- /dist/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/dashboard.html -------------------------------------------------------------------------------- /dist/dex-trade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/dex-trade.png -------------------------------------------------------------------------------- /dist/icons/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/icons/arrow-down.svg -------------------------------------------------------------------------------- /dist/icons/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/icons/arrow-up.svg -------------------------------------------------------------------------------- /dist/icons/dashboard-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/icons/dashboard-icon.png -------------------------------------------------------------------------------- /dist/icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/icons/discord.svg -------------------------------------------------------------------------------- /dist/icons/earn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/icons/earn.png -------------------------------------------------------------------------------- /dist/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/icons/github.svg -------------------------------------------------------------------------------- /dist/icons/metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/icons/metamask.png -------------------------------------------------------------------------------- /dist/icons/question-mark-in-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/icons/question-mark-in-circle.svg -------------------------------------------------------------------------------- /dist/icons/referral-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/icons/referral-icon.png -------------------------------------------------------------------------------- /dist/icons/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/icons/telegram.svg -------------------------------------------------------------------------------- /dist/icons/wallet-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/icons/wallet-connected.png -------------------------------------------------------------------------------- /dist/icons/wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/icons/wallet.png -------------------------------------------------------------------------------- /dist/icons/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/icons/x.svg -------------------------------------------------------------------------------- /dist/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/login.png -------------------------------------------------------------------------------- /dist/logo-black-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/logo-black-2x.png -------------------------------------------------------------------------------- /dist/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/logo.png -------------------------------------------------------------------------------- /dist/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/manifest.json -------------------------------------------------------------------------------- /dist/masalogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/masalogo.png -------------------------------------------------------------------------------- /dist/mint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/mint.png -------------------------------------------------------------------------------- /dist/page-views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/page-views.png -------------------------------------------------------------------------------- /dist/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/popup.css -------------------------------------------------------------------------------- /dist/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/popup.html -------------------------------------------------------------------------------- /dist/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/popup.js -------------------------------------------------------------------------------- /dist/popup.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/popup.js.LICENSE.txt -------------------------------------------------------------------------------- /dist/react_dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/react_dashboard.css -------------------------------------------------------------------------------- /dist/react_dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/react_dashboard.js -------------------------------------------------------------------------------- /dist/react_dashboard.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/react_dashboard.js.LICENSE.txt -------------------------------------------------------------------------------- /dist/react_popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/react_popup.css -------------------------------------------------------------------------------- /dist/react_popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/react_popup.js -------------------------------------------------------------------------------- /dist/react_popup.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/react_popup.js.LICENSE.txt -------------------------------------------------------------------------------- /dist/referrals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/referrals.css -------------------------------------------------------------------------------- /dist/referrals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/referrals.html -------------------------------------------------------------------------------- /dist/swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/swap.png -------------------------------------------------------------------------------- /dist/wallet-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/dist/wallet-connected.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/package.json -------------------------------------------------------------------------------- /public/bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/bridge.png -------------------------------------------------------------------------------- /public/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/dashboard.css -------------------------------------------------------------------------------- /public/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/dashboard.html -------------------------------------------------------------------------------- /public/dex-trade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/dex-trade.png -------------------------------------------------------------------------------- /public/icons/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/icons/arrow-down.svg -------------------------------------------------------------------------------- /public/icons/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/icons/arrow-up.svg -------------------------------------------------------------------------------- /public/icons/dashboard-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/icons/dashboard-icon.png -------------------------------------------------------------------------------- /public/icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/icons/discord.svg -------------------------------------------------------------------------------- /public/icons/earn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/icons/earn.png -------------------------------------------------------------------------------- /public/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/icons/github.svg -------------------------------------------------------------------------------- /public/icons/metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/icons/metamask.png -------------------------------------------------------------------------------- /public/icons/question-mark-in-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/icons/question-mark-in-circle.svg -------------------------------------------------------------------------------- /public/icons/referral-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/icons/referral-icon.png -------------------------------------------------------------------------------- /public/icons/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/icons/telegram.svg -------------------------------------------------------------------------------- /public/icons/wallet-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/icons/wallet-connected.png -------------------------------------------------------------------------------- /public/icons/wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/icons/wallet.png -------------------------------------------------------------------------------- /public/icons/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/icons/x.svg -------------------------------------------------------------------------------- /public/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/login.png -------------------------------------------------------------------------------- /public/logo-black-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/logo-black-2x.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/masalogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/masalogo.png -------------------------------------------------------------------------------- /public/mint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/mint.png -------------------------------------------------------------------------------- /public/page-views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/page-views.png -------------------------------------------------------------------------------- /public/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/popup.css -------------------------------------------------------------------------------- /public/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/popup.html -------------------------------------------------------------------------------- /public/referrals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/referrals.css -------------------------------------------------------------------------------- /public/referrals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/referrals.html -------------------------------------------------------------------------------- /public/swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/swap.png -------------------------------------------------------------------------------- /public/wallet-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/public/wallet-connected.png -------------------------------------------------------------------------------- /src/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/background.ts -------------------------------------------------------------------------------- /src/background/clickEventData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/background/clickEventData.ts -------------------------------------------------------------------------------- /src/background/messageListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/background/messageListener.ts -------------------------------------------------------------------------------- /src/background/navigationListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/background/navigationListener.ts -------------------------------------------------------------------------------- /src/background/pageView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/background/pageView.ts -------------------------------------------------------------------------------- /src/background/postData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/background/postData.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- 1 | export const API_URL = "https://api.cookiemonster.masa.finance"; 2 | -------------------------------------------------------------------------------- /src/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/content.ts -------------------------------------------------------------------------------- /src/content/clickData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/content/clickData.ts -------------------------------------------------------------------------------- /src/content/urlChangeTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/content/urlChangeTracker.ts -------------------------------------------------------------------------------- /src/dashboard.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/header/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/header/header.ts -------------------------------------------------------------------------------- /src/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/popup.ts -------------------------------------------------------------------------------- /src/popup/domContentLoaded.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/popup/domContentLoaded.ts -------------------------------------------------------------------------------- /src/popup/metamask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/popup/metamask.ts -------------------------------------------------------------------------------- /src/popup/permissionUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/popup/permissionUpdate.ts -------------------------------------------------------------------------------- /src/react/Dashboard.index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/Dashboard.index.tsx -------------------------------------------------------------------------------- /src/react/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/Dashboard.tsx -------------------------------------------------------------------------------- /src/react/Popup.index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/Popup.index.tsx -------------------------------------------------------------------------------- /src/react/Popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/Popup.tsx -------------------------------------------------------------------------------- /src/react/components/AlternativeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/components/AlternativeButton.tsx -------------------------------------------------------------------------------- /src/react/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/components/Button.tsx -------------------------------------------------------------------------------- /src/react/components/Column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/components/Column.tsx -------------------------------------------------------------------------------- /src/react/components/EnableTracking.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/components/EnableTracking.tsx -------------------------------------------------------------------------------- /src/react/components/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/components/Row.tsx -------------------------------------------------------------------------------- /src/react/contexts/DashboardContextProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/contexts/DashboardContextProvider.tsx -------------------------------------------------------------------------------- /src/react/features/Dashboard/ActivityMetrics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/features/Dashboard/ActivityMetrics.tsx -------------------------------------------------------------------------------- /src/react/features/Dashboard/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/features/Dashboard/Content.tsx -------------------------------------------------------------------------------- /src/react/features/Dashboard/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/features/Dashboard/Dashboard.tsx -------------------------------------------------------------------------------- /src/react/features/Dashboard/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/features/Dashboard/Header.tsx -------------------------------------------------------------------------------- /src/react/features/Dashboard/IntroPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/features/Dashboard/IntroPage.tsx -------------------------------------------------------------------------------- /src/react/features/Dashboard/PercentChange.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/features/Dashboard/PercentChange.tsx -------------------------------------------------------------------------------- /src/react/features/Dashboard/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/features/Dashboard/Sidebar.tsx -------------------------------------------------------------------------------- /src/react/features/Dashboard/SidebarItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/features/Dashboard/SidebarItem.tsx -------------------------------------------------------------------------------- /src/react/features/Dashboard/StatCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/features/Dashboard/StatCard.tsx -------------------------------------------------------------------------------- /src/react/features/Dashboard/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/features/Dashboard/Tooltip.tsx -------------------------------------------------------------------------------- /src/react/features/Dashboard/TotalPoints.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/features/Dashboard/TotalPoints.tsx -------------------------------------------------------------------------------- /src/react/features/Popup/MetamaskConnectButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/features/Popup/MetamaskConnectButton.tsx -------------------------------------------------------------------------------- /src/react/features/Popup/Popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/features/Popup/Popup.tsx -------------------------------------------------------------------------------- /src/react/features/Popup/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/react/features/Popup/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/features/Popup/styles.scss -------------------------------------------------------------------------------- /src/react/helpers/calculateMetrics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/helpers/calculateMetrics.tsx -------------------------------------------------------------------------------- /src/react/helpers/permissionUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/helpers/permissionUpdate.ts -------------------------------------------------------------------------------- /src/react/hooks/useMetamask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/hooks/useMetamask.ts -------------------------------------------------------------------------------- /src/react/hooks/useMetrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/hooks/useMetrics.ts -------------------------------------------------------------------------------- /src/react/hooks/useRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/hooks/useRouter.ts -------------------------------------------------------------------------------- /src/react/hooks/useSoulnames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/hooks/useSoulnames.ts -------------------------------------------------------------------------------- /src/react/icons/LittleMetamaskIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/icons/LittleMetamaskIcon.tsx -------------------------------------------------------------------------------- /src/react/styles/_dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/styles/_dashboard.scss -------------------------------------------------------------------------------- /src/react/styles/_popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/styles/_popup.scss -------------------------------------------------------------------------------- /src/react/styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/styles/globals.scss -------------------------------------------------------------------------------- /src/react/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/react/styles/index.scss -------------------------------------------------------------------------------- /src/referrals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/src/referrals.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack/webpack.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/webpack/webpack.config.cjs -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masa-finance/chrome-extension/HEAD/yarn.lock --------------------------------------------------------------------------------