Files
fhe/examples/data-seal/package.json
T
Zach Kelling 961c42e204 feat: add FHE example apps for all Pars PIPs
- data-seal: Verifiable Data Integrity Seal (PIP-0010/LP-0535)
  FHE-encrypted tamper-proof sealing with Public/ZK/Private modes,
  batch sealing, homomorphic verification

- content-provenance: AI & Media Content Provenance (PIP-0011/LP-7110)
  Model manifests, output attestation via homomorphic comparison,
  media derivation DAGs

- encrypted-crdt: Encrypted CRDT (PIP-0013/LP-6500)
  LWW-Register with FHE values, OR-Set with tag-based add/remove,
  Lamport timestamp conflict resolution, deterministic merge

- shadow-governance: Shadow Government Protocol (PIP-7010)
  Anonymous ministries, encrypted voting with homomorphic tallying,
  nullifier-based anti-fraud, quorum enforcement

Each example includes Solidity contracts, Hardhat tests, CLI tasks,
and README linking to corresponding PIP and LP specifications.
2026-02-13 14:16:46 -08:00

22 lines
661 B
JSON

{
"name": "@luxfhe/example-data-seal",
"version": "1.0.0",
"description": "Verifiable Data Integrity Seal - FHE-encrypted tamper-proof document sealing (PIP-0010)",
"private": true,
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"deploy": "hardhat task:deploy-seal",
"task:seal": "hardhat task:seal",
"task:verify": "hardhat task:verify-seal",
"task:batch-seal": "hardhat task:batch-seal"
},
"devDependencies": {
"@luxfhe/hardhat-plugin": "^0.5.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^5.3.0",
"hardhat": "^2.22.0",
"typescript": "^5.0.0"
}
}