Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
760f15c
add submit_digest poc impl
lightsing Dec 19, 2025
fc5005f
Merge branch 'master' into dev/m1
lightsing Dec 20, 2025
c8a73a7
refactor: timestamp rewrite (#2)
lightsing Dec 23, 2025
05720e9
feat: proof builder (#9)
lightsing Dec 24, 2025
dc8d717
feat: add submit_digest bench (#10)
lightsing Dec 24, 2025
9f03f3e
feat: high performace journal mvp (#6)
lightsing Dec 24, 2025
8b299a0
feat: link journal (#11)
lightsing Dec 24, 2025
fdba30e
Merge branch 'master' into dev/m1
lightsing Dec 24, 2025
308a202
feat: solidity contracts (#14)
lightsing Dec 25, 2025
24ec05c
wip: ts lib & web (#17)
lightsing Feb 19, 2026
735c012
wip: stamper (#8)
lightsing Feb 19, 2026
90f6767
feat: verifier (#21)
lightsing Feb 21, 2026
c71e0f2
feat: support upgrade (#22)
lightsing Feb 21, 2026
5222a53
feat: add verifier (#23)
lightsing Feb 21, 2026
a631d07
add catch
lightsing Feb 21, 2026
c2fc3b1
fix: domain seperation inner node hash (#24)
lightsing Feb 21, 2026
11718c0
feat: cli crate (#25)
lightsing Feb 22, 2026
ada5d4a
Create README.md for UTS CLI tool
lightsing Feb 22, 2026
2c00035
feat: ts sdk (#26)
lightsing Feb 25, 2026
adc84ab
chore: setup monorepo framework: rollup SDK build, vite web app, lint…
Copilot Feb 25, 2026
7d0dd3a
feat(web): DApp for UniversalTimestamps (#28)
Copilot Feb 25, 2026
7720318
Initial plan
Copilot Feb 25, 2026
21774db
feat(web): add i18n support using @lingui/core with Vue integration
Copilot Feb 25, 2026
21df7a6
fix(web): use generateMessageId for correct Lingui catalog key matching
Copilot Feb 25, 2026
d0a0e1e
more strict regex
lightsing Feb 26, 2026
da8736e
remove unused
lightsing Feb 26, 2026
765c7f9
fix: bmt tests forget update after domain seperation (#32)
lightsing Feb 26, 2026
ec0711f
feat: real wal (#30)
lightsing Mar 4, 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
10 changes: 10 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[target.aarch64-apple-darwin]
rustflags = ["-C", "target-cpu=native"]

[target.x86_64-unknown-linux-gnu]
rustflags = [
"-C",
"target-cpu=native",
# (Nightly) Make the current crate share its generic instantiations
"-Zshare-generics=y",
]
7 changes: 7 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[*.{js,jsx,ts,tsx,css,scss,html,json,md}]
charset = utf-8
insert_final_newline = true
end_of_line = lf
indent_style = space
indent_size = 2
max_line_length = 80
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
FOUNDRY_OUT="target/foundry"
Loading