Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
5254351
BinCode test and vitest
ricochet1k Sep 8, 2024
f0c76b0
StateTransitionSignable
ricochet1k Sep 8, 2024
a43b079
Fix types and dedup signable
ricochet1k Sep 9, 2024
5b21fc0
chore: update package and tooling config
coolaj86 Feb 12, 2025
91e3229
wip: serialize for grpc
coolaj86 Feb 12, 2025
5056d7b
f: chore: update package and tooling config
coolaj86 Feb 12, 2025
1104dc0
wip: serialized with signature
coolaj86 Feb 13, 2025
5febd1b
ref: use deterministic sigs for testing, add comment (key 'id' is 'ad…
coolaj86 Feb 14, 2025
205ea9f
wip: almost fully matches the og fixture
coolaj86 Feb 14, 2025
0b34edd
wip: serializes transition more correctly
coolaj86 Feb 15, 2025
aef25d2
fix: hex-encode the binary (not the hex)
coolaj86 Feb 15, 2025
6b46df4
fix: use bespoke signatures with 1f byte
coolaj86 Feb 15, 2025
e107273
fix: update dashtx to v0.20.3
coolaj86 Feb 16, 2025
ffd5cd3
feat: create asset lock tx
coolaj86 Feb 16, 2025
8c9884d
f: 1-create-asset-lock.js
coolaj86 Feb 16, 2025
c60846a
wip: add signEth() with magic recovery byte offset
coolaj86 Feb 16, 2025
543646a
wip: create identity transition (invalid signature)
coolaj86 Feb 16, 2025
7acba5f
feat: add KeyUtils.magicSign({ privKeyBytes, doubleSha256Bytes })
coolaj86 Feb 18, 2025
e26ae34
chore: add 'crypto' (WebCrypto) to known globals
coolaj86 Feb 18, 2025
92a4b1a
feat: add KeyUtils.doubleSha256(bytes)
coolaj86 Feb 18, 2025
6f929a8
wip: SIGNATURES MATCH
coolaj86 Feb 18, 2025
d5b516a
wip: IDENTITY IDS MATCH
coolaj86 Feb 18, 2025
9d3d2f3
proof! We did it!
coolaj86 Feb 18, 2025
dfd771a
WIP: automate the transition
coolaj86 Mar 18, 2025
e2a0024
WIP: listens to event source and polls for tx
coolaj86 Mar 19, 2025
489761c
WIP: fix timeout and identify correct proof
coolaj86 Mar 19, 2025
133e846
WIP: back to grpc submit / stateTransition
coolaj86 Mar 20, 2025
1fe1314
WIP: fix message after close
coolaj86 Mar 20, 2025
b44ffa2
IT WORKS!!! (only for instant proofs still though)
coolaj86 Mar 20, 2025
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
6 changes: 5 additions & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
{
"globals": {
"AbortController": true,
"crypto": false,
"EventSource": false
},
"browser": true,
"node": true,
"esversion": 11,
Expand All @@ -16,7 +21,6 @@
"plusplus": true,
"undef": true,
"unused": "vars",
"strict": true,
"maxdepth": 4,
"maxstatements": 100,
"maxcomplexity": 20
Expand Down
Loading
Loading