Welcome to XRPSports.com

Code with XRPL and JavaScript

Lesson 1: Begin coding with XRPL


Key takeaway

Create credentials on the XRPL Testnet and start getting familiar with the XRPL JavaScript library.

Introducing the XRPL.js library and the XRPL testnet


Create an account on the XRRPL testnet


When coding on the XRP Ledger, you'll be able to try out your code using testnet servers. These servers have all the same functionality as our livenet ledger, but without real XRP or currency. Just like the code in this tutorial, when you start building your own app on the XRPL, you'll want to build everything to interact with the testnet to experiment and test your code. Try creating a wallet on the testnest using this code example below! Once the wallet is created, you can use the generated credentials to access it.

XRPL Token Test Harness
Choose your ledger instance:
  


Account Info

Account
Public Key
Private Key
Seed
XRP Balance

Transaction Log

Use the Token Test Harness HTML files to transfer XRP between two accounts


The XRP Ledger (XRPL) is a robust, secure, customizable blockchain. You can create your own interface to try out the capabilities and support your specific business needs.
In the next lesson, you can edit and try out the Test Harness HTML and JavaScript files in a code sandbox or download the files to your computer. Each part of the tutorial includes one JavaScript file containing functions using the XRPL.js library and one HTML file containing from fields and buttons which interact with the JavaScript functions. The harness displays two accounts at once, so that you can transfer assets 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 the tutorial.
Demo images

That is a lot of fields and buttons, all working together to perform some significant practical tasks. But rest assured, getting started with the XRPL is not that complicated.

Interacting with the XRPL typicall involves four steps:

  1. Connect the XRPL and instantiate your wallet.
  2. Make changes to the XRPL using tranactions.
  3. Get the state of accounts and tokens on the XRPL using requests.
  4. Disconnect from the XRPL

Each lession in this course shows you how to build the Token Test Harness one section at a time. Each section lets you try out meaningful interactions with the test ledger, with a complete JavaScript/HTL code sameple 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 browser.
Not all of the capabilities of the XRPL API are represented in this course. This exaple is not intended for production or secure payment use, but to introduce you to the API which can be used to implement features and capabilites of the XRPL.
Much of this is "brute force" code that sacrifices conciseness for readability. We anticipate that future builds will greatly improve upon these examples.

Lesson 2

Create accounts and send XRP

Create an account on the XRPL Testnet and transfer XRP between two accounts.

This lesson shows how to:

  1. Create accounts on the Testnet, funded with 930 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 lesson shows how to create accounts for Testnet, but now how to create an account that you can use on Mainnet.

Try editing some code: get-accounts-send-xrp.js


The interactive code exaple below can be used with any XRP Ledger network: Testnet, Devnet, or Mainnet. When building on your own, you can update the code to choose different or additional XRP ledger networks.

See the Pen get-accounts-send-xrp.js by ElCrypticoMystico (@elcrypticomystico) on CodePen.



Open the Token Test Harness and get test accounts:

  1. Open the code sandbox.
  2. Choose Testnet.
  3. ClickGet New Standby Accont.
  4. ClickGet 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.
Demo images


You can transfer XRP between your new accounts. Each account has its own fields and buttons. To transfer XRP between accounts:
  1. Enter the Amount of XRP to send.
  2. Enter the Destination account (for example, copy and paste the Operational Account Field to the Standby Destination field).
  3. Click Send XRP to transfer XRP from the standby account to the operational account, or Send XRP to transfer XRP from the operational account to the standby account.


JavaScript code walkthrough: get accounts-send-xrp.js



This example can be used with any XRP Ledger network: Testnet, Devnet, or Mainnet. You can update the code to choose different or additional XRP Ledger networks.

Define Form Fields



Throughout the code, we use a JavaScript function document.getElementByld(), which is used to target an HTML element by it's CSS ID. We use these functions to set and get values in the HTML form fields of the Token Test Harness. To prevenet the legibility of the code, we've defined some constants to replace these function calls.



