Fix links

This commit is contained in:
ddawson
2023-06-07 12:22:45 -07:00
parent f60618e9b7
commit 9ee7434ef6
4 changed files with 5 additions and 5 deletions

View File

@@ -205,7 +205,7 @@ Report success
standbyResultField.value = results
```
This transaction blob is the same as the one used for the previous [`mintToken()` function](mint-and-burn-nftokens.html#mint-token), with the addition of the `Issuer` field.
This transaction blob is the same as the one used for the previous [`mintToken()` function](mint-and-burn-nfts.html#mint-token), with the addition of the `Issuer` field.
```javascript
const tx_json = {

View File

@@ -1,5 +1,5 @@
---
html: py-mint-and-burn-nftokens.html
html: py-mint-and-burn-nfts.html
parent: quickstart-python.html
blurb: Quickstart step 3, mint and burn NFTs.
labels:

View File

@@ -30,7 +30,7 @@ Typically, the example functions for interacting with the XRP Ledger involve fou
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 Python 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 Python environment. You can try out the examples in any order.
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.
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 Python UI file and a module to support the new behavior in the lesson. We expect the applications you build to greatly improve upon these examples. Your feedback and contributions are most welcome.
@@ -51,5 +51,5 @@ To get started, create a new folder on your local disk and install the Python li
```
pip3 install xrpl-py
```
Download and expand the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples/quickstart/python/{.github-code-download}.
**Note:** Without the Quickstart Samples, you will not be able to try the examples that follow.

View File

@@ -52,6 +52,6 @@ To get started, create a new folder on your local disk and install the JavaScrip
npm install xrpl
```
Download and expand the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples/quickstart/js/quickstart.zip){.github-code-download} archive.
Download the [Quickstart Samples](https://github.com/XRPLF/xrpl-dev-portal/tree/master/content/_code-samples/quickstart/js/){.github-code-download}.
**Note:** Without the Quickstart Samples, you will not be able to try the examples that follow.