Skip to content

Commit 55d4e8a

Browse files
committed
release: v1.1.0 — revocation extension
1 parent 3834442 commit 55d4e8a

2 files changed

Lines changed: 31 additions & 1 deletion

File tree

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,3 +345,33 @@ Phase 3 complete — Solana devnet live, Gate 3 verified — same observation co
345345
Phase 4 complete — ocp-verify published to npm, zero dependencies
346346
Phase 5 complete — conformance suite, 11/11 tests pass
347347
First external contribution merged — dinamic.eth / ERC-8004 (PR #1)
348+
349+
350+
---
351+
352+
## Revocation Extension (v1.1.0)
353+
354+
OCP now includes an optional revocation layer. Original commitments are never deleted or mutated — revocation is additive, represented as a new on-chain commitment referencing a prior digest.
355+
356+
```js
357+
const { verifyWithRevocation } = require('ocp-verify/reference-cli/revoke.js');
358+
359+
const status = await verifyWithRevocation(
360+
digest,
361+
asOfTimestamp,
362+
'eip155:84532'
363+
);
364+
// returns VALID | REVOKED | NOT_FOUND
365+
```
366+
367+
- 📄 Revocation Spec → `/docs/spec/appendix-revocation-r.md`
368+
- ⛓️ Deployed Contract → `0x2fa07c85439850ff6C5688d926bDa6DaEe62Db15` (Base Sepolia)
369+
- ✅ Revocation Conformance → `/conformance/revocation/run-revocation-conformance.sh`
370+
- 🔑 Event Topic → `0xc19951599a519bc320c0f352b2f92f315e8a2368bd0efb2e5dca3b1196e76112`
371+
372+
---
373+
374+
## Status
375+
376+
v1.1.0 — Revocation Extension
377+
Phase 6 complete — additive revocation primitive, 8/8 conformance tests pass

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ocp-verify",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "Zero-dependency verifier for the Observation Commitment Protocol — independently verify that a file was committed to a public blockchain",
55
"license": "MIT",
66
"type": "commonjs",

0 commit comments

Comments
 (0)