Minka Ledger Docs

Getting full record data

CLI can also display entire JSON record


Overview

To see full record response just use -v flag with any CLI command.

This will return an entire JSON record.

Wallet standard CLI response

If you want to see individual wallet, then run minka wallet show demo-bank-wallet.

This will give you limited information on the wallet:

$ minka wallet show demo-bank-wallet
 
Wallet summary:
---------------------------------------------------------------------------
Handle: demo-bank-wallet
 
Access rules:
#0
  - Action: any
  - Signer:
    - public: RiQu4adTcR1elbgSSSOW84rviHLofGhXJQpOYdvHcQc=
 
Status: created

Wallet record example

However if you run that same command with -v flag you will see the full wallet record (plus some head)

$ minka wallet show demo-bank-wallet -v
 
{
  "hash": "7fb437cc6302ccbdc8d62c5a96214ae01aa7ee63a6183f73f001af5dfad49603",
  "data": {
    "handle": "demo-bank-wallet",
    "access": [
      {
        "action": "any",
        "signer": {
          "public": "RiQu4adTcR1elbgSSSOW84rviHLofGhXJQpOYdvHcQc="
        }
      }
    ]
  },
  "luid": "$wlt.-00e5aGYCTTf7TONk",
  "meta": {
    "proofs": [
      {
        "custom": {
          "moment": "2025-03-10T16:42:12.255Z",
          "status": "created"
        },
        "digest": "9041a65e20d0cf39f590442b1184fc77156bded7847504c21070b2ff3fcbd826",
        "method": "ed25519-v2",
        "public": "RiQu4adTcR1elbgSSSOW84rviHLofGhXJQpOYdvHcQc=",
        "result": "A0UwWpWBVjyS0dd8pq92B+8XFLn1h+fOCLLSKt1X/0Gs/uChvrYjulaoY7/WoMqofFpAobfVCrh7dQ1oAGxtAA=="
      },
      {
        "custom": {
          "luid": "$wlt.-00e5aGYCTTf7TONk",
          "moment": "2025-03-10T16:42:12.487Z",
          "status": "created"
        },
        "digest": "c7b264e2b53909a8520c01c323b27a100d30ba0254fd4fd258bdf5a3d8987ec1",
        "method": "ed25519-v2",
        "public": "hnKFzEDkpMka/BnYj+s7+leFCpc9yNk8T7tNVPm8Xgc=",
        "result": "QX2q9KPbmk7U9UFwesZxZIcndQrbHaun/+pSN+P5rtWjXmvTrkAam5BC1fqLZmmpsh90xpnp/fiVjbxc9V5HAg=="
      }
    ],
    "status": "created",
    "moment": "2025-03-10T16:42:12.481Z",
    "owners": [
      "RiQu4adTcR1elbgSSSOW84rviHLofGhXJQpOYdvHcQc="
    ]
  }
}

Where is the balance?

One of the most important things in the Ledger is knowing the exact balance of each wallet or account.

However, as you can see the balance is not part of the wallet record.

So where is it?

We will discuss this in our next lesson.

On this page