├── .cursorrules ├── .eslintrc.json ├── .gitignore ├── .source ├── index.d.ts ├── index.js └── source.config.mjs ├── LICENSE.md ├── README.md ├── bun.lockb ├── components.json ├── content └── docs │ ├── index.mdx │ └── test.mdx ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── logo-fuma-dark.png ├── logo-fuma.png ├── logo-next-dark.png ├── logo-next.png ├── logo-plausible-dark.png ├── logo-plausible.png ├── logo-shadcn-dark.png ├── logo-shadcn.png ├── logo-solana-dark.png ├── logo-solana.png ├── logo-tailwind-dark.png ├── logo-tailwind.png ├── logo-tanstack-dark.png ├── logo-tanstack.png ├── logo-turbopack-dark.png ├── logo-turbopack.png └── logomark-solana.svg ├── source.config.ts ├── src ├── app │ ├── api │ │ └── search │ │ │ └── route.ts │ ├── dashboard │ │ └── page.tsx │ ├── docs │ │ ├── [[...slug]] │ │ │ └── page.tsx │ │ └── layout.tsx │ ├── favicon.ico │ ├── fonts │ │ ├── GeistMonoVF.woff │ │ └── GeistVF.woff │ ├── globals.css │ ├── layout.config.tsx │ ├── layout.tsx │ └── page.tsx ├── components │ ├── Balance.tsx │ ├── BaseSignMessageFeaturePanel.tsx │ ├── ChainSelector.tsx │ ├── DisconnectButton.tsx │ ├── FeatureNotSupportedCallout.tsx │ ├── FeaturePanel.tsx │ ├── GithubStarsButton.tsx │ ├── Nav.tsx │ ├── SignInMenu.tsx │ ├── SignInMenuItem.tsx │ ├── SolanaSignAndSendTransactionFeaturePanel.tsx │ ├── SolanaSignMessageFeaturePanel.tsx │ ├── auth │ │ └── WalletGuard.tsx │ ├── pages │ │ ├── DashboardPage.tsx │ │ └── LandingPage.tsx │ ├── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── animated-text.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── copy-text.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── mdx.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── theme-provicer.tsx │ │ ├── theme-toggle.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ └── tooltip.tsx │ └── wallet │ │ ├── connect-wallet-menu-item.tsx │ │ ├── connect-wallet-menu.tsx │ │ ├── connected-wallet-content.tsx │ │ ├── get-wallet-error-message.tsx │ │ ├── unconnectable-wallet-menu-item.tsx │ │ ├── wallet-Info-content.tsx │ │ ├── wallet-account-icon.tsx │ │ ├── wallet-error-dialog.tsx │ │ ├── wallet-illustration.tsx │ │ ├── wallet-list.tsx │ │ ├── wallet-menu-item-content.tsx │ │ ├── wallet-svg.tsx │ │ └── wallet-trigger.tsx ├── functions │ └── balance.ts ├── hooks │ ├── use-local-storage.ts │ ├── use-mobile.tsx │ ├── use-toast.ts │ └── useStable.ts ├── lib │ ├── fonts.ts │ ├── source.ts │ ├── use-local-storage.ts │ └── utils.ts ├── providers │ └── query-provider.tsx └── solana │ ├── index.ts │ ├── solana-chain-context.tsx │ ├── solana-chain-provider.tsx │ ├── solana-provider.tsx │ ├── solana-rpc-context.tsx │ ├── solana-rpc-provider.tsx │ ├── solana-wallet-context.tsx │ └── solana-wallet-provider.tsx ├── tailwind.config.ts └── tsconfig.json /.cursorrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/.cursorrules -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.source/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/.source/index.d.ts -------------------------------------------------------------------------------- /.source/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/.source/index.js -------------------------------------------------------------------------------- /.source/source.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/.source/source.config.mjs -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/bun.lockb -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/components.json -------------------------------------------------------------------------------- /content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/content/docs/index.mdx -------------------------------------------------------------------------------- /content/docs/test.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/content/docs/test.mdx -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/logo-fuma-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/public/logo-fuma-dark.png -------------------------------------------------------------------------------- /public/logo-fuma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/public/logo-fuma.png -------------------------------------------------------------------------------- /public/logo-next-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/public/logo-next-dark.png -------------------------------------------------------------------------------- /public/logo-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/public/logo-next.png -------------------------------------------------------------------------------- /public/logo-plausible-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/public/logo-plausible-dark.png -------------------------------------------------------------------------------- /public/logo-plausible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/public/logo-plausible.png -------------------------------------------------------------------------------- /public/logo-shadcn-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/public/logo-shadcn-dark.png -------------------------------------------------------------------------------- /public/logo-shadcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/public/logo-shadcn.png -------------------------------------------------------------------------------- /public/logo-solana-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/public/logo-solana-dark.png -------------------------------------------------------------------------------- /public/logo-solana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/public/logo-solana.png -------------------------------------------------------------------------------- /public/logo-tailwind-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/public/logo-tailwind-dark.png -------------------------------------------------------------------------------- /public/logo-tailwind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/public/logo-tailwind.png -------------------------------------------------------------------------------- /public/logo-tanstack-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/public/logo-tanstack-dark.png -------------------------------------------------------------------------------- /public/logo-tanstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/public/logo-tanstack.png -------------------------------------------------------------------------------- /public/logo-turbopack-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/public/logo-turbopack-dark.png -------------------------------------------------------------------------------- /public/logo-turbopack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/public/logo-turbopack.png -------------------------------------------------------------------------------- /public/logomark-solana.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/public/logomark-solana.svg -------------------------------------------------------------------------------- /source.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/source.config.ts -------------------------------------------------------------------------------- /src/app/api/search/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/app/api/search/route.ts -------------------------------------------------------------------------------- /src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/docs/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/app/docs/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /src/app/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/app/docs/layout.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /src/app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/app/layout.config.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/Balance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/Balance.tsx -------------------------------------------------------------------------------- /src/components/BaseSignMessageFeaturePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/BaseSignMessageFeaturePanel.tsx -------------------------------------------------------------------------------- /src/components/ChainSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ChainSelector.tsx -------------------------------------------------------------------------------- /src/components/DisconnectButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/DisconnectButton.tsx -------------------------------------------------------------------------------- /src/components/FeatureNotSupportedCallout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/FeatureNotSupportedCallout.tsx -------------------------------------------------------------------------------- /src/components/FeaturePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/FeaturePanel.tsx -------------------------------------------------------------------------------- /src/components/GithubStarsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/GithubStarsButton.tsx -------------------------------------------------------------------------------- /src/components/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/Nav.tsx -------------------------------------------------------------------------------- /src/components/SignInMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/SignInMenu.tsx -------------------------------------------------------------------------------- /src/components/SignInMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/SignInMenuItem.tsx -------------------------------------------------------------------------------- /src/components/SolanaSignAndSendTransactionFeaturePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/SolanaSignAndSendTransactionFeaturePanel.tsx -------------------------------------------------------------------------------- /src/components/SolanaSignMessageFeaturePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/SolanaSignMessageFeaturePanel.tsx -------------------------------------------------------------------------------- /src/components/auth/WalletGuard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/auth/WalletGuard.tsx -------------------------------------------------------------------------------- /src/components/pages/DashboardPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/pages/DashboardPage.tsx -------------------------------------------------------------------------------- /src/components/pages/LandingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/pages/LandingPage.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/animated-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/animated-text.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/copy-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/copy-text.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/mdx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/mdx.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/theme-provicer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/theme-provicer.tsx -------------------------------------------------------------------------------- /src/components/ui/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/theme-toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/wallet/connect-wallet-menu-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/wallet/connect-wallet-menu-item.tsx -------------------------------------------------------------------------------- /src/components/wallet/connect-wallet-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/wallet/connect-wallet-menu.tsx -------------------------------------------------------------------------------- /src/components/wallet/connected-wallet-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/wallet/connected-wallet-content.tsx -------------------------------------------------------------------------------- /src/components/wallet/get-wallet-error-message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/wallet/get-wallet-error-message.tsx -------------------------------------------------------------------------------- /src/components/wallet/unconnectable-wallet-menu-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/wallet/unconnectable-wallet-menu-item.tsx -------------------------------------------------------------------------------- /src/components/wallet/wallet-Info-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/wallet/wallet-Info-content.tsx -------------------------------------------------------------------------------- /src/components/wallet/wallet-account-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/wallet/wallet-account-icon.tsx -------------------------------------------------------------------------------- /src/components/wallet/wallet-error-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/wallet/wallet-error-dialog.tsx -------------------------------------------------------------------------------- /src/components/wallet/wallet-illustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/wallet/wallet-illustration.tsx -------------------------------------------------------------------------------- /src/components/wallet/wallet-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/wallet/wallet-list.tsx -------------------------------------------------------------------------------- /src/components/wallet/wallet-menu-item-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/wallet/wallet-menu-item-content.tsx -------------------------------------------------------------------------------- /src/components/wallet/wallet-svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/wallet/wallet-svg.tsx -------------------------------------------------------------------------------- /src/components/wallet/wallet-trigger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/components/wallet/wallet-trigger.tsx -------------------------------------------------------------------------------- /src/functions/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/functions/balance.ts -------------------------------------------------------------------------------- /src/hooks/use-local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/hooks/use-local-storage.ts -------------------------------------------------------------------------------- /src/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /src/hooks/useStable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/hooks/useStable.ts -------------------------------------------------------------------------------- /src/lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/lib/fonts.ts -------------------------------------------------------------------------------- /src/lib/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/lib/source.ts -------------------------------------------------------------------------------- /src/lib/use-local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/lib/use-local-storage.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/providers/query-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/providers/query-provider.tsx -------------------------------------------------------------------------------- /src/solana/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/solana/index.ts -------------------------------------------------------------------------------- /src/solana/solana-chain-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/solana/solana-chain-context.tsx -------------------------------------------------------------------------------- /src/solana/solana-chain-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/solana/solana-chain-provider.tsx -------------------------------------------------------------------------------- /src/solana/solana-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/solana/solana-provider.tsx -------------------------------------------------------------------------------- /src/solana/solana-rpc-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/solana/solana-rpc-context.tsx -------------------------------------------------------------------------------- /src/solana/solana-rpc-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/solana/solana-rpc-provider.tsx -------------------------------------------------------------------------------- /src/solana/solana-wallet-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/solana/solana-wallet-context.tsx -------------------------------------------------------------------------------- /src/solana/solana-wallet-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/src/solana/solana-wallet-provider.tsx -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevesarmiento/solana-starter/HEAD/tsconfig.json --------------------------------------------------------------------------------