├── .env.example ├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.yml │ └── protocol_submission.yml └── workflows │ ├── akash.yml │ ├── arweave.yml │ ├── filecoin.yml │ └── pocket.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── README.md ├── cmd ├── akash.ts ├── akash_backfill.ts ├── arweave.ts ├── arweave_tokenterminal.ts ├── filecoin.ts ├── pocket.ts ├── seeds │ └── arweave.ts └── utils │ └── cryptoCompare.ts ├── components ├── Alert │ └── index.tsx ├── BlogCard │ └── index.tsx ├── Box │ └── index.tsx ├── Button │ └── index.tsx ├── CallToAction │ └── index.tsx ├── Container │ └── index.tsx ├── Faq │ └── index.tsx ├── Footer │ └── index.tsx ├── Header │ ├── Revenue.tsx │ └── index.tsx ├── LineAndBarGraph │ └── index.tsx ├── LineGraph │ └── index.tsx ├── Listing │ └── index.tsx ├── MDXComponents │ ├── A.tsx │ └── index.tsx ├── Markdown │ └── index.tsx ├── OldTV │ └── index.tsx ├── Player │ └── index.tsx ├── ProjectHeader │ └── index.tsx ├── RevenueChange │ └── index.tsx ├── Section │ └── index.tsx ├── SubmitButton │ └── index.tsx ├── Table │ └── index.tsx ├── ThemeAwareLogo.tsx ├── ThemeToggle │ └── index.tsx ├── Ticker │ └── index.tsx └── Tooltip │ └── index.tsx ├── content ├── faq │ ├── 01-what-is-web3.mdx │ ├── 02-what-is-the-web3-index.mdx │ ├── 03-what-is-the-index-criteria.mdx │ ├── 04-what-is-the-listing-process.mdx │ └── 05-what-other-fee-dashboards-exist.mdx └── posts │ ├── a-brief-how-to-guide.mdx │ ├── introducing-the-web3-index.mdx │ ├── launching-the-web3-index.mdx │ ├── why-web3-needs-pocket-network.mdx │ └── why-web3-needs-sia.mdx ├── css ├── tv.scss └── video.js.css ├── eslint.config.js ├── layouts ├── index.tsx └── tv.tsx ├── lib ├── cacheHeaders.ts ├── mdx.ts ├── prisma.ts ├── screenEffect.js └── utils.tsx ├── next-env.d.ts ├── next-seo.config.js ├── next.config.js ├── package.json ├── pages ├── [slug].tsx ├── _app.tsx ├── _document.tsx ├── api │ ├── projects │ │ ├── [id].ts │ │ └── index.ts │ └── stream │ │ └── [id].ts ├── blog │ ├── [slug].tsx │ └── index.tsx ├── index.tsx ├── quarterly-call.tsx └── tv.tsx ├── prisma ├── migrations │ ├── 20210511032943_init │ │ └── migration.sql │ ├── 20210526212017_init │ │ └── migration.sql │ ├── 20211111145631_add_delete │ │ └── migration.sql │ ├── 20251114161205_init │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── fonts │ └── whyte │ │ ├── inktrap-bold.woff │ │ ├── inktrap-bold.woff2 │ │ ├── inktrap-heavy.woff │ │ └── inktrap-heavy.woff2 ├── images │ └── og │ │ ├── how-to-guide.jpg │ │ ├── launch-image.jpg │ │ ├── pocket.png │ │ ├── why-web3-needs-pocket-network.png │ │ └── why-web3-needs-sia.png ├── logos │ ├── akash.svg │ ├── arweave.svg │ ├── filecoin.svg │ ├── helium.svg │ ├── livepeer.svg │ ├── messari_black.svg │ ├── messari_white.svg │ ├── pocket.svg │ ├── sia.svg │ ├── storj.svg │ └── thegraph.svg ├── noflash.js ├── og-image.png └── site.webmanifest ├── registry.json ├── schema.json ├── stitches.config.ts ├── tsconfig.cmd.json ├── tsconfig.json ├── types └── index.d.ts └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/protocol_submission.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/.github/ISSUE_TEMPLATE/protocol_submission.yml -------------------------------------------------------------------------------- /.github/workflows/akash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/.github/workflows/akash.yml -------------------------------------------------------------------------------- /.github/workflows/arweave.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/.github/workflows/arweave.yml -------------------------------------------------------------------------------- /.github/workflows/filecoin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/.github/workflows/filecoin.yml -------------------------------------------------------------------------------- /.github/workflows/pocket.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/.github/workflows/pocket.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 24 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/README.md -------------------------------------------------------------------------------- /cmd/akash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/cmd/akash.ts -------------------------------------------------------------------------------- /cmd/akash_backfill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/cmd/akash_backfill.ts -------------------------------------------------------------------------------- /cmd/arweave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/cmd/arweave.ts -------------------------------------------------------------------------------- /cmd/arweave_tokenterminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/cmd/arweave_tokenterminal.ts -------------------------------------------------------------------------------- /cmd/filecoin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/cmd/filecoin.ts -------------------------------------------------------------------------------- /cmd/pocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/cmd/pocket.ts -------------------------------------------------------------------------------- /cmd/seeds/arweave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/cmd/seeds/arweave.ts -------------------------------------------------------------------------------- /cmd/utils/cryptoCompare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/cmd/utils/cryptoCompare.ts -------------------------------------------------------------------------------- /components/Alert/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/Alert/index.tsx -------------------------------------------------------------------------------- /components/BlogCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/BlogCard/index.tsx -------------------------------------------------------------------------------- /components/Box/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/Box/index.tsx -------------------------------------------------------------------------------- /components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/Button/index.tsx -------------------------------------------------------------------------------- /components/CallToAction/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/CallToAction/index.tsx -------------------------------------------------------------------------------- /components/Container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/Container/index.tsx -------------------------------------------------------------------------------- /components/Faq/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/Faq/index.tsx -------------------------------------------------------------------------------- /components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/Footer/index.tsx -------------------------------------------------------------------------------- /components/Header/Revenue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/Header/Revenue.tsx -------------------------------------------------------------------------------- /components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/Header/index.tsx -------------------------------------------------------------------------------- /components/LineAndBarGraph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/LineAndBarGraph/index.tsx -------------------------------------------------------------------------------- /components/LineGraph/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/LineGraph/index.tsx -------------------------------------------------------------------------------- /components/Listing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/Listing/index.tsx -------------------------------------------------------------------------------- /components/MDXComponents/A.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/MDXComponents/A.tsx -------------------------------------------------------------------------------- /components/MDXComponents/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/MDXComponents/index.tsx -------------------------------------------------------------------------------- /components/Markdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/Markdown/index.tsx -------------------------------------------------------------------------------- /components/OldTV/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/OldTV/index.tsx -------------------------------------------------------------------------------- /components/Player/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/Player/index.tsx -------------------------------------------------------------------------------- /components/ProjectHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/ProjectHeader/index.tsx -------------------------------------------------------------------------------- /components/RevenueChange/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/RevenueChange/index.tsx -------------------------------------------------------------------------------- /components/Section/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/Section/index.tsx -------------------------------------------------------------------------------- /components/SubmitButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/SubmitButton/index.tsx -------------------------------------------------------------------------------- /components/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/Table/index.tsx -------------------------------------------------------------------------------- /components/ThemeAwareLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/ThemeAwareLogo.tsx -------------------------------------------------------------------------------- /components/ThemeToggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/ThemeToggle/index.tsx -------------------------------------------------------------------------------- /components/Ticker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/Ticker/index.tsx -------------------------------------------------------------------------------- /components/Tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/components/Tooltip/index.tsx -------------------------------------------------------------------------------- /content/faq/01-what-is-web3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/content/faq/01-what-is-web3.mdx -------------------------------------------------------------------------------- /content/faq/02-what-is-the-web3-index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/content/faq/02-what-is-the-web3-index.mdx -------------------------------------------------------------------------------- /content/faq/03-what-is-the-index-criteria.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/content/faq/03-what-is-the-index-criteria.mdx -------------------------------------------------------------------------------- /content/faq/04-what-is-the-listing-process.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/content/faq/04-what-is-the-listing-process.mdx -------------------------------------------------------------------------------- /content/faq/05-what-other-fee-dashboards-exist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/content/faq/05-what-other-fee-dashboards-exist.mdx -------------------------------------------------------------------------------- /content/posts/a-brief-how-to-guide.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/content/posts/a-brief-how-to-guide.mdx -------------------------------------------------------------------------------- /content/posts/introducing-the-web3-index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/content/posts/introducing-the-web3-index.mdx -------------------------------------------------------------------------------- /content/posts/launching-the-web3-index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/content/posts/launching-the-web3-index.mdx -------------------------------------------------------------------------------- /content/posts/why-web3-needs-pocket-network.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/content/posts/why-web3-needs-pocket-network.mdx -------------------------------------------------------------------------------- /content/posts/why-web3-needs-sia.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/content/posts/why-web3-needs-sia.mdx -------------------------------------------------------------------------------- /css/tv.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/css/tv.scss -------------------------------------------------------------------------------- /css/video.js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/css/video.js.css -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/eslint.config.js -------------------------------------------------------------------------------- /layouts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/layouts/index.tsx -------------------------------------------------------------------------------- /layouts/tv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/layouts/tv.tsx -------------------------------------------------------------------------------- /lib/cacheHeaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/lib/cacheHeaders.ts -------------------------------------------------------------------------------- /lib/mdx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/lib/mdx.ts -------------------------------------------------------------------------------- /lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/lib/prisma.ts -------------------------------------------------------------------------------- /lib/screenEffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/lib/screenEffect.js -------------------------------------------------------------------------------- /lib/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/lib/utils.tsx -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next-seo.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/next-seo.config.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/package.json -------------------------------------------------------------------------------- /pages/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/pages/[slug].tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/api/projects/[id].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/pages/api/projects/[id].ts -------------------------------------------------------------------------------- /pages/api/projects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/pages/api/projects/index.ts -------------------------------------------------------------------------------- /pages/api/stream/[id].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/pages/api/stream/[id].ts -------------------------------------------------------------------------------- /pages/blog/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/pages/blog/[slug].tsx -------------------------------------------------------------------------------- /pages/blog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/pages/blog/index.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/quarterly-call.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/pages/quarterly-call.tsx -------------------------------------------------------------------------------- /pages/tv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/pages/tv.tsx -------------------------------------------------------------------------------- /prisma/migrations/20210511032943_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/prisma/migrations/20210511032943_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20210526212017_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/prisma/migrations/20210526212017_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20211111145631_add_delete/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/prisma/migrations/20211111145631_add_delete/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20251114161205_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/prisma/migrations/20251114161205_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/whyte/inktrap-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/fonts/whyte/inktrap-bold.woff -------------------------------------------------------------------------------- /public/fonts/whyte/inktrap-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/fonts/whyte/inktrap-bold.woff2 -------------------------------------------------------------------------------- /public/fonts/whyte/inktrap-heavy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/fonts/whyte/inktrap-heavy.woff -------------------------------------------------------------------------------- /public/fonts/whyte/inktrap-heavy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/fonts/whyte/inktrap-heavy.woff2 -------------------------------------------------------------------------------- /public/images/og/how-to-guide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/images/og/how-to-guide.jpg -------------------------------------------------------------------------------- /public/images/og/launch-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/images/og/launch-image.jpg -------------------------------------------------------------------------------- /public/images/og/pocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/images/og/pocket.png -------------------------------------------------------------------------------- /public/images/og/why-web3-needs-pocket-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/images/og/why-web3-needs-pocket-network.png -------------------------------------------------------------------------------- /public/images/og/why-web3-needs-sia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/images/og/why-web3-needs-sia.png -------------------------------------------------------------------------------- /public/logos/akash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/logos/akash.svg -------------------------------------------------------------------------------- /public/logos/arweave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/logos/arweave.svg -------------------------------------------------------------------------------- /public/logos/filecoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/logos/filecoin.svg -------------------------------------------------------------------------------- /public/logos/helium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/logos/helium.svg -------------------------------------------------------------------------------- /public/logos/livepeer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/logos/livepeer.svg -------------------------------------------------------------------------------- /public/logos/messari_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/logos/messari_black.svg -------------------------------------------------------------------------------- /public/logos/messari_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/logos/messari_white.svg -------------------------------------------------------------------------------- /public/logos/pocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/logos/pocket.svg -------------------------------------------------------------------------------- /public/logos/sia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/logos/sia.svg -------------------------------------------------------------------------------- /public/logos/storj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/logos/storj.svg -------------------------------------------------------------------------------- /public/logos/thegraph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/logos/thegraph.svg -------------------------------------------------------------------------------- /public/noflash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/noflash.js -------------------------------------------------------------------------------- /public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/og-image.png -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/registry.json -------------------------------------------------------------------------------- /schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/schema.json -------------------------------------------------------------------------------- /stitches.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/stitches.config.ts -------------------------------------------------------------------------------- /tsconfig.cmd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/tsconfig.cmd.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web3index/web3index-org/HEAD/yarn.lock --------------------------------------------------------------------------------