Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
6aba61c
Refactor code structure for improved readability and maintainability
Stanley-Owoh May 28, 2026
c22ab03
fix: resolve badge_level computation, BadgeTier clone, and regenerate…
Stanley-Owoh May 28, 2026
0566f2d
Merge branch 'main' into reputation-system-robustness-auditing-403
Stanley-Owoh May 28, 2026
af45eb5
Add initial test snapshot for escrow contract version 1
Stanley-Owoh May 28, 2026
4129754
Fix escrow partial merge state and restore missing feature infrastruc…
Stanley-Owoh May 28, 2026
2a265bf
Refactor reputation contract and profile module for improved readabil…
Stanley-Owoh May 29, 2026
7176aed
Merge branch 'main' into reputation-system-robustness-auditing-403
Stanley-Owoh May 29, 2026
58bd06a
Merge branch 'main' of https://github.com/Stanley-Owoh/lance into rep…
Stanley-Owoh May 29, 2026
dd93929
Merge branch 'reputation-system-robustness-auditing-403' of https://g…
Stanley-Owoh May 29, 2026
1f6f373
Implement exponential decay model for reputation scores and enhance p…
Stanley-Owoh May 29, 2026
c1a0a70
Merge branch 'main' into implement-exponential-decay-model-for-reputa…
Stanley-Owoh May 29, 2026
e4a5473
Merge branch 'main' of https://github.com/Stanley-Owoh/lance into imp…
Stanley-Owoh May 29, 2026
313d575
Merge branch 'implement-exponential-decay-model-for-reputation-scores…
Stanley-Owoh May 29, 2026
570fb91
Add test snapshots for job posting and deliverable submission
Stanley-Owoh May 29, 2026
02140c1
Merge branch 'main' of https://github.com/Stanley-Owoh/lance into job…
Stanley-Owoh May 29, 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
Binary file not shown.
19,134 changes: 19,134 additions & 0 deletions apps/web/package-lock.json

Large diffs are not rendered by default.

705 changes: 673 additions & 32 deletions contracts/escrow/src/lib.rs

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -997,7 +997,7 @@
"symbol": "fn_return"
},
{
"symbol": "initialize"
"symbol": "create_job"
}
],
"data": "void"
Expand All @@ -1021,7 +1021,7 @@
"bytes": "0000000000000000000000000000000000000000000000000000000000000006"
},
{
"symbol": "create_job"
"symbol": "add_milestone"
}
],
"data": {
Expand Down Expand Up @@ -1057,7 +1057,7 @@
"symbol": "fn_return"
},
{
"symbol": "create_job"
"symbol": "add_milestone"
}
],
"data": "void"
Expand All @@ -1081,7 +1081,7 @@
"bytes": "0000000000000000000000000000000000000000000000000000000000000006"
},
{
"symbol": "add_milestone"
"symbol": "deposit"
}
],
"data": {
Expand All @@ -1092,7 +1092,7 @@
{
"i128": {
"hi": 0,
"lo": 500
"lo": 1000
}
}
]
Expand All @@ -1105,7 +1105,7 @@
{
"event": {
"ext": "v0",
"contract_id": "0000000000000000000000000000000000000000000000000000000000000006",
"contract_id": "d63a954726751a876d37290072af1ee723d7d761eec3bf4191849d2116acdc73",
"type_": "diagnostic",
"body": {
"v0": {
Expand All @@ -1114,35 +1114,34 @@
"symbol": "fn_return"
},
{
"symbol": "add_milestone"
"symbol": "decimals"
}
],
"data": "void"
"data": {
"u32": 7
}
}
}
},
"failed_call": false
"failed_call": true
},
{
"event": {
"ext": "v0",
"contract_id": null,
"contract_id": "0000000000000000000000000000000000000000000000000000000000000006",
"type_": "diagnostic",
"body": {
"v0": {
"topics": [
{
"symbol": "fn_call"
},
{
"bytes": "0000000000000000000000000000000000000000000000000000000000000006"
},
{
"symbol": "deposit"
"symbol": "log"
}
],
"data": {
"vec": [
{
"string": "caught panic 'sum of milestones must equal total amount' from contract function 'Symbol(deposit)'"
},
{
"u64": 1
},
Expand All @@ -1168,7 +1167,57 @@
"v0": {
"topics": [
{
"symbol": "log"
"symbol": "fn_call"
},
{
"bytes": "d63a954726751a876d37290072af1ee723d7d761eec3bf4191849d2116acdc73"
},
{
"symbol": "decimals"
}
],
"data": "void"
}
}
},
"failed_call": true
},
{
"event": {
"ext": "v0",
"contract_id": "d63a954726751a876d37290072af1ee723d7d761eec3bf4191849d2116acdc73",
"type_": "diagnostic",
"body": {
"v0": {
"topics": [
{
"symbol": "fn_return"
},
{
"symbol": "decimals"
}
],
"data": {
"u32": 7
}
}
}
},
"failed_call": true
},
{
"event": {
"ext": "v0",
"contract_id": "0000000000000000000000000000000000000000000000000000000000000006",
"type_": "diagnostic",
"body": {
"v0": {
"topics": [
{
"symbol": "fn_return"
},
{
"symbol": "deposit"
}
],
"data": {
Expand Down
Loading
Loading