Hash
Hash data quickly for identifiers, integrity checks, and tooling when building on Polkadot with Pop CLI.
What you can use it for
Quick examples
# Verify a string or small blob (cryptographic)
pop hash sha2 256 "hello world"
# Hash raw hex bytes (great for tx/storage inspection)
pop hash keccak 256 0x68656c6c6f776f726c64
# Check a runtime you are about to deploy
pop hash blake2 256 /path/to/your/file.wasm
# Append the original bytes to the hash (BLAKE2 or TwoX only)
pop hash blake2 256 --concat "hello world"Supported algorithms and lengths
Input handling
Output
Errors and constraints
Tips
Last updated