diff --git a/content/tutorials/quickstart/authorize-minter.md b/content/tutorials/quickstart/authorize-minter.md index 72f8506445..1ec27a1745 100644 --- a/content/tutorials/quickstart/authorize-minter.md +++ b/content/tutorials/quickstart/authorize-minter.md @@ -27,11 +27,11 @@ You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-port ## Get Accounts 1. Open `6.authorized-minter.html` in a browser. -2. Get test accounts. - 1. If you have existing NFT-Devnet account seeds: +2. Choose your ledger instance (_Testnet_ or _Devnet_). + 1. If you have existing test account seeds: 1. Paste the account seeds in the **Seeds** field. 2. Click **Get Accounts from Seeds**. - 2. If you do not have existing NFT-Devnet accounts: + 2. If you do not have existing test accounts: 1. Click **Get New Standby Account**. 2. Click **Get New Operational Account**. @@ -398,9 +398,6 @@ Update the form with fields and buttons to support the new functions.

Token Test Harness

Choose your ledger instance: - -    diff --git a/content/tutorials/quickstart/batch-minting.md b/content/tutorials/quickstart/batch-minting.md index afb56a130e..67db38eb7b 100644 --- a/content/tutorials/quickstart/batch-minting.md +++ b/content/tutorials/quickstart/batch-minting.md @@ -360,9 +360,6 @@ For this form:

Token Test Harness

Choose your ledger instance: - -    diff --git a/content/tutorials/quickstart/broker-sale.md b/content/tutorials/quickstart/broker-sale.md index 2ae7e13eac..59075afda6 100644 --- a/content/tutorials/quickstart/broker-sale.md +++ b/content/tutorials/quickstart/broker-sale.md @@ -28,12 +28,12 @@ You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-port ## Get Accounts 1. Open `5.broker-nfts.html` in a browser. -2. Choose **XLS20-NFT** as your ledger instance. +2. Choose your ledger instance. 3. Get test accounts. - 1. If you have existing NFT-Devnet account seeds: + 1. If you have existing account seeds: 1. Paste 3 account seeds in the **Seeds** field. 2. Click **Get Accounts from Seeds**. - 2. If you do not have NFT-Devnet account seeds: + 2. If you do not have account seeds: 1. Click **Get New Standby Account**. 2. Click **Get New Operational Account**. 3. Click **Get New Broker Account** @@ -625,9 +625,6 @@ Revise the HTML form to add a new Broker section at the top.

Token Test Harness

Choose your ledger instance: - -    diff --git a/content/tutorials/quickstart/create-accounts-send-xrp.md b/content/tutorials/quickstart/create-accounts-send-xrp.md index 90ed61ce3f..7c6ae5a3a9 100644 --- a/content/tutorials/quickstart/create-accounts-send-xrp.md +++ b/content/tutorials/quickstart/create-accounts-send-xrp.md @@ -10,24 +10,18 @@ labels: --- # 1. Create Accounts and Send XRP - This example shows how to: - 1. Create accounts on the Testnet, funded with 10000 test XRP with no actual value. 2. Retrieve the accounts from seed values. 3. Transfer XRP between accounts. When you create an account, you receive a public/private key pair offline. It does not appear on the ledger until it is funded with XRP. This example shows how to create accounts for Testnet, but not how to create an account that you can use on Mainnet. - - ![Token Test Harness](img/quickstart2.png) - - ## Prerequisites To get started, create a new folder on your local disk and install the JavaScript library using `npm`. @@ -47,7 +41,7 @@ To get test accounts: 1. Open `1.get-accounts-send-xrp.html` in a browser -2. Choose **NFT-Devnet**, **Testnet**, or **Devnet**. +2. Choose **Testnet** or **Devnet**. 3. Click **Get New Standby Account**. 4. Click **Get New Operational Account.** 5. Copy and paste the **Seeds** field in a persistent location, such as a Notepad, so that you can reuse the accounts after reloading the form. @@ -80,7 +74,7 @@ You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-port ## ripplex-1-send-xrp.js -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 NFTokens. You can update the code to choose different or additional XRP Ledger networks. +This example can be used with any XRP Ledger network, _Testnet_, or _Devnet_. You can update the code to choose different or additional XRP Ledger networks. ### getNet() @@ -100,7 +94,6 @@ This function uses brute force `if` statements to discover the selected network ``` let net - if (document.getElementById("xls").checked) net = "wss://xls20-sandbox.rippletest.net:51233" if (document.getElementById("tn").checked) net = "wss://s.altnet.rippletest.net:51233" if (document.getElementById("dn").checked) net = "wss://s.devnet.rippletest.net:51233" return net @@ -380,7 +373,6 @@ Connect to your selected ledger. ``` - Prepare the transaction. This is a Payment transaction from the standby wallet to the operational wallet. The _Payment_ transaction expects the XRP to be expressed in drops, or 1/millionth of an XRP. You can use the xrpToDrops utility to convert the send amount for you (which beats having to type an extra 6 zeroes to send 1 XRP). @@ -542,9 +534,6 @@ Create a standard HTML form to send transactions and requests, then display the

