From d490bb4d93dba83be4f00d0be01bbd8222b0a9bd Mon Sep 17 00:00:00 2001 From: Dennis Dawson Date: Thu, 14 Apr 2022 09:02:55 -0700 Subject: [PATCH] Move prerequisites up --- .../quickstart/create-accounts-send-xrp.md | 24 ++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/content/tutorials/quickstart/create-accounts-send-xrp.md b/content/tutorials/quickstart/create-accounts-send-xrp.md index 7c6788ae9a..ae7d9329b4 100644 --- a/content/tutorials/quickstart/create-accounts-send-xrp.md +++ b/content/tutorials/quickstart/create-accounts-send-xrp.md @@ -27,6 +27,19 @@ When you create an account, you receive a public/private key pair offline. It do + +## Prerequisites + +To get started, create a new folder on your local disk and install the JavaScript library using `npm`. + + +``` + npm install xrpl +``` + + +Download and expand the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples/quickstart/quickstart.zip) archive. + ## Usage To get test accounts: @@ -74,17 +87,6 @@ To transfer XRP between accounts: -# Prerequisites - -To get started, create a new folder on your local disk and install the JavaScript library using `npm`. - - -``` - npm install xrpl -``` - - - # Code Walkthrough You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples/quickstart/quickstart.zip) in the source repository for this website.