From 0f52d316715270981d6838923331008b3b310606 Mon Sep 17 00:00:00 2001 From: ipopescu Date: Mon, 11 Mar 2024 20:28:51 +0100 Subject: [PATCH] Updated TOC --- .../getting-started/interacting-with-NFTs.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/docs/tutorials/getting-started/interacting-with-NFTs.md b/docs/tutorials/getting-started/interacting-with-NFTs.md index d6978f56..fdd69d44 100644 --- a/docs/tutorials/getting-started/interacting-with-NFTs.md +++ b/docs/tutorials/getting-started/interacting-with-NFTs.md @@ -13,13 +13,17 @@ This document describes interacting with NFTs on a Casper network using the Rust 1. [Directly Invoking Entrypoints](#directly-invoking-entrypoints) -2. [Transferring NFTs](#transferring-nfts) +2. [Minting NFTs](#minting-nfts) -3. [Approving Another Account](#approving-another-account) +3. [Transferring NFTs](#transferring-nfts) -4. [Minting NFTs](#minting-nfts) +4. [Checking Balances](#checking-balances) -5. [Burning NFTs](#burning-nfts) +5. [Approving an Account](#approving-an-account) + +6. [Burning NFTs](#burning-nfts) + +7. [Next Steps](#next-steps) ## Directly Invoking Entrypoints @@ -232,7 +236,7 @@ casper-client put-deploy -n http://localhost:11101/rpc --chain-name "casper-net- -## Checking the Balance +## Checking Balances To check an account's balance, get the latest state root hash and query the `balances` dictionary given the NFT contract hash and the owner's account hash without the "account-hash-" prefix, as shown below.