├── .dockerignore ├── .env.template ├── .env.test ├── .github └── workflows │ ├── pipeline-develop.yml │ ├── pipeline-main.yml │ ├── start-devouch-develop.yml │ ├── start-devouch-main.yml │ ├── stop-devouch-develop.yml │ └── stop-devouch-main.yml ├── .gitignore ├── .gitpod.yml ├── .prettierignore ├── .prettierrc.json ├── Caddyfile ├── Dockerfile ├── LICENSE ├── README.md ├── abi ├── EAS.json ├── README.md └── Schema.json ├── add-organisation.js ├── assets └── README.MD ├── commands.json ├── db ├── create-organisation-add-migration.js └── migrations │ ├── 1717662179474-Data.js │ ├── 1717941249030-Data.js │ ├── 1718005314786-Data.js │ ├── 1718184531403-Data.js │ ├── 1719825801500-Data.js │ ├── 1724279465327-Data.js │ ├── 1725254645149-AddTrace.js │ ├── 1727410589775-AddGiveth Verification Team.js │ ├── 1727513623446-AddPizza Lovers.js │ ├── 1727705021366-AddHonorary Mexican.js │ ├── 1727705168214-AddDegen.js │ ├── 1727706750760-AddRF 4 Badgeholder.js │ ├── 1728036830147-AddGiveth Verifier.js │ ├── 1728227711495-AddOptimism Super Delegate.js │ ├── 1728304303227-Data.js │ ├── 1728389519384-AddGitcoin Passport Holder.js │ ├── 1730125554407-ChangeRF5OrganizationName.js │ ├── 1735226891776-AddNo Affiliation.js │ ├── 1735646045434-AddRF 5 Voter.js │ ├── 1743772119156-AddProof of Regen.js │ └── 1753090940746-AddHuman Passport Holder.js ├── docker-compose-potgres-test.yml ├── docker-compose-potgres.yml ├── docker-compose.yml ├── fetch-eas-abi.sh ├── funding.json ├── jest.config.js ├── org-config.schema.json ├── org-config.template.jsonc ├── package.json ├── renovate.json ├── schema.graphql ├── squid.yaml ├── src ├── abi │ ├── EAS.abi.ts │ ├── EAS.ts │ ├── Schema.abi.ts │ ├── Schema.ts │ ├── abi.support.ts │ └── multicall.ts ├── constants.ts ├── controllers │ ├── authorizeAttestation.ts │ ├── projectVerificationAttestation.ts │ └── utils │ │ ├── databaseHelper.ts │ │ ├── easHelper.ts │ │ ├── modelHelper.ts │ │ ├── projectVerificationHelper.ts │ │ ├── types.test.ts │ │ └── types.ts ├── features │ └── import-projects │ │ ├── gardens │ │ ├── constants.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── service.ts │ │ └── type.ts │ │ ├── gitcoin │ │ ├── constants.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── service.ts │ │ └── type.ts │ │ ├── giveth │ │ ├── constants.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── service.ts │ │ └── type.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── retroList │ │ ├── constants.ts │ │ ├── helper.ts │ │ ├── index.ts │ │ ├── service.ts │ │ └── type.ts │ │ ├── rf │ │ ├── constants.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ └── type.ts │ │ ├── rpgf │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── service.ts │ │ └── type.ts │ │ ├── standalone.ts │ │ └── types.ts ├── helpers │ ├── db.ts │ └── request.ts ├── main.ts ├── mappings │ ├── attest.ts │ └── revoke.ts ├── model │ ├── generated │ │ ├── attestor.model.ts │ │ ├── attestorOrganisation.model.ts │ │ ├── index.ts │ │ ├── marshal.ts │ │ ├── organisation.model.ts │ │ ├── organisationProject.model.ts │ │ ├── project.model.ts │ │ └── projectAttestation.model.ts │ └── index.ts ├── processor.ts ├── server-extension │ ├── attestor-resolver-types.ts │ ├── attestor-resolver.ts │ ├── helper.ts │ ├── organization-resolver.ts │ ├── project-resolver.ts │ ├── resolvers │ │ └── index.ts │ └── types.ts ├── test │ ├── bootstrap.ts │ ├── getProject.test.ts │ ├── store.test.ts │ └── utils.ts └── types │ └── attestData.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- 1 | /.git 2 | /node_modules 3 | /lib 4 | /*Versions.json 5 | npm-debug.log 6 | 7 | # OS Files 8 | .DS_Store 9 | -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/.env.template -------------------------------------------------------------------------------- /.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/.env.test -------------------------------------------------------------------------------- /.github/workflows/pipeline-develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/.github/workflows/pipeline-develop.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/.github/workflows/pipeline-main.yml -------------------------------------------------------------------------------- /.github/workflows/start-devouch-develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/.github/workflows/start-devouch-develop.yml -------------------------------------------------------------------------------- /.github/workflows/start-devouch-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/.github/workflows/start-devouch-main.yml -------------------------------------------------------------------------------- /.github/workflows/stop-devouch-develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/.github/workflows/stop-devouch-develop.yml -------------------------------------------------------------------------------- /.github/workflows/stop-devouch-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/.github/workflows/stop-devouch-main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | src/db/migrations/ 2 | abi/ 3 | builds/ 4 | lib/ 5 | model/ -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/Caddyfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/README.md -------------------------------------------------------------------------------- /abi/EAS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/abi/EAS.json -------------------------------------------------------------------------------- /abi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/abi/README.md -------------------------------------------------------------------------------- /abi/Schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/abi/Schema.json -------------------------------------------------------------------------------- /add-organisation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/add-organisation.js -------------------------------------------------------------------------------- /assets/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/assets/README.MD -------------------------------------------------------------------------------- /commands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/commands.json -------------------------------------------------------------------------------- /db/create-organisation-add-migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/create-organisation-add-migration.js -------------------------------------------------------------------------------- /db/migrations/1717662179474-Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1717662179474-Data.js -------------------------------------------------------------------------------- /db/migrations/1717941249030-Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1717941249030-Data.js -------------------------------------------------------------------------------- /db/migrations/1718005314786-Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1718005314786-Data.js -------------------------------------------------------------------------------- /db/migrations/1718184531403-Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1718184531403-Data.js -------------------------------------------------------------------------------- /db/migrations/1719825801500-Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1719825801500-Data.js -------------------------------------------------------------------------------- /db/migrations/1724279465327-Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1724279465327-Data.js -------------------------------------------------------------------------------- /db/migrations/1725254645149-AddTrace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1725254645149-AddTrace.js -------------------------------------------------------------------------------- /db/migrations/1727410589775-AddGiveth Verification Team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1727410589775-AddGiveth Verification Team.js -------------------------------------------------------------------------------- /db/migrations/1727513623446-AddPizza Lovers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1727513623446-AddPizza Lovers.js -------------------------------------------------------------------------------- /db/migrations/1727705021366-AddHonorary Mexican.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1727705021366-AddHonorary Mexican.js -------------------------------------------------------------------------------- /db/migrations/1727705168214-AddDegen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1727705168214-AddDegen.js -------------------------------------------------------------------------------- /db/migrations/1727706750760-AddRF 4 Badgeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1727706750760-AddRF 4 Badgeholder.js -------------------------------------------------------------------------------- /db/migrations/1728036830147-AddGiveth Verifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1728036830147-AddGiveth Verifier.js -------------------------------------------------------------------------------- /db/migrations/1728227711495-AddOptimism Super Delegate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1728227711495-AddOptimism Super Delegate.js -------------------------------------------------------------------------------- /db/migrations/1728304303227-Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1728304303227-Data.js -------------------------------------------------------------------------------- /db/migrations/1728389519384-AddGitcoin Passport Holder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1728389519384-AddGitcoin Passport Holder.js -------------------------------------------------------------------------------- /db/migrations/1730125554407-ChangeRF5OrganizationName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1730125554407-ChangeRF5OrganizationName.js -------------------------------------------------------------------------------- /db/migrations/1735226891776-AddNo Affiliation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1735226891776-AddNo Affiliation.js -------------------------------------------------------------------------------- /db/migrations/1735646045434-AddRF 5 Voter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1735646045434-AddRF 5 Voter.js -------------------------------------------------------------------------------- /db/migrations/1743772119156-AddProof of Regen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1743772119156-AddProof of Regen.js -------------------------------------------------------------------------------- /db/migrations/1753090940746-AddHuman Passport Holder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/db/migrations/1753090940746-AddHuman Passport Holder.js -------------------------------------------------------------------------------- /docker-compose-potgres-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/docker-compose-potgres-test.yml -------------------------------------------------------------------------------- /docker-compose-potgres.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/docker-compose-potgres.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /fetch-eas-abi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/fetch-eas-abi.sh -------------------------------------------------------------------------------- /funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/funding.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/jest.config.js -------------------------------------------------------------------------------- /org-config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/org-config.schema.json -------------------------------------------------------------------------------- /org-config.template.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/org-config.template.jsonc -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/renovate.json -------------------------------------------------------------------------------- /schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/schema.graphql -------------------------------------------------------------------------------- /squid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/squid.yaml -------------------------------------------------------------------------------- /src/abi/EAS.abi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/abi/EAS.abi.ts -------------------------------------------------------------------------------- /src/abi/EAS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/abi/EAS.ts -------------------------------------------------------------------------------- /src/abi/Schema.abi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/abi/Schema.abi.ts -------------------------------------------------------------------------------- /src/abi/Schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/abi/Schema.ts -------------------------------------------------------------------------------- /src/abi/abi.support.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/abi/abi.support.ts -------------------------------------------------------------------------------- /src/abi/multicall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/abi/multicall.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/controllers/authorizeAttestation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/controllers/authorizeAttestation.ts -------------------------------------------------------------------------------- /src/controllers/projectVerificationAttestation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/controllers/projectVerificationAttestation.ts -------------------------------------------------------------------------------- /src/controllers/utils/databaseHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/controllers/utils/databaseHelper.ts -------------------------------------------------------------------------------- /src/controllers/utils/easHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/controllers/utils/easHelper.ts -------------------------------------------------------------------------------- /src/controllers/utils/modelHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/controllers/utils/modelHelper.ts -------------------------------------------------------------------------------- /src/controllers/utils/projectVerificationHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/controllers/utils/projectVerificationHelper.ts -------------------------------------------------------------------------------- /src/controllers/utils/types.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/controllers/utils/types.test.ts -------------------------------------------------------------------------------- /src/controllers/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/controllers/utils/types.ts -------------------------------------------------------------------------------- /src/features/import-projects/gardens/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/gardens/constants.ts -------------------------------------------------------------------------------- /src/features/import-projects/gardens/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/gardens/helpers.ts -------------------------------------------------------------------------------- /src/features/import-projects/gardens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/gardens/index.ts -------------------------------------------------------------------------------- /src/features/import-projects/gardens/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/gardens/service.ts -------------------------------------------------------------------------------- /src/features/import-projects/gardens/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/gardens/type.ts -------------------------------------------------------------------------------- /src/features/import-projects/gitcoin/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/gitcoin/constants.ts -------------------------------------------------------------------------------- /src/features/import-projects/gitcoin/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/gitcoin/helpers.ts -------------------------------------------------------------------------------- /src/features/import-projects/gitcoin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/gitcoin/index.ts -------------------------------------------------------------------------------- /src/features/import-projects/gitcoin/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/gitcoin/service.ts -------------------------------------------------------------------------------- /src/features/import-projects/gitcoin/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/gitcoin/type.ts -------------------------------------------------------------------------------- /src/features/import-projects/giveth/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/giveth/constants.ts -------------------------------------------------------------------------------- /src/features/import-projects/giveth/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/giveth/helpers.ts -------------------------------------------------------------------------------- /src/features/import-projects/giveth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/giveth/index.ts -------------------------------------------------------------------------------- /src/features/import-projects/giveth/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/giveth/service.ts -------------------------------------------------------------------------------- /src/features/import-projects/giveth/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/giveth/type.ts -------------------------------------------------------------------------------- /src/features/import-projects/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/helpers.ts -------------------------------------------------------------------------------- /src/features/import-projects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/index.ts -------------------------------------------------------------------------------- /src/features/import-projects/retroList/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/retroList/constants.ts -------------------------------------------------------------------------------- /src/features/import-projects/retroList/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/retroList/helper.ts -------------------------------------------------------------------------------- /src/features/import-projects/retroList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/retroList/index.ts -------------------------------------------------------------------------------- /src/features/import-projects/retroList/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/retroList/service.ts -------------------------------------------------------------------------------- /src/features/import-projects/retroList/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/retroList/type.ts -------------------------------------------------------------------------------- /src/features/import-projects/rf/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/rf/constants.ts -------------------------------------------------------------------------------- /src/features/import-projects/rf/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/rf/helpers.ts -------------------------------------------------------------------------------- /src/features/import-projects/rf/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/rf/index.ts -------------------------------------------------------------------------------- /src/features/import-projects/rf/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/rf/type.ts -------------------------------------------------------------------------------- /src/features/import-projects/rpgf/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/rpgf/constants.ts -------------------------------------------------------------------------------- /src/features/import-projects/rpgf/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/rpgf/index.ts -------------------------------------------------------------------------------- /src/features/import-projects/rpgf/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/rpgf/service.ts -------------------------------------------------------------------------------- /src/features/import-projects/rpgf/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/rpgf/type.ts -------------------------------------------------------------------------------- /src/features/import-projects/standalone.ts: -------------------------------------------------------------------------------- 1 | import { task } from "."; 2 | 3 | task(); 4 | -------------------------------------------------------------------------------- /src/features/import-projects/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/features/import-projects/types.ts -------------------------------------------------------------------------------- /src/helpers/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/helpers/db.ts -------------------------------------------------------------------------------- /src/helpers/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/helpers/request.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/mappings/attest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/mappings/attest.ts -------------------------------------------------------------------------------- /src/mappings/revoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/mappings/revoke.ts -------------------------------------------------------------------------------- /src/model/generated/attestor.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/model/generated/attestor.model.ts -------------------------------------------------------------------------------- /src/model/generated/attestorOrganisation.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/model/generated/attestorOrganisation.model.ts -------------------------------------------------------------------------------- /src/model/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/model/generated/index.ts -------------------------------------------------------------------------------- /src/model/generated/marshal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/model/generated/marshal.ts -------------------------------------------------------------------------------- /src/model/generated/organisation.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/model/generated/organisation.model.ts -------------------------------------------------------------------------------- /src/model/generated/organisationProject.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/model/generated/organisationProject.model.ts -------------------------------------------------------------------------------- /src/model/generated/project.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/model/generated/project.model.ts -------------------------------------------------------------------------------- /src/model/generated/projectAttestation.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/model/generated/projectAttestation.model.ts -------------------------------------------------------------------------------- /src/model/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./generated" 2 | -------------------------------------------------------------------------------- /src/processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/processor.ts -------------------------------------------------------------------------------- /src/server-extension/attestor-resolver-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/server-extension/attestor-resolver-types.ts -------------------------------------------------------------------------------- /src/server-extension/attestor-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/server-extension/attestor-resolver.ts -------------------------------------------------------------------------------- /src/server-extension/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/server-extension/helper.ts -------------------------------------------------------------------------------- /src/server-extension/organization-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/server-extension/organization-resolver.ts -------------------------------------------------------------------------------- /src/server-extension/project-resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/server-extension/project-resolver.ts -------------------------------------------------------------------------------- /src/server-extension/resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/server-extension/resolvers/index.ts -------------------------------------------------------------------------------- /src/server-extension/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/server-extension/types.ts -------------------------------------------------------------------------------- /src/test/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/test/bootstrap.ts -------------------------------------------------------------------------------- /src/test/getProject.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/test/getProject.test.ts -------------------------------------------------------------------------------- /src/test/store.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/test/store.test.ts -------------------------------------------------------------------------------- /src/test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/test/utils.ts -------------------------------------------------------------------------------- /src/types/attestData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/src/types/attestData.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giveth/DeVouch-BE/HEAD/tsconfig.json --------------------------------------------------------------------------------