├── .gitignore ├── .husky └── pre-commit ├── README.md ├── admin ├── .env.example ├── .eslintrc.js ├── .gitignore ├── README.md ├── app │ ├── (dashboard) │ │ ├── analytics │ │ │ └── page.tsx │ │ ├── banners │ │ │ ├── create │ │ │ │ └── page.tsx │ │ │ ├── items │ │ │ │ ├── create │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ ├── customers │ │ │ ├── [id] │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── page.tsx │ │ ├── products │ │ │ └── page.tsx │ │ ├── profile │ │ │ └── page.tsx │ │ └── settings │ │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ └── login │ │ └── page.tsx ├── components.json ├── components │ ├── layout │ │ ├── header.tsx │ │ └── sidebar.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts ├── eslint.config.mjs ├── lib │ ├── api.ts │ ├── constants │ │ └── navigation.ts │ ├── fetch.ts │ ├── hooks │ │ ├── use-auth-mutation.ts │ │ ├── use-messages.ts │ │ ├── use-predict-stats.ts │ │ ├── use-profile-query.ts │ │ ├── use-user-detail.ts │ │ ├── use-user-list.ts │ │ └── use-user-stats.ts │ ├── providers.tsx │ ├── store │ │ ├── use-auth.ts │ │ ├── use-profile.ts │ │ └── use-sidebar.ts │ └── utils.ts ├── middleware.ts ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public │ ├── cocoa_black.webp │ ├── file.svg │ ├── globe.svg │ ├── logo.webp │ ├── next.svg │ ├── vercel.svg │ └── window.svg ├── tailwind.config.ts ├── tsconfig.json └── types │ └── banner.ts ├── client ├── .env.example ├── .eslintrc.js ├── README.md ├── app │ ├── api │ │ └── [...path] │ │ │ └── route.ts │ ├── auth │ │ └── [provider] │ │ │ └── callback │ │ │ └── page.tsx │ ├── banner │ │ ├── create │ │ │ └── page.tsx │ │ └── page.tsx │ ├── coin │ │ └── [symbol] │ │ │ └── page.tsx │ ├── defi │ │ ├── [project] │ │ │ └── page.tsx │ │ ├── metadata.ts │ │ └── page.tsx │ ├── event │ │ └── page.tsx │ ├── favicon.ico │ ├── globals.css │ ├── guide │ │ └── defi │ │ │ ├── about │ │ │ └── page.tsx │ │ │ ├── apy │ │ │ └── page.tsx │ │ │ └── strategy │ │ │ └── page.tsx │ ├── kol │ │ ├── metadata.ts │ │ └── page.tsx │ ├── layout.tsx │ ├── metric │ │ └── page.tsx │ ├── news │ │ ├── [id] │ │ │ └── page.tsx │ │ ├── metadata.ts │ │ └── page.tsx │ ├── page.tsx │ ├── pp │ │ └── page.tsx │ ├── predict │ │ ├── metadata.ts │ │ └── page.tsx │ ├── profile │ │ └── page.tsx │ ├── scanner │ │ ├── [contract] │ │ │ └── page.tsx │ │ ├── metadata.ts │ │ └── page.tsx │ ├── signin │ │ ├── metadata.ts │ │ └── page.tsx │ ├── testing │ │ └── page.tsx │ ├── tos │ │ └── page.tsx │ ├── u │ │ └── [userId] │ │ │ └── page.tsx │ └── withdraw │ │ ├── metadata.ts │ │ └── page.tsx ├── components │ ├── banner │ │ ├── Banner.tsx │ │ ├── Desktop.tsx │ │ ├── Mobile.tsx │ │ └── Tablet.tsx │ ├── chart │ │ └── TradingViewWidget.tsx │ ├── chat │ │ ├── ChatInput.tsx │ │ ├── ChatMessage.tsx │ │ ├── ChatMessageList.tsx │ │ ├── ChatRoom.tsx │ │ └── NicknameDialog.tsx │ ├── coin │ │ ├── CoinHeader.tsx │ │ ├── CoinPageContent.tsx │ │ ├── CoinTabs.tsx │ │ ├── MarketData.tsx │ │ ├── NicknameModal.tsx │ │ ├── PricePrediction.tsx │ │ └── StockDiscussion.tsx │ ├── common │ │ ├── Button.tsx │ │ ├── Checkbox.tsx │ │ ├── Dialog.tsx │ │ ├── Dropdown.tsx │ │ ├── ErrorBoundary.tsx │ │ ├── FileInput.tsx │ │ ├── Input.tsx │ │ ├── Logo.tsx │ │ ├── Popover.tsx │ │ ├── Select.tsx │ │ └── Switch.tsx │ ├── discussion │ │ ├── Comment.tsx │ │ └── DiscussionItem.tsx │ ├── event │ │ └── EventBanner.tsx │ ├── fixed │ │ ├── CoinItem.tsx │ │ ├── Footer.tsx │ │ ├── MarketTicker.tsx │ │ ├── Navbar.tsx │ │ └── SystemWarning.tsx │ ├── guide │ │ └── GuideCards.tsx │ ├── icons │ │ ├── GuideIcons.tsx │ │ └── SortIcon.tsx │ ├── kol │ │ ├── KOLCard.tsx │ │ ├── KOLCardSkeleton.tsx │ │ ├── KOLSocialFilter.tsx │ │ └── KOLSortSelect.tsx │ ├── message │ │ └── MessageModal.tsx │ ├── metrics │ │ ├── FearGreedIndex.tsx │ │ └── GlobalMetric.tsx │ ├── news │ │ ├── NewsCard.tsx │ │ ├── NewsCardSkeleton.tsx │ │ ├── NewsContent.tsx │ │ ├── NewsDetail.tsx │ │ └── NewsDetailSkeleton.tsx │ ├── notification │ │ └── NotificationModal.tsx │ ├── premium │ │ ├── PremiumTable.tsx │ │ ├── PremiumTableContent.tsx │ │ ├── PremiumTableSkeleton.tsx │ │ └── UsdtPremiumBox.tsx │ ├── skeleton │ │ └── CoinPageSkeleton.tsx │ ├── toast │ │ └── PredictResultToast.tsx │ └── withdraw │ │ └── WithdrawPathCard.tsx ├── const │ ├── api.ts │ ├── exchange.ts │ └── index.ts ├── dto │ ├── news.dto.ts │ └── withdraw.dto.ts ├── eslint.config.mjs ├── hooks │ ├── useChat.ts │ ├── useCoinPrice.ts │ ├── useCurrentPrice.ts │ ├── useDebounce.ts │ ├── useHangangTemp.ts │ ├── useKOLs.ts │ ├── useMarketData.ts │ ├── useNews.ts │ └── usePredict.ts ├── lib │ ├── api │ │ ├── globalMetric.ts │ │ └── stockDiscussion.ts │ ├── axios.ts │ ├── format.ts │ ├── gtag.ts │ ├── kol.ts │ ├── market.ts │ ├── socket.ts │ └── utils.ts ├── next-env.d.ts ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── providers │ ├── QueryClientProviders.tsx │ └── ThemeProvider.tsx ├── public │ ├── exchanges │ │ ├── binance.svg │ │ ├── bithumb.svg │ │ ├── bybit.svg │ │ ├── coinone.svg │ │ ├── okx.svg │ │ └── upbit.svg │ ├── favicon.ico │ ├── fonts │ │ └── 42dotSans │ │ │ ├── 42dotSans-Bold.ttf │ │ │ ├── 42dotSans-ExtraBold.ttf │ │ │ ├── 42dotSans-Light.ttf │ │ │ ├── 42dotSans-Medium.ttf │ │ │ ├── 42dotSans-Regular.ttf │ │ │ └── 42dotSans-SemiBold.ttf │ ├── icons │ │ ├── cocoa_black.webp │ │ ├── cocoa_white.webp │ │ ├── code.svg │ │ ├── distribution.svg │ │ ├── github.svg │ │ ├── google.svg │ │ ├── instagram.svg │ │ ├── liquidity.svg │ │ ├── logo.webp │ │ ├── logo_black.webp │ │ ├── logo_lg.webp │ │ ├── logo_white.webp │ │ ├── naver.svg │ │ ├── og.png │ │ ├── sale.svg │ │ ├── telegram.svg │ │ ├── web.svg │ │ ├── x.svg │ │ └── youtube.svg │ ├── images │ │ ├── event-banner.png │ │ └── metrics │ │ │ ├── btc.png │ │ │ └── eth.png │ ├── kols │ │ └── images │ │ │ ├── Bananamilkrich.jpeg │ │ │ ├── Coinschool_KR.jpg │ │ │ ├── CryptoOwlNotice.jpeg │ │ │ ├── DHCALL0.jpeg │ │ │ ├── Dove262.jpeg │ │ │ ├── LEEHEESANGDYOR.jpeg │ │ │ ├── airdr0p_lab.jpeg │ │ │ ├── anancoin.jpeg │ │ │ ├── baekobaeko.jpeg │ │ │ ├── bong7greenscale.jpg │ │ │ ├── cryptocurrencymage.jpeg │ │ │ ├── eclipsekorean.jpeg │ │ │ ├── ggogumma.jpeg │ │ │ ├── grow_airdrop.jpeg │ │ │ ├── heedan22.jpeg │ │ │ ├── honeybottlenft.jpeg │ │ │ ├── inhu0.jpeg │ │ │ ├── jh_6598.jpeg │ │ │ ├── karmycrypto.jpeg │ │ │ ├── kwakCrypto.jpeg │ │ │ ├── lotsofmakemoney.jpeg │ │ │ ├── madcurve.jpeg │ │ │ ├── magonia_B.jpeg │ │ │ ├── moneybank25.jpeg │ │ │ ├── mysigolgirl.jpeg │ │ │ ├── seori_nft.jpeg │ │ │ └── xcvu1234.jpg │ ├── naver5dfa1a7b67eedd2261010a950ee0a803.html │ └── services │ │ ├── coingecko.svg │ │ ├── coinmarketcap.svg │ │ └── tradingview.svg ├── store │ ├── useActiveUsersStore.ts │ ├── useAuthStore.ts │ ├── useChat.ts │ ├── useLongShort.ts │ ├── useMarketStore.ts │ ├── useMarketsStore.ts │ ├── useNotificationStore.ts │ └── usePredictStore.ts ├── styles │ └── globals.css ├── tailwind.config.ts ├── tsconfig.json └── types │ ├── api.ts │ ├── chat.ts │ ├── common.ts │ ├── exchange.ts │ ├── gtag.d.ts │ ├── kol.ts │ ├── predict.ts │ ├── scanner.ts │ ├── window.d.ts │ └── yield.ts ├── etc ├── imagedownloader.ts ├── imageresizer.ts ├── package-lock.json ├── package.json └── tsconfig.json ├── package.json ├── server ├── .dockerignore ├── .env.example ├── .prettierrc ├── Dockerfile ├── README.md ├── config │ ├── binance-fees.json │ ├── bithumb-fees.json │ ├── coinone-fees.json │ ├── okx-fees.json │ └── upbit-fees.json ├── docker-compose.prod.yml ├── docker-compose.yml ├── drizzle.config.ts ├── drizzle │ └── migrations │ │ ├── 0000_marvelous_pride.sql │ │ ├── 0001_outstanding_longshot.sql │ │ ├── 0002_right_rocket_racer.sql │ │ ├── 0003_easy_firestar.sql │ │ ├── 0004_numerous_shinko_yamashiro.sql │ │ ├── 0005_outgoing_mister_fear.sql │ │ ├── 0006_smart_malice.sql │ │ ├── 0007_faulty_omega_red.sql │ │ ├── 0008_certain_hairball.sql │ │ ├── 0009_luxuriant_payback.sql │ │ ├── 0010_early_namor.sql │ │ ├── 0011_free_colleen_wing.sql │ │ ├── 0011_profile_stats_pk.sql │ │ ├── 0012_funny_felicia_hardy.sql │ │ ├── 0013_flippant_omega_red.sql │ │ ├── 0014_friendly_night_thrasher.sql │ │ ├── 0015_clean_zemo.sql │ │ ├── 0016_jazzy_ozymandias.sql │ │ ├── 0017_parched_leader.sql │ │ ├── 0018_chilly_stephen_strange.sql │ │ ├── 0019_elite_speedball.sql │ │ ├── 0020_melodic_abomination.sql │ │ ├── 0021_magenta_amphibian.sql │ │ ├── 0022_orange_ben_parker.sql │ │ ├── 0023_dashing_true_believers.sql │ │ ├── 0024_tiresome_blade.sql │ │ ├── 0025_wise_komodo.sql │ │ ├── 0026_lethal_garia.sql │ │ ├── 0027_amazing_skreet.sql │ │ ├── 0028_oval_typhoid_mary.sql │ │ ├── 0029_regular_rocket_racer.sql │ │ ├── 0030_white_riptide.sql │ │ ├── 0031_unknown_frog_thor.sql │ │ ├── 0032_tan_rocket_raccoon.sql │ │ └── meta │ │ ├── 0000_snapshot.json │ │ ├── 0001_snapshot.json │ │ ├── 0002_snapshot.json │ │ ├── 0003_snapshot.json │ │ ├── 0004_snapshot.json │ │ ├── 0005_snapshot.json │ │ ├── 0006_snapshot.json │ │ ├── 0007_snapshot.json │ │ ├── 0008_snapshot.json │ │ ├── 0009_snapshot.json │ │ ├── 0010_snapshot.json │ │ ├── 0011_snapshot.json │ │ ├── 0012_snapshot.json │ │ ├── 0013_snapshot.json │ │ ├── 0014_snapshot.json │ │ ├── 0015_snapshot.json │ │ ├── 0016_snapshot.json │ │ ├── 0017_snapshot.json │ │ ├── 0018_snapshot.json │ │ ├── 0019_snapshot.json │ │ ├── 0020_snapshot.json │ │ ├── 0021_snapshot.json │ │ ├── 0022_snapshot.json │ │ ├── 0023_snapshot.json │ │ ├── 0024_snapshot.json │ │ ├── 0025_snapshot.json │ │ ├── 0026_snapshot.json │ │ ├── 0027_snapshot.json │ │ ├── 0028_snapshot.json │ │ ├── 0029_snapshot.json │ │ ├── 0030_snapshot.json │ │ ├── 0031_snapshot.json │ │ ├── 0032_snapshot.json │ │ └── _journal.json ├── eslint.config.mjs ├── nest-cli.json ├── package.json ├── pnpm-lock.yaml ├── src │ ├── admin │ │ ├── admin.controller.ts │ │ ├── admin.module.ts │ │ ├── admin.service.ts │ │ ├── decorators │ │ │ └── current-admin.decorator.ts │ │ ├── dto │ │ │ ├── login.dto.ts │ │ │ └── update-admin.dto.ts │ │ ├── guards │ │ │ └── jwt-auth.guard.ts │ │ └── strategies │ │ │ └── jwt-admin.strategy.ts │ ├── app.controller.spec.ts │ ├── app.controller.ts │ ├── app.module.ts │ ├── app.service.ts │ ├── auth │ │ ├── auth.controller.ts │ │ ├── auth.module.ts │ │ ├── auth.service.ts │ │ ├── client │ │ │ ├── google.client.ts │ │ │ └── naver.client.ts │ │ ├── decorators │ │ │ └── current-user.decorator.ts │ │ ├── guards │ │ │ └── jwt-auth.guard.ts │ │ └── strategies │ │ │ └── jwt.strategy.ts │ ├── aws │ │ ├── aws.module.ts │ │ └── aws.service.ts │ ├── banner │ │ ├── banner.controller.ts │ │ ├── banner.module.ts │ │ └── banner.service.ts │ ├── chat │ │ ├── chat.controller.ts │ │ ├── chat.module.ts │ │ ├── chat.service.ts │ │ └── chat.type.ts │ ├── collector.ts │ ├── collector │ │ ├── clients │ │ │ ├── binance.client.ts │ │ │ ├── bithumb-websocket.client.ts │ │ │ ├── coinone-websocket.client.ts │ │ │ ├── exchange-rate.client.ts │ │ │ ├── fee.client.ts │ │ │ ├── okx.client.ts │ │ │ ├── upbit-websocket.client.ts │ │ │ └── upbit.client.ts │ │ ├── collector.module.ts │ │ ├── collector.service.ts │ │ ├── services │ │ │ └── market-codes.service.ts │ │ └── types │ │ │ ├── binance.types.ts │ │ │ ├── bithumb.types.ts │ │ │ ├── coinone.types.ts │ │ │ ├── common.types.ts │ │ │ └── upbit.types.ts │ ├── config │ │ └── config.module.ts │ ├── database │ │ ├── database.module.ts │ │ ├── migrate.ts │ │ ├── migrations │ │ │ └── add_title_to_news.ts │ │ └── schema │ │ │ ├── admin.ts │ │ │ ├── banner.ts │ │ │ ├── exchange-rate.ts │ │ │ ├── fee.ts │ │ │ ├── guestbook-comment.ts │ │ │ ├── guestbook.ts │ │ │ ├── index.ts │ │ │ ├── kol.ts │ │ │ ├── market.ts │ │ │ ├── message.ts │ │ │ ├── news.ts │ │ │ ├── notification.ts │ │ │ ├── predict-log.ts │ │ │ ├── predict.ts │ │ │ ├── profile-stats.ts │ │ │ ├── stock-discussion-comment.ts │ │ │ ├── stock-discussion.ts │ │ │ ├── user.ts │ │ │ └── yield.ts │ ├── exchange │ │ ├── exchange.controller.ts │ │ ├── exchange.module.ts │ │ └── exchange.service.ts │ ├── gateway │ │ ├── app.gateway.ts │ │ └── gateway.module.ts │ ├── guestbook │ │ ├── guestbook.controller.ts │ │ ├── guestbook.module.ts │ │ └── guestbook.service.ts │ ├── kol │ │ ├── dto │ │ │ └── kol.dto.ts │ │ ├── kol.controller.ts │ │ ├── kol.module.ts │ │ ├── kol.repository.ts │ │ └── kol.service.ts │ ├── main.ts │ ├── message │ │ ├── dto │ │ │ └── create-message.dto.ts │ │ ├── message.controller.ts │ │ ├── message.module.ts │ │ └── message.service.ts │ ├── news │ │ ├── clients │ │ │ ├── openai.client.ts │ │ │ ├── twitter.client.ts │ │ │ └── web-search.client.ts │ │ ├── news.controller.ts │ │ ├── news.module.ts │ │ ├── news.repository.ts │ │ ├── news.service.ts │ │ └── types │ │ │ └── news.types.ts │ ├── notification │ │ ├── notification.controller.ts │ │ ├── notification.module.ts │ │ └── notification.service.ts │ ├── predict │ │ ├── predict.controller.ts │ │ ├── predict.module.ts │ │ └── predict.service.ts │ ├── profile-stats │ │ ├── profile-stats.controller.ts │ │ ├── profile-stats.module.ts │ │ └── profile-stats.service.ts │ ├── redis │ │ └── redis.service.ts │ ├── stock-discussion │ │ ├── stock-discussion.controller.ts │ │ ├── stock-discussion.module.ts │ │ └── stock-discussion.service.ts │ ├── test │ │ ├── test.controller.ts │ │ └── test.module.ts │ ├── user │ │ ├── user.controller.ts │ │ ├── user.module.ts │ │ └── user.service.ts │ ├── withdraw │ │ ├── types │ │ │ └── withdraw.types.ts │ │ ├── withdraw.controller.ts │ │ ├── withdraw.module.ts │ │ └── withdraw.service.ts │ └── yield │ │ ├── yield.controller.ts │ │ ├── yield.module.ts │ │ └── yield.service.ts ├── tsconfig.build.json └── tsconfig.json └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npm run lint -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/README.md -------------------------------------------------------------------------------- /admin/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_API_URL=http://localhost:3000 2 | -------------------------------------------------------------------------------- /admin/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/.eslintrc.js -------------------------------------------------------------------------------- /admin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/.gitignore -------------------------------------------------------------------------------- /admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/README.md -------------------------------------------------------------------------------- /admin/app/(dashboard)/analytics/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/app/(dashboard)/analytics/page.tsx -------------------------------------------------------------------------------- /admin/app/(dashboard)/banners/create/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/app/(dashboard)/banners/create/page.tsx -------------------------------------------------------------------------------- /admin/app/(dashboard)/banners/items/create/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/app/(dashboard)/banners/items/create/page.tsx -------------------------------------------------------------------------------- /admin/app/(dashboard)/banners/items/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/app/(dashboard)/banners/items/page.tsx -------------------------------------------------------------------------------- /admin/app/(dashboard)/banners/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/app/(dashboard)/banners/page.tsx -------------------------------------------------------------------------------- /admin/app/(dashboard)/customers/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/app/(dashboard)/customers/[id]/page.tsx -------------------------------------------------------------------------------- /admin/app/(dashboard)/customers/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/app/(dashboard)/customers/page.tsx -------------------------------------------------------------------------------- /admin/app/(dashboard)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/app/(dashboard)/layout.tsx -------------------------------------------------------------------------------- /admin/app/(dashboard)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/app/(dashboard)/page.tsx -------------------------------------------------------------------------------- /admin/app/(dashboard)/products/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/app/(dashboard)/products/page.tsx -------------------------------------------------------------------------------- /admin/app/(dashboard)/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/app/(dashboard)/profile/page.tsx -------------------------------------------------------------------------------- /admin/app/(dashboard)/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/app/(dashboard)/settings/page.tsx -------------------------------------------------------------------------------- /admin/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/app/favicon.ico -------------------------------------------------------------------------------- /admin/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/app/globals.css -------------------------------------------------------------------------------- /admin/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/app/layout.tsx -------------------------------------------------------------------------------- /admin/app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/app/login/page.tsx -------------------------------------------------------------------------------- /admin/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components.json -------------------------------------------------------------------------------- /admin/components/layout/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/layout/header.tsx -------------------------------------------------------------------------------- /admin/components/layout/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/layout/sidebar.tsx -------------------------------------------------------------------------------- /admin/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/accordion.tsx -------------------------------------------------------------------------------- /admin/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /admin/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/alert.tsx -------------------------------------------------------------------------------- /admin/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /admin/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/avatar.tsx -------------------------------------------------------------------------------- /admin/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/badge.tsx -------------------------------------------------------------------------------- /admin/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /admin/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/button.tsx -------------------------------------------------------------------------------- /admin/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/calendar.tsx -------------------------------------------------------------------------------- /admin/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/card.tsx -------------------------------------------------------------------------------- /admin/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /admin/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /admin/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/command.tsx -------------------------------------------------------------------------------- /admin/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /admin/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/dialog.tsx -------------------------------------------------------------------------------- /admin/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /admin/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/form.tsx -------------------------------------------------------------------------------- /admin/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /admin/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/input.tsx -------------------------------------------------------------------------------- /admin/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/label.tsx -------------------------------------------------------------------------------- /admin/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/menubar.tsx -------------------------------------------------------------------------------- /admin/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /admin/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/popover.tsx -------------------------------------------------------------------------------- /admin/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/progress.tsx -------------------------------------------------------------------------------- /admin/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /admin/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /admin/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/select.tsx -------------------------------------------------------------------------------- /admin/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/separator.tsx -------------------------------------------------------------------------------- /admin/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /admin/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/slider.tsx -------------------------------------------------------------------------------- /admin/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/switch.tsx -------------------------------------------------------------------------------- /admin/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/table.tsx -------------------------------------------------------------------------------- /admin/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/tabs.tsx -------------------------------------------------------------------------------- /admin/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/textarea.tsx -------------------------------------------------------------------------------- /admin/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/toast.tsx -------------------------------------------------------------------------------- /admin/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/toaster.tsx -------------------------------------------------------------------------------- /admin/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /admin/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/toggle.tsx -------------------------------------------------------------------------------- /admin/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /admin/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/components/ui/use-toast.ts -------------------------------------------------------------------------------- /admin/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/eslint.config.mjs -------------------------------------------------------------------------------- /admin/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/lib/api.ts -------------------------------------------------------------------------------- /admin/lib/constants/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/lib/constants/navigation.ts -------------------------------------------------------------------------------- /admin/lib/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/lib/fetch.ts -------------------------------------------------------------------------------- /admin/lib/hooks/use-auth-mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/lib/hooks/use-auth-mutation.ts -------------------------------------------------------------------------------- /admin/lib/hooks/use-messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/lib/hooks/use-messages.ts -------------------------------------------------------------------------------- /admin/lib/hooks/use-predict-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/lib/hooks/use-predict-stats.ts -------------------------------------------------------------------------------- /admin/lib/hooks/use-profile-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/lib/hooks/use-profile-query.ts -------------------------------------------------------------------------------- /admin/lib/hooks/use-user-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/lib/hooks/use-user-detail.ts -------------------------------------------------------------------------------- /admin/lib/hooks/use-user-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/lib/hooks/use-user-list.ts -------------------------------------------------------------------------------- /admin/lib/hooks/use-user-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/lib/hooks/use-user-stats.ts -------------------------------------------------------------------------------- /admin/lib/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/lib/providers.tsx -------------------------------------------------------------------------------- /admin/lib/store/use-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/lib/store/use-auth.ts -------------------------------------------------------------------------------- /admin/lib/store/use-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/lib/store/use-profile.ts -------------------------------------------------------------------------------- /admin/lib/store/use-sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/lib/store/use-sidebar.ts -------------------------------------------------------------------------------- /admin/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/lib/utils.ts -------------------------------------------------------------------------------- /admin/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/middleware.ts -------------------------------------------------------------------------------- /admin/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/next.config.ts -------------------------------------------------------------------------------- /admin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/package.json -------------------------------------------------------------------------------- /admin/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/pnpm-lock.yaml -------------------------------------------------------------------------------- /admin/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/postcss.config.mjs -------------------------------------------------------------------------------- /admin/public/cocoa_black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/public/cocoa_black.webp -------------------------------------------------------------------------------- /admin/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/public/file.svg -------------------------------------------------------------------------------- /admin/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/public/globe.svg -------------------------------------------------------------------------------- /admin/public/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/public/logo.webp -------------------------------------------------------------------------------- /admin/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/public/next.svg -------------------------------------------------------------------------------- /admin/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/public/vercel.svg -------------------------------------------------------------------------------- /admin/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/public/window.svg -------------------------------------------------------------------------------- /admin/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/tailwind.config.ts -------------------------------------------------------------------------------- /admin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/tsconfig.json -------------------------------------------------------------------------------- /admin/types/banner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/admin/types/banner.ts -------------------------------------------------------------------------------- /client/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/.env.example -------------------------------------------------------------------------------- /client/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/.eslintrc.js -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/README.md -------------------------------------------------------------------------------- /client/app/api/[...path]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/api/[...path]/route.ts -------------------------------------------------------------------------------- /client/app/auth/[provider]/callback/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/auth/[provider]/callback/page.tsx -------------------------------------------------------------------------------- /client/app/banner/create/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/banner/create/page.tsx -------------------------------------------------------------------------------- /client/app/banner/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/banner/page.tsx -------------------------------------------------------------------------------- /client/app/coin/[symbol]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/coin/[symbol]/page.tsx -------------------------------------------------------------------------------- /client/app/defi/[project]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/defi/[project]/page.tsx -------------------------------------------------------------------------------- /client/app/defi/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/defi/metadata.ts -------------------------------------------------------------------------------- /client/app/defi/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/defi/page.tsx -------------------------------------------------------------------------------- /client/app/event/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/event/page.tsx -------------------------------------------------------------------------------- /client/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/favicon.ico -------------------------------------------------------------------------------- /client/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/globals.css -------------------------------------------------------------------------------- /client/app/guide/defi/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/guide/defi/about/page.tsx -------------------------------------------------------------------------------- /client/app/guide/defi/apy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/guide/defi/apy/page.tsx -------------------------------------------------------------------------------- /client/app/guide/defi/strategy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/guide/defi/strategy/page.tsx -------------------------------------------------------------------------------- /client/app/kol/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/kol/metadata.ts -------------------------------------------------------------------------------- /client/app/kol/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/kol/page.tsx -------------------------------------------------------------------------------- /client/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/layout.tsx -------------------------------------------------------------------------------- /client/app/metric/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/metric/page.tsx -------------------------------------------------------------------------------- /client/app/news/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/news/[id]/page.tsx -------------------------------------------------------------------------------- /client/app/news/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/news/metadata.ts -------------------------------------------------------------------------------- /client/app/news/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/news/page.tsx -------------------------------------------------------------------------------- /client/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/page.tsx -------------------------------------------------------------------------------- /client/app/pp/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/pp/page.tsx -------------------------------------------------------------------------------- /client/app/predict/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/predict/metadata.ts -------------------------------------------------------------------------------- /client/app/predict/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/predict/page.tsx -------------------------------------------------------------------------------- /client/app/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/profile/page.tsx -------------------------------------------------------------------------------- /client/app/scanner/[contract]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/scanner/[contract]/page.tsx -------------------------------------------------------------------------------- /client/app/scanner/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/scanner/metadata.ts -------------------------------------------------------------------------------- /client/app/scanner/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/scanner/page.tsx -------------------------------------------------------------------------------- /client/app/signin/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/signin/metadata.ts -------------------------------------------------------------------------------- /client/app/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/signin/page.tsx -------------------------------------------------------------------------------- /client/app/testing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/testing/page.tsx -------------------------------------------------------------------------------- /client/app/tos/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/tos/page.tsx -------------------------------------------------------------------------------- /client/app/u/[userId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/u/[userId]/page.tsx -------------------------------------------------------------------------------- /client/app/withdraw/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/withdraw/metadata.ts -------------------------------------------------------------------------------- /client/app/withdraw/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/app/withdraw/page.tsx -------------------------------------------------------------------------------- /client/components/banner/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/banner/Banner.tsx -------------------------------------------------------------------------------- /client/components/banner/Desktop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/banner/Desktop.tsx -------------------------------------------------------------------------------- /client/components/banner/Mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/banner/Mobile.tsx -------------------------------------------------------------------------------- /client/components/banner/Tablet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/banner/Tablet.tsx -------------------------------------------------------------------------------- /client/components/chart/TradingViewWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/chart/TradingViewWidget.tsx -------------------------------------------------------------------------------- /client/components/chat/ChatInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/chat/ChatInput.tsx -------------------------------------------------------------------------------- /client/components/chat/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/chat/ChatMessage.tsx -------------------------------------------------------------------------------- /client/components/chat/ChatMessageList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/chat/ChatMessageList.tsx -------------------------------------------------------------------------------- /client/components/chat/ChatRoom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/chat/ChatRoom.tsx -------------------------------------------------------------------------------- /client/components/chat/NicknameDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/chat/NicknameDialog.tsx -------------------------------------------------------------------------------- /client/components/coin/CoinHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/coin/CoinHeader.tsx -------------------------------------------------------------------------------- /client/components/coin/CoinPageContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/coin/CoinPageContent.tsx -------------------------------------------------------------------------------- /client/components/coin/CoinTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/coin/CoinTabs.tsx -------------------------------------------------------------------------------- /client/components/coin/MarketData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/coin/MarketData.tsx -------------------------------------------------------------------------------- /client/components/coin/NicknameModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/coin/NicknameModal.tsx -------------------------------------------------------------------------------- /client/components/coin/PricePrediction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/coin/PricePrediction.tsx -------------------------------------------------------------------------------- /client/components/coin/StockDiscussion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/coin/StockDiscussion.tsx -------------------------------------------------------------------------------- /client/components/common/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/common/Button.tsx -------------------------------------------------------------------------------- /client/components/common/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/common/Checkbox.tsx -------------------------------------------------------------------------------- /client/components/common/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/common/Dialog.tsx -------------------------------------------------------------------------------- /client/components/common/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/common/Dropdown.tsx -------------------------------------------------------------------------------- /client/components/common/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/common/ErrorBoundary.tsx -------------------------------------------------------------------------------- /client/components/common/FileInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/common/FileInput.tsx -------------------------------------------------------------------------------- /client/components/common/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/common/Input.tsx -------------------------------------------------------------------------------- /client/components/common/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/common/Logo.tsx -------------------------------------------------------------------------------- /client/components/common/Popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/common/Popover.tsx -------------------------------------------------------------------------------- /client/components/common/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/common/Select.tsx -------------------------------------------------------------------------------- /client/components/common/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/common/Switch.tsx -------------------------------------------------------------------------------- /client/components/discussion/Comment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/discussion/Comment.tsx -------------------------------------------------------------------------------- /client/components/discussion/DiscussionItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/discussion/DiscussionItem.tsx -------------------------------------------------------------------------------- /client/components/event/EventBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/event/EventBanner.tsx -------------------------------------------------------------------------------- /client/components/fixed/CoinItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/fixed/CoinItem.tsx -------------------------------------------------------------------------------- /client/components/fixed/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/fixed/Footer.tsx -------------------------------------------------------------------------------- /client/components/fixed/MarketTicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/fixed/MarketTicker.tsx -------------------------------------------------------------------------------- /client/components/fixed/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/fixed/Navbar.tsx -------------------------------------------------------------------------------- /client/components/fixed/SystemWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/fixed/SystemWarning.tsx -------------------------------------------------------------------------------- /client/components/guide/GuideCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/guide/GuideCards.tsx -------------------------------------------------------------------------------- /client/components/icons/GuideIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/icons/GuideIcons.tsx -------------------------------------------------------------------------------- /client/components/icons/SortIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/icons/SortIcon.tsx -------------------------------------------------------------------------------- /client/components/kol/KOLCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/kol/KOLCard.tsx -------------------------------------------------------------------------------- /client/components/kol/KOLCardSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/kol/KOLCardSkeleton.tsx -------------------------------------------------------------------------------- /client/components/kol/KOLSocialFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/kol/KOLSocialFilter.tsx -------------------------------------------------------------------------------- /client/components/kol/KOLSortSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/kol/KOLSortSelect.tsx -------------------------------------------------------------------------------- /client/components/message/MessageModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/message/MessageModal.tsx -------------------------------------------------------------------------------- /client/components/metrics/FearGreedIndex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/metrics/FearGreedIndex.tsx -------------------------------------------------------------------------------- /client/components/metrics/GlobalMetric.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/metrics/GlobalMetric.tsx -------------------------------------------------------------------------------- /client/components/news/NewsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/news/NewsCard.tsx -------------------------------------------------------------------------------- /client/components/news/NewsCardSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/news/NewsCardSkeleton.tsx -------------------------------------------------------------------------------- /client/components/news/NewsContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/news/NewsContent.tsx -------------------------------------------------------------------------------- /client/components/news/NewsDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/news/NewsDetail.tsx -------------------------------------------------------------------------------- /client/components/news/NewsDetailSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/news/NewsDetailSkeleton.tsx -------------------------------------------------------------------------------- /client/components/notification/NotificationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/notification/NotificationModal.tsx -------------------------------------------------------------------------------- /client/components/premium/PremiumTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/premium/PremiumTable.tsx -------------------------------------------------------------------------------- /client/components/premium/PremiumTableContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/premium/PremiumTableContent.tsx -------------------------------------------------------------------------------- /client/components/premium/PremiumTableSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/premium/PremiumTableSkeleton.tsx -------------------------------------------------------------------------------- /client/components/premium/UsdtPremiumBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/premium/UsdtPremiumBox.tsx -------------------------------------------------------------------------------- /client/components/skeleton/CoinPageSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/skeleton/CoinPageSkeleton.tsx -------------------------------------------------------------------------------- /client/components/toast/PredictResultToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/toast/PredictResultToast.tsx -------------------------------------------------------------------------------- /client/components/withdraw/WithdrawPathCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/components/withdraw/WithdrawPathCard.tsx -------------------------------------------------------------------------------- /client/const/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/const/api.ts -------------------------------------------------------------------------------- /client/const/exchange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/const/exchange.ts -------------------------------------------------------------------------------- /client/const/index.ts: -------------------------------------------------------------------------------- 1 | export const UPBIT_STATIC_IMAGE_URL = "https://static.upbit.com/logos"; 2 | -------------------------------------------------------------------------------- /client/dto/news.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/dto/news.dto.ts -------------------------------------------------------------------------------- /client/dto/withdraw.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/dto/withdraw.dto.ts -------------------------------------------------------------------------------- /client/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/eslint.config.mjs -------------------------------------------------------------------------------- /client/hooks/useChat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/hooks/useChat.ts -------------------------------------------------------------------------------- /client/hooks/useCoinPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/hooks/useCoinPrice.ts -------------------------------------------------------------------------------- /client/hooks/useCurrentPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/hooks/useCurrentPrice.ts -------------------------------------------------------------------------------- /client/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/hooks/useDebounce.ts -------------------------------------------------------------------------------- /client/hooks/useHangangTemp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/hooks/useHangangTemp.ts -------------------------------------------------------------------------------- /client/hooks/useKOLs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/hooks/useKOLs.ts -------------------------------------------------------------------------------- /client/hooks/useMarketData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/hooks/useMarketData.ts -------------------------------------------------------------------------------- /client/hooks/useNews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/hooks/useNews.ts -------------------------------------------------------------------------------- /client/hooks/usePredict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/hooks/usePredict.ts -------------------------------------------------------------------------------- /client/lib/api/globalMetric.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/lib/api/globalMetric.ts -------------------------------------------------------------------------------- /client/lib/api/stockDiscussion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/lib/api/stockDiscussion.ts -------------------------------------------------------------------------------- /client/lib/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/lib/axios.ts -------------------------------------------------------------------------------- /client/lib/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/lib/format.ts -------------------------------------------------------------------------------- /client/lib/gtag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/lib/gtag.ts -------------------------------------------------------------------------------- /client/lib/kol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/lib/kol.ts -------------------------------------------------------------------------------- /client/lib/market.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/lib/market.ts -------------------------------------------------------------------------------- /client/lib/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/lib/socket.ts -------------------------------------------------------------------------------- /client/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/lib/utils.ts -------------------------------------------------------------------------------- /client/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/next-env.d.ts -------------------------------------------------------------------------------- /client/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/next.config.ts -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/package.json -------------------------------------------------------------------------------- /client/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/pnpm-lock.yaml -------------------------------------------------------------------------------- /client/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/postcss.config.mjs -------------------------------------------------------------------------------- /client/providers/QueryClientProviders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/providers/QueryClientProviders.tsx -------------------------------------------------------------------------------- /client/providers/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/providers/ThemeProvider.tsx -------------------------------------------------------------------------------- /client/public/exchanges/binance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/exchanges/binance.svg -------------------------------------------------------------------------------- /client/public/exchanges/bithumb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/exchanges/bithumb.svg -------------------------------------------------------------------------------- /client/public/exchanges/bybit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/exchanges/bybit.svg -------------------------------------------------------------------------------- /client/public/exchanges/coinone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/exchanges/coinone.svg -------------------------------------------------------------------------------- /client/public/exchanges/okx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/exchanges/okx.svg -------------------------------------------------------------------------------- /client/public/exchanges/upbit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/exchanges/upbit.svg -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/fonts/42dotSans/42dotSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/fonts/42dotSans/42dotSans-Bold.ttf -------------------------------------------------------------------------------- /client/public/fonts/42dotSans/42dotSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/fonts/42dotSans/42dotSans-ExtraBold.ttf -------------------------------------------------------------------------------- /client/public/fonts/42dotSans/42dotSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/fonts/42dotSans/42dotSans-Light.ttf -------------------------------------------------------------------------------- /client/public/fonts/42dotSans/42dotSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/fonts/42dotSans/42dotSans-Medium.ttf -------------------------------------------------------------------------------- /client/public/fonts/42dotSans/42dotSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/fonts/42dotSans/42dotSans-Regular.ttf -------------------------------------------------------------------------------- /client/public/fonts/42dotSans/42dotSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/fonts/42dotSans/42dotSans-SemiBold.ttf -------------------------------------------------------------------------------- /client/public/icons/cocoa_black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/cocoa_black.webp -------------------------------------------------------------------------------- /client/public/icons/cocoa_white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/cocoa_white.webp -------------------------------------------------------------------------------- /client/public/icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/code.svg -------------------------------------------------------------------------------- /client/public/icons/distribution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/distribution.svg -------------------------------------------------------------------------------- /client/public/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/github.svg -------------------------------------------------------------------------------- /client/public/icons/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/google.svg -------------------------------------------------------------------------------- /client/public/icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/instagram.svg -------------------------------------------------------------------------------- /client/public/icons/liquidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/liquidity.svg -------------------------------------------------------------------------------- /client/public/icons/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/logo.webp -------------------------------------------------------------------------------- /client/public/icons/logo_black.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/logo_black.webp -------------------------------------------------------------------------------- /client/public/icons/logo_lg.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/logo_lg.webp -------------------------------------------------------------------------------- /client/public/icons/logo_white.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/logo_white.webp -------------------------------------------------------------------------------- /client/public/icons/naver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/naver.svg -------------------------------------------------------------------------------- /client/public/icons/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/og.png -------------------------------------------------------------------------------- /client/public/icons/sale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/sale.svg -------------------------------------------------------------------------------- /client/public/icons/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/telegram.svg -------------------------------------------------------------------------------- /client/public/icons/web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/web.svg -------------------------------------------------------------------------------- /client/public/icons/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/x.svg -------------------------------------------------------------------------------- /client/public/icons/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/icons/youtube.svg -------------------------------------------------------------------------------- /client/public/images/event-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/images/event-banner.png -------------------------------------------------------------------------------- /client/public/images/metrics/btc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/images/metrics/btc.png -------------------------------------------------------------------------------- /client/public/images/metrics/eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/images/metrics/eth.png -------------------------------------------------------------------------------- /client/public/kols/images/Bananamilkrich.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/Bananamilkrich.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/Coinschool_KR.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/Coinschool_KR.jpg -------------------------------------------------------------------------------- /client/public/kols/images/CryptoOwlNotice.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/CryptoOwlNotice.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/DHCALL0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/DHCALL0.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/Dove262.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/Dove262.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/LEEHEESANGDYOR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/LEEHEESANGDYOR.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/airdr0p_lab.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/airdr0p_lab.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/anancoin.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/anancoin.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/baekobaeko.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/baekobaeko.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/bong7greenscale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/bong7greenscale.jpg -------------------------------------------------------------------------------- /client/public/kols/images/cryptocurrencymage.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/cryptocurrencymage.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/eclipsekorean.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/eclipsekorean.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/ggogumma.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/ggogumma.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/grow_airdrop.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/grow_airdrop.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/heedan22.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/heedan22.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/honeybottlenft.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/honeybottlenft.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/inhu0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/inhu0.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/jh_6598.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/jh_6598.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/karmycrypto.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/karmycrypto.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/kwakCrypto.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/kwakCrypto.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/lotsofmakemoney.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/lotsofmakemoney.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/madcurve.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/madcurve.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/magonia_B.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/magonia_B.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/moneybank25.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/moneybank25.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/mysigolgirl.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/mysigolgirl.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/seori_nft.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/seori_nft.jpeg -------------------------------------------------------------------------------- /client/public/kols/images/xcvu1234.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/kols/images/xcvu1234.jpg -------------------------------------------------------------------------------- /client/public/naver5dfa1a7b67eedd2261010a950ee0a803.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/naver5dfa1a7b67eedd2261010a950ee0a803.html -------------------------------------------------------------------------------- /client/public/services/coingecko.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/services/coingecko.svg -------------------------------------------------------------------------------- /client/public/services/coinmarketcap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/services/coinmarketcap.svg -------------------------------------------------------------------------------- /client/public/services/tradingview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/public/services/tradingview.svg -------------------------------------------------------------------------------- /client/store/useActiveUsersStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/store/useActiveUsersStore.ts -------------------------------------------------------------------------------- /client/store/useAuthStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/store/useAuthStore.ts -------------------------------------------------------------------------------- /client/store/useChat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/store/useChat.ts -------------------------------------------------------------------------------- /client/store/useLongShort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/store/useLongShort.ts -------------------------------------------------------------------------------- /client/store/useMarketStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/store/useMarketStore.ts -------------------------------------------------------------------------------- /client/store/useMarketsStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/store/useMarketsStore.ts -------------------------------------------------------------------------------- /client/store/useNotificationStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/store/useNotificationStore.ts -------------------------------------------------------------------------------- /client/store/usePredictStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/store/usePredictStore.ts -------------------------------------------------------------------------------- /client/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/styles/globals.css -------------------------------------------------------------------------------- /client/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/tailwind.config.ts -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /client/types/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/types/api.ts -------------------------------------------------------------------------------- /client/types/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/types/chat.ts -------------------------------------------------------------------------------- /client/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/types/common.ts -------------------------------------------------------------------------------- /client/types/exchange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/types/exchange.ts -------------------------------------------------------------------------------- /client/types/gtag.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/types/gtag.d.ts -------------------------------------------------------------------------------- /client/types/kol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/types/kol.ts -------------------------------------------------------------------------------- /client/types/predict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/types/predict.ts -------------------------------------------------------------------------------- /client/types/scanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/types/scanner.ts -------------------------------------------------------------------------------- /client/types/window.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/types/window.d.ts -------------------------------------------------------------------------------- /client/types/yield.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/client/types/yield.ts -------------------------------------------------------------------------------- /etc/imagedownloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/etc/imagedownloader.ts -------------------------------------------------------------------------------- /etc/imageresizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/etc/imageresizer.ts -------------------------------------------------------------------------------- /etc/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/etc/package-lock.json -------------------------------------------------------------------------------- /etc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/etc/package.json -------------------------------------------------------------------------------- /etc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/etc/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/package.json -------------------------------------------------------------------------------- /server/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/.dockerignore -------------------------------------------------------------------------------- /server/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/.env.example -------------------------------------------------------------------------------- /server/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/.prettierrc -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/Dockerfile -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/README.md -------------------------------------------------------------------------------- /server/config/binance-fees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/config/binance-fees.json -------------------------------------------------------------------------------- /server/config/bithumb-fees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/config/bithumb-fees.json -------------------------------------------------------------------------------- /server/config/coinone-fees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/config/coinone-fees.json -------------------------------------------------------------------------------- /server/config/okx-fees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/config/okx-fees.json -------------------------------------------------------------------------------- /server/config/upbit-fees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/config/upbit-fees.json -------------------------------------------------------------------------------- /server/docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/docker-compose.prod.yml -------------------------------------------------------------------------------- /server/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/docker-compose.yml -------------------------------------------------------------------------------- /server/drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle.config.ts -------------------------------------------------------------------------------- /server/drizzle/migrations/0000_marvelous_pride.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0000_marvelous_pride.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0001_outstanding_longshot.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "news" ADD COLUMN "title" text NOT NULL; -------------------------------------------------------------------------------- /server/drizzle/migrations/0002_right_rocket_racer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0002_right_rocket_racer.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0003_easy_firestar.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0003_easy_firestar.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0004_numerous_shinko_yamashiro.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0004_numerous_shinko_yamashiro.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0005_outgoing_mister_fear.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0005_outgoing_mister_fear.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0006_smart_malice.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "news" ADD COLUMN "type" text DEFAULT 'COIN'; -------------------------------------------------------------------------------- /server/drizzle/migrations/0007_faulty_omega_red.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0007_faulty_omega_red.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0008_certain_hairball.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0008_certain_hairball.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0009_luxuriant_payback.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0009_luxuriant_payback.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0010_early_namor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0010_early_namor.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0011_free_colleen_wing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0011_free_colleen_wing.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0011_profile_stats_pk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0011_profile_stats_pk.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0012_funny_felicia_hardy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0012_funny_felicia_hardy.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0013_flippant_omega_red.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0013_flippant_omega_red.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0014_friendly_night_thrasher.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0014_friendly_night_thrasher.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0015_clean_zemo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0015_clean_zemo.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0016_jazzy_ozymandias.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0016_jazzy_ozymandias.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0017_parched_leader.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0017_parched_leader.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0018_chilly_stephen_strange.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0018_chilly_stephen_strange.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0019_elite_speedball.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0019_elite_speedball.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0020_melodic_abomination.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0020_melodic_abomination.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0021_magenta_amphibian.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "users" ADD COLUMN "bio" text DEFAULT ''; -------------------------------------------------------------------------------- /server/drizzle/migrations/0022_orange_ben_parker.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0022_orange_ben_parker.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0023_dashing_true_believers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0023_dashing_true_believers.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0024_tiresome_blade.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0024_tiresome_blade.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0025_wise_komodo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0025_wise_komodo.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0026_lethal_garia.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0026_lethal_garia.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0027_amazing_skreet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0027_amazing_skreet.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0028_oval_typhoid_mary.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0028_oval_typhoid_mary.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0029_regular_rocket_racer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0029_regular_rocket_racer.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0030_white_riptide.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "banners" ADD COLUMN "forward_url" text NOT NULL; -------------------------------------------------------------------------------- /server/drizzle/migrations/0031_unknown_frog_thor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/0031_unknown_frog_thor.sql -------------------------------------------------------------------------------- /server/drizzle/migrations/0032_tan_rocket_raccoon.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "banner_items" ADD COLUMN "cocoa_money_per_day" numeric(10, 2) NOT NULL; -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0000_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0001_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0002_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0002_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0003_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0003_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0004_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0004_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0005_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0005_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0006_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0006_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0007_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0007_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0008_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0008_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0009_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0009_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0010_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0010_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0011_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0011_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0012_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0012_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0013_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0013_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0014_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0014_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0015_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0015_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0016_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0016_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0017_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0017_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0018_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0018_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0019_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0019_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0020_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0020_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0021_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0021_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0022_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0022_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0023_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0023_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0024_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0024_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0025_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0025_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0026_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0026_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0027_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0027_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0028_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0028_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0029_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0029_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0030_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0030_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0031_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0031_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/0032_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/0032_snapshot.json -------------------------------------------------------------------------------- /server/drizzle/migrations/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/drizzle/migrations/meta/_journal.json -------------------------------------------------------------------------------- /server/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/eslint.config.mjs -------------------------------------------------------------------------------- /server/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/nest-cli.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/package.json -------------------------------------------------------------------------------- /server/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/pnpm-lock.yaml -------------------------------------------------------------------------------- /server/src/admin/admin.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/admin/admin.controller.ts -------------------------------------------------------------------------------- /server/src/admin/admin.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/admin/admin.module.ts -------------------------------------------------------------------------------- /server/src/admin/admin.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/admin/admin.service.ts -------------------------------------------------------------------------------- /server/src/admin/decorators/current-admin.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/admin/decorators/current-admin.decorator.ts -------------------------------------------------------------------------------- /server/src/admin/dto/login.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/admin/dto/login.dto.ts -------------------------------------------------------------------------------- /server/src/admin/dto/update-admin.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/admin/dto/update-admin.dto.ts -------------------------------------------------------------------------------- /server/src/admin/guards/jwt-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/admin/guards/jwt-auth.guard.ts -------------------------------------------------------------------------------- /server/src/admin/strategies/jwt-admin.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/admin/strategies/jwt-admin.strategy.ts -------------------------------------------------------------------------------- /server/src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/app.controller.spec.ts -------------------------------------------------------------------------------- /server/src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/app.controller.ts -------------------------------------------------------------------------------- /server/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/app.module.ts -------------------------------------------------------------------------------- /server/src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/app.service.ts -------------------------------------------------------------------------------- /server/src/auth/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/auth/auth.controller.ts -------------------------------------------------------------------------------- /server/src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/auth/auth.module.ts -------------------------------------------------------------------------------- /server/src/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/auth/auth.service.ts -------------------------------------------------------------------------------- /server/src/auth/client/google.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/auth/client/google.client.ts -------------------------------------------------------------------------------- /server/src/auth/client/naver.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/auth/client/naver.client.ts -------------------------------------------------------------------------------- /server/src/auth/decorators/current-user.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/auth/decorators/current-user.decorator.ts -------------------------------------------------------------------------------- /server/src/auth/guards/jwt-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/auth/guards/jwt-auth.guard.ts -------------------------------------------------------------------------------- /server/src/auth/strategies/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/auth/strategies/jwt.strategy.ts -------------------------------------------------------------------------------- /server/src/aws/aws.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/aws/aws.module.ts -------------------------------------------------------------------------------- /server/src/aws/aws.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/aws/aws.service.ts -------------------------------------------------------------------------------- /server/src/banner/banner.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/banner/banner.controller.ts -------------------------------------------------------------------------------- /server/src/banner/banner.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/banner/banner.module.ts -------------------------------------------------------------------------------- /server/src/banner/banner.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/banner/banner.service.ts -------------------------------------------------------------------------------- /server/src/chat/chat.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/chat/chat.controller.ts -------------------------------------------------------------------------------- /server/src/chat/chat.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/chat/chat.module.ts -------------------------------------------------------------------------------- /server/src/chat/chat.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/chat/chat.service.ts -------------------------------------------------------------------------------- /server/src/chat/chat.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/chat/chat.type.ts -------------------------------------------------------------------------------- /server/src/collector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/collector.ts -------------------------------------------------------------------------------- /server/src/collector/clients/binance.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/collector/clients/binance.client.ts -------------------------------------------------------------------------------- /server/src/collector/clients/bithumb-websocket.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/collector/clients/bithumb-websocket.client.ts -------------------------------------------------------------------------------- /server/src/collector/clients/coinone-websocket.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/collector/clients/coinone-websocket.client.ts -------------------------------------------------------------------------------- /server/src/collector/clients/exchange-rate.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/collector/clients/exchange-rate.client.ts -------------------------------------------------------------------------------- /server/src/collector/clients/fee.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/collector/clients/fee.client.ts -------------------------------------------------------------------------------- /server/src/collector/clients/okx.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/collector/clients/okx.client.ts -------------------------------------------------------------------------------- /server/src/collector/clients/upbit-websocket.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/collector/clients/upbit-websocket.client.ts -------------------------------------------------------------------------------- /server/src/collector/clients/upbit.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/collector/clients/upbit.client.ts -------------------------------------------------------------------------------- /server/src/collector/collector.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/collector/collector.module.ts -------------------------------------------------------------------------------- /server/src/collector/collector.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/collector/collector.service.ts -------------------------------------------------------------------------------- /server/src/collector/services/market-codes.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/collector/services/market-codes.service.ts -------------------------------------------------------------------------------- /server/src/collector/types/binance.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/collector/types/binance.types.ts -------------------------------------------------------------------------------- /server/src/collector/types/bithumb.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/collector/types/bithumb.types.ts -------------------------------------------------------------------------------- /server/src/collector/types/coinone.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/collector/types/coinone.types.ts -------------------------------------------------------------------------------- /server/src/collector/types/common.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/collector/types/common.types.ts -------------------------------------------------------------------------------- /server/src/collector/types/upbit.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/collector/types/upbit.types.ts -------------------------------------------------------------------------------- /server/src/config/config.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/config/config.module.ts -------------------------------------------------------------------------------- /server/src/database/database.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/database.module.ts -------------------------------------------------------------------------------- /server/src/database/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/migrate.ts -------------------------------------------------------------------------------- /server/src/database/migrations/add_title_to_news.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/migrations/add_title_to_news.ts -------------------------------------------------------------------------------- /server/src/database/schema/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/admin.ts -------------------------------------------------------------------------------- /server/src/database/schema/banner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/banner.ts -------------------------------------------------------------------------------- /server/src/database/schema/exchange-rate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/exchange-rate.ts -------------------------------------------------------------------------------- /server/src/database/schema/fee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/fee.ts -------------------------------------------------------------------------------- /server/src/database/schema/guestbook-comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/guestbook-comment.ts -------------------------------------------------------------------------------- /server/src/database/schema/guestbook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/guestbook.ts -------------------------------------------------------------------------------- /server/src/database/schema/index.ts: -------------------------------------------------------------------------------- 1 | export * from './market'; -------------------------------------------------------------------------------- /server/src/database/schema/kol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/kol.ts -------------------------------------------------------------------------------- /server/src/database/schema/market.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/market.ts -------------------------------------------------------------------------------- /server/src/database/schema/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/message.ts -------------------------------------------------------------------------------- /server/src/database/schema/news.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/news.ts -------------------------------------------------------------------------------- /server/src/database/schema/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/notification.ts -------------------------------------------------------------------------------- /server/src/database/schema/predict-log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/predict-log.ts -------------------------------------------------------------------------------- /server/src/database/schema/predict.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/predict.ts -------------------------------------------------------------------------------- /server/src/database/schema/profile-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/profile-stats.ts -------------------------------------------------------------------------------- /server/src/database/schema/stock-discussion-comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/stock-discussion-comment.ts -------------------------------------------------------------------------------- /server/src/database/schema/stock-discussion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/stock-discussion.ts -------------------------------------------------------------------------------- /server/src/database/schema/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/user.ts -------------------------------------------------------------------------------- /server/src/database/schema/yield.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/database/schema/yield.ts -------------------------------------------------------------------------------- /server/src/exchange/exchange.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/exchange/exchange.controller.ts -------------------------------------------------------------------------------- /server/src/exchange/exchange.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/exchange/exchange.module.ts -------------------------------------------------------------------------------- /server/src/exchange/exchange.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/exchange/exchange.service.ts -------------------------------------------------------------------------------- /server/src/gateway/app.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/gateway/app.gateway.ts -------------------------------------------------------------------------------- /server/src/gateway/gateway.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/gateway/gateway.module.ts -------------------------------------------------------------------------------- /server/src/guestbook/guestbook.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/guestbook/guestbook.controller.ts -------------------------------------------------------------------------------- /server/src/guestbook/guestbook.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/guestbook/guestbook.module.ts -------------------------------------------------------------------------------- /server/src/guestbook/guestbook.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/guestbook/guestbook.service.ts -------------------------------------------------------------------------------- /server/src/kol/dto/kol.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/kol/dto/kol.dto.ts -------------------------------------------------------------------------------- /server/src/kol/kol.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/kol/kol.controller.ts -------------------------------------------------------------------------------- /server/src/kol/kol.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/kol/kol.module.ts -------------------------------------------------------------------------------- /server/src/kol/kol.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/kol/kol.repository.ts -------------------------------------------------------------------------------- /server/src/kol/kol.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/kol/kol.service.ts -------------------------------------------------------------------------------- /server/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/main.ts -------------------------------------------------------------------------------- /server/src/message/dto/create-message.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/message/dto/create-message.dto.ts -------------------------------------------------------------------------------- /server/src/message/message.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/message/message.controller.ts -------------------------------------------------------------------------------- /server/src/message/message.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/message/message.module.ts -------------------------------------------------------------------------------- /server/src/message/message.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/message/message.service.ts -------------------------------------------------------------------------------- /server/src/news/clients/openai.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/news/clients/openai.client.ts -------------------------------------------------------------------------------- /server/src/news/clients/twitter.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/news/clients/twitter.client.ts -------------------------------------------------------------------------------- /server/src/news/clients/web-search.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/news/clients/web-search.client.ts -------------------------------------------------------------------------------- /server/src/news/news.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/news/news.controller.ts -------------------------------------------------------------------------------- /server/src/news/news.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/news/news.module.ts -------------------------------------------------------------------------------- /server/src/news/news.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/news/news.repository.ts -------------------------------------------------------------------------------- /server/src/news/news.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/news/news.service.ts -------------------------------------------------------------------------------- /server/src/news/types/news.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/news/types/news.types.ts -------------------------------------------------------------------------------- /server/src/notification/notification.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/notification/notification.controller.ts -------------------------------------------------------------------------------- /server/src/notification/notification.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/notification/notification.module.ts -------------------------------------------------------------------------------- /server/src/notification/notification.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/notification/notification.service.ts -------------------------------------------------------------------------------- /server/src/predict/predict.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/predict/predict.controller.ts -------------------------------------------------------------------------------- /server/src/predict/predict.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/predict/predict.module.ts -------------------------------------------------------------------------------- /server/src/predict/predict.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/predict/predict.service.ts -------------------------------------------------------------------------------- /server/src/profile-stats/profile-stats.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/profile-stats/profile-stats.controller.ts -------------------------------------------------------------------------------- /server/src/profile-stats/profile-stats.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/profile-stats/profile-stats.module.ts -------------------------------------------------------------------------------- /server/src/profile-stats/profile-stats.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/profile-stats/profile-stats.service.ts -------------------------------------------------------------------------------- /server/src/redis/redis.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/redis/redis.service.ts -------------------------------------------------------------------------------- /server/src/stock-discussion/stock-discussion.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/stock-discussion/stock-discussion.controller.ts -------------------------------------------------------------------------------- /server/src/stock-discussion/stock-discussion.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/stock-discussion/stock-discussion.module.ts -------------------------------------------------------------------------------- /server/src/stock-discussion/stock-discussion.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/stock-discussion/stock-discussion.service.ts -------------------------------------------------------------------------------- /server/src/test/test.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/test/test.controller.ts -------------------------------------------------------------------------------- /server/src/test/test.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/test/test.module.ts -------------------------------------------------------------------------------- /server/src/user/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/user/user.controller.ts -------------------------------------------------------------------------------- /server/src/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/user/user.module.ts -------------------------------------------------------------------------------- /server/src/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/user/user.service.ts -------------------------------------------------------------------------------- /server/src/withdraw/types/withdraw.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/withdraw/types/withdraw.types.ts -------------------------------------------------------------------------------- /server/src/withdraw/withdraw.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/withdraw/withdraw.controller.ts -------------------------------------------------------------------------------- /server/src/withdraw/withdraw.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/withdraw/withdraw.module.ts -------------------------------------------------------------------------------- /server/src/withdraw/withdraw.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/withdraw/withdraw.service.ts -------------------------------------------------------------------------------- /server/src/yield/yield.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/yield/yield.controller.ts -------------------------------------------------------------------------------- /server/src/yield/yield.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/yield/yield.module.ts -------------------------------------------------------------------------------- /server/src/yield/yield.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/src/yield/yield.service.ts -------------------------------------------------------------------------------- /server/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/tsconfig.build.json -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshephan/cocoa/HEAD/tailwind.config.js --------------------------------------------------------------------------------