From 966b7ada07dbb673fdf6055896dbee59bb42c719 Mon Sep 17 00:00:00 2001 From: Aykut Bulut Date: Thu, 18 Jun 2026 14:09:19 -0400 Subject: [PATCH] Create issuers file This change creates the `pvt-issuers.json` file. The file has a single issuer for `https://pvtissuer.privatetokens.dev`. This origin is controlled by the PVT team. The key commitment endpoint is setup to return a valid response. The issuance endpoint is not setup and will not respond to issuance requests. This is by design. We will use only the key commitment endpoint to test parsing key commitments and to verify PVT configuration creation. --- pvt-issuers.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 pvt-issuers.json diff --git a/pvt-issuers.json b/pvt-issuers.json new file mode 100644 index 0000000..6f59f0e --- /dev/null +++ b/pvt-issuers.json @@ -0,0 +1,10 @@ +{ + "https://privatetokens.dev": { + "name": "Chromium PVT Demo Key Commitment Endpoint", + "contact": "private-verification-tokens-chrome-team@google.com", + "endpoint": "https://privatetokens.dev/.well-known/private-verification-token/key-commitment", + "deplotmentID": "PrivateTokens_Chrome_PVT-DEMO-2026" + "batchSize": 10, + "expiry": "1796860800" + } +}