From 97a13830aba91928702cbf4764f5937d29c990af Mon Sep 17 00:00:00 2001 From: Henry Tsai Date: Fri, 15 Sep 2023 19:50:37 -0700 Subject: [PATCH] updated README according to review comments --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 342fc5e79..7e4a590a6 100644 --- a/README.md +++ b/README.md @@ -235,7 +235,7 @@ const dwn = await Dwn.create({ messageStore, dataStore, eventLog, tenantGate }); ``` ### Custom Signature Signer -Instead of using `PrivateKeySigner` to perform messger signing when you have the private key readily available, you can implement a customer signer to interface with external signing service, API, HSM, TPM etc and use it for signing your DWN messages: +If you have the private key readily available, it is recommended to use the built-in `PrivateKeySigner`. Otherwise, you can implement a customer signer to interface with external signing service, API, HSM, TPM etc and use it for signing your DWN messages: ```ts // create a custom signer