Peer edit updates

This commit is contained in:
Amarantha Kulkarni
2022-04-15 13:47:05 -07:00
parent cc466ad139
commit f35fa0da37
4 changed files with 26 additions and 28 deletions

View File

@@ -95,7 +95,7 @@ You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-port
## ripplex-1-send-xrp.js ## ripplex-1-send-xrp.js
This example can be used with any XRPL ledger. Currently, there are _Testnet_ and _Devnet,_ with the experimental _NFT-Devnet_ server with support for NFTs. You can update the code to choose different or additional XRPL ledgers. This example can be used with any XRP Ledger network. Currently, there are _Testnet_ and _Devnet,_ with the experimental _NFT-Devnet_ server with support for NFTs. You can update the code to choose different or additional XRP Ledger networks.
### getNet() ### getNet()
@@ -299,7 +299,7 @@ Parse the **seeds** field.
``` ```
Get the standby_wallet based on the seed in the first line. Get the operational_wallet based on the seed in the second line. Get the `standby_wallet` based on the seed in the first line. Get the `operational_wallet` based on the seed in the second line.
``` ```
@@ -342,7 +342,7 @@ Populate the fields for the standby and operational accounts.
``` ```
Disconnect from the XRP ledger. Disconnect from the XRP Ledger.
``` ```
@@ -455,7 +455,7 @@ Request the balance changes caused by the transaction and report the results.
### Reciprocal Transactions ### Reciprocal Transactions
For each of the transactions, there is an accompanying reciprocal transaction, with the prefix _oP,_ for the operational account. See the corresponding function for the standby account for code commentary. For each of the transactions, there is an accompanying reciprocal transaction, with the prefix _oP,_ for the operational account. See the corresponding function for the standby account for code commentary.
``` ```

View File

@@ -874,5 +874,5 @@ Update the form to support the new functions.
| Previous | Next | | Previous | Next |
| :--- | ---: | | :--- | ---: |
| 1. [Create Accounts and Send XRP](create-accounts-send-xrp.html) | 3. [Create TrustLine and Send Currency](create-trustline-send-currency.html) | | 1. [Create Accounts and Send XRP](create-accounts-send-xrp.html) | 3. [Mint and Burn NFTokens](mint-and-burn-nftokens.html) |

View File

@@ -171,7 +171,7 @@ You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-port
``` ```
Connect to the XRPL and get the wallet accounts. Connect to the ledger and get the wallet accounts.
``` ```
@@ -285,7 +285,7 @@ Get the current XRP balances for the operational and standby accounts.
``` ```
Disconnect from the XRPL. Disconnect from the ledger.
``` ```
@@ -311,7 +311,7 @@ Disconnect from the XRPL.
``` ```
Get the account wallets and connect to the XRPL. Get the account wallets and connect to the ledger.
``` ```
@@ -407,7 +407,7 @@ Report the results of the transaction.
``` ```
Disconnect from the XRPL. Disconnect from the ledger.
``` ```
@@ -430,7 +430,7 @@ Disconnect from the XRPL.
``` ```
Get the standby wallet and connect to the XRPL. Get the standby wallet and connect to the ledger.
``` ```
@@ -523,7 +523,7 @@ Report the transaction results.
``` ```
Disconnect from the XRPL. Disconnect from the ledger.
``` ```
@@ -547,7 +547,7 @@ Disconnect from the XRPL.
``` ```
Get the standby account wallet and connect to the XRPL. Get the standby account wallet and connect to the ledger.
``` ```
@@ -599,7 +599,7 @@ Request the list of buy offers for the token.
``` ```
Disconnect from the XRPL. Disconnect from the ledger.
``` ```
@@ -625,7 +625,7 @@ Disconnect from the XRPL.
``` ```
Get the account wallets and connect to the XRPL. Get the account wallets and connect to the ledger.
``` ```
@@ -704,7 +704,7 @@ Report the transaction results.
``` ```
Disconnect from the XRPL. Disconnect from the ledger.
``` ```
@@ -728,7 +728,7 @@ Disconnect from the XRPL.
``` ```
Get the account wallets and connect to the XRPL. Get the account wallets and connect to the ledger.
``` ```
@@ -800,7 +800,7 @@ Request the XRP balance for both accounts.
``` ```
Disconnect from the XRPL. Disconnect from the ledger.
``` ```

