Independent Verification Tool

Verify any archive directly from the blockchain - no trust required

Verify an Archive

Option 1: Archive ID

Option 2: Upload File

Option 3: Hash

How Verification Works

1

Calculate Hash

We calculate the SHA-256 hash of the archived content

2

Query Blockchains

Check multiple blockchains for matching hash records

3

Verify Timestamp

Confirm when the archive was created using blockchain timestamps

4

Validate Integrity

Ensure the content hasn't been modified since archival

Verify Independently

Don't trust us? Verify directly using these public blockchain explorers:

Verify Programmatically

Use our open-source verification library:

// JavaScript Example
import { DropletVerifier } from '@droplet/verify';

const verifier = new DropletVerifier();
const result = await verifier.verify({
  hash: '7a8f9b2c4d6e1a3f5b8d2e7c9a4b6d8e',
  chains: ['cardano', 'arweave', 'ipfs']
});

console.log(result.isValid); // true
console.log(result.timestamp); // 2024-12-15T14:23:00Z
console.log(result.blocks); // { cardano: 8234567, arweave: 'tx_id' }
View on GitHub