From 40bbc8cc4da99c0edfffd760d459fdbdc9d2d172 Mon Sep 17 00:00:00 2001 From: Carlos Medeiros Date: Fri, 19 Jun 2026 07:48:21 +0100 Subject: [PATCH] fix: point package.json URLs at ledger-casper-js (fixes OIDC provenance 422) repository.url / homepage / bugs pointed at github.com/Zondax/ledger-casper (the C app repo). On `npm publish --provenance`, npm validates that repository.url matches the repo that generated the provenance (ledger-casper-js) and rejected the mismatch with E422. --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 156e0d2..5d753b2 100644 --- a/package.json +++ b/package.json @@ -9,13 +9,13 @@ "Javascript", "Casper" ], - "homepage": "https://github.com/Zondax/ledger-casper", + "homepage": "https://github.com/Zondax/ledger-casper-js", "bugs": { - "url": "https://github.com/Zondax/ledger-casper/issues" + "url": "https://github.com/Zondax/ledger-casper-js/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/Zondax/ledger-casper.git" + "url": "git+https://github.com/Zondax/ledger-casper-js.git" }, "license": "Apache-2.0", "author": "Zondax AG",