Token Test Harness

Choose your ledger instance: - -    diff --git a/content/tutorials/quickstart/create-trustline-send-currency.md b/content/tutorials/quickstart/create-trustline-send-currency.md index 10d91d6f00..4ccf932206 100644 --- a/content/tutorials/quickstart/create-trustline-send-currency.md +++ b/content/tutorials/quickstart/create-trustline-send-currency.md @@ -648,9 +648,6 @@ Update the form to support the new functions.

Token Test Harness

Choose your ledger instance: - -    diff --git a/content/tutorials/quickstart/mint-and-burn-nftokens.md b/content/tutorials/quickstart/mint-and-burn-nftokens.md index df5633bc9c..826b243af2 100644 --- a/content/tutorials/quickstart/mint-and-burn-nftokens.md +++ b/content/tutorials/quickstart/mint-and-burn-nftokens.md @@ -12,10 +12,12 @@ labels: This example shows how to: -1. Mint new Non-Fungible Tokens (NFTokens). + +1. Mint new Non-fungible Tokens (NFTokens). 2. Get a list of existing NFTokens. 3. Delete (Burn) a NFToken. + ![Test harness with mint NFToken fields](img/quickstart8.png) @@ -30,10 +32,10 @@ You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-port 1. Open `3.mint-nfts.html` in a browser. 2. Get test accounts. - 1. If you have existing NFT-Devnet account seeds: + 1. If you have existing Testnet account seeds: 1. Paste the account seeds in the **Seeds** field. 2. Click **Get Accounts from Seeds**. - 2. If you do not have existing NFT-Devnet accounts: + 2. If you do not have existing Testnet accounts: 1. Click **Get New Standby Account**. 2. Click **Get New Operational Account**. @@ -480,11 +482,7 @@ Bold text in the following indicates changes to the form that support the new fu

Token Test Harness

- Choose your ledger instance: - - -    + Choose your ledger instance: diff --git a/content/tutorials/quickstart/transfer-nftokens.md b/content/tutorials/quickstart/transfer-nftokens.md index 32b5490d5c..b8d2578b2a 100644 --- a/content/tutorials/quickstart/transfer-nftokens.md +++ b/content/tutorials/quickstart/transfer-nftokens.md @@ -10,9 +10,12 @@ labels: # 4. Transfer NFTokens +{% include '_snippets/nfts-disclaimer.md' %} This example shows how to: + + 1. Create NFToken Sell Offers. 2. Create NFToken Buy Offers. 3. Accept NFToken Sell Offers. @@ -1189,9 +1192,6 @@ Update the form with fields and buttons to support the new functions.

Token Test Harness

