Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
f70fd55
Update repl commands to ensure more complete feature set.
msporny Nov 4, 2025
c39fc6e
Change how cel and didcel libs load.
msporny Nov 4, 2025
2e48a67
Add addition of keys to DID Document.
msporny Nov 4, 2025
43b0123
Add didcel helper functions.
msporny Nov 5, 2025
2e93207
Make creation of did:cel initial document real.
msporny Nov 6, 2025
15f4225
Add saving of event logs.
msporny Nov 6, 2025
5d081dd
Fix running multiple commands from command line.
msporny Nov 6, 2025
f4465cc
Add JSON-LD pretty printer.
msporny Nov 6, 2025
3cbed25
Add log witnessing.
msporny Nov 6, 2025
2a6ab63
Add did:cel update, addProof, and cel update implementation.
msporny Nov 7, 2025
19d6409
Ensure verificationMethod exists in DID Document proofs.
msporny Nov 26, 2025
272f8ed
Add `ls` feature - ability to show contents of DID Document.
msporny Dec 1, 2025
7f40ee7
Clean up `ls` functionality.
msporny Dec 1, 2025
0f4c0d9
Implement `expire` command.
msporny Dec 1, 2025
e55cf05
Added `remove` feature.
msporny Dec 1, 2025
e89a439
Add stress test for 10 year DID w/ 3 month key cycle times.
msporny Dec 2, 2025
7815c39
Add LLM-generated documentation to all files.
msporny Dec 2, 2025
f6e5bac
Update implementation to sign operations and remove @context values.
msporny Dec 4, 2025
2429b0f
Add initial README.md.
msporny Dec 5, 2025
2eb4909
Fix "Certificate" -> "Cryptographic".
msporny Dec 6, 2025
94a2582
Clean up how signatures are generated.
msporny Dec 6, 2025
bde4d64
Add heartbeat and deactivate functionality.
msporny Dec 6, 2025
9558c93
Update test files.
msporny Dec 6, 2025
cceb6d8
Add support for calling hmbd witness service.
msporny May 25, 2026
4d220bd
Add eslint.
msporny May 25, 2026
625e6b5
Add config file support and log storage.
msporny May 25, 2026
826da38
Add secrets management to tool.
msporny May 25, 2026
e0b7a18
Fix eslint errors.
msporny May 26, 2026
d9f84a2
Fix eslint errors in didcel CLI.
msporny May 26, 2026
7ce6317
Add CLI parameter to load config from specified file.
msporny May 26, 2026
780bc13
Add initial set of tests.
msporny May 26, 2026
f61fa7f
Add ability to load and verify cryptographic event log.
msporny May 29, 2026
07f0f57
Add node-fetch to package.json.
msporny May 30, 2026
eee552d
Refactor tools to use didcel library.
msporny May 30, 2026
ddabc42
Remove dependency on dotenv package.
msporny Jun 6, 2026
eaffa12
Add mock witness to test suite.
msporny Jun 6, 2026
b19b50b
Ensure previousEventHash is covered by operation signature.
msporny Jun 6, 2026
f8699e4
Update to use new didcel library interface changes.
msporny Jun 7, 2026
7244194
Fix lint errors and refactor reading from CEL file.
msporny Jun 7, 2026
254bad3
Refactor test code into utility functions to avoid repetition.
msporny Jun 7, 2026
bd92b3c
Fix import ordering in didcel CLI.
msporny Jun 7, 2026
d0c91f0
Update documentation and README.md.
msporny Jun 7, 2026
0704d29
Add CEL loading tests.
msporny Jun 12, 2026
02c0507
Update calls to didcel to match new interface.
msporny Jun 28, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module.exports = {
root: true,
env: {
node: true
},
extends: [
'digitalbazaar',
'digitalbazaar/jsdoc',
'digitalbazaar/module'
],
ignorePatterns: ['node_modules/']
};
7 changes: 7 additions & 0 deletions .mocharc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
'use strict';

module.exports = {
spec: 'tests/mocha/*.js',
timeout: 120000,
reporter: 'spec'
};
Loading