// *** Define HTML Form Fields **
const xls = document.getElementById("xls")
const tn = document.getElemnentById("tn")
cost dn = document.getElementbyId("dn")
const standbyResultField = document.getElementById('standbyResultField');
const operationalResultField = document.getElementById('operationalResultField');
const standbyAccountField = document.getElementById('standbyAccountField');
const standbyPubKeyField = document.getElementById('standbyPubKeyField');
const standbyPrivKeyField = document.getElementById('standbyPrivKeyField');
const standbyBalanceField= document.getElementById('standbyBalanceField');
const standbySeedField = document.getElementById('standbySeedField');
const operationalAccountField = document.getElementById('operationalAccountField');
const operationalPubKeyField = document.getElementById('operationalPubKeyField');
const operationalPrivKeyField= document.getElementById('operationalPrivKeyField');
const operationalSeedField = document.getElementById('operationalSeedField');
const operationalBalanceField = document.getElementById('operationalBalanceField');













getNet() and getAccount(type)




// ************* Get the Preferred Network **************
/* 
The getNet() function uses brute force if statements to check the radio button values, set the selected network instance and return the URL.

*/


    function getNet() {
      let net 
          if (tn.checked) net = "wss://s.altnet.rippletest.net:51233"
          if (dn.checked) net = "wss://s.devnet.rippletest.net:51233"
          return net 
      } // End of getNet() 

// *******************************************************              
// ************* Get Account *****************************  
// *******************************************************

/*
The getAccount() function starts by getting the selected ledger with getNet().
*/

async function getAccount(type) {
  let net = getNet()

  /* Instantiate a client. Then use the results variable to capture progress information. */
  const client = new xrpl.Client(net)
    results = 'Connecting to ' + net + '....'

    // This uses the default faucet for Testnet/Devnet 
    let faucetHost = null 
    if(document.getElementById("xls").checked) {
        faucetHost = "faucet-nft-ripple.com"
    }
    if (type == 'standby') {
      // Reporting the results variable to the results HTML field. 
        standbyResultField.value = results
    } else {
      opetationalResultField.value = results 
    }
    // Connect to the server. 
    await client.connect() 

    reults += '\nConnected, funding wallet.'
    if (type == 'standby') {
      standbyResultField.value = results
    } else {
      opetationalResultField.value = results
    }

    // ----------------- Create and fund a test account wallet -----------------
    const my_wallet = (await client.fundWallet(null, {faucetHost })).wallet 
    
    results += '\nGot a wallet.'
     if (type == 'standby') {
       standbyResultField.value = results 
     } else {
       operationalResultField.value = results 
     } 

    // -----------------------Get the current balance --------------------------

    /* Get the current XRP balance for the account, and if this is a standby accout, populate the standby account fields.  */
    const my_balance = (await client.getXrpBalance(my_wallet.address))

    if (type == 'standby') {
      standbyAccountField.value = my_wallet.address 
      standbyPubKeyField.value = my_wallet.publicKey 
      standbyPrivKeyField.value = my_wallet.privateKey 
      standbyBalanceField.value = (await client.getXrpBalance(my_wallet.address))
      standbySeedField.value = my_wallet.seed 
      results += '\nStandby account created'
      standbyResultField.value = results 
    // Otherwise, populate the opertaional account fields.   
    } else {
      operationalAccountField.value = my_wallet.address 
      operationalPubKeyField.value = my_wallet.publicKey 
      opetationalPriveKeyField.value = my_wallet.privateKey 
      operationalSeedField.value = my_wallet.seed 
      operationalBalanceField.value = (await cleint.getXrpBalance(my_wallet.adress))
      results += '\nOperational account created.'
      operationalResultField.value = results 
    }
    // ----- Capture the seeds for both accounts for ease of reload ------------
    /* Inset the seed values for both accounts as they are created to the Seeds field as a convenience. You can copy values and store them offline. When you reload this form or another in this tutorial, copy and paste them into the seeds field to retrieve the accounts with the getAccountsFromSeeds() function. */
    seeds.value = standbySeedField.value + '\n' + operationalSeedField.value 
    client.disconnect() 
} // End of getAccount 













































































getAccountsFromSeeds()