Choose your ledger instance: - -    diff --git a/img/quickstart1.png b/img/quickstart1.png index 4fbd881096..f8ff06a598 100644 Binary files a/img/quickstart1.png and b/img/quickstart1.png differ diff --git a/img/quickstart10.png b/img/quickstart10.png index eaaa1ebdc2..04d222423c 100644 Binary files a/img/quickstart10.png and b/img/quickstart10.png differ diff --git a/img/quickstart11.png b/img/quickstart11.png index 728be3681d..fe27adaf21 100644 Binary files a/img/quickstart11.png and b/img/quickstart11.png differ diff --git a/img/quickstart12.png b/img/quickstart12.png index 133b2029ba..cf6388b416 100644 Binary files a/img/quickstart12.png and b/img/quickstart12.png differ diff --git a/img/quickstart13.png b/img/quickstart13.png index 604b384211..f6a8232be1 100644 Binary files a/img/quickstart13.png and b/img/quickstart13.png differ diff --git a/img/quickstart14.png b/img/quickstart14.png index d614846e26..3bb26b975b 100644 Binary files a/img/quickstart14.png and b/img/quickstart14.png differ diff --git a/img/quickstart15.png b/img/quickstart15.png index ab5a2015de..0b1c42722c 100644 Binary files a/img/quickstart15.png and b/img/quickstart15.png differ diff --git a/img/quickstart16.png b/img/quickstart16.png index c481b19f2c..e4b361c7c9 100644 Binary files a/img/quickstart16.png and b/img/quickstart16.png differ diff --git a/img/quickstart17.png b/img/quickstart17.png index 019a927fb4..b14652a9dd 100644 Binary files a/img/quickstart17.png and b/img/quickstart17.png differ diff --git a/img/quickstart18.png b/img/quickstart18.png index 6498a669e7..4b0958ceec 100644 Binary files a/img/quickstart18.png and b/img/quickstart18.png differ diff --git a/img/quickstart19.png b/img/quickstart19.png index 08a74ef695..f4dcbddde0 100644 Binary files a/img/quickstart19.png and b/img/quickstart19.png differ diff --git a/img/quickstart2.png b/img/quickstart2.png index 5c2a568247..531a67954d 100644 Binary files a/img/quickstart2.png and b/img/quickstart2.png differ diff --git a/img/quickstart20.png b/img/quickstart20.png index 177bbdde58..e36d121c70 100644 Binary files a/img/quickstart20.png and b/img/quickstart20.png differ diff --git a/img/quickstart21.png b/img/quickstart21.png index 3ba8d91904..2c4bcc8eb8 100644 Binary files a/img/quickstart21.png and b/img/quickstart21.png differ diff --git a/img/quickstart22.png b/img/quickstart22.png index 840f1dbddf..ae10d2959a 100644 Binary files a/img/quickstart22.png and b/img/quickstart22.png differ diff --git a/img/quickstart23.png b/img/quickstart23.png index 99a318d321..b77a445d3b 100644 Binary files a/img/quickstart23.png and b/img/quickstart23.png differ diff --git a/img/quickstart24.png b/img/quickstart24.png index f8f559c9e9..9dad362c10 100644 Binary files a/img/quickstart24.png and b/img/quickstart24.png differ diff --git a/img/quickstart25.png b/img/quickstart25.png index 0fa1bcbeeb..a04cb23556 100644 Binary files a/img/quickstart25.png and b/img/quickstart25.png differ diff --git a/img/quickstart26.png b/img/quickstart26.png index 7e23026627..757cbf7a36 100644 Binary files a/img/quickstart26.png and b/img/quickstart26.png differ diff --git a/img/quickstart27.png b/img/quickstart27.png index e22bfbe2fe..26301ed6d3 100644 Binary files a/img/quickstart27.png and b/img/quickstart27.png differ diff --git a/img/quickstart28.png b/img/quickstart28.png index 9e855c06ed..9cfb5efb25 100644 Binary files a/img/quickstart28.png and b/img/quickstart28.png differ diff --git a/img/quickstart29.png b/img/quickstart29.png index 5be484f996..019d668d0a 100644 Binary files a/img/quickstart29.png and b/img/quickstart29.png differ diff --git a/img/quickstart3.png b/img/quickstart3.png index 31217103a7..63beced880 100644 Binary files a/img/quickstart3.png and b/img/quickstart3.png differ diff --git a/img/quickstart30.png b/img/quickstart30.png index 8ca4aca11c..2dc4f33a23 100644 Binary files a/img/quickstart30.png and b/img/quickstart30.png differ diff --git a/img/quickstart31.png b/img/quickstart31.png index a6725f1d6a..f74cbe437c 100644 Binary files a/img/quickstart31.png and b/img/quickstart31.png differ diff --git a/img/quickstart4.png b/img/quickstart4.png index d6b7857b0d..b381d5ca2f 100644 Binary files a/img/quickstart4.png and b/img/quickstart4.png differ diff --git a/img/quickstart5.png b/img/quickstart5.png index 8e6a85a01a..eef4349512 100644 Binary files a/img/quickstart5.png and b/img/quickstart5.png differ diff --git a/img/quickstart6.png b/img/quickstart6.png index 5ba2b2a801..6049449a2f 100644 Binary files a/img/quickstart6.png and b/img/quickstart6.png differ diff --git a/img/quickstart7.png b/img/quickstart7.png index cd729239f4..cfc7e3f0ab 100644 Binary files a/img/quickstart7.png and b/img/quickstart7.png differ diff --git a/img/quickstart8.png b/img/quickstart8.png index 5c1a8a8b4c..fd6dae66c4 100644 Binary files a/img/quickstart8.png and b/img/quickstart8.png differ diff --git a/img/quickstart9.png b/img/quickstart9.png index f54f9e801c..93a3019e14 100644 Binary files a/img/quickstart9.png and b/img/quickstart9.png differ