-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added images and icons * added prorile pages and layout added projects pages * updated fonts adding sora * removed react admin code * updated navbar * removed constants updated action name to deprecate removed admin page * Feat/project components (#45) * added icons and images removed unused assets updated favicon and logo icon * removed supabase not needed * added hooks for projects and auth * added components for views * added next auth for handling user sessions * updated name and import for pages added not found for project * added mock data util removed uneeded styles function * added xstate machines for project * added manifest * added next auth removed uneeded library * updated daisy ui theme with light theme only * added toaster and footer to root layout * started mock static pages for projects * work for components ready for PR * upated compare ready for PR * removed screen height * project build fix * fixed sanitization error * Feat/project actions (#44) * feat(projects): fetch project data * fixed build issue ready to build --------- Co-authored-by: Afo <obaone01@gmail.com> * removed storybook components * replaced farcaster auth with wallet connect * EAS schema schemas and metrics schemas (#59) * feat(uploader): attestation uploader * feat(uploader): upload metric schemas * feat(attest): uploaded metrics schema * feat(schema): project metrics attestation schema * feat(endorsement): uploaded endorsement schema * feat(eval): evaluation attestation schema --------- Co-authored-by: Afolabi <obaone01@gmail.com> * added compents for profile view added connect kit t replace farcater * Building * late night work added machines for projects added pnpm workspce removed uneeded components and views * latest work * app building * late night work * some more work really coming aling * more work coming together * updates * some more work state machines complete app contants created fixed use client typo * Pages building fixed param issues * added neynar for fid lookup by address updated user object * more work coming along * remove uneeded pakages * some more work done * sunday work * extracted components from project details removed uneeded libs like storybook * created ProjectEndorsement card * Added some TODOs for actions Did some work Co-authored-by: bitbeckers <code@bitbeckers.com> * app building * fix(parse): parse attestation data from EAS * moved provider to wrap app * updated packages and names in package.json * removed transnactin and attest count from project type * moved eas sepolia client to URQL * fully migrated to sepolia for testnet attestations * updated parsing functions * feat(web3): replace connectkit with appkit (#60) * feat(web3): replace connectkit with appkit * fix(copy): use constants for wagmi metadata * fix(types): WIP updating fetched types * fixed type error now building * update made type global --------- Co-authored-by: Afo <obaone01@gmail.com> * updated actions for fetching project metrics/endorsments * wip get attestations working clientside * fixed type errors app building * feat(api): autogenerate OP Agora API client * feat(endorsements): load endorsement profile page * fix(endorsement): refactor eas flows to hooks and submit endorsement * feat(claim): claim metrics and fix build * fix(project): fixed project-row width * polished project detail page * fix(table): project overview page table positioning * aded open source observer key to template * removed connectkit no longer used * removed workflow file * updated lockfile --------- Co-authored-by: bitbeckers <code@bitbeckers.com>
- Loading branch information
1 parent
ac201f1
commit 6e5133c
Showing
191 changed files
with
25,145 additions
and
16,134 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
node_modules | ||
node_modules/**/* | ||
/.pnp | ||
.pnp.js | ||
.yarn/install-state.gz | ||
|
||
# testing | ||
coverage | ||
|
||
# next.js | ||
.next | ||
/out/ | ||
|
||
# production | ||
build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# local env files | ||
.env*.local | ||
.env | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts | ||
|
||
.idea/ | ||
|
||
*storybook.log | ||
|
||
**/.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
{ | ||
"name": "impact-framework", | ||
"name": "impact-reef", | ||
"version": "0.0.0", | ||
"private": true, | ||
"scripts": { | ||
"dev": "cd packages/client && pnpm run dev", | ||
"test": "cd packages/client && pnpm run test", | ||
"build": "cd packages/client && pnpm run build", | ||
"generate:supabase:types": "npx supabase gen types typescript --local > types/database-generated.types.ts" | ||
"build": "cd packages/client && pnpm run build" | ||
}, | ||
"engines": { | ||
"node": "20.x", | ||
"pnpm": "^9.x" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
NEXT_PUBLIC_SUPABASE_URL | ||
NEXT_PUBLIC_SUPABASE_ANON_KEY | ||
AUTH_SECRET | ||
NEYNAR_API_KEY | ||
|
||
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID | ||
NEXT_PUBLIC_ALCHEMY_ID | ||
OPEN_SOURCE_OBSERVER_API_KEY | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
**/__generated__/ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
schema: | ||
- https://sepolia.easscan.org/graphql | ||
documents: '**/*.graphql' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import {defineConfig} from 'orval'; | ||
|
||
export default defineConfig({ | ||
agora: { | ||
input: 'https://vote.optimism.io/api/v1/spec', | ||
output: {target: './src/__generated__/api/agora.ts', baseUrl: "https://vote.optimism.io/api/v1/"}, | ||
hooks: { | ||
afterAllFilesWrite: 'prettier --write', | ||
}, | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.