Replace manual checksum verification with one command.
npx verafile verify file proof.json
→ VALID
Instead of asking users to run shasum and manually compare hashes, VeraFile returns a clear result:
- VALID if the file matches
- INVALID if even one byte changes
Same checksum model. No manual comparison.
echo change >> example.txt npx verafile verify example.txt example.proof.json
echo data > test.txt shasum -a 256 test.txt
Create test.proof.json:
{ "hash": "0x<PASTE_HASH>" }
Verify:
npx verafile verify test.txt test.proof.json