)}
@@ -96,7 +105,12 @@ export default function ExploreProjectsPage() {
No Projects Found
@@ -106,5 +120,3 @@ export default function ExploreProjectsPage() {
>
);
}
-
-
diff --git a/apps/create-hypergraph/template-vite-react/.prettierrc b/apps/create-hypergraph/template-vite-react/.prettierrc
index f65aabcb..0981b7cc 100644
--- a/apps/create-hypergraph/template-vite-react/.prettierrc
+++ b/apps/create-hypergraph/template-vite-react/.prettierrc
@@ -1,4 +1,4 @@
{
"singleQuote": true,
"printWidth": 120
-}
\ No newline at end of file
+}
diff --git a/apps/create-hypergraph/template-vite-react/README.md b/apps/create-hypergraph/template-vite-react/README.md
index de323c10..726a5613 100644
--- a/apps/create-hypergraph/template-vite-react/README.md
+++ b/apps/create-hypergraph/template-vite-react/README.md
@@ -1,3 +1,3 @@
# Hypergraph + Vite + React
-This template is a minimal setup for a [Hypergraph](https://github.com/graphprotocol/hypergraph) app using Vite and React.
\ No newline at end of file
+This template is a minimal setup for a [Hypergraph](https://github.com/graphprotocol/hypergraph) app using Vite and React.
diff --git a/apps/create-hypergraph/template-vite-react/eslint.config.mjs b/apps/create-hypergraph/template-vite-react/eslint.config.mjs
index fc7617f8..cfd81c93 100644
--- a/apps/create-hypergraph/template-vite-react/eslint.config.mjs
+++ b/apps/create-hypergraph/template-vite-react/eslint.config.mjs
@@ -1,8 +1,8 @@
-import js from '@eslint/js'
-import globals from 'globals'
-import reactHooks from 'eslint-plugin-react-hooks'
-import reactRefresh from 'eslint-plugin-react-refresh'
-import tseslint from 'typescript-eslint'
+import js from '@eslint/js';
+import globals from 'globals';
+import reactHooks from 'eslint-plugin-react-hooks';
+import reactRefresh from 'eslint-plugin-react-refresh';
+import tseslint from 'typescript-eslint';
export default tseslint.config(
{ ignores: ['dist'] },
@@ -19,10 +19,7 @@ export default tseslint.config(
},
rules: {
...reactHooks.configs.recommended.rules,
- 'react-refresh/only-export-components': [
- 'warn',
- { allowConstantExport: true },
- ],
+ 'react-refresh/only-export-components': ['warn', { allowConstantExport: true }],
},
},
-)
\ No newline at end of file
+);
diff --git a/apps/create-hypergraph/template-vite-react/src/components/explore-tabs.tsx b/apps/create-hypergraph/template-vite-react/src/components/explore-tabs.tsx
index c0c0e174..c6a949ae 100644
--- a/apps/create-hypergraph/template-vite-react/src/components/explore-tabs.tsx
+++ b/apps/create-hypergraph/template-vite-react/src/components/explore-tabs.tsx
@@ -10,7 +10,7 @@ const tabs: Tab[] = [
{ label: 'Projects', to: '/explore-public-knowledge/projects' },
{ label: 'dApps', to: '/explore-public-knowledge/dapps' },
{ label: 'Investment Rounds', to: '/explore-public-knowledge/investment-rounds' },
- { label: 'Asset Market', to: '/explore-public-knowledge/asset-market' },
+ { label: 'Assets', to: '/explore-public-knowledge/assets' },
];
export function ExploreTabs() {
diff --git a/apps/create-hypergraph/template-vite-react/src/index.css b/apps/create-hypergraph/template-vite-react/src/index.css
index cab93eb5..c2f75965 100644
--- a/apps/create-hypergraph/template-vite-react/src/index.css
+++ b/apps/create-hypergraph/template-vite-react/src/index.css
@@ -1,5 +1,5 @@
@import 'tailwindcss';
-@import "tw-animate-css";
+@import 'tw-animate-css';
@custom-variant dark (&:is(.dark *));
@@ -117,4 +117,4 @@
body {
@apply bg-background text-foreground;
}
-}
\ No newline at end of file
+}
diff --git a/apps/create-hypergraph/template-vite-react/src/main.tsx b/apps/create-hypergraph/template-vite-react/src/main.tsx
index 5a5fcd00..0cfcb1ac 100644
--- a/apps/create-hypergraph/template-vite-react/src/main.tsx
+++ b/apps/create-hypergraph/template-vite-react/src/main.tsx
@@ -28,4 +28,4 @@ if (rootElement && !rootElement.innerHTML) {
,
// ,
);
-}
\ No newline at end of file
+}
diff --git a/apps/create-hypergraph/template-vite-react/src/routeTree.gen.ts b/apps/create-hypergraph/template-vite-react/src/routeTree.gen.ts
index 11206355..78413e5a 100644
--- a/apps/create-hypergraph/template-vite-react/src/routeTree.gen.ts
+++ b/apps/create-hypergraph/template-vite-react/src/routeTree.gen.ts
@@ -8,274 +8,265 @@
// You should NOT make any changes in this file as it will be overwritten.
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
-import { Route as rootRouteImport } from './routes/__root'
-import { Route as LoginRouteImport } from './routes/login'
-import { Route as ExplorePublicKnowledgeRouteImport } from './routes/explore-public-knowledge'
-import { Route as AuthenticateSuccessRouteImport } from './routes/authenticate-success'
-import { Route as IndexRouteImport } from './routes/index'
-import { Route as ExplorePublicKnowledgeIndexRouteImport } from './routes/explore-public-knowledge/index'
-import { Route as PublicSpaceSpaceIdRouteImport } from './routes/public-space/$space-id'
-import { Route as PrivateSpaceSpaceIdRouteImport } from './routes/private-space/$space-id'
-import { Route as ExplorePublicKnowledgeProjectsRouteImport } from './routes/explore-public-knowledge/projects'
-import { Route as ExplorePublicKnowledgeInvestmentRoundsRouteImport } from './routes/explore-public-knowledge/investment-rounds'
-import { Route as ExplorePublicKnowledgeDappsRouteImport } from './routes/explore-public-knowledge/dapps'
-import { Route as ExplorePublicKnowledgeAssetMarketRouteImport } from './routes/explore-public-knowledge/asset-market'
+import { Route as rootRouteImport } from './routes/__root';
+import { Route as LoginRouteImport } from './routes/login';
+import { Route as ExplorePublicKnowledgeRouteImport } from './routes/explore-public-knowledge';
+import { Route as AuthenticateSuccessRouteImport } from './routes/authenticate-success';
+import { Route as IndexRouteImport } from './routes/index';
+import { Route as ExplorePublicKnowledgeIndexRouteImport } from './routes/explore-public-knowledge/index';
+import { Route as PublicSpaceSpaceIdRouteImport } from './routes/public-space/$space-id';
+import { Route as PrivateSpaceSpaceIdRouteImport } from './routes/private-space/$space-id';
+import { Route as ExplorePublicKnowledgeProjectsRouteImport } from './routes/explore-public-knowledge/projects';
+import { Route as ExplorePublicKnowledgeInvestmentRoundsRouteImport } from './routes/explore-public-knowledge/investment-rounds';
+import { Route as ExplorePublicKnowledgeDappsRouteImport } from './routes/explore-public-knowledge/dapps';
+import { Route as ExplorePublicKnowledgeAssetsRouteImport } from './routes/explore-public-knowledge/assets';
const LoginRoute = LoginRouteImport.update({
id: '/login',
path: '/login',
getParentRoute: () => rootRouteImport,
-} as any)
+} as any);
const ExplorePublicKnowledgeRoute = ExplorePublicKnowledgeRouteImport.update({
id: '/explore-public-knowledge',
path: '/explore-public-knowledge',
getParentRoute: () => rootRouteImport,
-} as any)
+} as any);
const AuthenticateSuccessRoute = AuthenticateSuccessRouteImport.update({
id: '/authenticate-success',
path: '/authenticate-success',
getParentRoute: () => rootRouteImport,
-} as any)
+} as any);
const IndexRoute = IndexRouteImport.update({
id: '/',
path: '/',
getParentRoute: () => rootRouteImport,
-} as any)
-const ExplorePublicKnowledgeIndexRoute =
- ExplorePublicKnowledgeIndexRouteImport.update({
- id: '/',
- path: '/',
- getParentRoute: () => ExplorePublicKnowledgeRoute,
- } as any)
+} as any);
+const ExplorePublicKnowledgeIndexRoute = ExplorePublicKnowledgeIndexRouteImport.update({
+ id: '/',
+ path: '/',
+ getParentRoute: () => ExplorePublicKnowledgeRoute,
+} as any);
const PublicSpaceSpaceIdRoute = PublicSpaceSpaceIdRouteImport.update({
id: '/public-space/$space-id',
path: '/public-space/$space-id',
getParentRoute: () => rootRouteImport,
-} as any)
+} as any);
const PrivateSpaceSpaceIdRoute = PrivateSpaceSpaceIdRouteImport.update({
id: '/private-space/$space-id',
path: '/private-space/$space-id',
getParentRoute: () => rootRouteImport,
-} as any)
-const ExplorePublicKnowledgeProjectsRoute =
- ExplorePublicKnowledgeProjectsRouteImport.update({
- id: '/projects',
- path: '/projects',
- getParentRoute: () => ExplorePublicKnowledgeRoute,
- } as any)
-const ExplorePublicKnowledgeInvestmentRoundsRoute =
- ExplorePublicKnowledgeInvestmentRoundsRouteImport.update({
- id: '/investment-rounds',
- path: '/investment-rounds',
- getParentRoute: () => ExplorePublicKnowledgeRoute,
- } as any)
-const ExplorePublicKnowledgeDappsRoute =
- ExplorePublicKnowledgeDappsRouteImport.update({
- id: '/dapps',
- path: '/dapps',
- getParentRoute: () => ExplorePublicKnowledgeRoute,
- } as any)
-const ExplorePublicKnowledgeAssetMarketRoute =
- ExplorePublicKnowledgeAssetMarketRouteImport.update({
- id: '/asset-market',
- path: '/asset-market',
- getParentRoute: () => ExplorePublicKnowledgeRoute,
- } as any)
+} as any);
+const ExplorePublicKnowledgeProjectsRoute = ExplorePublicKnowledgeProjectsRouteImport.update({
+ id: '/projects',
+ path: '/projects',
+ getParentRoute: () => ExplorePublicKnowledgeRoute,
+} as any);
+const ExplorePublicKnowledgeInvestmentRoundsRoute = ExplorePublicKnowledgeInvestmentRoundsRouteImport.update({
+ id: '/investment-rounds',
+ path: '/investment-rounds',
+ getParentRoute: () => ExplorePublicKnowledgeRoute,
+} as any);
+const ExplorePublicKnowledgeDappsRoute = ExplorePublicKnowledgeDappsRouteImport.update({
+ id: '/dapps',
+ path: '/dapps',
+ getParentRoute: () => ExplorePublicKnowledgeRoute,
+} as any);
+const ExplorePublicKnowledgeAssetsRoute = ExplorePublicKnowledgeAssetsRouteImport.update({
+ id: '/assets',
+ path: '/assets',
+ getParentRoute: () => ExplorePublicKnowledgeRoute,
+} as any);
export interface FileRoutesByFullPath {
- '/': typeof IndexRoute
- '/authenticate-success': typeof AuthenticateSuccessRoute
- '/explore-public-knowledge': typeof ExplorePublicKnowledgeRouteWithChildren
- '/login': typeof LoginRoute
- '/explore-public-knowledge/asset-market': typeof ExplorePublicKnowledgeAssetMarketRoute
- '/explore-public-knowledge/dapps': typeof ExplorePublicKnowledgeDappsRoute
- '/explore-public-knowledge/investment-rounds': typeof ExplorePublicKnowledgeInvestmentRoundsRoute
- '/explore-public-knowledge/projects': typeof ExplorePublicKnowledgeProjectsRoute
- '/private-space/$space-id': typeof PrivateSpaceSpaceIdRoute
- '/public-space/$space-id': typeof PublicSpaceSpaceIdRoute
- '/explore-public-knowledge/': typeof ExplorePublicKnowledgeIndexRoute
+ '/': typeof IndexRoute;
+ '/authenticate-success': typeof AuthenticateSuccessRoute;
+ '/explore-public-knowledge': typeof ExplorePublicKnowledgeRouteWithChildren;
+ '/login': typeof LoginRoute;
+ '/explore-public-knowledge/assets': typeof ExplorePublicKnowledgeAssetsRoute;
+ '/explore-public-knowledge/dapps': typeof ExplorePublicKnowledgeDappsRoute;
+ '/explore-public-knowledge/investment-rounds': typeof ExplorePublicKnowledgeInvestmentRoundsRoute;
+ '/explore-public-knowledge/projects': typeof ExplorePublicKnowledgeProjectsRoute;
+ '/private-space/$space-id': typeof PrivateSpaceSpaceIdRoute;
+ '/public-space/$space-id': typeof PublicSpaceSpaceIdRoute;
+ '/explore-public-knowledge/': typeof ExplorePublicKnowledgeIndexRoute;
}
export interface FileRoutesByTo {
- '/': typeof IndexRoute
- '/authenticate-success': typeof AuthenticateSuccessRoute
- '/login': typeof LoginRoute
- '/explore-public-knowledge/asset-market': typeof ExplorePublicKnowledgeAssetMarketRoute
- '/explore-public-knowledge/dapps': typeof ExplorePublicKnowledgeDappsRoute
- '/explore-public-knowledge/investment-rounds': typeof ExplorePublicKnowledgeInvestmentRoundsRoute
- '/explore-public-knowledge/projects': typeof ExplorePublicKnowledgeProjectsRoute
- '/private-space/$space-id': typeof PrivateSpaceSpaceIdRoute
- '/public-space/$space-id': typeof PublicSpaceSpaceIdRoute
- '/explore-public-knowledge': typeof ExplorePublicKnowledgeIndexRoute
+ '/': typeof IndexRoute;
+ '/authenticate-success': typeof AuthenticateSuccessRoute;
+ '/login': typeof LoginRoute;
+ '/explore-public-knowledge/assets': typeof ExplorePublicKnowledgeAssetsRoute;
+ '/explore-public-knowledge/dapps': typeof ExplorePublicKnowledgeDappsRoute;
+ '/explore-public-knowledge/investment-rounds': typeof ExplorePublicKnowledgeInvestmentRoundsRoute;
+ '/explore-public-knowledge/projects': typeof ExplorePublicKnowledgeProjectsRoute;
+ '/private-space/$space-id': typeof PrivateSpaceSpaceIdRoute;
+ '/public-space/$space-id': typeof PublicSpaceSpaceIdRoute;
+ '/explore-public-knowledge': typeof ExplorePublicKnowledgeIndexRoute;
}
export interface FileRoutesById {
- __root__: typeof rootRouteImport
- '/': typeof IndexRoute
- '/authenticate-success': typeof AuthenticateSuccessRoute
- '/explore-public-knowledge': typeof ExplorePublicKnowledgeRouteWithChildren
- '/login': typeof LoginRoute
- '/explore-public-knowledge/asset-market': typeof ExplorePublicKnowledgeAssetMarketRoute
- '/explore-public-knowledge/dapps': typeof ExplorePublicKnowledgeDappsRoute
- '/explore-public-knowledge/investment-rounds': typeof ExplorePublicKnowledgeInvestmentRoundsRoute
- '/explore-public-knowledge/projects': typeof ExplorePublicKnowledgeProjectsRoute
- '/private-space/$space-id': typeof PrivateSpaceSpaceIdRoute
- '/public-space/$space-id': typeof PublicSpaceSpaceIdRoute
- '/explore-public-knowledge/': typeof ExplorePublicKnowledgeIndexRoute
+ __root__: typeof rootRouteImport;
+ '/': typeof IndexRoute;
+ '/authenticate-success': typeof AuthenticateSuccessRoute;
+ '/explore-public-knowledge': typeof ExplorePublicKnowledgeRouteWithChildren;
+ '/login': typeof LoginRoute;
+ '/explore-public-knowledge/assets': typeof ExplorePublicKnowledgeAssetsRoute;
+ '/explore-public-knowledge/dapps': typeof ExplorePublicKnowledgeDappsRoute;
+ '/explore-public-knowledge/investment-rounds': typeof ExplorePublicKnowledgeInvestmentRoundsRoute;
+ '/explore-public-knowledge/projects': typeof ExplorePublicKnowledgeProjectsRoute;
+ '/private-space/$space-id': typeof PrivateSpaceSpaceIdRoute;
+ '/public-space/$space-id': typeof PublicSpaceSpaceIdRoute;
+ '/explore-public-knowledge/': typeof ExplorePublicKnowledgeIndexRoute;
}
export interface FileRouteTypes {
- fileRoutesByFullPath: FileRoutesByFullPath
+ fileRoutesByFullPath: FileRoutesByFullPath;
fullPaths:
| '/'
| '/authenticate-success'
| '/explore-public-knowledge'
| '/login'
- | '/explore-public-knowledge/asset-market'
+ | '/explore-public-knowledge/assets'
| '/explore-public-knowledge/dapps'
| '/explore-public-knowledge/investment-rounds'
| '/explore-public-knowledge/projects'
| '/private-space/$space-id'
| '/public-space/$space-id'
- | '/explore-public-knowledge/'
- fileRoutesByTo: FileRoutesByTo
+ | '/explore-public-knowledge/';
+ fileRoutesByTo: FileRoutesByTo;
to:
| '/'
| '/authenticate-success'
| '/login'
- | '/explore-public-knowledge/asset-market'
+ | '/explore-public-knowledge/assets'
| '/explore-public-knowledge/dapps'
| '/explore-public-knowledge/investment-rounds'
| '/explore-public-knowledge/projects'
| '/private-space/$space-id'
| '/public-space/$space-id'
- | '/explore-public-knowledge'
+ | '/explore-public-knowledge';
id:
| '__root__'
| '/'
| '/authenticate-success'
| '/explore-public-knowledge'
| '/login'
- | '/explore-public-knowledge/asset-market'
+ | '/explore-public-knowledge/assets'
| '/explore-public-knowledge/dapps'
| '/explore-public-knowledge/investment-rounds'
| '/explore-public-knowledge/projects'
| '/private-space/$space-id'
| '/public-space/$space-id'
- | '/explore-public-knowledge/'
- fileRoutesById: FileRoutesById
+ | '/explore-public-knowledge/';
+ fileRoutesById: FileRoutesById;
}
export interface RootRouteChildren {
- IndexRoute: typeof IndexRoute
- AuthenticateSuccessRoute: typeof AuthenticateSuccessRoute
- ExplorePublicKnowledgeRoute: typeof ExplorePublicKnowledgeRouteWithChildren
- LoginRoute: typeof LoginRoute
- PrivateSpaceSpaceIdRoute: typeof PrivateSpaceSpaceIdRoute
- PublicSpaceSpaceIdRoute: typeof PublicSpaceSpaceIdRoute
+ IndexRoute: typeof IndexRoute;
+ AuthenticateSuccessRoute: typeof AuthenticateSuccessRoute;
+ ExplorePublicKnowledgeRoute: typeof ExplorePublicKnowledgeRouteWithChildren;
+ LoginRoute: typeof LoginRoute;
+ PrivateSpaceSpaceIdRoute: typeof PrivateSpaceSpaceIdRoute;
+ PublicSpaceSpaceIdRoute: typeof PublicSpaceSpaceIdRoute;
}
declare module '@tanstack/react-router' {
interface FileRoutesByPath {
'/login': {
- id: '/login'
- path: '/login'
- fullPath: '/login'
- preLoaderRoute: typeof LoginRouteImport
- parentRoute: typeof rootRouteImport
- }
+ id: '/login';
+ path: '/login';
+ fullPath: '/login';
+ preLoaderRoute: typeof LoginRouteImport;
+ parentRoute: typeof rootRouteImport;
+ };
'/explore-public-knowledge': {
- id: '/explore-public-knowledge'
- path: '/explore-public-knowledge'
- fullPath: '/explore-public-knowledge'
- preLoaderRoute: typeof ExplorePublicKnowledgeRouteImport
- parentRoute: typeof rootRouteImport
- }
+ id: '/explore-public-knowledge';
+ path: '/explore-public-knowledge';
+ fullPath: '/explore-public-knowledge';
+ preLoaderRoute: typeof ExplorePublicKnowledgeRouteImport;
+ parentRoute: typeof rootRouteImport;
+ };
'/authenticate-success': {
- id: '/authenticate-success'
- path: '/authenticate-success'
- fullPath: '/authenticate-success'
- preLoaderRoute: typeof AuthenticateSuccessRouteImport
- parentRoute: typeof rootRouteImport
- }
+ id: '/authenticate-success';
+ path: '/authenticate-success';
+ fullPath: '/authenticate-success';
+ preLoaderRoute: typeof AuthenticateSuccessRouteImport;
+ parentRoute: typeof rootRouteImport;
+ };
'/': {
- id: '/'
- path: '/'
- fullPath: '/'
- preLoaderRoute: typeof IndexRouteImport
- parentRoute: typeof rootRouteImport
- }
+ id: '/';
+ path: '/';
+ fullPath: '/';
+ preLoaderRoute: typeof IndexRouteImport;
+ parentRoute: typeof rootRouteImport;
+ };
'/explore-public-knowledge/': {
- id: '/explore-public-knowledge/'
- path: '/'
- fullPath: '/explore-public-knowledge/'
- preLoaderRoute: typeof ExplorePublicKnowledgeIndexRouteImport
- parentRoute: typeof ExplorePublicKnowledgeRoute
- }
+ id: '/explore-public-knowledge/';
+ path: '/';
+ fullPath: '/explore-public-knowledge/';
+ preLoaderRoute: typeof ExplorePublicKnowledgeIndexRouteImport;
+ parentRoute: typeof ExplorePublicKnowledgeRoute;
+ };
'/public-space/$space-id': {
- id: '/public-space/$space-id'
- path: '/public-space/$space-id'
- fullPath: '/public-space/$space-id'
- preLoaderRoute: typeof PublicSpaceSpaceIdRouteImport
- parentRoute: typeof rootRouteImport
- }
+ id: '/public-space/$space-id';
+ path: '/public-space/$space-id';
+ fullPath: '/public-space/$space-id';
+ preLoaderRoute: typeof PublicSpaceSpaceIdRouteImport;
+ parentRoute: typeof rootRouteImport;
+ };
'/private-space/$space-id': {
- id: '/private-space/$space-id'
- path: '/private-space/$space-id'
- fullPath: '/private-space/$space-id'
- preLoaderRoute: typeof PrivateSpaceSpaceIdRouteImport
- parentRoute: typeof rootRouteImport
- }
+ id: '/private-space/$space-id';
+ path: '/private-space/$space-id';
+ fullPath: '/private-space/$space-id';
+ preLoaderRoute: typeof PrivateSpaceSpaceIdRouteImport;
+ parentRoute: typeof rootRouteImport;
+ };
'/explore-public-knowledge/projects': {
- id: '/explore-public-knowledge/projects'
- path: '/projects'
- fullPath: '/explore-public-knowledge/projects'
- preLoaderRoute: typeof ExplorePublicKnowledgeProjectsRouteImport
- parentRoute: typeof ExplorePublicKnowledgeRoute
- }
+ id: '/explore-public-knowledge/projects';
+ path: '/projects';
+ fullPath: '/explore-public-knowledge/projects';
+ preLoaderRoute: typeof ExplorePublicKnowledgeProjectsRouteImport;
+ parentRoute: typeof ExplorePublicKnowledgeRoute;
+ };
'/explore-public-knowledge/investment-rounds': {
- id: '/explore-public-knowledge/investment-rounds'
- path: '/investment-rounds'
- fullPath: '/explore-public-knowledge/investment-rounds'
- preLoaderRoute: typeof ExplorePublicKnowledgeInvestmentRoundsRouteImport
- parentRoute: typeof ExplorePublicKnowledgeRoute
- }
+ id: '/explore-public-knowledge/investment-rounds';
+ path: '/investment-rounds';
+ fullPath: '/explore-public-knowledge/investment-rounds';
+ preLoaderRoute: typeof ExplorePublicKnowledgeInvestmentRoundsRouteImport;
+ parentRoute: typeof ExplorePublicKnowledgeRoute;
+ };
'/explore-public-knowledge/dapps': {
- id: '/explore-public-knowledge/dapps'
- path: '/dapps'
- fullPath: '/explore-public-knowledge/dapps'
- preLoaderRoute: typeof ExplorePublicKnowledgeDappsRouteImport
- parentRoute: typeof ExplorePublicKnowledgeRoute
- }
- '/explore-public-knowledge/asset-market': {
- id: '/explore-public-knowledge/asset-market'
- path: '/asset-market'
- fullPath: '/explore-public-knowledge/asset-market'
- preLoaderRoute: typeof ExplorePublicKnowledgeAssetMarketRouteImport
- parentRoute: typeof ExplorePublicKnowledgeRoute
- }
+ id: '/explore-public-knowledge/dapps';
+ path: '/dapps';
+ fullPath: '/explore-public-knowledge/dapps';
+ preLoaderRoute: typeof ExplorePublicKnowledgeDappsRouteImport;
+ parentRoute: typeof ExplorePublicKnowledgeRoute;
+ };
+ '/explore-public-knowledge/assets': {
+ id: '/explore-public-knowledge/assets';
+ path: '/assets';
+ fullPath: '/explore-public-knowledge/assets';
+ preLoaderRoute: typeof ExplorePublicKnowledgeAssetsRouteImport;
+ parentRoute: typeof ExplorePublicKnowledgeRoute;
+ };
}
}
interface ExplorePublicKnowledgeRouteChildren {
- ExplorePublicKnowledgeAssetMarketRoute: typeof ExplorePublicKnowledgeAssetMarketRoute
- ExplorePublicKnowledgeDappsRoute: typeof ExplorePublicKnowledgeDappsRoute
- ExplorePublicKnowledgeInvestmentRoundsRoute: typeof ExplorePublicKnowledgeInvestmentRoundsRoute
- ExplorePublicKnowledgeProjectsRoute: typeof ExplorePublicKnowledgeProjectsRoute
- ExplorePublicKnowledgeIndexRoute: typeof ExplorePublicKnowledgeIndexRoute
+ ExplorePublicKnowledgeAssetsRoute: typeof ExplorePublicKnowledgeAssetsRoute;
+ ExplorePublicKnowledgeDappsRoute: typeof ExplorePublicKnowledgeDappsRoute;
+ ExplorePublicKnowledgeInvestmentRoundsRoute: typeof ExplorePublicKnowledgeInvestmentRoundsRoute;
+ ExplorePublicKnowledgeProjectsRoute: typeof ExplorePublicKnowledgeProjectsRoute;
+ ExplorePublicKnowledgeIndexRoute: typeof ExplorePublicKnowledgeIndexRoute;
}
-const ExplorePublicKnowledgeRouteChildren: ExplorePublicKnowledgeRouteChildren =
- {
- ExplorePublicKnowledgeAssetMarketRoute:
- ExplorePublicKnowledgeAssetMarketRoute,
- ExplorePublicKnowledgeDappsRoute: ExplorePublicKnowledgeDappsRoute,
- ExplorePublicKnowledgeInvestmentRoundsRoute:
- ExplorePublicKnowledgeInvestmentRoundsRoute,
- ExplorePublicKnowledgeProjectsRoute: ExplorePublicKnowledgeProjectsRoute,
- ExplorePublicKnowledgeIndexRoute: ExplorePublicKnowledgeIndexRoute,
- }
+const ExplorePublicKnowledgeRouteChildren: ExplorePublicKnowledgeRouteChildren = {
+ ExplorePublicKnowledgeAssetsRoute: ExplorePublicKnowledgeAssetsRoute,
+ ExplorePublicKnowledgeDappsRoute: ExplorePublicKnowledgeDappsRoute,
+ ExplorePublicKnowledgeInvestmentRoundsRoute: ExplorePublicKnowledgeInvestmentRoundsRoute,
+ ExplorePublicKnowledgeProjectsRoute: ExplorePublicKnowledgeProjectsRoute,
+ ExplorePublicKnowledgeIndexRoute: ExplorePublicKnowledgeIndexRoute,
+};
-const ExplorePublicKnowledgeRouteWithChildren =
- ExplorePublicKnowledgeRoute._addFileChildren(
- ExplorePublicKnowledgeRouteChildren,
- )
+const ExplorePublicKnowledgeRouteWithChildren = ExplorePublicKnowledgeRoute._addFileChildren(
+ ExplorePublicKnowledgeRouteChildren,
+);
const rootRouteChildren: RootRouteChildren = {
IndexRoute: IndexRoute,
@@ -284,7 +275,5 @@ const rootRouteChildren: RootRouteChildren = {
LoginRoute: LoginRoute,
PrivateSpaceSpaceIdRoute: PrivateSpaceSpaceIdRoute,
PublicSpaceSpaceIdRoute: PublicSpaceSpaceIdRoute,
-}
-export const routeTree = rootRouteImport
- ._addFileChildren(rootRouteChildren)
- ._addFileTypes
()
+};
+export const routeTree = rootRouteImport._addFileChildren(rootRouteChildren)._addFileTypes();
diff --git a/apps/create-hypergraph/template-vite-react/src/routes/explore-public-knowledge/asset-market.tsx b/apps/create-hypergraph/template-vite-react/src/routes/explore-public-knowledge/assets.tsx
similarity index 98%
rename from apps/create-hypergraph/template-vite-react/src/routes/explore-public-knowledge/asset-market.tsx
rename to apps/create-hypergraph/template-vite-react/src/routes/explore-public-knowledge/assets.tsx
index f0520efb..7d293fe4 100644
--- a/apps/create-hypergraph/template-vite-react/src/routes/explore-public-knowledge/asset-market.tsx
+++ b/apps/create-hypergraph/template-vite-react/src/routes/explore-public-knowledge/assets.tsx
@@ -2,7 +2,7 @@ import { Asset } from '@/schema';
import { useQuery } from '@graphprotocol/hypergraph-react';
import { createFileRoute } from '@tanstack/react-router';
-export const Route = createFileRoute('/explore-public-knowledge/asset-market')({
+export const Route = createFileRoute('/explore-public-knowledge/assets')({
component: AssetMarket,
});
@@ -17,7 +17,7 @@ function AssetMarket() {
<>
- Asset Market
+ Assets
diff --git a/apps/create-hypergraph/template-vite-react/src/routes/private-space/$space-id.tsx b/apps/create-hypergraph/template-vite-react/src/routes/private-space/$space-id.tsx
index f1c26d4f..7e8cdb35 100644
--- a/apps/create-hypergraph/template-vite-react/src/routes/private-space/$space-id.tsx
+++ b/apps/create-hypergraph/template-vite-react/src/routes/private-space/$space-id.tsx
@@ -6,7 +6,7 @@ import {
useQuery,
useSpace,
useSpaces,
- usePublishToPublicSpace
+ usePublishToPublicSpace,
} from '@graphprotocol/hypergraph-react';
import { createFileRoute } from '@tanstack/react-router';
import { useState } from 'react';
@@ -34,7 +34,7 @@ function PrivateSpace() {
const [addressName, setAddressName] = useState('');
const { mutate: publishToPublicSpace, isPending } = usePublishToPublicSpace({
onSuccess: () => alert('Address published to public space'),
- onError: () => alert('Error publishing address to public space')
+ onError: () => alert('Error publishing address to public space'),
});
if (!ready) {
@@ -168,4 +168,4 @@ function PrivateSpace() {