From 3f1a54f0189cf8ced143bf71d1e48e78bed46eaa Mon Sep 17 00:00:00 2001 From: Denis Angell Date: Tue, 31 Oct 2023 15:12:07 +0100 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f1bd0748..794f863c 100644 --- a/README.md +++ b/README.md @@ -32,19 +32,19 @@ All of which works in Node.js (tested for v14+) & web browsers (tested for Chrom In an existing project (with package.json), install xrpl.js with: ``` -$ npm install --save xrpl +$ npm install --save @transia/xrpl ``` Or with `yarn`: ``` -$ yarn add xrpl +$ yarn add @transia/xrpl ``` Example usage: ```js -const xrpl = require("xrpl"); +const xrpl = require("@transia/xrpl"); async function main() { const client = new xrpl.Client("wss://s.altnet.rippletest.net:51233"); await client.connect();