XRP Ledger Apex is back in Amsterdam Register Now
XRPL Zone

Austin 2023 - Code Challenge Solution

React.js Code Challenge Solution

To change the taxon and the transfer fee, we must edit the wallet-ui component: mint-nft.jsx.

We change the transfer fee and taxon, we edit the following line:

const result = await mintToken(url, 0);

and change it to:

const result = await mintToken(url, 20000, {
   taxon: 1
});

Open the sandbox to view the solution along with comments