View File

@@ -13,26 +13,24 @@ labels:
--- ---
# XRPL Quickstart # XRPL Quickstart
The XRP Ledger (XRPL) is a robust, secure, customizable service. You can create your own interface to try out the capabilities and support your specific business needs. The XRP Ledger (XRPL) is a robust, secure, customizable service. You can create your own interface to try out the capabilities and support your specific business needs.
This Quickstart describes a test harness interface you can build to try out the XRPL. The harness displays multiple accounts, so that you can transfer tokens from one account to the other and see the results in real time. The image below shows the Token Test Harness at the completion of step 4. This quickstart describes a test harness interface you can build to try out the XRP Ledger. The test harness displays multiple accounts, so that you can transfer tokens from one account to the other and see the results in real time. The image below shows the Token Test Harness at the completion of step 4.
![Quickstart Tutorial Window](img/quickstart1.png) ![Quickstart Tutorial Window](img/quickstart1.png)
That is a lot of fields and buttons, all working together to perform some significant practical tasks. But getting _started_ with the XRPL is not that complicated. When you eat the elephant a bite at a time, none of the tasks is all that difficult to consume. That is a lot of fields and buttons, all working together to perform some significant practical tasks. But getting _started_ with the XRP Ledger is not that complicated. When you eat the elephant a bite at a time, none of the tasks are difficult to consume.
Typically, the example functions for interacting with the XRPL involve four steps. Typically, the example functions for interacting with the XRP Ledger involve four steps.
1. Connect to the XRP Ledger and instantiate your wallet.
2. Make changes to the XRP Ledger using transactions.
1. Connect to the XRPL and instantiate your wallet. 3. Get the state of accounts and tokens on the XRP Ledger using requests.
2. Make changes to the XRPL using transactions. 4. Disconnect from the XRP Ledger.
3. Get the state of accounts and tokens on the XRPL using requests.
4. Disconnect from the XRPL.
Each lesson shows you how to build the Token Test Harness one section at a time. Each module lets you try out meaningful interactions with the test ledger, with complete JavaScript and HTML code samples and a code walkthrough. There is also a link to the complete source code for each section that can be modified with a text editor and run in a browser. If you just cannot wait, you can follow the prerequisites below, then jump to lesson 4, [Transfer NFTokens](transfer-nftokens.html), and try out the complete test harness right away. Each lesson shows you how to build the Token Test Harness one section at a time. Each module lets you try out meaningful interactions with the test ledger, with complete JavaScript and HTML code samples and a code walkthrough. There is also a link to the complete source code for each section that can be modified with a text editor and run in a browser. If you just cannot wait, you can follow the prerequisites below, then jump to lesson 4, [Transfer NFTokens](transfer-nftokens.html), and try out the complete test harness right away.
Not all of the capabilities of the API are represented in this quickstart tutorial. This example is not intended for production or secure payment use, but to introduce you to the API used to implement features and explore the capabilities of XRPL. This quickstart tutorial introduces you to the API used to implement features and explore the capabilities of XRP Ledger. It does not represent *all* of the capabilities of the API and this example is not intended for production or secure payment use.
Much of this is “brute force” code that sacrifices conciseness for readability. Each example builds on the previous step, adding a new JavaScript file and the supporting UI. We anticipate that the applications you build greatly improve upon these examples. Your feedback and contributions are most welcome. Much of this is “brute force” code that sacrifices conciseness for readability. Each example builds on the previous step, adding a new JavaScript file and the supporting UI. We anticipate that the applications you build greatly improve upon these examples. Your feedback and contributions are most welcome.