├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ ├── deploy-master.yml │ ├── deploy-staging.yml │ └── preview.yml ├── .gitignore ├── .markdownlint.yaml ├── .prettierrc.js ├── .shellcheckrc ├── .storybook ├── decorators.jsx ├── main.js ├── preview-head.html └── preview.js ├── .trunk ├── .gitignore └── trunk.yaml ├── .vscode └── settings.json ├── CODEOWNERS ├── README.md ├── config-overrides.js ├── custom.d.ts ├── ignore.sh ├── index.html ├── license.txt ├── package.json ├── patches └── @solana+web3.js+1.18.0.patch ├── public ├── browserconfig.xml ├── favicon-16x16.png ├── favicon-192x192.png ├── favicon-32x32.png ├── favicon-96x96.png ├── manifest.json └── robots.txt ├── src ├── App.tsx ├── components │ ├── AnimatedNumber │ │ └── index.js │ ├── Borrow │ │ ├── BorrowInfo │ │ │ ├── BorrowInfo.stories.tsx │ │ │ ├── BorrowInfo.tsx │ │ │ └── style.ts │ │ ├── BorrowTable │ │ │ ├── BorrowTable.stories.tsx │ │ │ ├── BorrowTable.tsx │ │ │ └── style.ts │ │ ├── SliderRatio │ │ │ ├── SliderRatio.tsx │ │ │ └── style.ts │ │ ├── SwitchBorrow │ │ │ ├── ActionBorrow.tsx │ │ │ ├── ActionMenuBorrow.tsx │ │ │ ├── SwitchBorrow.stories.tsx │ │ │ ├── SwitchBorrow.tsx │ │ │ └── style.ts │ │ └── WrappedBorrow │ │ │ ├── WrappedBorrow.stories.tsx │ │ │ ├── WrappedBorrow.tsx │ │ │ └── style.ts │ ├── BurnWarning │ │ ├── BurnWarning.stories.tsx │ │ ├── BurnWarning.tsx │ │ └── style.ts │ ├── Cards │ │ ├── Cards.stories.tsx │ │ ├── ProgressCard.tsx │ │ ├── ValueCard.tsx │ │ └── style.ts │ ├── CopyPopover │ │ ├── CopyPopover.tsx │ │ └── style.ts │ ├── DebtPool │ │ ├── DebtPool.stories.tsx │ │ ├── DebtPool.tsx │ │ └── style.ts │ ├── DebtPoolLegendTable │ │ ├── DebtPoolLegendTable.stories.tsx │ │ ├── DebtPoolLegendTable.tsx │ │ └── style.ts │ ├── ExchangePlot │ │ ├── ExchangePlot.stories.tsx │ │ ├── ExchangePlot.tsx │ │ └── style.ts │ ├── Footer │ │ ├── Footer.stories.tsx │ │ ├── Footer.tsx │ │ └── style.ts │ ├── Header │ │ ├── Header.stories.tsx │ │ ├── Header.tsx │ │ └── style.ts │ ├── HeaderButton │ │ ├── ChangeWalletButton.tsx │ │ ├── HeaderButton.stories.tsx │ │ ├── HeaderButton.tsx │ │ ├── SelectNetworkButton.tsx │ │ └── style.ts │ ├── InformationCard │ │ ├── InformationCard.tsx │ │ └── style.ts │ ├── Inputs │ │ ├── ExchangeAmountInput │ │ │ ├── ExchangeAmountInput.stories.tsx │ │ │ ├── ExchangeAmountInput.tsx │ │ │ └── style.ts │ │ └── Select │ │ │ ├── Select.stories.tsx │ │ │ ├── Select.tsx │ │ │ └── style.ts │ ├── Leverage │ │ ├── CloseLeverage │ │ │ ├── CloseLeverage.stories.tsx │ │ │ ├── CloseLeverage.tsx │ │ │ └── style.ts │ │ ├── LeverageAction │ │ │ ├── LeverageAction.tsx │ │ │ └── style.ts │ │ ├── LeverageOption │ │ │ ├── LeverageOption.stories.tsx │ │ │ ├── LeverageOption.tsx │ │ │ └── style.ts │ │ ├── OpenLeverage │ │ │ ├── OpenLeverage.stories.tsx │ │ │ ├── OpenLeverage.tsx │ │ │ └── style.ts │ │ ├── SwitchButton │ │ │ ├── SwitchButton.stories.tsx │ │ │ ├── SwitchButton.tsx │ │ │ └── style.ts │ │ └── WrappedLeverage │ │ │ ├── WrappedLeverage.stories.tsx │ │ │ ├── WrappedLeverage.tsx │ │ │ └── style.ts │ ├── LinePlot │ │ ├── LinePlot.stories.tsx │ │ ├── LinePlot.tsx │ │ └── style.ts │ ├── LinePlotContainer │ │ ├── LinePlotContainer.stories.tsx │ │ ├── LinePlotContainer.tsx │ │ └── style.ts │ ├── MobileTooltip │ │ ├── MobileTooltip.tsx │ │ ├── MobileTooltipRewards.tsx │ │ └── style.ts │ ├── Modals │ │ ├── ConnectWallet │ │ │ ├── ConnectWallet.stories.tsx │ │ │ ├── ConnectWallet.tsx │ │ │ └── style.ts │ │ ├── RoutesModal │ │ │ ├── RoutesModal.stories.tsx │ │ │ ├── RoutesModal.tsx │ │ │ └── style.ts │ │ ├── SelectModals │ │ │ ├── CustomScrollbar.tsx │ │ │ ├── SelectPairModal │ │ │ │ ├── SelectPairModal.stories.tsx │ │ │ │ └── SelectPairModal.tsx │ │ │ ├── SelectTokenModal │ │ │ │ ├── SelectTokenModal.stories.tsx │ │ │ │ └── SelectTokenModal.tsx │ │ │ └── style.ts │ │ └── SelectNetwork │ │ │ ├── SelectNetwork.stories.tsx │ │ │ ├── SelectNetwork.tsx │ │ │ └── style.ts │ ├── Navbar │ │ ├── Button.tsx │ │ ├── Navbar.stories.tsx │ │ └── style.ts │ ├── OutlinedButton │ │ ├── OutlinedButton.stories.tsx │ │ ├── OutlinedButton.tsx │ │ └── style.ts │ ├── Snackbar │ │ ├── Snackbar.tsx │ │ └── style.ts │ ├── SolWarning │ │ ├── SolWarning.stories.tsx │ │ ├── SolWarning.tsx │ │ └── style.ts │ ├── Statistics │ │ ├── StatisticCardAll.tsx │ │ ├── Statistics.stories.tsx │ │ ├── StatisticsCard.tsx │ │ └── style.ts │ ├── Stats │ │ └── StatsCollateralChart │ │ │ ├── StatsCollateral.stories.tsx │ │ │ ├── StatsCollateral.tsx │ │ │ └── style.ts │ ├── Swap │ │ ├── Exchange │ │ │ ├── ExchangeComponent.stories.tsx │ │ │ └── ExchangeComponent.tsx │ │ ├── Swapline │ │ │ ├── SwaplineComponent.stories.tsx │ │ │ └── SwaplineComponent.tsx │ │ └── style.ts │ ├── SwapInfo │ │ ├── SwapInfo.stories.tsx │ │ ├── SwapInfo.tsx │ │ └── style.tsx │ ├── SwitchMenu │ │ ├── ActionMenu.tsx │ │ ├── SwitchMenu.stories.tsx │ │ └── SwitchMenu.tsx │ ├── Tokens │ │ ├── Item │ │ │ ├── Item.stories.tsx │ │ │ ├── Item.tsx │ │ │ └── style.ts │ │ ├── List │ │ │ ├── List.stories.tsx │ │ │ ├── List.tsx │ │ │ └── style.ts │ │ ├── Switch │ │ │ ├── Switch.stories.tsx │ │ │ └── Switch.tsx │ │ ├── Tokens.stories.tsx │ │ ├── Tokens.tsx │ │ └── style.ts │ ├── WelcomeModal │ │ ├── WelcomeModal.stories.tsx │ │ ├── WelcomeModal.tsx │ │ └── style.ts │ └── WrappedActionMenu │ │ ├── ActionTemplate │ │ ├── ActionTemplate.stories.tsx │ │ ├── ActionTemplate.tsx │ │ └── style.ts │ │ ├── KeyValue │ │ ├── KeyValue.stories.tsx │ │ ├── KeyValue.tsx │ │ └── style.ts │ │ ├── Progress │ │ ├── GradientCircularProgress.tsx │ │ ├── Progress.stories.tsx │ │ ├── Progress.tsx │ │ └── style.ts │ │ ├── RewardsTab │ │ ├── AverageAPY │ │ │ ├── AverageAPY.tsx │ │ │ └── style.ts │ │ ├── Lido │ │ │ ├── Lido.tsx │ │ │ └── style.ts │ │ ├── Marinade │ │ │ ├── Marinade.tsx │ │ │ └── style.ts │ │ ├── RewardsAmount │ │ │ ├── RewardsAmount.tsx │ │ │ └── style.ts │ │ ├── RewardsLine │ │ │ ├── RewardsLine.stories.tsx │ │ │ ├── RewardsLine.tsx │ │ │ └── style.ts │ │ ├── RewardsTab.stories.tsx │ │ ├── RewardsTab.tsx │ │ ├── TimeRemainingTooltip │ │ │ ├── TimeRemainingTooltip.tsx │ │ │ └── style.ts │ │ └── style.ts │ │ ├── WrappedActionMenu.stories.tsx │ │ ├── WrappedActionMenu.tsx │ │ └── style.ts ├── containers │ ├── ActionMenuContainer │ │ └── ActionMenuContainer.tsx │ ├── BorrowContainer │ │ ├── BorrowContainer.tsx │ │ └── style.ts │ ├── DebtPoolContainer │ │ ├── DebtPoolContainer.tsx │ │ └── style.ts │ ├── EventsHandlers │ │ ├── exchange.ts │ │ ├── index.tsx │ │ ├── solanaWallet.ts │ │ └── vault.ts │ ├── ExchangePlotContainer │ │ └── ExchangePlotContainer.tsx │ ├── GlobalLoader │ │ ├── GlobalLoader.tsx │ │ └── style.ts │ ├── HeaderWrapper │ │ └── HeaderWrapper.tsx │ ├── LeverageContainer │ │ ├── LeverageContainer.tsx │ │ └── style.ts │ ├── Notifier │ │ ├── Notifier.tsx │ │ └── style.ts │ ├── StakingStats │ │ ├── StakingStats.tsx │ │ └── style.ts │ ├── Statistics │ │ ├── StatisticsCard.tsx │ │ ├── StatisticsCollateral.tsx │ │ └── StatisticsLinePlot.tsx │ ├── TokenListWrapper │ │ └── TokenListWrapper.tsx │ ├── WrappedExchangeComponent │ │ └── WrappedExchangeComponent.tsx │ └── WrappedSwaplineComponent │ │ └── WrappedSwaplineComponent.tsx ├── index.css ├── index.tsx ├── pages │ ├── BorrowPage │ │ ├── BorrowPage.tsx │ │ └── style.ts │ ├── ExchangePage │ │ ├── ExchangePage.tsx │ │ └── style.ts │ ├── LeveragePage │ │ ├── LeveragePage.tsx │ │ └── style.ts │ ├── PagesRouter.tsx │ ├── StakingPage │ │ ├── StakingPage.tsx │ │ └── style.ts │ ├── StatisticsPage │ │ ├── StatisticsPage.tsx │ │ └── style.ts │ └── SwaplinePage │ │ ├── SwaplinePage.tsx │ │ └── style.ts ├── react-app-env.d.ts ├── serviceWorker.ts ├── setupTests.ts ├── shims.ts ├── static │ ├── gif │ │ ├── loader.gif │ │ └── success.gif │ ├── icons.ts │ ├── icons │ │ ├── mnde.svg │ │ ├── sny.png │ │ ├── sny.svg │ │ ├── usdc.svg │ │ ├── whETH.png │ │ ├── whFTT.png │ │ ├── whFTT.svg │ │ ├── wsol.svg │ │ ├── xaave.svg │ │ ├── xatom.svg │ │ ├── xavax.svg │ │ ├── xbnb.svg │ │ ├── xbtc.svg │ │ ├── xc98.svg │ │ ├── xdoge.svg │ │ ├── xdot.svg │ │ ├── xeth.svg │ │ ├── xftt.svg │ │ ├── xgold.svg │ │ ├── xltc.svg │ │ ├── xluna.svg │ │ ├── xmkr.svg │ │ ├── xsny.svg │ │ ├── xsol.svg │ │ ├── xsrm.svg │ │ ├── xsushi.svg │ │ ├── xuni.svg │ │ ├── xusd.svg │ │ └── xyfi.svg │ ├── jpg │ │ └── sollet.jpg │ ├── links.ts │ ├── loading.mp4 │ ├── png │ │ ├── footerImage.png │ │ ├── headerImage.png │ │ ├── noDataFound.png │ │ └── phantom.png │ ├── svg │ │ ├── Lido.svg │ │ ├── LidoBg.svg │ │ ├── Marinade.svg │ │ ├── MathWallet.svg │ │ ├── Warrning.svg │ │ ├── accColor.svg │ │ ├── accWhite.svg │ │ ├── burn_ic.svg │ │ ├── clear.svg │ │ ├── clock.svg │ │ ├── closeX.svg │ │ ├── clover.svg │ │ ├── coin98.svg │ │ ├── copy.svg │ │ ├── depo_ic.svg │ │ ├── devnet.svg │ │ ├── discord-circle.svg │ │ ├── discord-ic-footer.svg │ │ ├── exchangeColor.svg │ │ ├── exchangeWhite.svg │ │ ├── exclamation.svg │ │ ├── exclamationMark.svg │ │ ├── fee.svg │ │ ├── github-circle.svg │ │ ├── github-ic-footer.svg │ │ ├── horizontal_green_white.svg │ │ ├── linkedin-circle.svg │ │ ├── linkedin-ic-footer.svg │ │ ├── logo-ic-footer.svg │ │ ├── logo-ic-nav.svg │ │ ├── mSOL.svg │ │ ├── mainnet.svg │ │ ├── mint_ic.svg │ │ ├── nightly.svg │ │ ├── nightlyConnect.svg │ │ ├── output.svg │ │ ├── percent.svg │ │ ├── phantom.svg │ │ ├── progress-faild.svg │ │ ├── progress-success.svg │ │ ├── questionMark.svg │ │ ├── questionMarkCircle.svg │ │ ├── redExclamationMark.svg │ │ ├── renBTC.svg │ │ ├── rewards.svg │ │ ├── rewards1.svg │ │ ├── rewards2.svg │ │ ├── rewards3.svg │ │ ├── send_ic.svg │ │ ├── slope.svg │ │ ├── sny.svg │ │ ├── solana.svg │ │ ├── solflare.svg │ │ ├── sollet.svg │ │ ├── stSOL.svg │ │ ├── stakeColor.svg │ │ ├── stakeWhite.svg │ │ ├── star.svg │ │ ├── swap.svg │ │ ├── swapArrows.svg │ │ ├── synthetifyError.svg │ │ ├── telegram-circle.svg │ │ ├── telegram.svg │ │ ├── testnet.svg │ │ ├── twitter-circle.svg │ │ ├── twitter-ic-footer.svg │ │ ├── whiteQuestionMarkCircle.svg │ │ └── withdraw_ic.svg │ └── theme.ts ├── store │ ├── consts │ │ ├── borrowUtils.tsx │ │ ├── idl │ │ │ ├── exchange.json │ │ │ ├── manager.json │ │ │ └── pyth.json │ │ ├── leverageUtils.ts │ │ ├── static.ts │ │ ├── testAdmin.ts │ │ ├── uiUtils.ts │ │ └── utils.ts │ ├── index.ts │ ├── middleware.ts │ ├── reducers │ │ ├── exchange.ts │ │ ├── index.ts │ │ ├── leverage.ts │ │ ├── snackbars.ts │ │ ├── solanaConnection.ts │ │ ├── solanaWallet.ts │ │ ├── staking.ts │ │ ├── stats.ts │ │ ├── types.ts │ │ ├── ui.ts │ │ └── vault.ts │ ├── sagas │ │ ├── connection.ts │ │ ├── exchange.ts │ │ ├── index.ts │ │ ├── leverage.ts │ │ ├── oracle.ts │ │ ├── staking.ts │ │ ├── stats.ts │ │ ├── token.ts │ │ ├── vault.ts │ │ └── wallet.ts │ └── selectors │ │ ├── exchange.ts │ │ ├── helpers.ts │ │ ├── leverage.ts │ │ ├── snackbars.ts │ │ ├── solanaConnection.ts │ │ ├── solanaWallet.ts │ │ ├── staking.ts │ │ ├── stats.ts │ │ ├── ui.ts │ │ └── vault.ts ├── tests │ └── borrowUtils.test.ts └── web3 │ ├── adapters │ ├── clover.ts │ ├── coin98.ts │ ├── mathwallet.ts │ ├── nightly.ts │ ├── nightlyconnect.ts │ ├── phantom.ts │ ├── slope.ts │ ├── solflare.ts │ └── types.ts │ ├── connection.ts │ ├── data.ts │ ├── programs │ ├── exchange.ts │ └── oracle.ts │ └── wallet.ts ├── tsconfig.json ├── tsconfig.paths.json ├── vercel.json ├── vite.config.ts └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/deploy-master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/.github/workflows/deploy-master.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-staging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/.github/workflows/deploy-staging.yml -------------------------------------------------------------------------------- /.github/workflows/preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/.github/workflows/preview.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/.shellcheckrc -------------------------------------------------------------------------------- /.storybook/decorators.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/.storybook/decorators.jsx -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/.storybook/preview-head.html -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /.trunk/.gitignore: -------------------------------------------------------------------------------- 1 | *out 2 | -------------------------------------------------------------------------------- /.trunk/trunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/.trunk/trunk.yaml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/README.md -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/config-overrides.js -------------------------------------------------------------------------------- /custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/custom.d.ts -------------------------------------------------------------------------------- /ignore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/ignore.sh -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/index.html -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/package.json -------------------------------------------------------------------------------- /patches/@solana+web3.js+1.18.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/patches/@solana+web3.js+1.18.0.patch -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/public/favicon-192x192.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/public/favicon-96x96.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/AnimatedNumber/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/AnimatedNumber/index.js -------------------------------------------------------------------------------- /src/components/Borrow/BorrowInfo/BorrowInfo.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Borrow/BorrowInfo/BorrowInfo.stories.tsx -------------------------------------------------------------------------------- /src/components/Borrow/BorrowInfo/BorrowInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Borrow/BorrowInfo/BorrowInfo.tsx -------------------------------------------------------------------------------- /src/components/Borrow/BorrowInfo/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Borrow/BorrowInfo/style.ts -------------------------------------------------------------------------------- /src/components/Borrow/BorrowTable/BorrowTable.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Borrow/BorrowTable/BorrowTable.stories.tsx -------------------------------------------------------------------------------- /src/components/Borrow/BorrowTable/BorrowTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Borrow/BorrowTable/BorrowTable.tsx -------------------------------------------------------------------------------- /src/components/Borrow/BorrowTable/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Borrow/BorrowTable/style.ts -------------------------------------------------------------------------------- /src/components/Borrow/SliderRatio/SliderRatio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Borrow/SliderRatio/SliderRatio.tsx -------------------------------------------------------------------------------- /src/components/Borrow/SliderRatio/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Borrow/SliderRatio/style.ts -------------------------------------------------------------------------------- /src/components/Borrow/SwitchBorrow/ActionBorrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Borrow/SwitchBorrow/ActionBorrow.tsx -------------------------------------------------------------------------------- /src/components/Borrow/SwitchBorrow/ActionMenuBorrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Borrow/SwitchBorrow/ActionMenuBorrow.tsx -------------------------------------------------------------------------------- /src/components/Borrow/SwitchBorrow/SwitchBorrow.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Borrow/SwitchBorrow/SwitchBorrow.stories.tsx -------------------------------------------------------------------------------- /src/components/Borrow/SwitchBorrow/SwitchBorrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Borrow/SwitchBorrow/SwitchBorrow.tsx -------------------------------------------------------------------------------- /src/components/Borrow/SwitchBorrow/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Borrow/SwitchBorrow/style.ts -------------------------------------------------------------------------------- /src/components/Borrow/WrappedBorrow/WrappedBorrow.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Borrow/WrappedBorrow/WrappedBorrow.stories.tsx -------------------------------------------------------------------------------- /src/components/Borrow/WrappedBorrow/WrappedBorrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Borrow/WrappedBorrow/WrappedBorrow.tsx -------------------------------------------------------------------------------- /src/components/Borrow/WrappedBorrow/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Borrow/WrappedBorrow/style.ts -------------------------------------------------------------------------------- /src/components/BurnWarning/BurnWarning.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/BurnWarning/BurnWarning.stories.tsx -------------------------------------------------------------------------------- /src/components/BurnWarning/BurnWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/BurnWarning/BurnWarning.tsx -------------------------------------------------------------------------------- /src/components/BurnWarning/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/BurnWarning/style.ts -------------------------------------------------------------------------------- /src/components/Cards/Cards.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Cards/Cards.stories.tsx -------------------------------------------------------------------------------- /src/components/Cards/ProgressCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Cards/ProgressCard.tsx -------------------------------------------------------------------------------- /src/components/Cards/ValueCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Cards/ValueCard.tsx -------------------------------------------------------------------------------- /src/components/Cards/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Cards/style.ts -------------------------------------------------------------------------------- /src/components/CopyPopover/CopyPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/CopyPopover/CopyPopover.tsx -------------------------------------------------------------------------------- /src/components/CopyPopover/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/CopyPopover/style.ts -------------------------------------------------------------------------------- /src/components/DebtPool/DebtPool.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/DebtPool/DebtPool.stories.tsx -------------------------------------------------------------------------------- /src/components/DebtPool/DebtPool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/DebtPool/DebtPool.tsx -------------------------------------------------------------------------------- /src/components/DebtPool/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/DebtPool/style.ts -------------------------------------------------------------------------------- /src/components/DebtPoolLegendTable/DebtPoolLegendTable.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/DebtPoolLegendTable/DebtPoolLegendTable.stories.tsx -------------------------------------------------------------------------------- /src/components/DebtPoolLegendTable/DebtPoolLegendTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/DebtPoolLegendTable/DebtPoolLegendTable.tsx -------------------------------------------------------------------------------- /src/components/DebtPoolLegendTable/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/DebtPoolLegendTable/style.ts -------------------------------------------------------------------------------- /src/components/ExchangePlot/ExchangePlot.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/ExchangePlot/ExchangePlot.stories.tsx -------------------------------------------------------------------------------- /src/components/ExchangePlot/ExchangePlot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/ExchangePlot/ExchangePlot.tsx -------------------------------------------------------------------------------- /src/components/ExchangePlot/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/ExchangePlot/style.ts -------------------------------------------------------------------------------- /src/components/Footer/Footer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Footer/Footer.stories.tsx -------------------------------------------------------------------------------- /src/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/Footer/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Footer/style.ts -------------------------------------------------------------------------------- /src/components/Header/Header.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Header/Header.stories.tsx -------------------------------------------------------------------------------- /src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/Header/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Header/style.ts -------------------------------------------------------------------------------- /src/components/HeaderButton/ChangeWalletButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/HeaderButton/ChangeWalletButton.tsx -------------------------------------------------------------------------------- /src/components/HeaderButton/HeaderButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/HeaderButton/HeaderButton.stories.tsx -------------------------------------------------------------------------------- /src/components/HeaderButton/HeaderButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/HeaderButton/HeaderButton.tsx -------------------------------------------------------------------------------- /src/components/HeaderButton/SelectNetworkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/HeaderButton/SelectNetworkButton.tsx -------------------------------------------------------------------------------- /src/components/HeaderButton/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/HeaderButton/style.ts -------------------------------------------------------------------------------- /src/components/InformationCard/InformationCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/InformationCard/InformationCard.tsx -------------------------------------------------------------------------------- /src/components/InformationCard/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/InformationCard/style.ts -------------------------------------------------------------------------------- /src/components/Inputs/ExchangeAmountInput/ExchangeAmountInput.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Inputs/ExchangeAmountInput/ExchangeAmountInput.stories.tsx -------------------------------------------------------------------------------- /src/components/Inputs/ExchangeAmountInput/ExchangeAmountInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Inputs/ExchangeAmountInput/ExchangeAmountInput.tsx -------------------------------------------------------------------------------- /src/components/Inputs/ExchangeAmountInput/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Inputs/ExchangeAmountInput/style.ts -------------------------------------------------------------------------------- /src/components/Inputs/Select/Select.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Inputs/Select/Select.stories.tsx -------------------------------------------------------------------------------- /src/components/Inputs/Select/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Inputs/Select/Select.tsx -------------------------------------------------------------------------------- /src/components/Inputs/Select/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Inputs/Select/style.ts -------------------------------------------------------------------------------- /src/components/Leverage/CloseLeverage/CloseLeverage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Leverage/CloseLeverage/CloseLeverage.stories.tsx -------------------------------------------------------------------------------- /src/components/Leverage/CloseLeverage/CloseLeverage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Leverage/CloseLeverage/CloseLeverage.tsx -------------------------------------------------------------------------------- /src/components/Leverage/CloseLeverage/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Leverage/CloseLeverage/style.ts -------------------------------------------------------------------------------- /src/components/Leverage/LeverageAction/LeverageAction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Leverage/LeverageAction/LeverageAction.tsx -------------------------------------------------------------------------------- /src/components/Leverage/LeverageAction/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Leverage/LeverageAction/style.ts -------------------------------------------------------------------------------- /src/components/Leverage/LeverageOption/LeverageOption.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Leverage/LeverageOption/LeverageOption.stories.tsx -------------------------------------------------------------------------------- /src/components/Leverage/LeverageOption/LeverageOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Leverage/LeverageOption/LeverageOption.tsx -------------------------------------------------------------------------------- /src/components/Leverage/LeverageOption/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Leverage/LeverageOption/style.ts -------------------------------------------------------------------------------- /src/components/Leverage/OpenLeverage/OpenLeverage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Leverage/OpenLeverage/OpenLeverage.stories.tsx -------------------------------------------------------------------------------- /src/components/Leverage/OpenLeverage/OpenLeverage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Leverage/OpenLeverage/OpenLeverage.tsx -------------------------------------------------------------------------------- /src/components/Leverage/OpenLeverage/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Leverage/OpenLeverage/style.ts -------------------------------------------------------------------------------- /src/components/Leverage/SwitchButton/SwitchButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Leverage/SwitchButton/SwitchButton.stories.tsx -------------------------------------------------------------------------------- /src/components/Leverage/SwitchButton/SwitchButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Leverage/SwitchButton/SwitchButton.tsx -------------------------------------------------------------------------------- /src/components/Leverage/SwitchButton/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Leverage/SwitchButton/style.ts -------------------------------------------------------------------------------- /src/components/Leverage/WrappedLeverage/WrappedLeverage.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Leverage/WrappedLeverage/WrappedLeverage.stories.tsx -------------------------------------------------------------------------------- /src/components/Leverage/WrappedLeverage/WrappedLeverage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Leverage/WrappedLeverage/WrappedLeverage.tsx -------------------------------------------------------------------------------- /src/components/Leverage/WrappedLeverage/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Leverage/WrappedLeverage/style.ts -------------------------------------------------------------------------------- /src/components/LinePlot/LinePlot.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/LinePlot/LinePlot.stories.tsx -------------------------------------------------------------------------------- /src/components/LinePlot/LinePlot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/LinePlot/LinePlot.tsx -------------------------------------------------------------------------------- /src/components/LinePlot/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/LinePlot/style.ts -------------------------------------------------------------------------------- /src/components/LinePlotContainer/LinePlotContainer.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/LinePlotContainer/LinePlotContainer.stories.tsx -------------------------------------------------------------------------------- /src/components/LinePlotContainer/LinePlotContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/LinePlotContainer/LinePlotContainer.tsx -------------------------------------------------------------------------------- /src/components/LinePlotContainer/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/LinePlotContainer/style.ts -------------------------------------------------------------------------------- /src/components/MobileTooltip/MobileTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/MobileTooltip/MobileTooltip.tsx -------------------------------------------------------------------------------- /src/components/MobileTooltip/MobileTooltipRewards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/MobileTooltip/MobileTooltipRewards.tsx -------------------------------------------------------------------------------- /src/components/MobileTooltip/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/MobileTooltip/style.ts -------------------------------------------------------------------------------- /src/components/Modals/ConnectWallet/ConnectWallet.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Modals/ConnectWallet/ConnectWallet.stories.tsx -------------------------------------------------------------------------------- /src/components/Modals/ConnectWallet/ConnectWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Modals/ConnectWallet/ConnectWallet.tsx -------------------------------------------------------------------------------- /src/components/Modals/ConnectWallet/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Modals/ConnectWallet/style.ts -------------------------------------------------------------------------------- /src/components/Modals/RoutesModal/RoutesModal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Modals/RoutesModal/RoutesModal.stories.tsx -------------------------------------------------------------------------------- /src/components/Modals/RoutesModal/RoutesModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Modals/RoutesModal/RoutesModal.tsx -------------------------------------------------------------------------------- /src/components/Modals/RoutesModal/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Modals/RoutesModal/style.ts -------------------------------------------------------------------------------- /src/components/Modals/SelectModals/CustomScrollbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Modals/SelectModals/CustomScrollbar.tsx -------------------------------------------------------------------------------- /src/components/Modals/SelectModals/SelectPairModal/SelectPairModal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Modals/SelectModals/SelectPairModal/SelectPairModal.stories.tsx -------------------------------------------------------------------------------- /src/components/Modals/SelectModals/SelectPairModal/SelectPairModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Modals/SelectModals/SelectPairModal/SelectPairModal.tsx -------------------------------------------------------------------------------- /src/components/Modals/SelectModals/SelectTokenModal/SelectTokenModal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Modals/SelectModals/SelectTokenModal/SelectTokenModal.stories.tsx -------------------------------------------------------------------------------- /src/components/Modals/SelectModals/SelectTokenModal/SelectTokenModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Modals/SelectModals/SelectTokenModal/SelectTokenModal.tsx -------------------------------------------------------------------------------- /src/components/Modals/SelectModals/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Modals/SelectModals/style.ts -------------------------------------------------------------------------------- /src/components/Modals/SelectNetwork/SelectNetwork.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Modals/SelectNetwork/SelectNetwork.stories.tsx -------------------------------------------------------------------------------- /src/components/Modals/SelectNetwork/SelectNetwork.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Modals/SelectNetwork/SelectNetwork.tsx -------------------------------------------------------------------------------- /src/components/Modals/SelectNetwork/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Modals/SelectNetwork/style.ts -------------------------------------------------------------------------------- /src/components/Navbar/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Navbar/Button.tsx -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Navbar/Navbar.stories.tsx -------------------------------------------------------------------------------- /src/components/Navbar/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Navbar/style.ts -------------------------------------------------------------------------------- /src/components/OutlinedButton/OutlinedButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/OutlinedButton/OutlinedButton.stories.tsx -------------------------------------------------------------------------------- /src/components/OutlinedButton/OutlinedButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/OutlinedButton/OutlinedButton.tsx -------------------------------------------------------------------------------- /src/components/OutlinedButton/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/OutlinedButton/style.ts -------------------------------------------------------------------------------- /src/components/Snackbar/Snackbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Snackbar/Snackbar.tsx -------------------------------------------------------------------------------- /src/components/Snackbar/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Snackbar/style.ts -------------------------------------------------------------------------------- /src/components/SolWarning/SolWarning.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/SolWarning/SolWarning.stories.tsx -------------------------------------------------------------------------------- /src/components/SolWarning/SolWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/SolWarning/SolWarning.tsx -------------------------------------------------------------------------------- /src/components/SolWarning/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/SolWarning/style.ts -------------------------------------------------------------------------------- /src/components/Statistics/StatisticCardAll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Statistics/StatisticCardAll.tsx -------------------------------------------------------------------------------- /src/components/Statistics/Statistics.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Statistics/Statistics.stories.tsx -------------------------------------------------------------------------------- /src/components/Statistics/StatisticsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Statistics/StatisticsCard.tsx -------------------------------------------------------------------------------- /src/components/Statistics/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Statistics/style.ts -------------------------------------------------------------------------------- /src/components/Stats/StatsCollateralChart/StatsCollateral.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Stats/StatsCollateralChart/StatsCollateral.stories.tsx -------------------------------------------------------------------------------- /src/components/Stats/StatsCollateralChart/StatsCollateral.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Stats/StatsCollateralChart/StatsCollateral.tsx -------------------------------------------------------------------------------- /src/components/Stats/StatsCollateralChart/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Stats/StatsCollateralChart/style.ts -------------------------------------------------------------------------------- /src/components/Swap/Exchange/ExchangeComponent.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Swap/Exchange/ExchangeComponent.stories.tsx -------------------------------------------------------------------------------- /src/components/Swap/Exchange/ExchangeComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Swap/Exchange/ExchangeComponent.tsx -------------------------------------------------------------------------------- /src/components/Swap/Swapline/SwaplineComponent.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Swap/Swapline/SwaplineComponent.stories.tsx -------------------------------------------------------------------------------- /src/components/Swap/Swapline/SwaplineComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Swap/Swapline/SwaplineComponent.tsx -------------------------------------------------------------------------------- /src/components/Swap/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Swap/style.ts -------------------------------------------------------------------------------- /src/components/SwapInfo/SwapInfo.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/SwapInfo/SwapInfo.stories.tsx -------------------------------------------------------------------------------- /src/components/SwapInfo/SwapInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/SwapInfo/SwapInfo.tsx -------------------------------------------------------------------------------- /src/components/SwapInfo/style.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/SwapInfo/style.tsx -------------------------------------------------------------------------------- /src/components/SwitchMenu/ActionMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/SwitchMenu/ActionMenu.tsx -------------------------------------------------------------------------------- /src/components/SwitchMenu/SwitchMenu.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/SwitchMenu/SwitchMenu.stories.tsx -------------------------------------------------------------------------------- /src/components/SwitchMenu/SwitchMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/SwitchMenu/SwitchMenu.tsx -------------------------------------------------------------------------------- /src/components/Tokens/Item/Item.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Tokens/Item/Item.stories.tsx -------------------------------------------------------------------------------- /src/components/Tokens/Item/Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Tokens/Item/Item.tsx -------------------------------------------------------------------------------- /src/components/Tokens/Item/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Tokens/Item/style.ts -------------------------------------------------------------------------------- /src/components/Tokens/List/List.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Tokens/List/List.stories.tsx -------------------------------------------------------------------------------- /src/components/Tokens/List/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Tokens/List/List.tsx -------------------------------------------------------------------------------- /src/components/Tokens/List/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Tokens/List/style.ts -------------------------------------------------------------------------------- /src/components/Tokens/Switch/Switch.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Tokens/Switch/Switch.stories.tsx -------------------------------------------------------------------------------- /src/components/Tokens/Switch/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Tokens/Switch/Switch.tsx -------------------------------------------------------------------------------- /src/components/Tokens/Tokens.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Tokens/Tokens.stories.tsx -------------------------------------------------------------------------------- /src/components/Tokens/Tokens.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Tokens/Tokens.tsx -------------------------------------------------------------------------------- /src/components/Tokens/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/Tokens/style.ts -------------------------------------------------------------------------------- /src/components/WelcomeModal/WelcomeModal.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WelcomeModal/WelcomeModal.stories.tsx -------------------------------------------------------------------------------- /src/components/WelcomeModal/WelcomeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WelcomeModal/WelcomeModal.tsx -------------------------------------------------------------------------------- /src/components/WelcomeModal/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WelcomeModal/style.ts -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/ActionTemplate/ActionTemplate.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/ActionTemplate/ActionTemplate.stories.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/ActionTemplate/ActionTemplate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/ActionTemplate/ActionTemplate.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/ActionTemplate/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/ActionTemplate/style.ts -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/KeyValue/KeyValue.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/KeyValue/KeyValue.stories.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/KeyValue/KeyValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/KeyValue/KeyValue.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/KeyValue/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/KeyValue/style.ts -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/Progress/GradientCircularProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/Progress/GradientCircularProgress.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/Progress/Progress.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/Progress/Progress.stories.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/Progress/Progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/Progress/Progress.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/Progress/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/Progress/style.ts -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/RewardsTab/AverageAPY/AverageAPY.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/RewardsTab/AverageAPY/AverageAPY.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/RewardsTab/AverageAPY/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/RewardsTab/AverageAPY/style.ts -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/RewardsTab/Lido/Lido.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/RewardsTab/Lido/Lido.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/RewardsTab/Lido/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/RewardsTab/Lido/style.ts -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/RewardsTab/Marinade/Marinade.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/RewardsTab/Marinade/Marinade.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/RewardsTab/Marinade/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/RewardsTab/Marinade/style.ts -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/RewardsTab/RewardsAmount/RewardsAmount.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/RewardsTab/RewardsAmount/RewardsAmount.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/RewardsTab/RewardsAmount/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/RewardsTab/RewardsAmount/style.ts -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/RewardsTab/RewardsLine/RewardsLine.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/RewardsTab/RewardsLine/RewardsLine.stories.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/RewardsTab/RewardsLine/RewardsLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/RewardsTab/RewardsLine/RewardsLine.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/RewardsTab/RewardsLine/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/RewardsTab/RewardsLine/style.ts -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/RewardsTab/RewardsTab.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/RewardsTab/RewardsTab.stories.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/RewardsTab/RewardsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/RewardsTab/RewardsTab.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/RewardsTab/TimeRemainingTooltip/TimeRemainingTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/RewardsTab/TimeRemainingTooltip/TimeRemainingTooltip.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/RewardsTab/TimeRemainingTooltip/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/RewardsTab/TimeRemainingTooltip/style.ts -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/RewardsTab/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/RewardsTab/style.ts -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/WrappedActionMenu.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/WrappedActionMenu.stories.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/WrappedActionMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/WrappedActionMenu.tsx -------------------------------------------------------------------------------- /src/components/WrappedActionMenu/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/components/WrappedActionMenu/style.ts -------------------------------------------------------------------------------- /src/containers/ActionMenuContainer/ActionMenuContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/ActionMenuContainer/ActionMenuContainer.tsx -------------------------------------------------------------------------------- /src/containers/BorrowContainer/BorrowContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/BorrowContainer/BorrowContainer.tsx -------------------------------------------------------------------------------- /src/containers/BorrowContainer/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/BorrowContainer/style.ts -------------------------------------------------------------------------------- /src/containers/DebtPoolContainer/DebtPoolContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/DebtPoolContainer/DebtPoolContainer.tsx -------------------------------------------------------------------------------- /src/containers/DebtPoolContainer/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/DebtPoolContainer/style.ts -------------------------------------------------------------------------------- /src/containers/EventsHandlers/exchange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/EventsHandlers/exchange.ts -------------------------------------------------------------------------------- /src/containers/EventsHandlers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/EventsHandlers/index.tsx -------------------------------------------------------------------------------- /src/containers/EventsHandlers/solanaWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/EventsHandlers/solanaWallet.ts -------------------------------------------------------------------------------- /src/containers/EventsHandlers/vault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/EventsHandlers/vault.ts -------------------------------------------------------------------------------- /src/containers/ExchangePlotContainer/ExchangePlotContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/ExchangePlotContainer/ExchangePlotContainer.tsx -------------------------------------------------------------------------------- /src/containers/GlobalLoader/GlobalLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/GlobalLoader/GlobalLoader.tsx -------------------------------------------------------------------------------- /src/containers/GlobalLoader/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/GlobalLoader/style.ts -------------------------------------------------------------------------------- /src/containers/HeaderWrapper/HeaderWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/HeaderWrapper/HeaderWrapper.tsx -------------------------------------------------------------------------------- /src/containers/LeverageContainer/LeverageContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/LeverageContainer/LeverageContainer.tsx -------------------------------------------------------------------------------- /src/containers/LeverageContainer/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/LeverageContainer/style.ts -------------------------------------------------------------------------------- /src/containers/Notifier/Notifier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/Notifier/Notifier.tsx -------------------------------------------------------------------------------- /src/containers/Notifier/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/Notifier/style.ts -------------------------------------------------------------------------------- /src/containers/StakingStats/StakingStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/StakingStats/StakingStats.tsx -------------------------------------------------------------------------------- /src/containers/StakingStats/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/StakingStats/style.ts -------------------------------------------------------------------------------- /src/containers/Statistics/StatisticsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/Statistics/StatisticsCard.tsx -------------------------------------------------------------------------------- /src/containers/Statistics/StatisticsCollateral.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/Statistics/StatisticsCollateral.tsx -------------------------------------------------------------------------------- /src/containers/Statistics/StatisticsLinePlot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/Statistics/StatisticsLinePlot.tsx -------------------------------------------------------------------------------- /src/containers/TokenListWrapper/TokenListWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/TokenListWrapper/TokenListWrapper.tsx -------------------------------------------------------------------------------- /src/containers/WrappedExchangeComponent/WrappedExchangeComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/WrappedExchangeComponent/WrappedExchangeComponent.tsx -------------------------------------------------------------------------------- /src/containers/WrappedSwaplineComponent/WrappedSwaplineComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/containers/WrappedSwaplineComponent/WrappedSwaplineComponent.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/BorrowPage/BorrowPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/pages/BorrowPage/BorrowPage.tsx -------------------------------------------------------------------------------- /src/pages/BorrowPage/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/pages/BorrowPage/style.ts -------------------------------------------------------------------------------- /src/pages/ExchangePage/ExchangePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/pages/ExchangePage/ExchangePage.tsx -------------------------------------------------------------------------------- /src/pages/ExchangePage/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/pages/ExchangePage/style.ts -------------------------------------------------------------------------------- /src/pages/LeveragePage/LeveragePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/pages/LeveragePage/LeveragePage.tsx -------------------------------------------------------------------------------- /src/pages/LeveragePage/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/pages/LeveragePage/style.ts -------------------------------------------------------------------------------- /src/pages/PagesRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/pages/PagesRouter.tsx -------------------------------------------------------------------------------- /src/pages/StakingPage/StakingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/pages/StakingPage/StakingPage.tsx -------------------------------------------------------------------------------- /src/pages/StakingPage/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/pages/StakingPage/style.ts -------------------------------------------------------------------------------- /src/pages/StatisticsPage/StatisticsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/pages/StatisticsPage/StatisticsPage.tsx -------------------------------------------------------------------------------- /src/pages/StatisticsPage/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/pages/StatisticsPage/style.ts -------------------------------------------------------------------------------- /src/pages/SwaplinePage/SwaplinePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/pages/SwaplinePage/SwaplinePage.tsx -------------------------------------------------------------------------------- /src/pages/SwaplinePage/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/pages/SwaplinePage/style.ts -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/react-app-env.d.ts -------------------------------------------------------------------------------- /src/serviceWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/serviceWorker.ts -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/shims.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/shims.ts -------------------------------------------------------------------------------- /src/static/gif/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/gif/loader.gif -------------------------------------------------------------------------------- /src/static/gif/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/gif/success.gif -------------------------------------------------------------------------------- /src/static/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons.ts -------------------------------------------------------------------------------- /src/static/icons/mnde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/mnde.svg -------------------------------------------------------------------------------- /src/static/icons/sny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/sny.png -------------------------------------------------------------------------------- /src/static/icons/sny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/sny.svg -------------------------------------------------------------------------------- /src/static/icons/usdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/usdc.svg -------------------------------------------------------------------------------- /src/static/icons/whETH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/whETH.png -------------------------------------------------------------------------------- /src/static/icons/whFTT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/whFTT.png -------------------------------------------------------------------------------- /src/static/icons/whFTT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/whFTT.svg -------------------------------------------------------------------------------- /src/static/icons/wsol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/wsol.svg -------------------------------------------------------------------------------- /src/static/icons/xaave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xaave.svg -------------------------------------------------------------------------------- /src/static/icons/xatom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xatom.svg -------------------------------------------------------------------------------- /src/static/icons/xavax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xavax.svg -------------------------------------------------------------------------------- /src/static/icons/xbnb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xbnb.svg -------------------------------------------------------------------------------- /src/static/icons/xbtc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xbtc.svg -------------------------------------------------------------------------------- /src/static/icons/xc98.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xc98.svg -------------------------------------------------------------------------------- /src/static/icons/xdoge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xdoge.svg -------------------------------------------------------------------------------- /src/static/icons/xdot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xdot.svg -------------------------------------------------------------------------------- /src/static/icons/xeth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xeth.svg -------------------------------------------------------------------------------- /src/static/icons/xftt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xftt.svg -------------------------------------------------------------------------------- /src/static/icons/xgold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xgold.svg -------------------------------------------------------------------------------- /src/static/icons/xltc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xltc.svg -------------------------------------------------------------------------------- /src/static/icons/xluna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xluna.svg -------------------------------------------------------------------------------- /src/static/icons/xmkr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xmkr.svg -------------------------------------------------------------------------------- /src/static/icons/xsny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xsny.svg -------------------------------------------------------------------------------- /src/static/icons/xsol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xsol.svg -------------------------------------------------------------------------------- /src/static/icons/xsrm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xsrm.svg -------------------------------------------------------------------------------- /src/static/icons/xsushi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xsushi.svg -------------------------------------------------------------------------------- /src/static/icons/xuni.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xuni.svg -------------------------------------------------------------------------------- /src/static/icons/xusd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xusd.svg -------------------------------------------------------------------------------- /src/static/icons/xyfi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/icons/xyfi.svg -------------------------------------------------------------------------------- /src/static/jpg/sollet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/jpg/sollet.jpg -------------------------------------------------------------------------------- /src/static/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/links.ts -------------------------------------------------------------------------------- /src/static/loading.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/loading.mp4 -------------------------------------------------------------------------------- /src/static/png/footerImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/png/footerImage.png -------------------------------------------------------------------------------- /src/static/png/headerImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/png/headerImage.png -------------------------------------------------------------------------------- /src/static/png/noDataFound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/png/noDataFound.png -------------------------------------------------------------------------------- /src/static/png/phantom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/png/phantom.png -------------------------------------------------------------------------------- /src/static/svg/Lido.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/Lido.svg -------------------------------------------------------------------------------- /src/static/svg/LidoBg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/LidoBg.svg -------------------------------------------------------------------------------- /src/static/svg/Marinade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/Marinade.svg -------------------------------------------------------------------------------- /src/static/svg/MathWallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/MathWallet.svg -------------------------------------------------------------------------------- /src/static/svg/Warrning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/Warrning.svg -------------------------------------------------------------------------------- /src/static/svg/accColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/accColor.svg -------------------------------------------------------------------------------- /src/static/svg/accWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/accWhite.svg -------------------------------------------------------------------------------- /src/static/svg/burn_ic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/burn_ic.svg -------------------------------------------------------------------------------- /src/static/svg/clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/clear.svg -------------------------------------------------------------------------------- /src/static/svg/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/clock.svg -------------------------------------------------------------------------------- /src/static/svg/closeX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/closeX.svg -------------------------------------------------------------------------------- /src/static/svg/clover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/clover.svg -------------------------------------------------------------------------------- /src/static/svg/coin98.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/coin98.svg -------------------------------------------------------------------------------- /src/static/svg/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/copy.svg -------------------------------------------------------------------------------- /src/static/svg/depo_ic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/depo_ic.svg -------------------------------------------------------------------------------- /src/static/svg/devnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/devnet.svg -------------------------------------------------------------------------------- /src/static/svg/discord-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/discord-circle.svg -------------------------------------------------------------------------------- /src/static/svg/discord-ic-footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/discord-ic-footer.svg -------------------------------------------------------------------------------- /src/static/svg/exchangeColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/exchangeColor.svg -------------------------------------------------------------------------------- /src/static/svg/exchangeWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/exchangeWhite.svg -------------------------------------------------------------------------------- /src/static/svg/exclamation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/exclamation.svg -------------------------------------------------------------------------------- /src/static/svg/exclamationMark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/exclamationMark.svg -------------------------------------------------------------------------------- /src/static/svg/fee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/fee.svg -------------------------------------------------------------------------------- /src/static/svg/github-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/github-circle.svg -------------------------------------------------------------------------------- /src/static/svg/github-ic-footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/github-ic-footer.svg -------------------------------------------------------------------------------- /src/static/svg/horizontal_green_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/horizontal_green_white.svg -------------------------------------------------------------------------------- /src/static/svg/linkedin-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/linkedin-circle.svg -------------------------------------------------------------------------------- /src/static/svg/linkedin-ic-footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/linkedin-ic-footer.svg -------------------------------------------------------------------------------- /src/static/svg/logo-ic-footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/logo-ic-footer.svg -------------------------------------------------------------------------------- /src/static/svg/logo-ic-nav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/logo-ic-nav.svg -------------------------------------------------------------------------------- /src/static/svg/mSOL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/mSOL.svg -------------------------------------------------------------------------------- /src/static/svg/mainnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/mainnet.svg -------------------------------------------------------------------------------- /src/static/svg/mint_ic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/mint_ic.svg -------------------------------------------------------------------------------- /src/static/svg/nightly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/nightly.svg -------------------------------------------------------------------------------- /src/static/svg/nightlyConnect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/nightlyConnect.svg -------------------------------------------------------------------------------- /src/static/svg/output.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/output.svg -------------------------------------------------------------------------------- /src/static/svg/percent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/percent.svg -------------------------------------------------------------------------------- /src/static/svg/phantom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/phantom.svg -------------------------------------------------------------------------------- /src/static/svg/progress-faild.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/progress-faild.svg -------------------------------------------------------------------------------- /src/static/svg/progress-success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/progress-success.svg -------------------------------------------------------------------------------- /src/static/svg/questionMark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/questionMark.svg -------------------------------------------------------------------------------- /src/static/svg/questionMarkCircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/questionMarkCircle.svg -------------------------------------------------------------------------------- /src/static/svg/redExclamationMark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/redExclamationMark.svg -------------------------------------------------------------------------------- /src/static/svg/renBTC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/renBTC.svg -------------------------------------------------------------------------------- /src/static/svg/rewards.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/rewards.svg -------------------------------------------------------------------------------- /src/static/svg/rewards1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/rewards1.svg -------------------------------------------------------------------------------- /src/static/svg/rewards2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/rewards2.svg -------------------------------------------------------------------------------- /src/static/svg/rewards3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/rewards3.svg -------------------------------------------------------------------------------- /src/static/svg/send_ic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/send_ic.svg -------------------------------------------------------------------------------- /src/static/svg/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/slope.svg -------------------------------------------------------------------------------- /src/static/svg/sny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/sny.svg -------------------------------------------------------------------------------- /src/static/svg/solana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/solana.svg -------------------------------------------------------------------------------- /src/static/svg/solflare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/solflare.svg -------------------------------------------------------------------------------- /src/static/svg/sollet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/sollet.svg -------------------------------------------------------------------------------- /src/static/svg/stSOL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/stSOL.svg -------------------------------------------------------------------------------- /src/static/svg/stakeColor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/stakeColor.svg -------------------------------------------------------------------------------- /src/static/svg/stakeWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/stakeWhite.svg -------------------------------------------------------------------------------- /src/static/svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/star.svg -------------------------------------------------------------------------------- /src/static/svg/swap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/swap.svg -------------------------------------------------------------------------------- /src/static/svg/swapArrows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/swapArrows.svg -------------------------------------------------------------------------------- /src/static/svg/synthetifyError.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/synthetifyError.svg -------------------------------------------------------------------------------- /src/static/svg/telegram-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/telegram-circle.svg -------------------------------------------------------------------------------- /src/static/svg/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/telegram.svg -------------------------------------------------------------------------------- /src/static/svg/testnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/testnet.svg -------------------------------------------------------------------------------- /src/static/svg/twitter-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/twitter-circle.svg -------------------------------------------------------------------------------- /src/static/svg/twitter-ic-footer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/twitter-ic-footer.svg -------------------------------------------------------------------------------- /src/static/svg/whiteQuestionMarkCircle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/whiteQuestionMarkCircle.svg -------------------------------------------------------------------------------- /src/static/svg/withdraw_ic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/svg/withdraw_ic.svg -------------------------------------------------------------------------------- /src/static/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/static/theme.ts -------------------------------------------------------------------------------- /src/store/consts/borrowUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/consts/borrowUtils.tsx -------------------------------------------------------------------------------- /src/store/consts/idl/exchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/consts/idl/exchange.json -------------------------------------------------------------------------------- /src/store/consts/idl/manager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/consts/idl/manager.json -------------------------------------------------------------------------------- /src/store/consts/idl/pyth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/consts/idl/pyth.json -------------------------------------------------------------------------------- /src/store/consts/leverageUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/consts/leverageUtils.ts -------------------------------------------------------------------------------- /src/store/consts/static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/consts/static.ts -------------------------------------------------------------------------------- /src/store/consts/testAdmin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/consts/testAdmin.ts -------------------------------------------------------------------------------- /src/store/consts/uiUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/consts/uiUtils.ts -------------------------------------------------------------------------------- /src/store/consts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/consts/utils.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/middleware.ts -------------------------------------------------------------------------------- /src/store/reducers/exchange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/reducers/exchange.ts -------------------------------------------------------------------------------- /src/store/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/reducers/index.ts -------------------------------------------------------------------------------- /src/store/reducers/leverage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/reducers/leverage.ts -------------------------------------------------------------------------------- /src/store/reducers/snackbars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/reducers/snackbars.ts -------------------------------------------------------------------------------- /src/store/reducers/solanaConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/reducers/solanaConnection.ts -------------------------------------------------------------------------------- /src/store/reducers/solanaWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/reducers/solanaWallet.ts -------------------------------------------------------------------------------- /src/store/reducers/staking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/reducers/staking.ts -------------------------------------------------------------------------------- /src/store/reducers/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/reducers/stats.ts -------------------------------------------------------------------------------- /src/store/reducers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/reducers/types.ts -------------------------------------------------------------------------------- /src/store/reducers/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/reducers/ui.ts -------------------------------------------------------------------------------- /src/store/reducers/vault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/reducers/vault.ts -------------------------------------------------------------------------------- /src/store/sagas/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/sagas/connection.ts -------------------------------------------------------------------------------- /src/store/sagas/exchange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/sagas/exchange.ts -------------------------------------------------------------------------------- /src/store/sagas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/sagas/index.ts -------------------------------------------------------------------------------- /src/store/sagas/leverage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/sagas/leverage.ts -------------------------------------------------------------------------------- /src/store/sagas/oracle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/sagas/oracle.ts -------------------------------------------------------------------------------- /src/store/sagas/staking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/sagas/staking.ts -------------------------------------------------------------------------------- /src/store/sagas/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/sagas/stats.ts -------------------------------------------------------------------------------- /src/store/sagas/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/sagas/token.ts -------------------------------------------------------------------------------- /src/store/sagas/vault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/sagas/vault.ts -------------------------------------------------------------------------------- /src/store/sagas/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/sagas/wallet.ts -------------------------------------------------------------------------------- /src/store/selectors/exchange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/selectors/exchange.ts -------------------------------------------------------------------------------- /src/store/selectors/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/selectors/helpers.ts -------------------------------------------------------------------------------- /src/store/selectors/leverage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/selectors/leverage.ts -------------------------------------------------------------------------------- /src/store/selectors/snackbars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/selectors/snackbars.ts -------------------------------------------------------------------------------- /src/store/selectors/solanaConnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/selectors/solanaConnection.ts -------------------------------------------------------------------------------- /src/store/selectors/solanaWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/selectors/solanaWallet.ts -------------------------------------------------------------------------------- /src/store/selectors/staking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/selectors/staking.ts -------------------------------------------------------------------------------- /src/store/selectors/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/selectors/stats.ts -------------------------------------------------------------------------------- /src/store/selectors/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/selectors/ui.ts -------------------------------------------------------------------------------- /src/store/selectors/vault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/store/selectors/vault.ts -------------------------------------------------------------------------------- /src/tests/borrowUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/tests/borrowUtils.test.ts -------------------------------------------------------------------------------- /src/web3/adapters/clover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/web3/adapters/clover.ts -------------------------------------------------------------------------------- /src/web3/adapters/coin98.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/web3/adapters/coin98.ts -------------------------------------------------------------------------------- /src/web3/adapters/mathwallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/web3/adapters/mathwallet.ts -------------------------------------------------------------------------------- /src/web3/adapters/nightly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/web3/adapters/nightly.ts -------------------------------------------------------------------------------- /src/web3/adapters/nightlyconnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/web3/adapters/nightlyconnect.ts -------------------------------------------------------------------------------- /src/web3/adapters/phantom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/web3/adapters/phantom.ts -------------------------------------------------------------------------------- /src/web3/adapters/slope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/web3/adapters/slope.ts -------------------------------------------------------------------------------- /src/web3/adapters/solflare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/web3/adapters/solflare.ts -------------------------------------------------------------------------------- /src/web3/adapters/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/web3/adapters/types.ts -------------------------------------------------------------------------------- /src/web3/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/web3/connection.ts -------------------------------------------------------------------------------- /src/web3/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/web3/data.ts -------------------------------------------------------------------------------- /src/web3/programs/exchange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/web3/programs/exchange.ts -------------------------------------------------------------------------------- /src/web3/programs/oracle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/web3/programs/oracle.ts -------------------------------------------------------------------------------- /src/web3/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/src/web3/wallet.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.paths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/tsconfig.paths.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Synthetify/synthetify-webapp/HEAD/yarn.lock --------------------------------------------------------------------------------