diff --git a/content/tutorials/quickstart/py-authorize-minter.md b/content/tutorials/quickstart/py-authorize-minter.md index b58b9efa20..367c9efaba 100644 --- a/content/tutorials/quickstart/py-authorize-minter.md +++ b/content/tutorials/quickstart/py-authorize-minter.md @@ -18,7 +18,7 @@ This example shows how to: 1. Authorize an account to create NFTokens for your account. 2. Mint a NFToken for another account, when authorized. -[![Token Test Harness](img/quickstart30.png)](img/quickstart30.png) +[![Token Test Harness](img/quickstart-py30.png)](img/quickstart-py30.png) # Usage @@ -49,7 +49,7 @@ To authorize another account to create NFTokens for your account (for example, a 2. Paste the **Operational Account** value in the standby **Authorized Minter** field. 3. Click **Set Minter**. -[![Authorized Minter](img/quickstart31.png)](img/quickstart31.png) +[![Authorized Minter](img/quickstart-py31.png)](img/quickstart-py31.png) ## Mint a NFToken for Another Account @@ -65,7 +65,7 @@ To mint a non-fungible token for another account: 5. Paste the **Standby Account** value in the Operational account **Issuer** field. 6. Click the Operational account **Mint Other** button. -[![Minted NFToken for Another Account](img/quickstart32.png)](img/quickstart32.png) +[![Minted NFToken for Another Account](img/quickstart-py32.png)](img/quickstart-py32.png) Once the item is minted, the authorized minter can sell the NFToken normally. The proceeds go to the authorized minter, less the transfer fee. The minter and the issuer can settle up on a division of the price separately. @@ -81,7 +81,7 @@ To create a NFToken sell offer: The important piece of information in the response is the NFToken Offer Index, labeled as `nft_offer_index`, which is used to accept the sell offer. -[![NFToken Sell Offer](img/quickstart33.png)](img/quickstart33.png) +[![NFToken Sell Offer](img/quickstart-py33.png)](img/quickstart-py33.png) ## Accept Sell Offer @@ -95,11 +95,11 @@ To accept an available sell offer: 4. Enter the **NFToken Offer Index** (labeled as `nft_offer_index` in the NFToken offer results. This is different from the `nft_id`). 5. Click **Accept Sell Offer**. -[![Transaction Results](img/quickstart34.png)](img/quickstart34.png) +[![Transaction Results](img/quickstart-py34.png)](img/quickstart-py34.png) The Buyer account was debited the 100 XRP price plus 10 drops as the transaction cost. The Seller (Authorized Minter) account is credited 90 XRP. the Issuer and the Seller can divide the proceeds per their agreement in a separate transaction. The original Standby account receives a transfer fee of 10 XRP. -[![Transaction Results](img/quickstart35.png)](img/quickstart35.png) +[![Transaction Results](img/quickstart-py35.png)](img/quickstart-py35.png) # Code Walkthrough