Fork of Eclipse EDC IdentityHub. settings.gradle.kts still has rootProject.name = "identity-hub"
and the root README.md is upstream/stale — trust build files and code, not the README.
The wallet stores did:web credentials for the EDC and also acts as issuer (identity-hub +
issuer-service combined into one deployable to reduce component count).
Java, multi-module Gradle (Kotlin DSL). The vast majority of the tree mirrors upstream and is irrelevant to Construct-X.
Everything else is upstream. The only Construct-X-authored parts are:
launcher/con-x-wallet/— the actual wallet runtime +Dockerfile(assembles upstream EDC BOMs)extensions/con-x/dev-attestation/— dev-only extension to freely shape a VCcredentialSubject; not for production (see its README)charts/wallet/andcharts/issuer-wallet/— Construct-X Helm chartsgradle.properties→con-x-edcVersionand the launcher'sdev-attestationwiring insettings.gradle.kts
version=0.18.0-SNAPSHOTingradle.propertiesis the inherited upstream repo version.con-x-edcVersion=0.17.0is what actually matters: it pins the published EDC artifact BOMs (identityhub-bom,issuerservice-bom, sql feature BOMs,vault-hashicorp) thatlauncher/con-x-walletconsumes at runtime. Change this to bump the wallet.- Docker image tag is derived as
wallet:<con-x-edcVersion>-1(releaseVersion = "$edcVersion-1").
The super-user-seed-extension git submodule is required and is not checked out by default:
git submodule update --init --recursive
./gradlew :launcher:con-x-wallet:dockerize # builds shadowJar + docker image (from repo root)dockerize also generates build/docker/runtimeClasspath-dependencies.txt, copied into the image as /DEPENDENCIES.
developis the Construct-X single source of truth and the default branch — base all work on it.mainis kept in sync with the upstream project (Eclipse EDC IdentityHub); don't develop on it. Upstream updates land inmainand are periodically merged intodevelop.- New features go on a branch cut from
develop(e.g.feat/…,chore/…), then merged back intodevelop.
- Identity here is
did:web(unlike the constructx-edc connector, which uses a custom BPN format). - The
.github/workflows/are mostly inherited upstream EDC pipelines (verify.yaml,nightly.yml, release/publish); they are not Construct-X-specific.