Walletdocs/wallet/receipts.md

Receipts

The Receipts section preserves and verifies durable proof of outgoing payments. Open it with F4.

Locally saved payment receipts

My receipts

My receipts lists confirmed payments made from a wallet owner to a distinct recipient. Newest entries appear first and the list is paginated.

Selecting an entry shows its authenticated summary:

  • logical transaction ID;
  • canonical block height and transaction position;
  • input owner and input records;
  • recipient and change outputs;
  • amount and fee;
  • inclusion and canonical verification status.

The receipt is saved only after confirmation while complete block data is available.

Local-only records

Receipts are stored in wallet.receipts on this device. Importing the master secret on another computer restores addresses and live funds, but not receipt history.

Back up the file or export individual receipt text if payment evidence matters. Loss of receipts does not affect spendable balance.

Verify

The Verify tab accepts exported hexadecimal receipt text. Verification checks the transaction data and fixed-depth inclusion path, then compares the claimed transaction root with the permanent canonical header when a node is available.

The result distinguishes:

  • a structurally valid inclusion proof;
  • a receipt bound to the current canonical chain;
  • invalid or malformed data.

What does not appear

Same-owner consolidation does not create a receipt because it is not evidence of payment to another owner.

A send to an inactive address derived by the same master secret does create a receipt. Consensus sees a distinct recipient owner and does not scan the wallet's possible address set.

For the underlying proof format, see Receipts and pruned history.

ParanO(1)d technical documentationSource code defines consensus behavior.