├── .env.example ├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── funding.json ├── next-env.d.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── .well-known │ └── walletconnect.txt └── images │ ├── .DS_Store │ ├── arcs │ ├── 1.svg │ ├── 2.svg │ └── 3.svg │ ├── banner.png │ ├── chains │ └── eth │ │ ├── 16.svg │ │ ├── 24.svg │ │ ├── 32.svg │ │ ├── 40.svg │ │ ├── 64.svg │ │ └── 8.svg │ ├── devouch-green.svg │ ├── favicon.png │ ├── favicon.svg │ ├── icons │ ├── checkmark.svg │ ├── chevron-down.svg │ ├── edit.svg │ ├── external.svg │ ├── facebook.svg │ ├── farcaster.svg │ ├── filter.svg │ ├── giveth.svg │ ├── left-arrow.svg │ ├── linkedin.svg │ ├── msg.svg │ ├── options.svg │ ├── power.svg │ ├── red-flag.svg │ ├── right-arrow.svg │ ├── search.svg │ ├── share.svg │ ├── trash-black.svg │ ├── trash.svg │ ├── twitter.svg │ ├── two-arrows.svg │ ├── vouched.svg │ ├── warning.svg │ └── x.svg │ ├── logo.svg │ ├── logotype.svg │ └── sources │ ├── gardens.svg │ ├── gitcoin.svg │ ├── giveth.svg │ ├── rf4.svg │ ├── rf5.svg │ ├── rf6.svg │ └── rpgf3.svg ├── src ├── abi │ └── EAS_ABI.json ├── app │ ├── globals.css │ ├── layout.tsx │ ├── page.tsx │ ├── profile │ │ ├── [address] │ │ │ └── page.tsx │ │ └── my-attestations │ │ │ └── page.tsx │ └── project │ │ └── [source] │ │ └── [projectId] │ │ └── page.tsx ├── components │ ├── AddressName.tsx │ ├── Button │ │ ├── Button.tsx │ │ └── OutlineButton.tsx │ ├── ChainIcon.tsx │ ├── CheckBox │ │ └── CheckBox.tsx │ ├── Dropdown │ │ └── Dropdown.tsx │ ├── FilterMenu │ │ └── FilterMenu.tsx │ ├── Footer │ │ └── Footer.tsx │ ├── Header │ │ ├── ConnectedWalletInfo.tsx │ │ └── Header.tsx │ ├── Icons │ │ ├── IconRightArrow.tsx │ │ ├── IconSort.tsx │ │ └── type.ts │ ├── Loading │ │ └── Spinner.tsx │ ├── Modal │ │ ├── AttestModal.tsx │ │ │ └── AttestModal.tsx │ │ ├── DeleteAttestModal.tsx │ │ ├── EditAttestModal.tsx │ │ ├── Modal.tsx │ │ └── ShareModal.tsx │ ├── NoAttestation.tsx │ ├── Pagination.tsx │ ├── ProjectCard │ │ ├── AttestsInfo │ │ │ ├── AllAttestsModal.tsx │ │ │ ├── AttestInfo.tsx │ │ │ └── AttestsInfo.tsx │ │ ├── ProjectCard.tsx │ │ └── constant.tsx │ ├── RadioButton │ │ └── RadioButton.tsx │ ├── Select │ │ └── Select.tsx │ ├── SourceBadge.tsx │ ├── Table │ │ ├── AttestationsTable.tsx │ │ └── Tooltip.tsx │ └── Tabs.tsx ├── config │ ├── configuration.ts │ ├── constants.ts │ ├── development.ts │ ├── production.ts │ ├── routes.ts │ └── wagmi.ts ├── context │ └── index.tsx ├── features │ ├── home │ │ ├── Projects.tsx │ │ ├── SearchInput.tsx │ │ ├── SelectedFilters.tsx │ │ ├── query-genrator.ts │ │ └── types.ts │ ├── profile │ │ ├── UserAttestations.tsx │ │ ├── constants.ts │ │ ├── queries.ts │ │ ├── services.ts │ │ └── types.ts │ └── project │ │ ├── ProjectDetails.tsx │ │ ├── ShareProject.tsx │ │ ├── constants.tsx │ │ ├── projectNotFound.tsx │ │ ├── queries.ts │ │ └── services.ts ├── helpers │ ├── request.ts │ ├── source.ts │ └── wallet.ts ├── lib │ ├── useFetchGraphQL.ts │ └── useIsMobile.tsx ├── queries │ ├── organizations.ts │ └── user.ts └── services │ └── organization.ts ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next 3 | .env.local 4 | **/.DS_Store -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/README.md -------------------------------------------------------------------------------- /funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/funding.json -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/.well-known/walletconnect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/.well-known/walletconnect.txt -------------------------------------------------------------------------------- /public/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/.DS_Store -------------------------------------------------------------------------------- /public/images/arcs/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/arcs/1.svg -------------------------------------------------------------------------------- /public/images/arcs/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/arcs/2.svg -------------------------------------------------------------------------------- /public/images/arcs/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/arcs/3.svg -------------------------------------------------------------------------------- /public/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/banner.png -------------------------------------------------------------------------------- /public/images/chains/eth/16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/chains/eth/16.svg -------------------------------------------------------------------------------- /public/images/chains/eth/24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/chains/eth/24.svg -------------------------------------------------------------------------------- /public/images/chains/eth/32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/chains/eth/32.svg -------------------------------------------------------------------------------- /public/images/chains/eth/40.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/chains/eth/40.svg -------------------------------------------------------------------------------- /public/images/chains/eth/64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/chains/eth/64.svg -------------------------------------------------------------------------------- /public/images/chains/eth/8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/chains/eth/8.svg -------------------------------------------------------------------------------- /public/images/devouch-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/devouch-green.svg -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/images/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/favicon.svg -------------------------------------------------------------------------------- /public/images/icons/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/checkmark.svg -------------------------------------------------------------------------------- /public/images/icons/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/chevron-down.svg -------------------------------------------------------------------------------- /public/images/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/edit.svg -------------------------------------------------------------------------------- /public/images/icons/external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/external.svg -------------------------------------------------------------------------------- /public/images/icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/facebook.svg -------------------------------------------------------------------------------- /public/images/icons/farcaster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/farcaster.svg -------------------------------------------------------------------------------- /public/images/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/filter.svg -------------------------------------------------------------------------------- /public/images/icons/giveth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/giveth.svg -------------------------------------------------------------------------------- /public/images/icons/left-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/left-arrow.svg -------------------------------------------------------------------------------- /public/images/icons/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/linkedin.svg -------------------------------------------------------------------------------- /public/images/icons/msg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/msg.svg -------------------------------------------------------------------------------- /public/images/icons/options.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/options.svg -------------------------------------------------------------------------------- /public/images/icons/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/power.svg -------------------------------------------------------------------------------- /public/images/icons/red-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/red-flag.svg -------------------------------------------------------------------------------- /public/images/icons/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/right-arrow.svg -------------------------------------------------------------------------------- /public/images/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/search.svg -------------------------------------------------------------------------------- /public/images/icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/share.svg -------------------------------------------------------------------------------- /public/images/icons/trash-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/trash-black.svg -------------------------------------------------------------------------------- /public/images/icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/trash.svg -------------------------------------------------------------------------------- /public/images/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/twitter.svg -------------------------------------------------------------------------------- /public/images/icons/two-arrows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/two-arrows.svg -------------------------------------------------------------------------------- /public/images/icons/vouched.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/vouched.svg -------------------------------------------------------------------------------- /public/images/icons/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/warning.svg -------------------------------------------------------------------------------- /public/images/icons/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/icons/x.svg -------------------------------------------------------------------------------- /public/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/logo.svg -------------------------------------------------------------------------------- /public/images/logotype.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/logotype.svg -------------------------------------------------------------------------------- /public/images/sources/gardens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/sources/gardens.svg -------------------------------------------------------------------------------- /public/images/sources/gitcoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/sources/gitcoin.svg -------------------------------------------------------------------------------- /public/images/sources/giveth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/sources/giveth.svg -------------------------------------------------------------------------------- /public/images/sources/rf4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/sources/rf4.svg -------------------------------------------------------------------------------- /public/images/sources/rf5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/sources/rf5.svg -------------------------------------------------------------------------------- /public/images/sources/rf6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/sources/rf6.svg -------------------------------------------------------------------------------- /public/images/sources/rpgf3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/public/images/sources/rpgf3.svg -------------------------------------------------------------------------------- /src/abi/EAS_ABI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/abi/EAS_ABI.json -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/profile/[address]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/app/profile/[address]/page.tsx -------------------------------------------------------------------------------- /src/app/profile/my-attestations/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/app/profile/my-attestations/page.tsx -------------------------------------------------------------------------------- /src/app/project/[source]/[projectId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/app/project/[source]/[projectId]/page.tsx -------------------------------------------------------------------------------- /src/components/AddressName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/AddressName.tsx -------------------------------------------------------------------------------- /src/components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Button/Button.tsx -------------------------------------------------------------------------------- /src/components/Button/OutlineButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Button/OutlineButton.tsx -------------------------------------------------------------------------------- /src/components/ChainIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/ChainIcon.tsx -------------------------------------------------------------------------------- /src/components/CheckBox/CheckBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/CheckBox/CheckBox.tsx -------------------------------------------------------------------------------- /src/components/Dropdown/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Dropdown/Dropdown.tsx -------------------------------------------------------------------------------- /src/components/FilterMenu/FilterMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/FilterMenu/FilterMenu.tsx -------------------------------------------------------------------------------- /src/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /src/components/Header/ConnectedWalletInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Header/ConnectedWalletInfo.tsx -------------------------------------------------------------------------------- /src/components/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Header/Header.tsx -------------------------------------------------------------------------------- /src/components/Icons/IconRightArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Icons/IconRightArrow.tsx -------------------------------------------------------------------------------- /src/components/Icons/IconSort.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Icons/IconSort.tsx -------------------------------------------------------------------------------- /src/components/Icons/type.ts: -------------------------------------------------------------------------------- 1 | interface Icon { 2 | size?: number; 3 | color?: string; 4 | } 5 | -------------------------------------------------------------------------------- /src/components/Loading/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Loading/Spinner.tsx -------------------------------------------------------------------------------- /src/components/Modal/AttestModal.tsx/AttestModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Modal/AttestModal.tsx/AttestModal.tsx -------------------------------------------------------------------------------- /src/components/Modal/DeleteAttestModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Modal/DeleteAttestModal.tsx -------------------------------------------------------------------------------- /src/components/Modal/EditAttestModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Modal/EditAttestModal.tsx -------------------------------------------------------------------------------- /src/components/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Modal/Modal.tsx -------------------------------------------------------------------------------- /src/components/Modal/ShareModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Modal/ShareModal.tsx -------------------------------------------------------------------------------- /src/components/NoAttestation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/NoAttestation.tsx -------------------------------------------------------------------------------- /src/components/Pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Pagination.tsx -------------------------------------------------------------------------------- /src/components/ProjectCard/AttestsInfo/AllAttestsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/ProjectCard/AttestsInfo/AllAttestsModal.tsx -------------------------------------------------------------------------------- /src/components/ProjectCard/AttestsInfo/AttestInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/ProjectCard/AttestsInfo/AttestInfo.tsx -------------------------------------------------------------------------------- /src/components/ProjectCard/AttestsInfo/AttestsInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/ProjectCard/AttestsInfo/AttestsInfo.tsx -------------------------------------------------------------------------------- /src/components/ProjectCard/ProjectCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/ProjectCard/ProjectCard.tsx -------------------------------------------------------------------------------- /src/components/ProjectCard/constant.tsx: -------------------------------------------------------------------------------- 1 | export const PROJECT_DESC_LIMIT = 300; 2 | -------------------------------------------------------------------------------- /src/components/RadioButton/RadioButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/RadioButton/RadioButton.tsx -------------------------------------------------------------------------------- /src/components/Select/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Select/Select.tsx -------------------------------------------------------------------------------- /src/components/SourceBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/SourceBadge.tsx -------------------------------------------------------------------------------- /src/components/Table/AttestationsTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Table/AttestationsTable.tsx -------------------------------------------------------------------------------- /src/components/Table/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Table/Tooltip.tsx -------------------------------------------------------------------------------- /src/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/components/Tabs.tsx -------------------------------------------------------------------------------- /src/config/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/config/configuration.ts -------------------------------------------------------------------------------- /src/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/config/constants.ts -------------------------------------------------------------------------------- /src/config/development.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/config/development.ts -------------------------------------------------------------------------------- /src/config/production.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/config/production.ts -------------------------------------------------------------------------------- /src/config/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/config/routes.ts -------------------------------------------------------------------------------- /src/config/wagmi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/config/wagmi.ts -------------------------------------------------------------------------------- /src/context/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/context/index.tsx -------------------------------------------------------------------------------- /src/features/home/Projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/features/home/Projects.tsx -------------------------------------------------------------------------------- /src/features/home/SearchInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/features/home/SearchInput.tsx -------------------------------------------------------------------------------- /src/features/home/SelectedFilters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/features/home/SelectedFilters.tsx -------------------------------------------------------------------------------- /src/features/home/query-genrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/features/home/query-genrator.ts -------------------------------------------------------------------------------- /src/features/home/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/features/home/types.ts -------------------------------------------------------------------------------- /src/features/profile/UserAttestations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/features/profile/UserAttestations.tsx -------------------------------------------------------------------------------- /src/features/profile/constants.ts: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 10; 2 | -------------------------------------------------------------------------------- /src/features/profile/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/features/profile/queries.ts -------------------------------------------------------------------------------- /src/features/profile/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/features/profile/services.ts -------------------------------------------------------------------------------- /src/features/profile/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/features/profile/types.ts -------------------------------------------------------------------------------- /src/features/project/ProjectDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/features/project/ProjectDetails.tsx -------------------------------------------------------------------------------- /src/features/project/ShareProject.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/features/project/ShareProject.tsx -------------------------------------------------------------------------------- /src/features/project/constants.tsx: -------------------------------------------------------------------------------- 1 | export const ITEMS_PER_PAGE = 10; 2 | -------------------------------------------------------------------------------- /src/features/project/projectNotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/features/project/projectNotFound.tsx -------------------------------------------------------------------------------- /src/features/project/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/features/project/queries.ts -------------------------------------------------------------------------------- /src/features/project/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/features/project/services.ts -------------------------------------------------------------------------------- /src/helpers/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/helpers/request.ts -------------------------------------------------------------------------------- /src/helpers/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/helpers/source.ts -------------------------------------------------------------------------------- /src/helpers/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/helpers/wallet.ts -------------------------------------------------------------------------------- /src/lib/useFetchGraphQL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/lib/useFetchGraphQL.ts -------------------------------------------------------------------------------- /src/lib/useIsMobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/lib/useIsMobile.tsx -------------------------------------------------------------------------------- /src/queries/organizations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/queries/organizations.ts -------------------------------------------------------------------------------- /src/queries/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/queries/user.ts -------------------------------------------------------------------------------- /src/services/organization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/src/services/organization.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-FE/HEAD/yarn.lock --------------------------------------------------------------------------------