Skip to main content

What Is Transaction Hash (TxHash)?

Definition

A transaction hash is a unique identifier for a blockchain transaction — a long string of characters that lets you look up any transaction on a block explorer to verify its status and details.

Every blockchain transaction gets a unique hash (also called TxID or TxHash). This hash is like a receipt — it proves the transaction happened and lets anyone verify the details.

  • Solana — Base58 encoded string, ~88 characters. Example: 5VERv8NMvzbJMEkV8xnrLkEaWRtSz9CosKDYjCJjBRnbJLgp8uirBgmQpjKhoR4tjF3ZpRzrFmBV6UjKdiSZkQUW
  • Ethereum/Base — hex string starting with 0x, 66 characters. Example: 0x1234...abcd
  • Status — success or failed
  • From/To — sender and receiver addresses
  • Amount — tokens or currency transferred
  • Gas fee — how much the transaction cost
  • Block number — which block included the transaction
  • Timestamp — when it was confirmed

When using CoinDevTools, you receive a transaction hash after every operation (token creation, authority revocation, pool creation, LP burn). Save these hashes — they're your permanent proof of each action.

Try it yourself

No code required. Connect a wallet and get started in minutes.

What Is a Block Explorer?

Related Terms