// *******************************************************
// ********** Get Accounts from Seeds ******************** 
// *******************************************************
      async function getAccountsFromSeeds() {
        let net = getNet() 
        // Connect to the selected network
        const client = new xrp.Client(net)
        results = 'Connecting to ' + getNet() + '....'
        standbyResultField.value = results
        // -------------------Find the test account wallets --------------------
        // Parse the Seeds field.
        var lines = seeds.value.split('\n');
        /* Get the standby_wallet based on the seed in the first line and get the operational_wallet based on the seed in the second line */
        const standby_wallet = xrpl.Wallet.fromSeed(line[0])
        const operational_wallet = .xrpl.Wallet.fromSeed(lines[1])

        /// ---------------- Get the current balance ---------------------------
        const standby_balance = (await client.getXrpBalance(standby_wallet.address))
        const operational_balance = (await client.getXrpBalance(operational_wallet.address))

        //populate the fields for Standby and Operational accounts 
        standbyAccountField.value = standby_wallet.address
        standbyPubKeyField.value = standby_wallet.publicKey 
        standbyPrivKeyField.value = standby_wallet.privateKey 
        standbySeedField.alue = standby_wallet.seed
        standbyBalanceField.value = (await client.getXrpBalance(standby_wallet.address))

        operationalAccountField.value = operational_wallet.address
        operationalPubKeyField.value = operational_wallet.publicKey 
        operationalPrivKeyField.value = operational_wallet.privateKey 
        operationalSeedField.value = operational_wallet.seed 
        operationalBalanceField.value = (await client.getXrpBalance(operational_wallet.address)) 
        
        client.disconnect() 
      } // End of getAccountsFromSeeds()  






























sendXRP()




// *******************************************************
// ******************** Send XRP *************************
// *******************************************************
      async function sendXRP() {
        results = "Connecting to the selected ledger. \n"
        standbyResultField.value = results 
        let net = getNet() 
        results = 'Connecting to ' + getNet() + '....'
        const client = new xrpl.Client(net) 
        await client.connect() 

        results += "\nConnected. Sending XRP. \n"
        standbyResultField.value = results

        /* Begin preparing the transactions. This is a Payment transaction from the standby wallet to the operational wallet. */
        const standby_wallet = xrpl.Wallet.fromSeed(standbySeedField.value)
        const operational_wallet = xrpl.Wallet.fromSeed(operationalSeedField.value)
        const sendAmount = standbyAccountField.value 

        results += "\nstandby_wallet.address: = " +standby_wallet.address 
        standbyResultField.value = results 

        // ___________________Prepare transaction ______________________________
        // Note that the destination is hard coded.
        /* The Paymenttransaction 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 zeros to send 1 XRP).  */
        const prepated = await client.autofill({
          "TransactionType": "Payment",
          "Account": standby_wallet.address,
          "Amount": xrpl.xrpToDrops(sendAmount),
          "Destination": standbyDestinationField.value 
        })

        // ---------------- Sign prepared instructions -------------------------
        const signed = standby_wallet.sign(prepared)
        
        // ----------------Submit signed blob ----------------------------------
        // Submit the transaction and wait for the results 
        const tx = await client.submitAndWait(signed.tx_blob) 
        
        /* Request the balance changes caused by the transaction and report the results */
        results += "\nBalance changed: " + JSON.stringify(xrpl.getBalanceChanges(tx.result.meta), null, 2)
        standbyResultField.value = results 

        standbyBalanceField.value = (await client.getXrpBalance(standby_wallet.address))
        operationalBalanceField.value = (await client.getXrpbalance(operational_wallet.address))
        client.disconnect() 

      } // End of sendXRP() 













































Reciprocal transactions: oPcreateTustline() and oPsendCurrency()


