├── .env.example ├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── app ├── actions.ts ├── api │ ├── auth │ │ └── callback │ │ │ └── route.ts │ ├── chat │ │ └── route.ts │ └── web3auth │ │ ├── login │ │ └── route.ts │ │ └── nonce │ │ └── route.ts ├── chat │ └── [id] │ │ └── page.tsx ├── globals.css ├── layout.tsx ├── opengraph-image.png ├── page.tsx ├── share │ └── [id] │ │ └── page.tsx ├── sign-in │ └── page.tsx └── twitter-image.png ├── assets └── fonts │ ├── Inter-Bold.woff │ └── Inter-Regular.woff ├── auth.ts ├── codegen.yml ├── components ├── button-scroll-to-bottom.tsx ├── chat-list.tsx ├── chat-message-actions.tsx ├── chat-message.tsx ├── chat-panel.tsx ├── chat-scroll-anchor.tsx ├── chat.tsx ├── clear-history.tsx ├── empty-screen.tsx ├── external-link.tsx ├── footer.tsx ├── header.tsx ├── login-button-metamask.tsx ├── markdown.tsx ├── profile.tsx ├── prompt-form.tsx ├── providers.tsx ├── sidebar-actions.tsx ├── sidebar-footer.tsx ├── sidebar-item.tsx ├── sidebar-list.tsx ├── sidebar.tsx ├── tailwind-indicator.tsx ├── theme-toggle.tsx ├── toaster.tsx ├── ui │ ├── alert-dialog.tsx │ ├── badge.tsx │ ├── button.tsx │ ├── codeblock.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── icons.tsx │ ├── input.tsx │ ├── label.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── switch.tsx │ ├── textarea.tsx │ └── tooltip.tsx └── user-menu.tsx ├── docs ├── README_improvements_ideas.md ├── README_web3_auth_supabase.md ├── README_web3_tokens_and_networks.md └── assets │ ├── metamask_add_network.png │ ├── ocean_publish_datatoken.png │ ├── supabase_jwt_policy.png │ ├── supabase_user_table.png │ ├── table_users_linked_id.png │ ├── tokengated_chatbot.png │ └── your_datatoken.png ├── graphql ├── graphqlClient.ts ├── operations │ └── queries │ │ ├── getOrder.graphql │ │ ├── getOrders.graphql │ │ └── getUser.graphql ├── schema.graphql └── sdk.ts ├── lib ├── analytics.ts ├── db_types.ts ├── fonts.ts ├── hooks │ ├── use-at-bottom.tsx │ ├── use-copy-to-clipboard.tsx │ ├── use-enter-submit.tsx │ └── use-local-storage.ts ├── types.ts └── utils.ts ├── middleware.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── prettier.config.cjs ├── public ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon.ico ├── next.svg ├── thirteen.svg └── vercel.svg ├── supabase ├── .gitignore ├── config.toml ├── functions │ └── client.ts ├── migrations │ └── 20230707053030_init.sql └── seed.sql ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/README.md -------------------------------------------------------------------------------- /app/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/app/actions.ts -------------------------------------------------------------------------------- /app/api/auth/callback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/app/api/auth/callback/route.ts -------------------------------------------------------------------------------- /app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/app/api/chat/route.ts -------------------------------------------------------------------------------- /app/api/web3auth/login/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/app/api/web3auth/login/route.ts -------------------------------------------------------------------------------- /app/api/web3auth/nonce/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/app/api/web3auth/nonce/route.ts -------------------------------------------------------------------------------- /app/chat/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/app/chat/[id]/page.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/app/opengraph-image.png -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/share/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/app/share/[id]/page.tsx -------------------------------------------------------------------------------- /app/sign-in/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/app/sign-in/page.tsx -------------------------------------------------------------------------------- /app/twitter-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/app/twitter-image.png -------------------------------------------------------------------------------- /assets/fonts/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/assets/fonts/Inter-Bold.woff -------------------------------------------------------------------------------- /assets/fonts/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/assets/fonts/Inter-Regular.woff -------------------------------------------------------------------------------- /auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/auth.ts -------------------------------------------------------------------------------- /codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/codegen.yml -------------------------------------------------------------------------------- /components/button-scroll-to-bottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/button-scroll-to-bottom.tsx -------------------------------------------------------------------------------- /components/chat-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/chat-list.tsx -------------------------------------------------------------------------------- /components/chat-message-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/chat-message-actions.tsx -------------------------------------------------------------------------------- /components/chat-message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/chat-message.tsx -------------------------------------------------------------------------------- /components/chat-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/chat-panel.tsx -------------------------------------------------------------------------------- /components/chat-scroll-anchor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/chat-scroll-anchor.tsx -------------------------------------------------------------------------------- /components/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/chat.tsx -------------------------------------------------------------------------------- /components/clear-history.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/clear-history.tsx -------------------------------------------------------------------------------- /components/empty-screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/empty-screen.tsx -------------------------------------------------------------------------------- /components/external-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/external-link.tsx -------------------------------------------------------------------------------- /components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/footer.tsx -------------------------------------------------------------------------------- /components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/header.tsx -------------------------------------------------------------------------------- /components/login-button-metamask.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/login-button-metamask.tsx -------------------------------------------------------------------------------- /components/markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/markdown.tsx -------------------------------------------------------------------------------- /components/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/profile.tsx -------------------------------------------------------------------------------- /components/prompt-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/prompt-form.tsx -------------------------------------------------------------------------------- /components/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/providers.tsx -------------------------------------------------------------------------------- /components/sidebar-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/sidebar-actions.tsx -------------------------------------------------------------------------------- /components/sidebar-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/sidebar-footer.tsx -------------------------------------------------------------------------------- /components/sidebar-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/sidebar-item.tsx -------------------------------------------------------------------------------- /components/sidebar-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/sidebar-list.tsx -------------------------------------------------------------------------------- /components/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/sidebar.tsx -------------------------------------------------------------------------------- /components/tailwind-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/tailwind-indicator.tsx -------------------------------------------------------------------------------- /components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/theme-toggle.tsx -------------------------------------------------------------------------------- /components/toaster.tsx: -------------------------------------------------------------------------------- 1 | 'use client' 2 | 3 | export { Toaster } from 'react-hot-toast' 4 | -------------------------------------------------------------------------------- /components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/codeblock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/ui/codeblock.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/ui/icons.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/user-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/components/user-menu.tsx -------------------------------------------------------------------------------- /docs/README_improvements_ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/docs/README_improvements_ideas.md -------------------------------------------------------------------------------- /docs/README_web3_auth_supabase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/docs/README_web3_auth_supabase.md -------------------------------------------------------------------------------- /docs/README_web3_tokens_and_networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/docs/README_web3_tokens_and_networks.md -------------------------------------------------------------------------------- /docs/assets/metamask_add_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/docs/assets/metamask_add_network.png -------------------------------------------------------------------------------- /docs/assets/ocean_publish_datatoken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/docs/assets/ocean_publish_datatoken.png -------------------------------------------------------------------------------- /docs/assets/supabase_jwt_policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/docs/assets/supabase_jwt_policy.png -------------------------------------------------------------------------------- /docs/assets/supabase_user_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/docs/assets/supabase_user_table.png -------------------------------------------------------------------------------- /docs/assets/table_users_linked_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/docs/assets/table_users_linked_id.png -------------------------------------------------------------------------------- /docs/assets/tokengated_chatbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/docs/assets/tokengated_chatbot.png -------------------------------------------------------------------------------- /docs/assets/your_datatoken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/docs/assets/your_datatoken.png -------------------------------------------------------------------------------- /graphql/graphqlClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/graphql/graphqlClient.ts -------------------------------------------------------------------------------- /graphql/operations/queries/getOrder.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/graphql/operations/queries/getOrder.graphql -------------------------------------------------------------------------------- /graphql/operations/queries/getOrders.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/graphql/operations/queries/getOrders.graphql -------------------------------------------------------------------------------- /graphql/operations/queries/getUser.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/graphql/operations/queries/getUser.graphql -------------------------------------------------------------------------------- /graphql/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/graphql/schema.graphql -------------------------------------------------------------------------------- /graphql/sdk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/graphql/sdk.ts -------------------------------------------------------------------------------- /lib/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/lib/analytics.ts -------------------------------------------------------------------------------- /lib/db_types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/lib/db_types.ts -------------------------------------------------------------------------------- /lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/lib/fonts.ts -------------------------------------------------------------------------------- /lib/hooks/use-at-bottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/lib/hooks/use-at-bottom.tsx -------------------------------------------------------------------------------- /lib/hooks/use-copy-to-clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/lib/hooks/use-copy-to-clipboard.tsx -------------------------------------------------------------------------------- /lib/hooks/use-enter-submit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/lib/hooks/use-enter-submit.tsx -------------------------------------------------------------------------------- /lib/hooks/use-local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/lib/hooks/use-local-storage.ts -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/lib/types.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/middleware.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/thirteen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/public/thirteen.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /supabase/.gitignore: -------------------------------------------------------------------------------- 1 | # Supabase 2 | .branches 3 | .temp 4 | -------------------------------------------------------------------------------- /supabase/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/supabase/config.toml -------------------------------------------------------------------------------- /supabase/functions/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/supabase/functions/client.ts -------------------------------------------------------------------------------- /supabase/migrations/20230707053030_init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/supabase/migrations/20230707053030_init.sql -------------------------------------------------------------------------------- /supabase/seed.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oceanprotocol/tokengated-next-chatgpt/HEAD/yarn.lock --------------------------------------------------------------------------------