runtime: enforce persistent signer identity and deterministic kid#74
Merged
GsCommand merged 1 commit intoMay 20, 2026
Merged
Conversation
Why: persistent ENS verification requires stable signer identity and deterministic kid across restarts instead of ephemeral dev keys. Contract impact: none
GsCommand
added a commit
that referenced
this pull request
May 20, 2026
Merge pull request #74 from commandlayer/codex/implement-persistent-s…
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
kidand prevented persistent ENS TXT verification.Description
requirePersistentSignerInvariantsOrThrowenforcesjson.sorted_keys.v1canonicalization and a non-emptyRECEIPT_SIGNER_IDwhen not in dev mode.assertKeypairMatches(privatePem, publicPem)to reject mismatched private/public material at startup.DEV_AUTO_KEYSfor local development but make logs explicitly showDEV MODEvsPERSISTENT SIGNER MODEand print a signer summary includingsigner_id, canonicalization,kid, and key fingerprint.scripts/print-ens-records.mjsto produce the TXT values (cl.sig.pub,cl.sig.kid,cl.sig.canonical,cl.receipt.signer) from the configured public key andRECEIPT_SIGNER_ID.runtime/tests/runtime-signing.test.mjsto cover stablekidacross restarts, mismatched key rejection, and missing signer id rejection while keepingDEV_AUTO_KEYSbehavior intact.Testing
npm install,npm run check,npm test, andnpm run ciwith all automated tests passing (53 tests, 0 failures)./health,/verify, full request chains, and the new boot failure cases; all succeeded.scripts/print-ens-records.mjswith generated keys to verify output ofcl.sig.pub,cl.sig.kid,cl.sig.canonical, andcl.receipt.signerand observed correct values printed.Codex Task