For each of the transactions, there is an accompanying reciprocal transaction, with the prefix oP, for the operational account. See the corresponding function for the standby account for code commentary. The getBalances() request not not have a reciprocal transaction, because it reports balances for both accounts.




      
        //
        **********************************************************************
        // ****** Reciprocal Transactions ***************************************
        // **********************************************************************
      
        // *******************************************************
        // ************ Create Operational TrustLine *************
        // *******************************************************

              async function oPcreateTustline() {
                let net = getNet()
                const client = new xrpl.Client(net)
                results = 'Connecting to ' + getNet() + '....' 
                operationalResultField.value = results 

                await client.connect() 

                results += 'nConnected.'
                operationalResultField.value = results

                const standby_wallet = xrpl.Wallet.fromSeed(standbyField.value)
                const operational_wallet = xrpl.Wallet.fromSeed(operationalSeedField.value)
                const trustSet_tx = {
                  "TransactionType": "TrustSet",
                  "Account": operationalDestinationField.value,
                  "LimitAmount": {
                    "currnect": operationalCurrencyField.value,
                    "issuer" operational_wallet.address,
                    "value": operationalAmountField.value 
                  }
                }
                const ts_prepared = await client.autofill(trustSet_tx)
                const ts_signed = standby_wallet.sign(ts_prepared)
                results += 'nCreating tust line from operational account to ' + operationalDestinationField.value + ' account...'operationalResultField.value = results 
                const ts_result = await client.submitAndWait(ts_signed.tx_blob)
                if (ts_result.result.meta.TransactionResult == "tesSUCCESS") {
                  results += 'nTrustline established between account n' + standby_wallet.address + ' n and accountn' + operationalDestinationField.value + '.'
                  operationalResultField.value = results 
                } else {
                  results += 'nTrustline failed. See JavaScript console for details.'
                  operationalResultField.value = results 
                  throw 'Error sending transaction: ${ts_result.result.meta.TransactionResult}'
                }
              } //End of oPcreateTustline   
              
        // *******************************************************
        // ************* Operational Send Issued Currency ********
        // *******************************************************
              async function oPsendCurrency() {
                let net = getNet()
                const client = new.xrpl.Client(net) 
                results = 'Connecting to ' + getNet() + '....' 
                operationalResultField.value = results 

                await client.connect()

                results += 'nConnected.'
                operationalResultField.value = results

                const standby_wallet = xrpl.Wallet.fromSeed(standbySeedField.value) 
                const operational_wallet = xrpl.Wallet.fromSeed(operationalSeedField.value)
                const currency_code = operationalCurrencyField.value
                const issue_quantity = operationalAmountField.value

                const send_token_tx = {
                  "TransactionType": "Payment",
                  "Account": {
                    "currency": currency_code, 
                    "value": issue_quantity,
                    "issuer": operational_wallet.address 
                  },
                  "Destination": operationalDestinationField.value 
                }

                const pay_prepared = await client.autofill(send_token_tx)
                const pay_signed = operational_wallet.sign(pay_prepared)
                results += 'Sending' + operationalAccountField + operationalCurrencyField.value + ' to ' + operationalDestinationField.value + '...' 
                operationalResultField.value = results
                const pay_result = await client.submitAndWait(pay_signed.tx_blob)
                if (pay_result.result.meta.TransactionResult == "tesSUCCESS") {
                  results += 'Transaction succeeded: https://testnet.xrpl.org/transactions/${pay_signed.hash}'
                  operationalResultField.value = results 
                } else {
                  results += 'Transaction failed: See JavaScript console for details.'
                  operationalResultField.value = results 
                  throw 'Error sending transaction: ${pay_result.result.meta.TransactionResult}'
                }
                standbyBalanceField.value = (await client.getXrpBalance(standby_wallet.address))
                operationalBalanceField.value = (await cleint.getXrpBalance(operational_wallet.address))
                getBalances()
                client.disconnect() 
              } // end of oPsendCurrency()
      
    











































































HTML form preview: 2.create-trustline-send-currency.html

