Independent verification

Check the record. Trust the chain.

You do not need an account, wallet, payment or the Verifyum database to inspect a public anchor. Use the transaction signature from the public proof metadata.

01

Solana Explorer

Require successful execution, finalized status, the published Verifyum signer and the exact Memo value.

02

Direct JSON-RPC

Call getTransaction with the transaction signature and inspect the response instead of trusting copied status text.

03

Private draft + public record

Use the original file and downloaded private proof draft to recompute the commitment, then compare it with the finalized public Memo transaction.

Direct RPC example

Read the transaction yourself.

curl -s https://api.mainnet-beta.solana.com   -X POST   -H 'Content-Type: application/json'   -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "getTransaction",
    "params": [
      "PASTE_TRANSACTION_SIGNATURE_HERE",
      {
        "commitment": "finalized",
        "encoding": "jsonParsed",
        "maxSupportedTransactionVersion": 0
      }
    ]
  }'

Check meta.err, the transaction signer, the Memo program instruction, the exact memo, the slot and the estimated block time. A block time shows when the commitment entered the block. It does not prove when the original file was created.