Update screenshots

This commit is contained in:
ddawson
2023-06-08 14:49:26 -07:00
parent 96d3c62632
commit 73679228b4
56 changed files with 13 additions and 11 deletions

View File

@@ -21,7 +21,7 @@ This example shows how to:
2. Get a list of offers for the brokered item.
3. Broker a sale between two different accounts.
[![Quickstart form with Broker Account](img/quickstart23.png)](img/quickstart23.png)
[![Quickstart form with Broker Account](img/quickstart-py23.png)](img/quickstart-py23.png)
You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples/quickstart/js/quickstart.zip){.github-code-download} archive to try each of the samples in your own browser.
@@ -44,7 +44,7 @@ You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-port
4. Click **Get Standby Account Info**.
5. Click **Get Operational Account Info**.
[![Quickstart form with Account Information](img/quickstart24.png)](img/quickstart24.png)
[![Quickstart form with Account Information](img/quickstart-py24.png)](img/quickstart-py24.png)
## Prepare a Brokered Transaction
@@ -66,14 +66,14 @@ You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-port
4. Optionally enter the number of seconds until **Expiration**.
5. Click **Create Buy Offer**.
[![Buy Offer](img/quickstart26.png)](img/quickstart26.png)
[![Buy Offer](img/quickstart-py26.png)](img/quickstart-py26.png)
## Get Offers
1. Enter the **NFT ID**.
2. Click **Get Offers**.
[![Get Offers](img/quickstart27.png)](img/quickstart27.png)
[![Get Offers](img/quickstart-py27.png)](img/quickstart-py27.png)
## Broker the Sale
@@ -82,7 +82,7 @@ You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-port
3. Enter a **Broker Fee**, in drops.
4. Click **Broker Sale**.
[![Brokered Sale](img/quickstart28.png)](img/quickstart28.png)
[![Brokered Sale](img/quickstart-py28.png)](img/quickstart-py28.png)
## Cancel Offer
@@ -92,7 +92,7 @@ After accepting a buy offer, a best practice for the broker is to cancel all oth
1. Enter the _nft_offer_index_ of the buy offer you want to cancel in the **Buy NFT Offer Index** field.
2. Click **Cancel Offer**.
[![Cancel Offer](img/quickstart29.png)](img/quickstart29.png)
[![Cancel Offer](img/quickstart-py29.png)](img/quickstart-py29.png)
# Code Walkthrough

View File

@@ -27,9 +27,10 @@ You can download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-port
1. Open and run `lesson3-mint-token.py`.
2. Get test accounts.
1. If you have existing Testnet account seeds:
1. Paste the account seeds in the **Seed** fields.
1. Paste the standby account seed in the **Standby Seed** field.
2. Click **Get Standby Account**.
3. Click **Get Operational Account**.
3. Paste the operational account seed in the **Operational Seed** field.
4. Click **Get Operational Account**.
2. If you do not have existing Testnet accounts:
1. Click **Get New Standby Account**.
2. Click **Get New Operational Account**.

View File

@@ -17,7 +17,7 @@ The XRP Ledger (XRPL) is a robust, secure, customizable service. You can create
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/quickstart-py15.png)
[![Quickstart Tutorial Window](img/quickstart-py15.png)](img/quickstart-py15.png)
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.

View File

@@ -103,10 +103,11 @@ To accept an offer to buy an NFT:
## Get Offers
To list the buy and sell offers associated with an NFT:
1. Enter the **NFT ID**.
2. Click **Get Offers**.
[![Get offers](img/quickstart21.png)](img/quickstart21.png)
[![Get offers](img/quickstart-py21.png)](img/quickstart-py21.png)
## Cancel Offer
@@ -115,7 +116,7 @@ To cancel a buy or sell offer that you have created:
1. Enter the **NFT Offer Index**.
2. Click **Cancel Offer**.
[![Cancel offer](img/quickstart22.png)](img/quickstart22.png)
[![Cancel offer](img/quickstart-py22.png)](img/quickstart-py22.png)
# Code Walkthrough