├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── feature-request.yml └── workflows │ └── release.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── .idea └── workspace.xml ├── .prettierrc ├── .releaserc.json ├── .vscode └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── INSTALL.md ├── LICENSE ├── README.md ├── commitlint.config.js ├── eslint.config.mjs ├── lint-staged.config.js ├── next.config.ts ├── package.json ├── postcss.config.js ├── postcss.config.mjs ├── prisma ├── migrations │ ├── 20250403144937_init │ │ └── migration.sql │ ├── 20250425072742_update_user_tier_usage │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public ├── Solana_logo.png ├── app-screenshot-mobile.png ├── app-screenshot.png ├── default_wallet.svg ├── file.svg ├── icons │ ├── maskable-icon-512x512.png │ ├── pwa-180x180.png │ ├── pwa-192x192.png │ ├── pwa-512x512.png │ └── pwa-64x64.png ├── logo.png ├── logo.svg ├── lulo.png ├── manifest.json ├── offline.html ├── phantom-icon.svg ├── qr.png ├── sola_black_logo.svg ├── solscan.png └── window.svg ├── sentry.client.config.ts ├── sentry.edge.config.ts ├── sentry.server.config.ts ├── src ├── adapters │ └── ConnectedPhantomWallet.ts ├── app │ ├── _components │ │ ├── MainContent.tsx │ │ ├── MobileContent.tsx │ │ ├── ThemeInitializer.tsx │ │ ├── TopBar.tsx │ │ └── onboarding │ │ │ ├── BackgroundPatterns.tsx │ │ │ ├── BentoGrid.tsx │ │ │ ├── Footer.tsx │ │ │ ├── Hero.tsx │ │ │ ├── MobileDownloadInstructions.tsx │ │ │ ├── Onboarding.tsx │ │ │ └── OnboardingHeader.tsx │ ├── api │ │ ├── chat │ │ │ └── route.ts │ │ ├── get-required-toolsets │ │ │ └── route.ts │ │ ├── memecointracker │ │ │ └── twitterTrending │ │ │ │ └── route.ts │ │ ├── speech-to-text │ │ │ └── route.ts │ │ └── wallet │ │ │ ├── blockhash │ │ │ └── route.ts │ │ │ ├── createTransactionWithPriority │ │ │ └── route.ts │ │ │ ├── fetchTokens │ │ │ └── route.ts │ │ │ ├── getTransaction │ │ │ └── route.ts │ │ │ ├── prepareSplTransfer │ │ │ └── route.ts │ │ │ ├── rent-exemption │ │ │ └── route.ts │ │ │ ├── resolve-domain │ │ │ └── route.ts │ │ │ ├── sendTransaction │ │ │ └── route.ts │ │ │ └── stake-accounts │ │ │ ├── [address] │ │ │ └── route.ts │ │ │ └── route.ts │ ├── apple-icon.png │ ├── dashboard │ │ ├── _components │ │ │ ├── MasterLayout.tsx │ │ │ ├── SessionVerificationModal.tsx │ │ │ ├── dashboards │ │ │ │ ├── DashboardContainer.tsx │ │ │ │ ├── goatIndexDashboard │ │ │ │ │ ├── GithubSummaryCard.tsx │ │ │ │ │ ├── GoatIndexDashboard.tsx │ │ │ │ │ ├── MetricsSummaryCard.tsx │ │ │ │ │ ├── ProjectSummaryCard.tsx │ │ │ │ │ └── TweetsSummaryCard.tsx │ │ │ │ └── tokenDataDashboard │ │ │ │ │ ├── TokenChartCard.tsx │ │ │ │ │ ├── TokenDataDashboard.tsx │ │ │ │ │ ├── TokenMetricsCard.tsx │ │ │ │ │ └── TokenSummaryCard.tsx │ │ │ ├── settings │ │ │ │ ├── AiConfigSettings.tsx │ │ │ │ ├── SettingsPopup.tsx │ │ │ │ ├── ThemeSelector.tsx │ │ │ │ ├── ThemeSettings.tsx │ │ │ │ ├── TierSettings.tsx │ │ │ │ ├── UserSettings.tsx │ │ │ │ └── WalletSettings.tsx │ │ │ ├── sidebar │ │ │ │ ├── EditRoom.tsx │ │ │ │ ├── ProfileDropDown.tsx │ │ │ │ └── SideBar.tsx │ │ │ └── wallet │ │ │ │ ├── CoinsSortDropDown.tsx │ │ │ │ ├── PaginationCountDropDown.tsx │ │ │ │ ├── WalletCoinAssets.tsx │ │ │ │ ├── WalletLensButton.tsx │ │ │ │ ├── WalletLensSideBar.tsx │ │ │ │ ├── WalletNFTAssets.tsx │ │ │ │ └── WalletPicker.tsx │ │ ├── chat │ │ │ ├── [id] │ │ │ │ └── page.tsx │ │ │ ├── _components │ │ │ │ ├── AudioVisualizer.tsx │ │ │ │ ├── ChatControlsWrapper.tsx │ │ │ │ ├── ChatMessages.tsx │ │ │ │ ├── InfoText.tsx │ │ │ │ └── SessionControls.tsx │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ └── layout.tsx │ ├── favicon.ico │ ├── global-error.tsx │ ├── globals.css │ ├── icon.png │ ├── layout.tsx │ ├── manifest.ts │ ├── page.tsx │ ├── refresh │ │ ├── RefreshToken.tsx │ │ └── page.tsx │ ├── service-worker.ts │ └── terms │ │ └── page.tsx ├── components │ ├── common │ │ ├── AnimatedButton.tsx │ │ ├── Button.tsx │ │ ├── Card.tsx │ │ ├── DropDown.tsx │ │ ├── Input.tsx │ │ ├── MaskedRevealLoader.tsx │ │ ├── PageLoading.tsx │ │ ├── Pill.tsx │ │ ├── PushableButton.tsx │ │ ├── SkeletonWave.tsx │ │ └── SolaLogo.tsx │ └── messages │ │ ├── AiProjectsMessageItem.tsx │ │ ├── BubbleMapMessageItem.tsx │ │ ├── BugReportMessageItem.tsx │ │ ├── CreateLimitOrderMessageItem.tsx │ │ ├── ErrorMessageItem.tsx │ │ ├── FeatureRequestMessageItem.tsx │ │ ├── LuloAssetsMessageItem.tsx │ │ ├── NFTCollectionMessageItem.tsx │ │ ├── NativeStakeMessageItem.tsx │ │ ├── NativeUnstakeMessageItem.tsx │ │ ├── NativeWithdrawMessageItem.tsx │ │ ├── SNSResolverMessageItem.tsx │ │ ├── ShowLimitOrderMessageItem.tsx │ │ ├── SignedTransactionsMessageItem.tsx │ │ ├── SimpleMessageItem.tsx │ │ ├── StakeStatusMessageItem.tsx │ │ ├── SwapTokenMessageItem.tsx │ │ ├── ThemeChangeMessageItem.tsx │ │ ├── TokenAddressResultMessageItem.tsx │ │ ├── TokenDataMessageItem.tsx │ │ ├── TopHoldersMessageItem.tsx │ │ ├── TopXstocksMessageItem.tsx │ │ ├── TransferTokenMessageItem.tsx │ │ ├── TrendingNFTMessageItem.tsx │ │ ├── UserDetailsMessageItem.tsx │ │ ├── UserInput.tsx │ │ ├── ValidatorsMessageItem.tsx │ │ ├── ViewStakesMessageItem.tsx │ │ ├── base │ │ ├── BaseBorderedMessageItem.tsx │ │ ├── BaseExpandableMessageItem.tsx │ │ ├── BaseGridMessageItem.tsx │ │ ├── BaseStatusMessageItem.tsx │ │ └── SimpleMessageItem.tsx │ │ └── general │ │ ├── BaseGridChatItem.tsx │ │ └── MarkDownRenderer.tsx ├── config │ ├── ai.ts │ ├── api_urls.ts │ ├── investmentTypes.ts │ ├── themes.json │ ├── tierMapping.ts │ └── tokenMapping.ts ├── hooks │ ├── chat │ │ ├── useAudioPlayer.ts │ │ ├── useChatMessages.ts │ │ └── useScrollBehavior.ts │ ├── useAudioRecorder.ts │ ├── useKeyboardHeight.ts │ └── usePwaStatus.ts ├── instrumentation.ts ├── lib │ ├── ApiClient.ts │ ├── db │ │ └── db.ts │ ├── messageRenderer.tsx │ ├── prisma.ts │ └── server │ │ ├── authAndUsage.ts │ │ ├── isMobileClient.ts │ │ ├── userSession.ts │ │ └── userTier.ts ├── middleware.ts ├── providers │ ├── AuthProvider.tsx │ ├── ChatContextProvider.tsx │ ├── ChatNavigationProvider.tsx │ ├── LayoutProvider.tsx │ ├── ReduxProvider.tsx │ ├── SessionProvider.tsx │ └── WalletProvider.tsx ├── redux │ ├── features │ │ └── user │ │ │ └── tier.ts │ ├── hook.ts │ └── store.ts ├── services │ └── PhantomWalletService.ts ├── store │ ├── ChatMessageHandler.ts │ ├── ChatRoomHandler.ts │ ├── CreditHandler.ts │ ├── SessionHandler.ts │ ├── SessionManagerHandler.ts │ ├── SettingsHandler.ts │ ├── ThemeManager.ts │ ├── UserHandler.ts │ └── WalletHandler.ts ├── tools │ ├── aiProjectsToolSet │ │ ├── filterTrendingAiProjectsTool.ts │ │ └── index.ts │ ├── commonToolSet │ │ ├── getUserInfo.ts │ │ ├── index.ts │ │ └── tokenAddress.ts │ ├── luloToolSet │ │ ├── depositLulo.ts │ │ ├── getLuloAssets.ts │ │ ├── index.ts │ │ └── withdrawLulo.ts │ ├── managementToolSet │ │ ├── changeThemeTool.ts │ │ ├── index.ts │ │ ├── reportBugTool.ts │ │ └── requestFeatureTool.ts │ ├── nftToolSet │ │ ├── getNFTPrice.ts │ │ ├── getTrendingNFTs.ts │ │ └── index.ts │ ├── onChainToolSet │ │ ├── index.ts │ │ ├── resolveSnsName.ts │ │ ├── swapTokens.ts │ │ ├── transferSolTx.ts │ │ └── transferSpl.ts │ ├── tokenToolSet │ │ ├── bubblemaps.ts │ │ ├── getLimitOrder.ts │ │ ├── getTokenData.ts │ │ ├── index.ts │ │ ├── limitOrder.ts │ │ └── topHolders.ts │ └── toolsetChooser.ts ├── types │ ├── api.ts │ ├── chatRoom.ts │ ├── goatIndex.ts │ ├── jupiter.ts │ ├── lulo.ts │ ├── nft.ts │ ├── request.ts │ ├── response.ts │ ├── schemas │ │ ├── solaBalanceSchema.ts │ │ └── verifyTierSchema.ts │ ├── staking.ts │ ├── tier.ts │ ├── token.ts │ ├── tool.ts │ ├── transaction.ts │ ├── wallet.ts │ └── xstocks.ts └── utils │ ├── cn.ts │ ├── formatNumber.ts │ ├── hexToRGB.ts │ ├── isMobile.tsx │ ├── messageRenderer.tsx │ ├── randomID.ts │ ├── titleCase.ts │ └── version.ts ├── tailwind.config.js ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/.prettierrc -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/.releaserc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/postcss.config.js -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/migrations/20250403144937_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/prisma/migrations/20250403144937_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20250425072742_update_user_tier_usage/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/prisma/migrations/20250425072742_update_user_tier_usage/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/Solana_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/Solana_logo.png -------------------------------------------------------------------------------- /public/app-screenshot-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/app-screenshot-mobile.png -------------------------------------------------------------------------------- /public/app-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/app-screenshot.png -------------------------------------------------------------------------------- /public/default_wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/default_wallet.svg -------------------------------------------------------------------------------- /public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/file.svg -------------------------------------------------------------------------------- /public/icons/maskable-icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/icons/maskable-icon-512x512.png -------------------------------------------------------------------------------- /public/icons/pwa-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/icons/pwa-180x180.png -------------------------------------------------------------------------------- /public/icons/pwa-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/icons/pwa-192x192.png -------------------------------------------------------------------------------- /public/icons/pwa-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/icons/pwa-512x512.png -------------------------------------------------------------------------------- /public/icons/pwa-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/icons/pwa-64x64.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/lulo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/lulo.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/offline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/offline.html -------------------------------------------------------------------------------- /public/phantom-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/phantom-icon.svg -------------------------------------------------------------------------------- /public/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/qr.png -------------------------------------------------------------------------------- /public/sola_black_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/sola_black_logo.svg -------------------------------------------------------------------------------- /public/solscan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/solscan.png -------------------------------------------------------------------------------- /public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/public/window.svg -------------------------------------------------------------------------------- /sentry.client.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/sentry.client.config.ts -------------------------------------------------------------------------------- /sentry.edge.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/sentry.edge.config.ts -------------------------------------------------------------------------------- /sentry.server.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/sentry.server.config.ts -------------------------------------------------------------------------------- /src/adapters/ConnectedPhantomWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/adapters/ConnectedPhantomWallet.ts -------------------------------------------------------------------------------- /src/app/_components/MainContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/_components/MainContent.tsx -------------------------------------------------------------------------------- /src/app/_components/MobileContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/_components/MobileContent.tsx -------------------------------------------------------------------------------- /src/app/_components/ThemeInitializer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/_components/ThemeInitializer.tsx -------------------------------------------------------------------------------- /src/app/_components/TopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/_components/TopBar.tsx -------------------------------------------------------------------------------- /src/app/_components/onboarding/BackgroundPatterns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/_components/onboarding/BackgroundPatterns.tsx -------------------------------------------------------------------------------- /src/app/_components/onboarding/BentoGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/_components/onboarding/BentoGrid.tsx -------------------------------------------------------------------------------- /src/app/_components/onboarding/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/_components/onboarding/Footer.tsx -------------------------------------------------------------------------------- /src/app/_components/onboarding/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/_components/onboarding/Hero.tsx -------------------------------------------------------------------------------- /src/app/_components/onboarding/MobileDownloadInstructions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/_components/onboarding/MobileDownloadInstructions.tsx -------------------------------------------------------------------------------- /src/app/_components/onboarding/Onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/_components/onboarding/Onboarding.tsx -------------------------------------------------------------------------------- /src/app/_components/onboarding/OnboardingHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/_components/onboarding/OnboardingHeader.tsx -------------------------------------------------------------------------------- /src/app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/api/chat/route.ts -------------------------------------------------------------------------------- /src/app/api/get-required-toolsets/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/api/get-required-toolsets/route.ts -------------------------------------------------------------------------------- /src/app/api/memecointracker/twitterTrending/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/api/memecointracker/twitterTrending/route.ts -------------------------------------------------------------------------------- /src/app/api/speech-to-text/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/api/speech-to-text/route.ts -------------------------------------------------------------------------------- /src/app/api/wallet/blockhash/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/api/wallet/blockhash/route.ts -------------------------------------------------------------------------------- /src/app/api/wallet/createTransactionWithPriority/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/api/wallet/createTransactionWithPriority/route.ts -------------------------------------------------------------------------------- /src/app/api/wallet/fetchTokens/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/api/wallet/fetchTokens/route.ts -------------------------------------------------------------------------------- /src/app/api/wallet/getTransaction/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/api/wallet/getTransaction/route.ts -------------------------------------------------------------------------------- /src/app/api/wallet/prepareSplTransfer/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/api/wallet/prepareSplTransfer/route.ts -------------------------------------------------------------------------------- /src/app/api/wallet/rent-exemption/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/api/wallet/rent-exemption/route.ts -------------------------------------------------------------------------------- /src/app/api/wallet/resolve-domain/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/api/wallet/resolve-domain/route.ts -------------------------------------------------------------------------------- /src/app/api/wallet/sendTransaction/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/api/wallet/sendTransaction/route.ts -------------------------------------------------------------------------------- /src/app/api/wallet/stake-accounts/[address]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/api/wallet/stake-accounts/[address]/route.ts -------------------------------------------------------------------------------- /src/app/api/wallet/stake-accounts/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/api/wallet/stake-accounts/route.ts -------------------------------------------------------------------------------- /src/app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/apple-icon.png -------------------------------------------------------------------------------- /src/app/dashboard/_components/MasterLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/MasterLayout.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/SessionVerificationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/SessionVerificationModal.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/dashboards/DashboardContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/dashboards/DashboardContainer.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/dashboards/goatIndexDashboard/GithubSummaryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/dashboards/goatIndexDashboard/GithubSummaryCard.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/dashboards/goatIndexDashboard/GoatIndexDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/dashboards/goatIndexDashboard/GoatIndexDashboard.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/dashboards/goatIndexDashboard/MetricsSummaryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/dashboards/goatIndexDashboard/MetricsSummaryCard.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/dashboards/goatIndexDashboard/ProjectSummaryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/dashboards/goatIndexDashboard/ProjectSummaryCard.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/dashboards/goatIndexDashboard/TweetsSummaryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/dashboards/goatIndexDashboard/TweetsSummaryCard.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/dashboards/tokenDataDashboard/TokenChartCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/dashboards/tokenDataDashboard/TokenChartCard.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/dashboards/tokenDataDashboard/TokenDataDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/dashboards/tokenDataDashboard/TokenDataDashboard.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/dashboards/tokenDataDashboard/TokenMetricsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/dashboards/tokenDataDashboard/TokenMetricsCard.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/dashboards/tokenDataDashboard/TokenSummaryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/dashboards/tokenDataDashboard/TokenSummaryCard.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/settings/AiConfigSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/settings/AiConfigSettings.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/settings/SettingsPopup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/settings/SettingsPopup.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/settings/ThemeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/settings/ThemeSelector.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/settings/ThemeSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/settings/ThemeSettings.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/settings/TierSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/settings/TierSettings.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/settings/UserSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/settings/UserSettings.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/settings/WalletSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/settings/WalletSettings.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/sidebar/EditRoom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/sidebar/EditRoom.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/sidebar/ProfileDropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/sidebar/ProfileDropDown.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/sidebar/SideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/sidebar/SideBar.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/wallet/CoinsSortDropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/wallet/CoinsSortDropDown.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/wallet/PaginationCountDropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/wallet/PaginationCountDropDown.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/wallet/WalletCoinAssets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/wallet/WalletCoinAssets.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/wallet/WalletLensButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/wallet/WalletLensButton.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/wallet/WalletLensSideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/wallet/WalletLensSideBar.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/wallet/WalletNFTAssets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/wallet/WalletNFTAssets.tsx -------------------------------------------------------------------------------- /src/app/dashboard/_components/wallet/WalletPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/_components/wallet/WalletPicker.tsx -------------------------------------------------------------------------------- /src/app/dashboard/chat/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/chat/[id]/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/chat/_components/AudioVisualizer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/chat/_components/AudioVisualizer.tsx -------------------------------------------------------------------------------- /src/app/dashboard/chat/_components/ChatControlsWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/chat/_components/ChatControlsWrapper.tsx -------------------------------------------------------------------------------- /src/app/dashboard/chat/_components/ChatMessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/chat/_components/ChatMessages.tsx -------------------------------------------------------------------------------- /src/app/dashboard/chat/_components/InfoText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/chat/_components/InfoText.tsx -------------------------------------------------------------------------------- /src/app/dashboard/chat/_components/SessionControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/chat/_components/SessionControls.tsx -------------------------------------------------------------------------------- /src/app/dashboard/chat/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/chat/layout.tsx -------------------------------------------------------------------------------- /src/app/dashboard/chat/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/chat/page.tsx -------------------------------------------------------------------------------- /src/app/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/dashboard/layout.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/global-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/global-error.tsx -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/icon.png -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/manifest.ts -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/refresh/RefreshToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/refresh/RefreshToken.tsx -------------------------------------------------------------------------------- /src/app/refresh/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/refresh/page.tsx -------------------------------------------------------------------------------- /src/app/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/service-worker.ts -------------------------------------------------------------------------------- /src/app/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/app/terms/page.tsx -------------------------------------------------------------------------------- /src/components/common/AnimatedButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/common/AnimatedButton.tsx -------------------------------------------------------------------------------- /src/components/common/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/common/Button.tsx -------------------------------------------------------------------------------- /src/components/common/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/common/Card.tsx -------------------------------------------------------------------------------- /src/components/common/DropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/common/DropDown.tsx -------------------------------------------------------------------------------- /src/components/common/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/common/Input.tsx -------------------------------------------------------------------------------- /src/components/common/MaskedRevealLoader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/common/MaskedRevealLoader.tsx -------------------------------------------------------------------------------- /src/components/common/PageLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/common/PageLoading.tsx -------------------------------------------------------------------------------- /src/components/common/Pill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/common/Pill.tsx -------------------------------------------------------------------------------- /src/components/common/PushableButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/common/PushableButton.tsx -------------------------------------------------------------------------------- /src/components/common/SkeletonWave.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/common/SkeletonWave.tsx -------------------------------------------------------------------------------- /src/components/common/SolaLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/common/SolaLogo.tsx -------------------------------------------------------------------------------- /src/components/messages/AiProjectsMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/AiProjectsMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/BubbleMapMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/BubbleMapMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/BugReportMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/BugReportMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/CreateLimitOrderMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/CreateLimitOrderMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/ErrorMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/ErrorMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/FeatureRequestMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/FeatureRequestMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/LuloAssetsMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/LuloAssetsMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/NFTCollectionMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/NFTCollectionMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/NativeStakeMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/NativeStakeMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/NativeUnstakeMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/NativeUnstakeMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/NativeWithdrawMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/NativeWithdrawMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/SNSResolverMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/SNSResolverMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/ShowLimitOrderMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/ShowLimitOrderMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/SignedTransactionsMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/SignedTransactionsMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/SimpleMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/SimpleMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/StakeStatusMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/StakeStatusMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/SwapTokenMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/SwapTokenMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/ThemeChangeMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/ThemeChangeMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/TokenAddressResultMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/TokenAddressResultMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/TokenDataMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/TokenDataMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/TopHoldersMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/TopHoldersMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/TopXstocksMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/TopXstocksMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/TransferTokenMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/TransferTokenMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/TrendingNFTMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/TrendingNFTMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/UserDetailsMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/UserDetailsMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/UserInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/UserInput.tsx -------------------------------------------------------------------------------- /src/components/messages/ValidatorsMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/ValidatorsMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/ViewStakesMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/ViewStakesMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/base/BaseBorderedMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/base/BaseBorderedMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/base/BaseExpandableMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/base/BaseExpandableMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/base/BaseGridMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/base/BaseGridMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/base/BaseStatusMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/base/BaseStatusMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/base/SimpleMessageItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/base/SimpleMessageItem.tsx -------------------------------------------------------------------------------- /src/components/messages/general/BaseGridChatItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/general/BaseGridChatItem.tsx -------------------------------------------------------------------------------- /src/components/messages/general/MarkDownRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/components/messages/general/MarkDownRenderer.tsx -------------------------------------------------------------------------------- /src/config/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/config/ai.ts -------------------------------------------------------------------------------- /src/config/api_urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/config/api_urls.ts -------------------------------------------------------------------------------- /src/config/investmentTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/config/investmentTypes.ts -------------------------------------------------------------------------------- /src/config/themes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/config/themes.json -------------------------------------------------------------------------------- /src/config/tierMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/config/tierMapping.ts -------------------------------------------------------------------------------- /src/config/tokenMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/config/tokenMapping.ts -------------------------------------------------------------------------------- /src/hooks/chat/useAudioPlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/hooks/chat/useAudioPlayer.ts -------------------------------------------------------------------------------- /src/hooks/chat/useChatMessages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/hooks/chat/useChatMessages.ts -------------------------------------------------------------------------------- /src/hooks/chat/useScrollBehavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/hooks/chat/useScrollBehavior.ts -------------------------------------------------------------------------------- /src/hooks/useAudioRecorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/hooks/useAudioRecorder.ts -------------------------------------------------------------------------------- /src/hooks/useKeyboardHeight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/hooks/useKeyboardHeight.ts -------------------------------------------------------------------------------- /src/hooks/usePwaStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/hooks/usePwaStatus.ts -------------------------------------------------------------------------------- /src/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/instrumentation.ts -------------------------------------------------------------------------------- /src/lib/ApiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/lib/ApiClient.ts -------------------------------------------------------------------------------- /src/lib/db/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/lib/db/db.ts -------------------------------------------------------------------------------- /src/lib/messageRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/lib/messageRenderer.tsx -------------------------------------------------------------------------------- /src/lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/lib/prisma.ts -------------------------------------------------------------------------------- /src/lib/server/authAndUsage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/lib/server/authAndUsage.ts -------------------------------------------------------------------------------- /src/lib/server/isMobileClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/lib/server/isMobileClient.ts -------------------------------------------------------------------------------- /src/lib/server/userSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/lib/server/userSession.ts -------------------------------------------------------------------------------- /src/lib/server/userTier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/lib/server/userTier.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/providers/AuthProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/providers/AuthProvider.tsx -------------------------------------------------------------------------------- /src/providers/ChatContextProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/providers/ChatContextProvider.tsx -------------------------------------------------------------------------------- /src/providers/ChatNavigationProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/providers/ChatNavigationProvider.tsx -------------------------------------------------------------------------------- /src/providers/LayoutProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/providers/LayoutProvider.tsx -------------------------------------------------------------------------------- /src/providers/ReduxProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/providers/ReduxProvider.tsx -------------------------------------------------------------------------------- /src/providers/SessionProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/providers/SessionProvider.tsx -------------------------------------------------------------------------------- /src/providers/WalletProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/providers/WalletProvider.tsx -------------------------------------------------------------------------------- /src/redux/features/user/tier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/redux/features/user/tier.ts -------------------------------------------------------------------------------- /src/redux/hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/redux/hook.ts -------------------------------------------------------------------------------- /src/redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/redux/store.ts -------------------------------------------------------------------------------- /src/services/PhantomWalletService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/services/PhantomWalletService.ts -------------------------------------------------------------------------------- /src/store/ChatMessageHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/store/ChatMessageHandler.ts -------------------------------------------------------------------------------- /src/store/ChatRoomHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/store/ChatRoomHandler.ts -------------------------------------------------------------------------------- /src/store/CreditHandler.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/store/SessionHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/store/SessionHandler.ts -------------------------------------------------------------------------------- /src/store/SessionManagerHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/store/SessionManagerHandler.ts -------------------------------------------------------------------------------- /src/store/SettingsHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/store/SettingsHandler.ts -------------------------------------------------------------------------------- /src/store/ThemeManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/store/ThemeManager.ts -------------------------------------------------------------------------------- /src/store/UserHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/store/UserHandler.ts -------------------------------------------------------------------------------- /src/store/WalletHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/store/WalletHandler.ts -------------------------------------------------------------------------------- /src/tools/aiProjectsToolSet/filterTrendingAiProjectsTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/aiProjectsToolSet/filterTrendingAiProjectsTool.ts -------------------------------------------------------------------------------- /src/tools/aiProjectsToolSet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/aiProjectsToolSet/index.ts -------------------------------------------------------------------------------- /src/tools/commonToolSet/getUserInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/commonToolSet/getUserInfo.ts -------------------------------------------------------------------------------- /src/tools/commonToolSet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/commonToolSet/index.ts -------------------------------------------------------------------------------- /src/tools/commonToolSet/tokenAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/commonToolSet/tokenAddress.ts -------------------------------------------------------------------------------- /src/tools/luloToolSet/depositLulo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/luloToolSet/depositLulo.ts -------------------------------------------------------------------------------- /src/tools/luloToolSet/getLuloAssets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/luloToolSet/getLuloAssets.ts -------------------------------------------------------------------------------- /src/tools/luloToolSet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/luloToolSet/index.ts -------------------------------------------------------------------------------- /src/tools/luloToolSet/withdrawLulo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/luloToolSet/withdrawLulo.ts -------------------------------------------------------------------------------- /src/tools/managementToolSet/changeThemeTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/managementToolSet/changeThemeTool.ts -------------------------------------------------------------------------------- /src/tools/managementToolSet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/managementToolSet/index.ts -------------------------------------------------------------------------------- /src/tools/managementToolSet/reportBugTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/managementToolSet/reportBugTool.ts -------------------------------------------------------------------------------- /src/tools/managementToolSet/requestFeatureTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/managementToolSet/requestFeatureTool.ts -------------------------------------------------------------------------------- /src/tools/nftToolSet/getNFTPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/nftToolSet/getNFTPrice.ts -------------------------------------------------------------------------------- /src/tools/nftToolSet/getTrendingNFTs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/nftToolSet/getTrendingNFTs.ts -------------------------------------------------------------------------------- /src/tools/nftToolSet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/nftToolSet/index.ts -------------------------------------------------------------------------------- /src/tools/onChainToolSet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/onChainToolSet/index.ts -------------------------------------------------------------------------------- /src/tools/onChainToolSet/resolveSnsName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/onChainToolSet/resolveSnsName.ts -------------------------------------------------------------------------------- /src/tools/onChainToolSet/swapTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/onChainToolSet/swapTokens.ts -------------------------------------------------------------------------------- /src/tools/onChainToolSet/transferSolTx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/onChainToolSet/transferSolTx.ts -------------------------------------------------------------------------------- /src/tools/onChainToolSet/transferSpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/onChainToolSet/transferSpl.ts -------------------------------------------------------------------------------- /src/tools/tokenToolSet/bubblemaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/tokenToolSet/bubblemaps.ts -------------------------------------------------------------------------------- /src/tools/tokenToolSet/getLimitOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/tokenToolSet/getLimitOrder.ts -------------------------------------------------------------------------------- /src/tools/tokenToolSet/getTokenData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/tokenToolSet/getTokenData.ts -------------------------------------------------------------------------------- /src/tools/tokenToolSet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/tokenToolSet/index.ts -------------------------------------------------------------------------------- /src/tools/tokenToolSet/limitOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/tokenToolSet/limitOrder.ts -------------------------------------------------------------------------------- /src/tools/tokenToolSet/topHolders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/tokenToolSet/topHolders.ts -------------------------------------------------------------------------------- /src/tools/toolsetChooser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/tools/toolsetChooser.ts -------------------------------------------------------------------------------- /src/types/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/types/api.ts -------------------------------------------------------------------------------- /src/types/chatRoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/types/chatRoom.ts -------------------------------------------------------------------------------- /src/types/goatIndex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/types/goatIndex.ts -------------------------------------------------------------------------------- /src/types/jupiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/types/jupiter.ts -------------------------------------------------------------------------------- /src/types/lulo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/types/lulo.ts -------------------------------------------------------------------------------- /src/types/nft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/types/nft.ts -------------------------------------------------------------------------------- /src/types/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/types/request.ts -------------------------------------------------------------------------------- /src/types/response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/types/response.ts -------------------------------------------------------------------------------- /src/types/schemas/solaBalanceSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/types/schemas/solaBalanceSchema.ts -------------------------------------------------------------------------------- /src/types/schemas/verifyTierSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/types/schemas/verifyTierSchema.ts -------------------------------------------------------------------------------- /src/types/staking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/types/staking.ts -------------------------------------------------------------------------------- /src/types/tier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/types/tier.ts -------------------------------------------------------------------------------- /src/types/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/types/token.ts -------------------------------------------------------------------------------- /src/types/tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/types/tool.ts -------------------------------------------------------------------------------- /src/types/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/types/transaction.ts -------------------------------------------------------------------------------- /src/types/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/types/wallet.ts -------------------------------------------------------------------------------- /src/types/xstocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/types/xstocks.ts -------------------------------------------------------------------------------- /src/utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/utils/cn.ts -------------------------------------------------------------------------------- /src/utils/formatNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/utils/formatNumber.ts -------------------------------------------------------------------------------- /src/utils/hexToRGB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/utils/hexToRGB.ts -------------------------------------------------------------------------------- /src/utils/isMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/utils/isMobile.tsx -------------------------------------------------------------------------------- /src/utils/messageRenderer.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/randomID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/utils/randomID.ts -------------------------------------------------------------------------------- /src/utils/titleCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/utils/titleCase.ts -------------------------------------------------------------------------------- /src/utils/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/src/utils/version.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSolaAI/sola-application/HEAD/yarn.lock --------------------------------------------------------------------------------