From ad1263aa776256af8eb7c61ecd881bbec23dc710 Mon Sep 17 00:00:00 2001 From: ddawson Date: Tue, 19 Sep 2023 16:10:51 -0700 Subject: [PATCH 1/5] add videos --- .../broker-an-nft-sale-using-javascript.md | 4 ++++ .../create-accounts-send-xrp-using-javascript.md | 8 ++++++++ ...reate-trustline-send-currency-using-javascript.md | 4 ++++ .../mint-and-burn-nfts-using-javascript.md | 12 ++++++++---- .../quickstart/transfer-nfts-using-javascript.md | 4 ++++ 5 files changed, 28 insertions(+), 4 deletions(-) diff --git a/content/tutorials/quickstart/broker-an-nft-sale-using-javascript.md b/content/tutorials/quickstart/broker-an-nft-sale-using-javascript.md index eaa600b681..53e1774712 100644 --- a/content/tutorials/quickstart/broker-an-nft-sale-using-javascript.md +++ b/content/tutorials/quickstart/broker-an-nft-sale-using-javascript.md @@ -41,6 +41,10 @@ You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-port ## Prepare a Brokered Transaction +
+ +
+ 1. Use the Standby account to create an NFT Sell Offer with the Broker account as the destination. 1. Enter the **Amount** of the sell offer in drops (millionths of an XRP). 2. Set the **Flags** field to _1_. diff --git a/content/tutorials/quickstart/create-accounts-send-xrp-using-javascript.md b/content/tutorials/quickstart/create-accounts-send-xrp-using-javascript.md index c9a04eeb85..d88cf98bad 100644 --- a/content/tutorials/quickstart/create-accounts-send-xrp-using-javascript.md +++ b/content/tutorials/quickstart/create-accounts-send-xrp-using-javascript.md @@ -34,6 +34,10 @@ Download and expand the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-p ## Usage +
+ +
+ To get test accounts: 1. Open `1.get-accounts-send-xrp.html` in a browser @@ -46,6 +50,10 @@ To get test accounts: You can transfer XRP between your new accounts. Each account has its own fields and buttons. +
+ +
+ To transfer XRP from the Standby account to the Operational account: 1. On the Standby (left) side of the form, enter the **Amount** of XRP to send. diff --git a/content/tutorials/quickstart/create-trustline-send-currency-using-javascript.md b/content/tutorials/quickstart/create-trustline-send-currency-using-javascript.md index 6ffb46ceb9..d2d4b11348 100644 --- a/content/tutorials/quickstart/create-trustline-send-currency-using-javascript.md +++ b/content/tutorials/quickstart/create-trustline-send-currency-using-javascript.md @@ -40,6 +40,10 @@ Open the Token Test Harness and get accounts: ## Create Trust Line +
+ +
+ To create a trust line between accounts: 1. Enter a [currency code](https://www.iban.com/currency-codes) in the **Currency** field. diff --git a/content/tutorials/quickstart/mint-and-burn-nfts-using-javascript.md b/content/tutorials/quickstart/mint-and-burn-nfts-using-javascript.md index 454d24785b..9162ba0208 100644 --- a/content/tutorials/quickstart/mint-and-burn-nfts-using-javascript.md +++ b/content/tutorials/quickstart/mint-and-burn-nfts-using-javascript.md @@ -13,7 +13,7 @@ This example shows how to: 1. Mint new Non-fungible Tokens (NFTs). 2. Get a list of existing NFTs. -3. Delete (Burn) a NFT. +3. Delete (Burn) an NFT. [![Test harness with mint NFT fields](img/quickstart8.png)](img/quickstart8.png) @@ -34,7 +34,11 @@ You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-port [![Get accounts](img/quickstart9.png)](img/quickstart9.png) -## Mint a NFT +## Mint an NFT + +
+ +
To mint a non-fungible token object: @@ -54,9 +58,9 @@ Click **Get NFTs** to get a list of NFTs owned by the account. ## Burn a Token -The current owner of a NFT can always destroy (or _burn_) a NFT object. +The current owner of an NFT can always destroy (or _burn_) an NFT object. -To permanently destroy a NFT: +To permanently destroy an NFT: 1. Enter the **Token ID**. 2. Click **Burn NFT**. diff --git a/content/tutorials/quickstart/transfer-nfts-using-javascript.md b/content/tutorials/quickstart/transfer-nfts-using-javascript.md index 1b3c5a9a70..251033bc4a 100644 --- a/content/tutorials/quickstart/transfer-nfts-using-javascript.md +++ b/content/tutorials/quickstart/transfer-nfts-using-javascript.md @@ -40,6 +40,10 @@ You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-port ## Create a Sell Offer +
+ +
+ To create a NFT sell offer: 1. Enter the **Amount** of the sell offer in drops (millionths of an XRP). From ff9e9cf5dc2fd31b515ea0abdac4ac9380e59396 Mon Sep 17 00:00:00 2001 From: ddawson Date: Tue, 19 Sep 2023 16:15:55 -0700 Subject: [PATCH 2/5] change url --- .../tutorials/quickstart/mint-and-burn-nfts-using-javascript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorials/quickstart/mint-and-burn-nfts-using-javascript.md b/content/tutorials/quickstart/mint-and-burn-nfts-using-javascript.md index 9162ba0208..0032670b4c 100644 --- a/content/tutorials/quickstart/mint-and-burn-nfts-using-javascript.md +++ b/content/tutorials/quickstart/mint-and-burn-nfts-using-javascript.md @@ -37,7 +37,7 @@ You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-port ## Mint an NFT
- +
To mint a non-fungible token object: From 649863bd2f336a1c81e8c75e20ffa4321511eb98 Mon Sep 17 00:00:00 2001 From: ddawson Date: Thu, 21 Sep 2023 17:02:18 -0700 Subject: [PATCH 3/5] Add auth mintere vid --- .../assign-an-authorized-minter-using-javascript.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/tutorials/quickstart/assign-an-authorized-minter-using-javascript.md b/content/tutorials/quickstart/assign-an-authorized-minter-using-javascript.md index fdfbac79df..8b401478a2 100644 --- a/content/tutorials/quickstart/assign-an-authorized-minter-using-javascript.md +++ b/content/tutorials/quickstart/assign-an-authorized-minter-using-javascript.md @@ -46,6 +46,10 @@ To authorize another account to create NFTs for your account: ## Mint an NFT for Another Account +
+ +
+ This example uses the Operational account, which was authorized in the previous step, to mint a token on behalf of the Standby account. To mint a non-fungible token for another account: From b4f47bc0ce5f9159c2c0de76e33c36f70937fff2 Mon Sep 17 00:00:00 2001 From: ddawson Date: Mon, 25 Sep 2023 17:19:32 -0700 Subject: [PATCH 4/5] Add batch mint vid --- .../tutorials/quickstart/batch-mint-nfts-using-javascript.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/tutorials/quickstart/batch-mint-nfts-using-javascript.md b/content/tutorials/quickstart/batch-mint-nfts-using-javascript.md index fbc4ff7367..5106c9594d 100644 --- a/content/tutorials/quickstart/batch-mint-nfts-using-javascript.md +++ b/content/tutorials/quickstart/batch-mint-nfts-using-javascript.md @@ -33,6 +33,10 @@ You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-port ## Batch Mint NFTs +
+ +
+ This example lets you mint multiple NFTs for a single unique item. The NFT might represent "prints" of an original artwork, tickets to an event, or another limited set of unique items. To batch mint a non-fungible token objects: From 8f5c98eaf1ba74f9316dcc69dcf1fb970dd41622 Mon Sep 17 00:00:00 2001 From: ddawson Date: Tue, 26 Sep 2023 07:06:18 -0700 Subject: [PATCH 5/5] enhance ticket desc. --- .../tutorials/quickstart/batch-mint-nfts-using-javascript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorials/quickstart/batch-mint-nfts-using-javascript.md b/content/tutorials/quickstart/batch-mint-nfts-using-javascript.md index 5106c9594d..d0ded7ae9e 100644 --- a/content/tutorials/quickstart/batch-mint-nfts-using-javascript.md +++ b/content/tutorials/quickstart/batch-mint-nfts-using-javascript.md @@ -34,7 +34,7 @@ You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-port ## Batch Mint NFTs
- +
This example lets you mint multiple NFTs for a single unique item. The NFT might represent "prints" of an original artwork, tickets to an event, or another limited set of unique items.