From e648b07b53a84fd080b7bc8bb6f9ca78facb4e69 Mon Sep 17 00:00:00 2001 From: Gabriel Crispino Date: Tue, 14 Apr 2026 12:56:38 -0300 Subject: [PATCH] Fix "the/then" typo in Phase 3 instructions Corrected a typo in the instructions for Phase 3: replaced "should the" with "should then" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 84e0843e..b0849f05 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ To pass **Phase 2**: Asking users to input a private key directly into your webapp is a big no-no! 🚫 -The next step for YOU to accomplish is to make it so that you can send a signed transaction to the server, via your webapp; the server should the authenticate that transaction by deriving the public key associated with it. If that public key has funds, move the funds to the intended recipient. All of this should be accomplished via digital signatures alone. +The next step for YOU to accomplish is to make it so that you can send a signed transaction to the server, via your webapp; the server should then authenticate that transaction by deriving the public key associated with it. If that public key has funds, move the funds to the intended recipient. All of this should be accomplished via digital signatures alone. Hint: In `index.js`, you will want to: - get a signature from the client-side application