From 16d8b83c7776fa6c249eff0465b873577e47afa6 Mon Sep 17 00:00:00 2001 From: Tommy Chan Date: Sat, 5 Oct 2019 13:20:37 -0700 Subject: [PATCH] updated README to add in installation notes. --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index fc9a653..858d198 100644 --- a/README.md +++ b/README.md @@ -6,5 +6,12 @@ For example, the SDK can communicate with the Kin Blockchain on behalf of the cl It can also monitor blockchain transactions so that you can implement broader services. It is up to you how to integrate the SDK in your overall architecture and how to manage your server. +# Installation Notes +If you encounter an error while performing `npm install` with the error below, then you will need to downgrade you Node version to 11. Node >= 12 removed some functions that the `ed25519` library + +``` +../src/ed25519.cc:19:89: error: no matching member function for call to 'ToObject' + if ((info.Length() < 1) || (!Buffer::HasInstance(info[0])) || (Buffer::Length(info[0]->ToObject()) != 32)) { +``` Documentation