Update the form to support the new functions.





      
<html>
  <head>
    <title>Token Test Harness</title>
    <link href='https://fonts.googleapis.com/css?family=Work+Sans' rel='stylesheet'>
    <style>
       body{font-family: "Work Sans", sans-serif;padding: 20px;background: #fafafa;}
       h1{font-weight: bold;}
       input, button {padding: 6px;margin-bottom: 8px;}
       button{font-weight: bold;font-family: "Work Sans", sans-serif;}
       td{vertical-align: top;padding-right:10px;}
    </style>    
    <script src='https://unpkg.com/xrpl@2.2.3'></script>

    <script>
      if (typeof module !== "undefined") {
        const xrpl = require('xrpl')
      }
    </script>
  </head>
  
<!-- ************************************************************** -->
<!-- ********************** The Form ****************************** -->
<!-- ************************************************************** -->

  <body>
    <h1>Token Test Harness</h1>
    <form id="theForm">
            Choose your ledger instance:  
      <input type="radio" id="tn" name="server" value="wss://s.altnet.rippletest.net:51233" >
      <label for="testnet">Testnet</label>
      
      <input type="radio" id="dn" name="server" value="wss://s.devnet.rippletest.net:51233" checked>
      <label for="devnet">Devnet</label>
      <br/><br/>
      <button type="button" onClick="getAccountsFromSeeds()">Get Accounts From Seeds</button>
      <br/>
      <textarea id="seeds" cols="40" rows= "2"></textarea>
      <br/><br/>
      <table>
        <tr valign="top">
          <td>
            <button type="button" onClick="getAccount('standby')">Get New Standby Account</button>
            <table>
              <tr valign="top">
                <td align="left">
                  Standby Account<br/> <input type="text" id="standbyAccountField" size="30" />
                </td>
                <td></td>
              </tr>
              <tr>
                <td align="left">
                  Public Key<br/>
                  <input type="text" id="standbyPubKeyField" size="30"></input>                                                 
                </td>
                <td align="left">
                  Private Key<br/>
                  <input type="text" id="standbyPrivKeyField" size="30"></input>
                </td>
              </tr>
              <tr>
                <td align="left">
                  Seed <br/>
                  <input type="text" id="standbySeedField" size="30"></input>
                  <br>
                </td>
                <td align="left">
                  XRP Balance <br/>
                  <input type="text" id="standbyBalanceField" size="30"></input>
                </td>
            </tr>
            <tr>
                <td align="left">
                  Amount<br/>
                  <input type="text" id="standbyAmountField" size="30"></input>
                </td>
                <td align="left">
                  Destination Account <br/>
                <input type="text" id="standbyDestinationField" size="30"></input>
                </td>
              </tr>
              <tr valign="top">
                <td><button type="button" onClick="configureAccount('standby',document.querySelector('#standbyDefault').checked)">Configure Account</button><br/>
                  <input type="checkbox" id="standbyDefault" checked="true"/>
                  <label for="standbyDefault">Allow Rippling</label>
                </td>

                <td>
                  Currency<br/>
                  <input type="text" id="standbyCurrencyField" size="30" value="USD"></input>
                </td>
              </tr>
              <tr>
                <td colspan=2>
                  <p align="right">
                    <button type="button" onClick="sendXRP()">Send XRP ↓</button>
                    <button type="button" onClick="createTrustline()">Create TrustLine</button>
                    <button type="button" onClick="sendCurrency()">Send Currency</button>
                    <button type="button" onClick="getBalances()">Get Balances</button>
                  </p>
                </td>
              </tr>
            </table>
          </td>
          <td>
            <textarea id="standbyResultField" cols="60" rows="20" ></textarea>
          </td>
        </tr>
      </table>
      <br/><br/>
      <table>
        <tr valign="top">
          <td>
            <button type="button" onClick="getAccount('operational')">Get New Operational Account</button>
            <table>
              <tr valign="top">
                <td align="left">
                  Operational Account<br/> <input type="text" id="operationalAccountField" size="30" />
                </td>
                <td></td>
              </tr>
              <tr>
                <td align="left">Public Key<br/>
                  <input type="text" id="operationalPubKeyField" size="30" />                                                 
                </td>
                <td align="left">
                  Private Key<br/>
                  <input type="text" id="operationalPrivKeyField" size="30"></input>
                </td>
              </tr>
              <tr>
                <td align="left">
                  Seed <br/>
                  <input type="text" id="operationalSeedField" size="30"></input>
                  <br>
                </td>
                <td align="left">
                  XRP Balance <br/>
                  <input type="text" id="operationalBalanceField" size="30" />
                </td>
            </tr>
            <tr>
                <td align="left">
                  Amount<br/>
                  <input type="text" id="operationalAmountField" size="30" />
                </td>
                <td align="left">
                  Destination Account <br/>
                <input type="text" id="operationalDestinationField" size="30" />
                </td>
              </tr>
              <tr valign="top">
                <td><button type="button" onClick="configureAccount('operational',document.querySelector('#operationalDefault').checked)">Configure Account</button><br/>
                  <input type="checkbox" id="operatoinalDefault" checked="true"/>
                  <label for="operationalDefault">Allow Rippling</label>
                </td>

                <td>
                  Currency<br/>
                  <input type="text" id="operationalCurrencyField" size="30" value="USD"></input>
                </td>
              </tr>
              <tr>
                <td colspan=2>
                  <p align="right">
                    <button type="button" onClick="oPsendXRP()">Send XRP ↑</button>
                    <button type="button" onClick="oPcreateTrustline()">Create TrustLine</button>
                    <button type="button" onClick="oPsendCurrency()">Send Currency</button>
                    <button type="button" onClick="getBalances()">Get Balances</button>
                  </p>
                </td>
              </tr>
            </table>
          </td>
          <td>
            <textarea id="operationalResultField" cols="60" rows="20"></textarea>
          </td>
        </tr>
      </table>
    </form>
  </body>
  <script src='ripplex1-send-xrp.js' async></script>
  <script src='ripplex2-send-currency.js' async></script>
</html>
      
    




































































































































































Mint and burn NFTs

Mint and burn NFTs on the XRP Ledger.

This lession shows how to:

  1. Mint new non fungible tokens (NFTs)
  2. Get a list of existing NFTs on an account.
  3. Delete (burn) a NFT.

Try editing some code: mint-and-burn-nfts.js

The interactive example below can be used with any XRP Ledger network: Testnet, Devnet, or Mainnet. When building on your own, you can update the code to choose different or additional XRP Ledger networks.

See the Pen get-accounts-send-xrp.js by ElCrypticoMystico (@elcrypticomystico) on CodePen.


Get Accounts

  1. Open the codesandbox above. We recommend you click "edit on Codepen" in a new window (link in the top right(
  2. Get test accounts.
    1. If you have existing NFT-Devnet account seeds:
      1. Paste the account seeds in the Seeds field
      2. Click Get Account from Seeds
    2. If you do not have existing NFT-Devnet accounts:
      1. Click Get New Standby Account.
      2. Click Get New Operational Account


Demo images

Mint an NFTToken

To mint a non funglible token object:
  1. Set the Flags field. For testing purposes, we recommend setting the vale to 8. This sets thetsTransferableflag, meaning that the NFToken object can be transferred to another account. Otherwise, the NFToken object can only be transferred back to the issuing account. See NFToken Mint for information about all the available flags for minting NFTokens.
  2. Enter the Token URL. This is a URL that points to the data or metadata associated with the NFToken object. You can use the sample URL provided if you do not have one of your own.
  3. Enter the Transfer Fee, a percentage of the proceeds from future sales of the NFToken that will be returned to the original creator. This is a value of 0-50000 inclusive, allowing tranfer rates between 0.0000% and 50.000% in increments of 0.001%. If you do not set the Flags field to allow the NFToken to be transferrable, set this field to 0.
  4. Click Mint Token.

Demo images

Get tokens

Click Get Tokens to get a list of NFTokens by the account.


Demo images


Burn a token

The current owner of an NFToken can always destroy (or burn) a NFToken object.
To permanently destroy a NFToken:
  1. Enter the Token ID.
  2. Click Burn Token.

Demo images

JavaScript code walkthrough: ripplex3-mint-nfts.js

mintToken()





      
// *******************************************************
// ********************** Mint Token *********************
// *******************************************************

async function mintToken() {
  results = 'Connecting to ' + getNet() + '....'
  standbyResultField.value = results
  let net = getNet()
  const standby_wallet = xrpl.Wallet.fromSeed(standbySeedField.value)
  const client = new xrpl.Client(net)
  await client.connect()
  results+= 'nConnected.Minting NFToken'
  standbyResultField.value = results

  // Note that you must convert the token URL to a hexidecimal 
  // value for this transaction.
  // ------------------------------------------------------------------------

  const transactionBlob = {
    "TransactionType": "NFTokenMint",
    "Account": standby_wallet.classicAddress,
    "URI": xrpl.converStringToHex(standbyTokenUrlField.value),
    "Flags": parseInt(standbyFlagsField.value),
    "TransferFee": parseInt(StandbyTransferFeeField.value),
    "NFTokenTaxon": 0 //Required, but if you have no use for it, set to zero.
  }
  
  // -------------------- Submit signed blob --------------------------------- 
  const tx = await client.submitAndWait(transactionBlob, { wallet: standby_wallet} )
  const nfts = await client.request({
    method: "acount_nfts",
    account: standby_wallet.classicAddress
  })

  // ----------------------- Report results -----------------------------------
  results += 'nnTransaction result: '+ tx.result.meta.TransactionResult 
  results += 'nnnfts: ' + JSON.stringify(nfts, null, 2)
  standbyBalanceField.value = (await client.getXrpBalance(standby_wallet.address))
  standbyResultField.value = results
  client.disconnect() 
} //End of mintToken()
      
    
































getTokens()



      
// *******************************************************
// ******************* Get Tokens ************************
// *******************************************************

async function getTokens() {
  const standy_wallet = xrpl.Wallet.fromSeed(standySeedField.value) 
  let net = getNet()
  const client = new xrpl.Client(net)
  results = 'Connecting to ' + net + '...'
  standbyResultField.value = results 
  await client.connect()
  results += 'nConnected. Getting NFTokens...'
  standbyResultField.value = results
  const nfts = await client.request({
    method: "account_nfts"
    account: standby_wallet.classicAddress 
  })
  results += 'nNFTs:n ' + JSON.stringify(ntfs,null,2)
  standbyResultField.value = results 
  client.disconnect()
} //End of getTokens 
      
    














burnToken()



      
// *******************************************************
// ********************* Burn Token **********************
// *******************************************************

async functionBurnToken() {
  const standby_wallet = xrpl.Wallet.fromSeed(standbySeedField.value)
  let net = getNet()
  const client = new xrpl.Client(net)
  results = 'Connecting to ' + net + '...'
  standbyResultField.value = results 
  await client.connect()
  results += 'nConnected. Burning NFToken...'
  standbyResultField.value = results 
  
// -------------------- Prepare transaction ------------------------------------
  const transactionBlop = {
    "TransactionType": "NFTokenBurn",
    "Account": standby_wallet.classicAddress,
    "NFTokenID": standbyTokenIdField.value 
  }

//------------ Submit transaction and wait for the results ---------------------
  const tx = await client.sumbitAndWait(transactionBlob, {wallet: standby_wallet})
  const nfts = await client.request({
    method: "account_nfts",
    account: standby_wallet.classicAddress 
  })
  results += 'nTransaction result: '+ tx.result.meta.TransactionResult 
  results += 'nBalance changes: ' + JSON.stringify(xrpl.getBalanceChanges(tx.result.meta), null, 2)
  standbyResultField.value = results
  standbyBalanceField.value = (await client.getXrpBalance(standby_wallet.address))
  results += 'nNFTs" n' + JSON.stringify(nfts,null,2)
  standbyResultField.value = results
  client.disconnect()
} // End of burnToken()
      
    





























Reciprocal transaction oPmintToken(), oPgetTokens() and oPburnToken()





      
// **********************************************************************
// ****** Reciprocal Transactions ***************************************
// **********************************************************************
   
// *******************************************************
// ************** Operational Mint Token *****************
// *******************************************************
async function oPmintToken() {
  results = 'Connecting to ' + getNet() + '....' 
  operationalResultField.value = results 
  let net = getNet()
  const operational_wallet = xrpl.Wallet.fromSeed(operationalSeedField.value)
  const client = new xrpl.Client(net)
  await client.connect()
  results += 'nConnected. Minting NFTOken.'
  operationalResultField.value = results 
  // Note that you must convert the token URL to a hexadecimal 
  // value for this transaction.
  // ------------------------------------------------------------------------
  const transactionBlob = {
    "TransactionType": 'NFTokenMint',
    "Account": operational_wallet.classicAddress,
    "URI": xrpl.convertStringToHex(operationalTokenUrlField.value),
    "Flags": parseInt(operationalFlagsField.value),
    "TransferFee": parseInt(operationalTransferFeeField.value),
    "NFTokenTaxon": 0 // Required, but if you have no user for it, set to zero.
  }
  // --------------------- Submit signed blob ----------------------------------
  const tx = await client.sumbitAndWait(transactionBlop, { wallet: operational_wallet} )
  const nfts = await client.request({
    method: "account_nfts",
    account: operational_wallet.classicAddress 
  })
  // ----------------------- Report results ------------------------------------
  results += 'nnTransaction result: ' + tx.result.meta.TransactionResult 

}