CenturionDEX
Launch App

What is a private key?

Last modified:

A private key is a secret number — typically represented as a long hexadecimal string — that grants full control over a blockchain wallet. Every transaction you send is signed with this key, and that signature is what the network checks to confirm you authorized the action.

The key pair

Blockchain wallets rely on asymmetric cryptography, which produces two mathematically linked keys:

  1. Private key — kept secret. Signs transactions and proves ownership.
  2. Public key — derived from the private key. Used to generate your wallet address.

The derivation is one-way: anyone can compute the public key (and address) from the private key, but no one can reverse the process.

Private key vs. recovery phrase

ConceptScopePurpose
Private keyControls a single walletSigns transactions for that wallet
Recovery phrase (seed phrase)Generates all private keys in a wallet hierarchyRestores an entire wallet and its derived accounts

A recovery phrase is a human-readable encoding of a master seed. From that seed, the wallet software deterministically derives each account's private key. Losing the recovery phrase means losing access to every account it generates.

Security

Anyone who obtains your private key can drain your wallet instantly and irreversibly. There is no "forgot password" flow, no support team that can reverse the transfer, and no on-chain mechanism to freeze stolen funds.