verify_timestamp
Verify data integrity using Bitcoin blockchain timestamps by comparing provided data against an expected hash value with configurable encoding and hash algorithms.
Instructions
Verify data against an on-chain timestamp hash.
Args:
data: Original data to verify
expected_hash: Expected hash value (hex)
encoding: Data encoding ('utf-8' or 'hex')
hash_algorithm: Hash algorithm used ('sha256', 'sha3_256')
Returns:
Dictionary with verification result.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | ||
| expected_hash | Yes | ||
| encoding | No | utf-8 | |
| hash_algorithm | No | sha256 |