From a809ed03b1c6bfe6c4cf42ec045e71ad2e12d0d4 Mon Sep 17 00:00:00 2001 From: mDuo13 Date: Thu, 27 Aug 2020 18:58:26 -0700 Subject: [PATCH] Get Started: Add other example servers --- content/tutorials/get-started/get-started.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/tutorials/get-started/get-started.md b/content/tutorials/get-started/get-started.md index d4e005946f..39ee1159a7 100644 --- a/content/tutorials/get-started/get-started.md +++ b/content/tutorials/get-started/get-started.md @@ -9,7 +9,11 @@ The XRP Ledger is always online and entirely public. You can access it directly

 const mainnet = new ripple.RippleAPI({
-  server: 'wss://s1.ripple.com' // Public rippled server
+  server: 'wss://s1.ripple.com' // Ripple's public cluster
+  // server: 'wss://s2.ripple.com' // Ripple's full history cluster
+  // server: 'wss://xrpl.ws' // XRPL Labs full history cluster
+  // server: 'wss://s.altnet.rippletest.net/' // Testnet
+  // server: 'wss://s.devnet.rippletest.net/' // Devnet
 });
 
 (async function(api) {