Testnet-magic query utxo not displaying output per tutorial

Hello,

I am using cardano-cli and cardano-node versions 1.32.1.

I am following the guide on how to mint an NFT using TestNet. Everything works until I get to the following command: cardano-cli query utxo --address $address --testnet-magic 1097911063

The address variable is equal to: addr_test1vz8aphltlnpjtq5acghqv2x5rp830qmrmwsmu9ngwy5umrs00t37h

According to the tutorial I should have an output that displays TxHash, TxIx, and Amount. Instead I receive the following:

                           TxHash                                 TxIx        Amount
--------------------------------------------------------------------------------------

I can confirm via Cardano Explorer that the transaction for the Test Ada was successful.

You are probably using the wrong address here in the cardano-cli query utxo command.
Nobody can check if you don’t post the address. Maybe you moved the tADA to another address with your transaction.

Hello,

Thanks for the response.

I’ve updated the post to include the address. This address is the “cat” output from the “payment.addr” file.

I queried it on one of my nodes and it shows this:

$ cardano-cli query utxo --testnet-magic 1097911063 --address addr_test1vz8aphltlnpjtq5acghqv2x5rp830qmrmwsmu9ngwy5umrs00t37h
                           TxHash                                 TxIx        Amount
--------------------------------------------------------------------------------------
7e139a9137e12344e941eba1f53c332bd86225cf7a169c76de1e1cf113116cba     0        1000000000 lovelace + TxOutDatumNone

Is your node in sync?

That output definitely looks like what I was expecting.

To the best of my knowledge, the node should be in sync.

This is my first time ever dealing with NFT’s and Cardano. My knowledge really only goes as far as the tutorials. Is there a way to verify that I am fully synced?

It is just as you said. My node was not 100% synced.

Thank you for the suggestion. After you mentioned it, I found out how to go about determining the sync progress and now I am getting the data I need.

Thank you again.

You are welcome.
For whom is interested, you can find out the sync status with this command:

$ cardano-cli query tip --testnet-magic 1097911063 
{
    "era": "Alonzo",
    "syncProgress": "100.00",
    "hash": "934f5eb2893bf2950957c11a547573fe3def9a5e628d8b3ae11dddd4dd9811d8",
    "epoch": 176,
    "slot": 46053320,
    "block": 3181891
}