This repository was archived by the owner on May 14, 2021. It is now read-only.

Description
The latest version of NodeJS (12.x.x) doesn't support some of the functions used by the library. In particular:
"@kinecosystem/kin-base": {
"version": "0.20.4",
"resolved": "https://registry.npmjs.org/@kinecosystem/kin-base/-/kin-base-0.20.4.tgz",
"integrity": "sha512-Hb5umvYV7bqAEnAawJDaSwNygx8I4tQHVHAuUWdbOESw2Y2XzhA3Csl81xvEvrPsghvkYjwsZA9F/YuKqEIWPw==",
"requires": {
"base32.js": "0.1.0",
"bignumber.js": "5.0.0",
"crc": "3.8.0",
"ed25519": "0.0.4",
"js-xdr": "1.1.2",
"lodash": "4.17.14",
"sha.js": "2.4.11",
"tweetnacl": "1.0.1"
},
ed25519 is the culprit, it's an encryption library but it's pretty outdated and uses removed APIs in Node version 12.
I will create a PR to update the README to add a note :)