From c955bd37bb74e700103eeadca9108196db475bb8 Mon Sep 17 00:00:00 2001 From: Golo Roden Date: Sat, 26 Sep 2026 13:09:13 +0200 Subject: [PATCH] fix: Describe the signing key of the test container as what it is. The README said that the signing key can be used when configuring the container to sign outgoing events, which the SDK does not offer. It is the private key EventSourcingDB signs events with. Co-Authored-By: Claude Opus 5.5 (1M context) Claude-Session: https://claude.ai/code/session_01VVZx93wLHrp5dyCWKjUAfd --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 275c21c..54a8220 100644 --- a/README.md +++ b/README.md @@ -515,7 +515,7 @@ const signingKey = container.getSigningKey(); const verificationKey = container.getVerificationKey(); ``` -The `signingKey` can be used when configuring the container to sign outgoing events. The `verificationKey` can be passed to `verifySignature` when verifying events read from the database. +The `signingKey` is the private key EventSourcingDB signs events with. The `verificationKey` can be passed to `verifySignature` when verifying events read from the database. #### Configuring the Client Manually