├── .env.development ├── .env.production ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── .tool-versions ├── README.md ├── components.json ├── docs ├── CONTRIBUTING.md ├── features.md ├── setup.md └── swap.png ├── new-types.d.ts ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public ├── .gitkeep └── assets │ └── logos │ ├── social-media │ ├── discord.svg │ ├── farcast.svg │ ├── github.svg │ └── x.svg │ ├── solana │ ├── solana-bg-black.png │ ├── solana-branco.svg │ ├── solana-cyan.png │ ├── solana-logo.svg │ ├── solana.png │ └── solana.svg │ └── space │ ├── name_logo.png │ └── space_logo_tiny.png ├── src ├── app │ ├── [...not_found] │ │ └── page.tsx │ ├── api │ │ └── axios.ts │ ├── apple-icon.png │ ├── astronomy │ │ └── page.tsx │ ├── dashboard │ │ └── page.tsx │ ├── favicon.ico │ ├── fonts │ │ ├── Architype_Bayer.woff2 │ │ └── config.ts │ ├── globals.css │ ├── icon.ico │ ├── icon.png │ ├── layout.tsx │ ├── material-symbols.css │ ├── not-found.tsx │ ├── page.tsx │ └── soon │ │ └── page.tsx ├── components │ ├── footer │ │ └── Footer.tsx │ ├── header │ │ └── Header.tsx │ ├── layout │ │ ├── EnvProvider.tsx │ │ └── SwapWidget.tsx │ ├── placeholder │ │ └── Placeholder.tsx │ ├── theme │ │ └── MantineThemeProvider.tsx │ ├── trade │ │ ├── InverterButton.tsx │ │ ├── TokenSelector.tsx │ │ ├── TokenSelectorButton.tsx │ │ ├── WidgetTabs.tsx │ │ ├── WidgetTitle.tsx │ │ ├── limit │ │ │ ├── LimitForm.tsx │ │ │ ├── LimitPrice.tsx │ │ │ └── SelectTime.tsx │ │ ├── orders │ │ │ └── TableOrders.tsx │ │ ├── swap │ │ │ ├── AdditionalInfo.tsx │ │ │ ├── SubmitButton.tsx │ │ │ ├── SwapProvider.tsx │ │ │ ├── SwapTradeForm.tsx │ │ │ └── TradeSelectors.tsx │ │ └── token-list-modal │ │ │ ├── TokenListItem.tsx │ │ │ └── TokenListModal.tsx │ ├── ui │ │ └── button.tsx │ ├── utils │ │ ├── BasicPage.tsx │ │ ├── Container.tsx │ │ ├── Title.tsx │ │ ├── TransactionMessage.tsx │ │ ├── Underscore.tsx │ │ └── WarningMev.tsx │ └── wallet-connect │ │ ├── AppWalletProvider.tsx │ │ ├── WalletConnectionButton.tsx │ │ └── WalletNotification.tsx ├── hooks │ ├── useBalance.ts │ ├── useDebounce.ts │ ├── useFilteredTokens.ts │ ├── useInvertAmounts.ts │ ├── useJupiterQuotes.ts │ ├── useMarketPrices.ts │ ├── useNonceAccount.ts │ ├── useOrderTransaction.ts │ ├── usePdaAccount.ts │ ├── useSignMessage.ts │ ├── useSolBalance.ts │ ├── useSubmitLimitOrder.ts │ ├── useTokenAccountBalance.ts │ ├── useTokenList.ts │ ├── useTokensBalances.ts │ ├── useTokensWithBalance.ts │ └── useTransferSol.ts └── lib │ ├── constants.ts │ ├── interfaces │ ├── OrderStatus.ts │ ├── env.ts │ ├── react.ts │ ├── tokenAccounts.ts │ └── tokensList.ts │ ├── tokenPriceFeedIds.ts │ ├── tokenlist.ts │ └── utils.ts ├── tailwind.config.ts ├── tests ├── .gitkeep └── fixtures │ ├── batches.json │ └── intents.json ├── tsconfig.json └── vitest.config.ts /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/.env.development -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/.env.production -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 21.7.1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/components.json -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/docs/setup.md -------------------------------------------------------------------------------- /docs/swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/docs/swap.png -------------------------------------------------------------------------------- /new-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/new-types.d.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/logos/social-media/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/public/assets/logos/social-media/discord.svg -------------------------------------------------------------------------------- /public/assets/logos/social-media/farcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/public/assets/logos/social-media/farcast.svg -------------------------------------------------------------------------------- /public/assets/logos/social-media/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/public/assets/logos/social-media/github.svg -------------------------------------------------------------------------------- /public/assets/logos/social-media/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/public/assets/logos/social-media/x.svg -------------------------------------------------------------------------------- /public/assets/logos/solana/solana-bg-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/public/assets/logos/solana/solana-bg-black.png -------------------------------------------------------------------------------- /public/assets/logos/solana/solana-branco.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/public/assets/logos/solana/solana-branco.svg -------------------------------------------------------------------------------- /public/assets/logos/solana/solana-cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/public/assets/logos/solana/solana-cyan.png -------------------------------------------------------------------------------- /public/assets/logos/solana/solana-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/public/assets/logos/solana/solana-logo.svg -------------------------------------------------------------------------------- /public/assets/logos/solana/solana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/public/assets/logos/solana/solana.png -------------------------------------------------------------------------------- /public/assets/logos/solana/solana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/public/assets/logos/solana/solana.svg -------------------------------------------------------------------------------- /public/assets/logos/space/name_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/public/assets/logos/space/name_logo.png -------------------------------------------------------------------------------- /public/assets/logos/space/space_logo_tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/public/assets/logos/space/space_logo_tiny.png -------------------------------------------------------------------------------- /src/app/[...not_found]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/app/[...not_found]/page.tsx -------------------------------------------------------------------------------- /src/app/api/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/app/api/axios.ts -------------------------------------------------------------------------------- /src/app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/app/apple-icon.png -------------------------------------------------------------------------------- /src/app/astronomy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/app/astronomy/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/fonts/Architype_Bayer.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/app/fonts/Architype_Bayer.woff2 -------------------------------------------------------------------------------- /src/app/fonts/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/app/fonts/config.ts -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/app/icon.ico -------------------------------------------------------------------------------- /src/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/app/icon.png -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/material-symbols.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/app/material-symbols.css -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/soon/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/app/soon/page.tsx -------------------------------------------------------------------------------- /src/components/footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/header/Header.tsx -------------------------------------------------------------------------------- /src/components/layout/EnvProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/layout/EnvProvider.tsx -------------------------------------------------------------------------------- /src/components/layout/SwapWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/layout/SwapWidget.tsx -------------------------------------------------------------------------------- /src/components/placeholder/Placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/placeholder/Placeholder.tsx -------------------------------------------------------------------------------- /src/components/theme/MantineThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/theme/MantineThemeProvider.tsx -------------------------------------------------------------------------------- /src/components/trade/InverterButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/trade/InverterButton.tsx -------------------------------------------------------------------------------- /src/components/trade/TokenSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/trade/TokenSelector.tsx -------------------------------------------------------------------------------- /src/components/trade/TokenSelectorButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/trade/TokenSelectorButton.tsx -------------------------------------------------------------------------------- /src/components/trade/WidgetTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/trade/WidgetTabs.tsx -------------------------------------------------------------------------------- /src/components/trade/WidgetTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/trade/WidgetTitle.tsx -------------------------------------------------------------------------------- /src/components/trade/limit/LimitForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/trade/limit/LimitForm.tsx -------------------------------------------------------------------------------- /src/components/trade/limit/LimitPrice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/trade/limit/LimitPrice.tsx -------------------------------------------------------------------------------- /src/components/trade/limit/SelectTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/trade/limit/SelectTime.tsx -------------------------------------------------------------------------------- /src/components/trade/orders/TableOrders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/trade/orders/TableOrders.tsx -------------------------------------------------------------------------------- /src/components/trade/swap/AdditionalInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/trade/swap/AdditionalInfo.tsx -------------------------------------------------------------------------------- /src/components/trade/swap/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/trade/swap/SubmitButton.tsx -------------------------------------------------------------------------------- /src/components/trade/swap/SwapProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/trade/swap/SwapProvider.tsx -------------------------------------------------------------------------------- /src/components/trade/swap/SwapTradeForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/trade/swap/SwapTradeForm.tsx -------------------------------------------------------------------------------- /src/components/trade/swap/TradeSelectors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/trade/swap/TradeSelectors.tsx -------------------------------------------------------------------------------- /src/components/trade/token-list-modal/TokenListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/trade/token-list-modal/TokenListItem.tsx -------------------------------------------------------------------------------- /src/components/trade/token-list-modal/TokenListModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/trade/token-list-modal/TokenListModal.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/utils/BasicPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/utils/BasicPage.tsx -------------------------------------------------------------------------------- /src/components/utils/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/utils/Container.tsx -------------------------------------------------------------------------------- /src/components/utils/Title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/utils/Title.tsx -------------------------------------------------------------------------------- /src/components/utils/TransactionMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/utils/TransactionMessage.tsx -------------------------------------------------------------------------------- /src/components/utils/Underscore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/utils/Underscore.tsx -------------------------------------------------------------------------------- /src/components/utils/WarningMev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/utils/WarningMev.tsx -------------------------------------------------------------------------------- /src/components/wallet-connect/AppWalletProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/wallet-connect/AppWalletProvider.tsx -------------------------------------------------------------------------------- /src/components/wallet-connect/WalletConnectionButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/wallet-connect/WalletConnectionButton.tsx -------------------------------------------------------------------------------- /src/components/wallet-connect/WalletNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/components/wallet-connect/WalletNotification.tsx -------------------------------------------------------------------------------- /src/hooks/useBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/hooks/useBalance.ts -------------------------------------------------------------------------------- /src/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/hooks/useDebounce.ts -------------------------------------------------------------------------------- /src/hooks/useFilteredTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/hooks/useFilteredTokens.ts -------------------------------------------------------------------------------- /src/hooks/useInvertAmounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/hooks/useInvertAmounts.ts -------------------------------------------------------------------------------- /src/hooks/useJupiterQuotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/hooks/useJupiterQuotes.ts -------------------------------------------------------------------------------- /src/hooks/useMarketPrices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/hooks/useMarketPrices.ts -------------------------------------------------------------------------------- /src/hooks/useNonceAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/hooks/useNonceAccount.ts -------------------------------------------------------------------------------- /src/hooks/useOrderTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/hooks/useOrderTransaction.ts -------------------------------------------------------------------------------- /src/hooks/usePdaAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/hooks/usePdaAccount.ts -------------------------------------------------------------------------------- /src/hooks/useSignMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/hooks/useSignMessage.ts -------------------------------------------------------------------------------- /src/hooks/useSolBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/hooks/useSolBalance.ts -------------------------------------------------------------------------------- /src/hooks/useSubmitLimitOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/hooks/useSubmitLimitOrder.ts -------------------------------------------------------------------------------- /src/hooks/useTokenAccountBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/hooks/useTokenAccountBalance.ts -------------------------------------------------------------------------------- /src/hooks/useTokenList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/hooks/useTokenList.ts -------------------------------------------------------------------------------- /src/hooks/useTokensBalances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/hooks/useTokensBalances.ts -------------------------------------------------------------------------------- /src/hooks/useTokensWithBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/hooks/useTokensWithBalance.ts -------------------------------------------------------------------------------- /src/hooks/useTransferSol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/hooks/useTransferSol.ts -------------------------------------------------------------------------------- /src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/lib/constants.ts -------------------------------------------------------------------------------- /src/lib/interfaces/OrderStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/lib/interfaces/OrderStatus.ts -------------------------------------------------------------------------------- /src/lib/interfaces/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/lib/interfaces/env.ts -------------------------------------------------------------------------------- /src/lib/interfaces/react.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/lib/interfaces/react.ts -------------------------------------------------------------------------------- /src/lib/interfaces/tokenAccounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/lib/interfaces/tokenAccounts.ts -------------------------------------------------------------------------------- /src/lib/interfaces/tokensList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/lib/interfaces/tokensList.ts -------------------------------------------------------------------------------- /src/lib/tokenPriceFeedIds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/lib/tokenPriceFeedIds.ts -------------------------------------------------------------------------------- /src/lib/tokenlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/lib/tokenlist.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/batches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/tests/fixtures/batches.json -------------------------------------------------------------------------------- /tests/fixtures/intents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/tests/fixtures/intents.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urani-trade/urani-swap-ts/HEAD/vitest.config.ts --------------------------------------------------------------------------------