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
});