├── .github └── workflows │ └── indexer.yml ├── .gitignore ├── README.md ├── bq-syncer ├── .gitignore ├── README.md ├── export.py ├── poetry.lock ├── pyproject.toml ├── sample.py ├── sync.py └── sync_parquet.py ├── dashboard ├── .dockerignore ├── .env.example ├── .gitignore ├── Dockerfile ├── README.md ├── app │ ├── analytics │ │ ├── loading.tsx │ │ └── page.tsx │ ├── api │ │ ├── analystics │ │ │ ├── active-users │ │ │ │ ├── getActiveUserStats.tsx │ │ │ │ └── route.ts │ │ │ ├── getContentLanguageDistribution.tsx │ │ │ ├── getGlobalStats.ts │ │ │ ├── getPublicationTypesDistribution.ts │ │ │ ├── popular-hashtags │ │ │ │ ├── getPopularHashtags.ts │ │ │ │ └── route.ts │ │ │ ├── profiles │ │ │ │ └── getNewProfileStats.tsx │ │ │ ├── publication-reactions │ │ │ │ ├── getPublicationReactionsOverTime.ts │ │ │ │ └── route.ts │ │ │ ├── publications │ │ │ │ ├── getDailyPublicationStats.tsx │ │ │ │ └── route.ts │ │ │ ├── revenue │ │ │ │ ├── getAppRevenue.tsx │ │ │ │ └── getProfileRevenue.tsx │ │ │ ├── top-earning-profiles │ │ │ │ ├── getTopEarningProfiles.tsx │ │ │ │ └── route.ts │ │ │ ├── topapps │ │ │ │ ├── getAppStats.ts │ │ │ │ └── route.ts │ │ │ ├── user-activity │ │ │ │ ├── getUserActivity.ts │ │ │ │ └── route.ts │ │ │ └── utils.ts │ │ ├── profiles │ │ │ ├── getProfileScore.ts │ │ │ └── getProfiles.ts │ │ ├── publications │ │ │ └── getPublications.ts │ │ └── revenue │ │ │ └── getRevenue.ts │ ├── apps │ │ ├── loading.tsx │ │ └── page.tsx │ ├── layout.tsx │ ├── page.tsx │ ├── profile │ │ └── [id] │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ ├── profiles │ │ ├── loading.tsx │ │ └── page.tsx │ ├── publication │ │ └── [id] │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ ├── publications │ │ ├── loading.tsx │ │ └── page.tsx │ └── revenue │ │ ├── app │ │ ├── loading.tsx │ │ └── page.tsx │ │ └── profile │ │ ├── loading.tsx │ │ └── page.tsx ├── biome.json ├── bun.lockb ├── components.json ├── components │ ├── 404.tsx │ ├── app-revenue-cards.tsx │ ├── apps-summary.tsx │ ├── charts │ │ ├── active-user-stats.tsx │ │ ├── all-user-activity-stats.tsx │ │ ├── all-user-activity.tsx │ │ ├── chart-card.tsx │ │ ├── content-language-distribution.tsx │ │ ├── dau.tsx │ │ ├── hashtags-stats.tsx │ │ ├── hashtags.tsx │ │ ├── mau.tsx │ │ ├── publication-reactions.tsx │ │ ├── publication-types-distribution.tsx │ │ ├── top-apps.tsx │ │ ├── top-earning-profiles.tsx │ │ └── user-activity.tsx │ ├── comment.tsx │ ├── daily-app-revenue.tsx │ ├── daily-profile-revenue.tsx │ ├── daily-profile-stats.tsx │ ├── daily-publication-stats.tsx │ ├── dailyapps.tsx │ ├── data-table │ │ ├── columns.tsx │ │ ├── data-table-column-header.tsx │ │ ├── data-table-faceted-filter.tsx │ │ ├── data-table-loading.tsx │ │ ├── data-table-pagination.tsx │ │ ├── data-table-toolbar.tsx │ │ ├── data-table-view-options.tsx │ │ └── data-table.tsx │ ├── dau-stats.tsx │ ├── dynamic-react-json.tsx │ ├── error.tsx │ ├── footer.tsx │ ├── icons.tsx │ ├── lenny-card.tsx │ ├── lens-avatar.tsx │ ├── loader.tsx │ ├── main-nav.tsx │ ├── mirror.tsx │ ├── page-header.tsx │ ├── post.tsx │ ├── profile-records.tsx │ ├── profile-revenue-table .tsx │ ├── profile-revenue.tsx │ ├── profile-score.tsx │ ├── profile-summary-card.tsx │ ├── profiles-table.tsx │ ├── providers.tsx │ ├── publication.tsx │ ├── publications-table.tsx │ ├── publications.tsx │ ├── revenue-table.tsx │ ├── revenue.tsx │ ├── search.tsx │ ├── site-header.tsx │ ├── skeleton-card.tsx │ ├── social-card.tsx │ ├── social-link.tsx │ ├── stat-card.tsx │ ├── stat-cards.tsx │ ├── theme-toggle.tsx │ ├── tip.tsx │ ├── token-revenue-card.tsx │ ├── tooltip.tsx │ └── ui │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── command.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── input.tsx │ │ ├── navigation-menu.tsx │ │ ├── popover.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── skeleton.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ └── tooltip.tsx ├── config │ ├── apps.ts │ ├── site.ts │ └── ssr.ts ├── hooks │ └── use-debounce.ts ├── lib │ ├── db.ts │ ├── fetcher.ts │ ├── fonts.ts │ ├── lenny.ts │ ├── lensclient.ts │ ├── utils.ts │ ├── validations │ │ └── params.ts │ └── viem.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public │ ├── apps │ │ ├── bloomers.png │ │ ├── buttrfly.png │ │ ├── dumpling.png │ │ ├── focalize.png │ │ ├── hey.png │ │ ├── kaira.png │ │ ├── lens-protocol.png │ │ ├── lenspeer.png │ │ ├── lensview.png │ │ ├── opensea.svg │ │ ├── orb.png │ │ ├── orna.png │ │ ├── phaver.png │ │ ├── phaver.svg │ │ ├── polygon.svg │ │ ├── t2.png │ │ ├── tape.png │ │ ├── u3.png │ │ ├── uniswap.svg │ │ ├── yup.png │ │ └── yup.svg │ ├── images │ │ └── default-profile.png │ └── tokens │ │ ├── USDT.svg │ │ ├── bonsai.svg │ │ ├── dai.svg │ │ ├── nct.svg │ │ ├── pointless.svg │ │ ├── usdc.svg │ │ ├── weth.svg │ │ └── wmatic.svg ├── release.sh ├── schema.sql ├── styles │ └── globals.css ├── tailwind.config.js ├── tsconfig.json └── types │ ├── common.ts │ └── index.ts └── indexer ├── .gitignore ├── Dockerfile ├── go.mod ├── go.sum └── main.go /.github/workflows/indexer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/.github/workflows/indexer.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/README.md -------------------------------------------------------------------------------- /bq-syncer/.gitignore: -------------------------------------------------------------------------------- 1 | service_account.json 2 | *.db 3 | .vscode 4 | *.log 5 | -------------------------------------------------------------------------------- /bq-syncer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/bq-syncer/README.md -------------------------------------------------------------------------------- /bq-syncer/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/bq-syncer/export.py -------------------------------------------------------------------------------- /bq-syncer/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/bq-syncer/poetry.lock -------------------------------------------------------------------------------- /bq-syncer/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/bq-syncer/pyproject.toml -------------------------------------------------------------------------------- /bq-syncer/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/bq-syncer/sample.py -------------------------------------------------------------------------------- /bq-syncer/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/bq-syncer/sync.py -------------------------------------------------------------------------------- /bq-syncer/sync_parquet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/bq-syncer/sync_parquet.py -------------------------------------------------------------------------------- /dashboard/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/.dockerignore -------------------------------------------------------------------------------- /dashboard/.env.example: -------------------------------------------------------------------------------- 1 | DATABASE_URL= 2 | -------------------------------------------------------------------------------- /dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/.gitignore -------------------------------------------------------------------------------- /dashboard/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/Dockerfile -------------------------------------------------------------------------------- /dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/README.md -------------------------------------------------------------------------------- /dashboard/app/analytics/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/analytics/loading.tsx -------------------------------------------------------------------------------- /dashboard/app/analytics/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/analytics/page.tsx -------------------------------------------------------------------------------- /dashboard/app/api/analystics/active-users/getActiveUserStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/active-users/getActiveUserStats.tsx -------------------------------------------------------------------------------- /dashboard/app/api/analystics/active-users/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/active-users/route.ts -------------------------------------------------------------------------------- /dashboard/app/api/analystics/getContentLanguageDistribution.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/getContentLanguageDistribution.tsx -------------------------------------------------------------------------------- /dashboard/app/api/analystics/getGlobalStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/getGlobalStats.ts -------------------------------------------------------------------------------- /dashboard/app/api/analystics/getPublicationTypesDistribution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/getPublicationTypesDistribution.ts -------------------------------------------------------------------------------- /dashboard/app/api/analystics/popular-hashtags/getPopularHashtags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/popular-hashtags/getPopularHashtags.ts -------------------------------------------------------------------------------- /dashboard/app/api/analystics/popular-hashtags/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/popular-hashtags/route.ts -------------------------------------------------------------------------------- /dashboard/app/api/analystics/profiles/getNewProfileStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/profiles/getNewProfileStats.tsx -------------------------------------------------------------------------------- /dashboard/app/api/analystics/publication-reactions/getPublicationReactionsOverTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/publication-reactions/getPublicationReactionsOverTime.ts -------------------------------------------------------------------------------- /dashboard/app/api/analystics/publication-reactions/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/publication-reactions/route.ts -------------------------------------------------------------------------------- /dashboard/app/api/analystics/publications/getDailyPublicationStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/publications/getDailyPublicationStats.tsx -------------------------------------------------------------------------------- /dashboard/app/api/analystics/publications/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/publications/route.ts -------------------------------------------------------------------------------- /dashboard/app/api/analystics/revenue/getAppRevenue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/revenue/getAppRevenue.tsx -------------------------------------------------------------------------------- /dashboard/app/api/analystics/revenue/getProfileRevenue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/revenue/getProfileRevenue.tsx -------------------------------------------------------------------------------- /dashboard/app/api/analystics/top-earning-profiles/getTopEarningProfiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/top-earning-profiles/getTopEarningProfiles.tsx -------------------------------------------------------------------------------- /dashboard/app/api/analystics/top-earning-profiles/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/top-earning-profiles/route.ts -------------------------------------------------------------------------------- /dashboard/app/api/analystics/topapps/getAppStats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/topapps/getAppStats.ts -------------------------------------------------------------------------------- /dashboard/app/api/analystics/topapps/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/topapps/route.ts -------------------------------------------------------------------------------- /dashboard/app/api/analystics/user-activity/getUserActivity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/user-activity/getUserActivity.ts -------------------------------------------------------------------------------- /dashboard/app/api/analystics/user-activity/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/user-activity/route.ts -------------------------------------------------------------------------------- /dashboard/app/api/analystics/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/analystics/utils.ts -------------------------------------------------------------------------------- /dashboard/app/api/profiles/getProfileScore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/profiles/getProfileScore.ts -------------------------------------------------------------------------------- /dashboard/app/api/profiles/getProfiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/profiles/getProfiles.ts -------------------------------------------------------------------------------- /dashboard/app/api/publications/getPublications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/publications/getPublications.ts -------------------------------------------------------------------------------- /dashboard/app/api/revenue/getRevenue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/api/revenue/getRevenue.ts -------------------------------------------------------------------------------- /dashboard/app/apps/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/apps/loading.tsx -------------------------------------------------------------------------------- /dashboard/app/apps/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/apps/page.tsx -------------------------------------------------------------------------------- /dashboard/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/layout.tsx -------------------------------------------------------------------------------- /dashboard/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/page.tsx -------------------------------------------------------------------------------- /dashboard/app/profile/[id]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/profile/[id]/loading.tsx -------------------------------------------------------------------------------- /dashboard/app/profile/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/profile/[id]/page.tsx -------------------------------------------------------------------------------- /dashboard/app/profiles/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/profiles/loading.tsx -------------------------------------------------------------------------------- /dashboard/app/profiles/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/profiles/page.tsx -------------------------------------------------------------------------------- /dashboard/app/publication/[id]/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/publication/[id]/loading.tsx -------------------------------------------------------------------------------- /dashboard/app/publication/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/publication/[id]/page.tsx -------------------------------------------------------------------------------- /dashboard/app/publications/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/publications/loading.tsx -------------------------------------------------------------------------------- /dashboard/app/publications/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/publications/page.tsx -------------------------------------------------------------------------------- /dashboard/app/revenue/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/revenue/app/loading.tsx -------------------------------------------------------------------------------- /dashboard/app/revenue/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/revenue/app/page.tsx -------------------------------------------------------------------------------- /dashboard/app/revenue/profile/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/revenue/profile/loading.tsx -------------------------------------------------------------------------------- /dashboard/app/revenue/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/app/revenue/profile/page.tsx -------------------------------------------------------------------------------- /dashboard/biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/biome.json -------------------------------------------------------------------------------- /dashboard/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/bun.lockb -------------------------------------------------------------------------------- /dashboard/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components.json -------------------------------------------------------------------------------- /dashboard/components/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/404.tsx -------------------------------------------------------------------------------- /dashboard/components/app-revenue-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/app-revenue-cards.tsx -------------------------------------------------------------------------------- /dashboard/components/apps-summary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/apps-summary.tsx -------------------------------------------------------------------------------- /dashboard/components/charts/active-user-stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/charts/active-user-stats.tsx -------------------------------------------------------------------------------- /dashboard/components/charts/all-user-activity-stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/charts/all-user-activity-stats.tsx -------------------------------------------------------------------------------- /dashboard/components/charts/all-user-activity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/charts/all-user-activity.tsx -------------------------------------------------------------------------------- /dashboard/components/charts/chart-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/charts/chart-card.tsx -------------------------------------------------------------------------------- /dashboard/components/charts/content-language-distribution.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/charts/content-language-distribution.tsx -------------------------------------------------------------------------------- /dashboard/components/charts/dau.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/charts/dau.tsx -------------------------------------------------------------------------------- /dashboard/components/charts/hashtags-stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/charts/hashtags-stats.tsx -------------------------------------------------------------------------------- /dashboard/components/charts/hashtags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/charts/hashtags.tsx -------------------------------------------------------------------------------- /dashboard/components/charts/mau.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/charts/mau.tsx -------------------------------------------------------------------------------- /dashboard/components/charts/publication-reactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/charts/publication-reactions.tsx -------------------------------------------------------------------------------- /dashboard/components/charts/publication-types-distribution.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/charts/publication-types-distribution.tsx -------------------------------------------------------------------------------- /dashboard/components/charts/top-apps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/charts/top-apps.tsx -------------------------------------------------------------------------------- /dashboard/components/charts/top-earning-profiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/charts/top-earning-profiles.tsx -------------------------------------------------------------------------------- /dashboard/components/charts/user-activity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/charts/user-activity.tsx -------------------------------------------------------------------------------- /dashboard/components/comment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/comment.tsx -------------------------------------------------------------------------------- /dashboard/components/daily-app-revenue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/daily-app-revenue.tsx -------------------------------------------------------------------------------- /dashboard/components/daily-profile-revenue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/daily-profile-revenue.tsx -------------------------------------------------------------------------------- /dashboard/components/daily-profile-stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/daily-profile-stats.tsx -------------------------------------------------------------------------------- /dashboard/components/daily-publication-stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/daily-publication-stats.tsx -------------------------------------------------------------------------------- /dashboard/components/dailyapps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/dailyapps.tsx -------------------------------------------------------------------------------- /dashboard/components/data-table/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/data-table/columns.tsx -------------------------------------------------------------------------------- /dashboard/components/data-table/data-table-column-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/data-table/data-table-column-header.tsx -------------------------------------------------------------------------------- /dashboard/components/data-table/data-table-faceted-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/data-table/data-table-faceted-filter.tsx -------------------------------------------------------------------------------- /dashboard/components/data-table/data-table-loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/data-table/data-table-loading.tsx -------------------------------------------------------------------------------- /dashboard/components/data-table/data-table-pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/data-table/data-table-pagination.tsx -------------------------------------------------------------------------------- /dashboard/components/data-table/data-table-toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/data-table/data-table-toolbar.tsx -------------------------------------------------------------------------------- /dashboard/components/data-table/data-table-view-options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/data-table/data-table-view-options.tsx -------------------------------------------------------------------------------- /dashboard/components/data-table/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/data-table/data-table.tsx -------------------------------------------------------------------------------- /dashboard/components/dau-stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/dau-stats.tsx -------------------------------------------------------------------------------- /dashboard/components/dynamic-react-json.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/dynamic-react-json.tsx -------------------------------------------------------------------------------- /dashboard/components/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/error.tsx -------------------------------------------------------------------------------- /dashboard/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/footer.tsx -------------------------------------------------------------------------------- /dashboard/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/icons.tsx -------------------------------------------------------------------------------- /dashboard/components/lenny-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/lenny-card.tsx -------------------------------------------------------------------------------- /dashboard/components/lens-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/lens-avatar.tsx -------------------------------------------------------------------------------- /dashboard/components/loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/loader.tsx -------------------------------------------------------------------------------- /dashboard/components/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/main-nav.tsx -------------------------------------------------------------------------------- /dashboard/components/mirror.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/mirror.tsx -------------------------------------------------------------------------------- /dashboard/components/page-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/page-header.tsx -------------------------------------------------------------------------------- /dashboard/components/post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/post.tsx -------------------------------------------------------------------------------- /dashboard/components/profile-records.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/profile-records.tsx -------------------------------------------------------------------------------- /dashboard/components/profile-revenue-table .tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/profile-revenue-table .tsx -------------------------------------------------------------------------------- /dashboard/components/profile-revenue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/profile-revenue.tsx -------------------------------------------------------------------------------- /dashboard/components/profile-score.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/profile-score.tsx -------------------------------------------------------------------------------- /dashboard/components/profile-summary-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/profile-summary-card.tsx -------------------------------------------------------------------------------- /dashboard/components/profiles-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/profiles-table.tsx -------------------------------------------------------------------------------- /dashboard/components/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/providers.tsx -------------------------------------------------------------------------------- /dashboard/components/publication.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/publication.tsx -------------------------------------------------------------------------------- /dashboard/components/publications-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/publications-table.tsx -------------------------------------------------------------------------------- /dashboard/components/publications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/publications.tsx -------------------------------------------------------------------------------- /dashboard/components/revenue-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/revenue-table.tsx -------------------------------------------------------------------------------- /dashboard/components/revenue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/revenue.tsx -------------------------------------------------------------------------------- /dashboard/components/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/search.tsx -------------------------------------------------------------------------------- /dashboard/components/site-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/site-header.tsx -------------------------------------------------------------------------------- /dashboard/components/skeleton-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/skeleton-card.tsx -------------------------------------------------------------------------------- /dashboard/components/social-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/social-card.tsx -------------------------------------------------------------------------------- /dashboard/components/social-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/social-link.tsx -------------------------------------------------------------------------------- /dashboard/components/stat-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/stat-card.tsx -------------------------------------------------------------------------------- /dashboard/components/stat-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/stat-cards.tsx -------------------------------------------------------------------------------- /dashboard/components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/theme-toggle.tsx -------------------------------------------------------------------------------- /dashboard/components/tip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/tip.tsx -------------------------------------------------------------------------------- /dashboard/components/token-revenue-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/token-revenue-card.tsx -------------------------------------------------------------------------------- /dashboard/components/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/tooltip.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/avatar.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/badge.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/button.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/card.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/command.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/dialog.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/input.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/popover.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/select.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/separator.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/sheet.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/table.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/tabs.tsx -------------------------------------------------------------------------------- /dashboard/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /dashboard/config/apps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/config/apps.ts -------------------------------------------------------------------------------- /dashboard/config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/config/site.ts -------------------------------------------------------------------------------- /dashboard/config/ssr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/config/ssr.ts -------------------------------------------------------------------------------- /dashboard/hooks/use-debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/hooks/use-debounce.ts -------------------------------------------------------------------------------- /dashboard/lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/lib/db.ts -------------------------------------------------------------------------------- /dashboard/lib/fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/lib/fetcher.ts -------------------------------------------------------------------------------- /dashboard/lib/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/lib/fonts.ts -------------------------------------------------------------------------------- /dashboard/lib/lenny.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/lib/lenny.ts -------------------------------------------------------------------------------- /dashboard/lib/lensclient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/lib/lensclient.ts -------------------------------------------------------------------------------- /dashboard/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/lib/utils.ts -------------------------------------------------------------------------------- /dashboard/lib/validations/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/lib/validations/params.ts -------------------------------------------------------------------------------- /dashboard/lib/viem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/lib/viem.ts -------------------------------------------------------------------------------- /dashboard/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/next.config.js -------------------------------------------------------------------------------- /dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/package.json -------------------------------------------------------------------------------- /dashboard/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/postcss.config.js -------------------------------------------------------------------------------- /dashboard/public/apps/bloomers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/bloomers.png -------------------------------------------------------------------------------- /dashboard/public/apps/buttrfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/buttrfly.png -------------------------------------------------------------------------------- /dashboard/public/apps/dumpling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/dumpling.png -------------------------------------------------------------------------------- /dashboard/public/apps/focalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/focalize.png -------------------------------------------------------------------------------- /dashboard/public/apps/hey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/hey.png -------------------------------------------------------------------------------- /dashboard/public/apps/kaira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/kaira.png -------------------------------------------------------------------------------- /dashboard/public/apps/lens-protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/lens-protocol.png -------------------------------------------------------------------------------- /dashboard/public/apps/lenspeer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/lenspeer.png -------------------------------------------------------------------------------- /dashboard/public/apps/lensview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/lensview.png -------------------------------------------------------------------------------- /dashboard/public/apps/opensea.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/opensea.svg -------------------------------------------------------------------------------- /dashboard/public/apps/orb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/orb.png -------------------------------------------------------------------------------- /dashboard/public/apps/orna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/orna.png -------------------------------------------------------------------------------- /dashboard/public/apps/phaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/phaver.png -------------------------------------------------------------------------------- /dashboard/public/apps/phaver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/phaver.svg -------------------------------------------------------------------------------- /dashboard/public/apps/polygon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/polygon.svg -------------------------------------------------------------------------------- /dashboard/public/apps/t2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/t2.png -------------------------------------------------------------------------------- /dashboard/public/apps/tape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/tape.png -------------------------------------------------------------------------------- /dashboard/public/apps/u3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/u3.png -------------------------------------------------------------------------------- /dashboard/public/apps/uniswap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/uniswap.svg -------------------------------------------------------------------------------- /dashboard/public/apps/yup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/yup.png -------------------------------------------------------------------------------- /dashboard/public/apps/yup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/apps/yup.svg -------------------------------------------------------------------------------- /dashboard/public/images/default-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/images/default-profile.png -------------------------------------------------------------------------------- /dashboard/public/tokens/USDT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/tokens/USDT.svg -------------------------------------------------------------------------------- /dashboard/public/tokens/bonsai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/tokens/bonsai.svg -------------------------------------------------------------------------------- /dashboard/public/tokens/dai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/tokens/dai.svg -------------------------------------------------------------------------------- /dashboard/public/tokens/nct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/tokens/nct.svg -------------------------------------------------------------------------------- /dashboard/public/tokens/pointless.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/tokens/pointless.svg -------------------------------------------------------------------------------- /dashboard/public/tokens/usdc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/tokens/usdc.svg -------------------------------------------------------------------------------- /dashboard/public/tokens/weth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/tokens/weth.svg -------------------------------------------------------------------------------- /dashboard/public/tokens/wmatic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/public/tokens/wmatic.svg -------------------------------------------------------------------------------- /dashboard/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/release.sh -------------------------------------------------------------------------------- /dashboard/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/schema.sql -------------------------------------------------------------------------------- /dashboard/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/styles/globals.css -------------------------------------------------------------------------------- /dashboard/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/tailwind.config.js -------------------------------------------------------------------------------- /dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/tsconfig.json -------------------------------------------------------------------------------- /dashboard/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/types/common.ts -------------------------------------------------------------------------------- /dashboard/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/dashboard/types/index.ts -------------------------------------------------------------------------------- /indexer/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | indexer 3 | -------------------------------------------------------------------------------- /indexer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/indexer/Dockerfile -------------------------------------------------------------------------------- /indexer/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/indexer/go.mod -------------------------------------------------------------------------------- /indexer/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/indexer/go.sum -------------------------------------------------------------------------------- /indexer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daoleno/lenscan/HEAD/indexer/main.go --------------------------------------------------------------------------------