Description of key libraries
To build our encrypted messaging system, we'll be using these key JavaScript libraries:
xrpl: The official XRPL client library to interact with the XRP Ledger
xrpl
tweetnacl: For encryption/decryption operations using the NaCl cryptographic library
tweetnacl
@noble/curves: For handling elliptic curve operations and key conversions
@noble/curves
buffer: To handle binary data manipulation
buffer
If you are running your own environment, install everything by running:
npm install xrpl tweetnacl @noble/curves buffer
Last updated 1 year ago