Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature/toploc-integration #127

Merged
merged 29 commits into from
Mar 10, 2025
Merged
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
c1a8b45
add latest changes from smart contracts to include work submission logic
JannikSt Feb 25, 2025
7baa6a2
start local setup with deployed work validation contract
JannikSt Feb 26, 2025
aa8e5f4
sample work submission with contract call on worker
JannikSt Feb 26, 2025
ee19612
ability to submit sample work via python example file and regularly q…
JannikSt Feb 26, 2025
a75ef9f
add proper hex to binary conversion, cleanup
JannikSt Feb 26, 2025
2bf504f
clippy
JannikSt Feb 26, 2025
935bf67
remove print statements
JannikSt Feb 26, 2025
ca43a4f
Merge branch 'develop' into feature/toploc-work-submission
JannikSt Feb 26, 2025
e8856d7
fix makefile docker
JannikSt Feb 26, 2025
0389ddf
add additional functions to get work keys, and work keys since timestamp
JannikSt Feb 28, 2025
69aee73
support e2e flow on worker side with genesys image
JannikSt Feb 28, 2025
9006398
restructure validator and improve general logging
JannikSt Feb 28, 2025
95372a8
clippy
JannikSt Feb 28, 2025
29948a7
fix deprecated fn usage
JannikSt Feb 28, 2025
b86d1ab
use log
mattdf Mar 3, 2025
bea279a
add state persistence, check at most last 24h
mattdf Mar 3, 2025
a9cd738
Merge pull request #133 from PrimeIntellect-ai/fix/optimize-validator
mattdf Mar 3, 2025
38add69
integrate leviticus workers and secure file upload
JannikSt Mar 6, 2025
1e0edf4
allow validator to reject work
JannikSt Mar 6, 2025
e34126d
remove temp. replacement of timestamp
JannikSt Mar 6, 2025
df8e142
fmt
JannikSt Mar 6, 2025
01fb5c2
clippy
JannikSt Mar 6, 2025
d4e037e
change runner, remove logs
JannikSt Mar 7, 2025
fdc599a
improve task bridge setup, remove hardcoded endpoint
JannikSt Mar 7, 2025
0dfb994
Merge branch 'develop' into feature/toploc-work-submission
JannikSt Mar 7, 2025
ef530ad
Merge branch 'develop' into feature/toploc-work-submission
JannikSt Mar 7, 2025
868c99a
remove print
JannikSt Mar 7, 2025
3522132
remove debug
JannikSt Mar 7, 2025
6ae1b7c
clippy
JannikSt Mar 7, 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
4 changes: 2 additions & 2 deletions .tmuxinator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ windows:
- services:
layout: even-horizontal
panes:
- bash -c 'tmux select-pane -T "Worker" && sleep 5 && cd smart-contracts && sh deploy.sh && cd .. && make setup && clear'
- bash -c 'tmux select-pane -T "Worker" && sleep 5 && cd smart-contracts && sh deploy.sh && sh deploy_work_validation.sh && cd .. && make setup && clear'
- bash -c 'tmux select-pane -T "Discovery" && sleep 10 && make watch-discovery'
- bash -c 'tmux select-pane -T "Validator" && sleep 15 && make watch-validator'
- bash -c 'tmux select-pane -T "Orchestrator" && sleep 20 && make watch-orchestrator'
- background:
layout: even-horizontal
layout: even-horizontal
panes:
- bash -c 'tmux rename-window "Prime Dev Services" && docker-compose up'
- bash -c 'while true; do make whitelist-provider; sleep 10; done'
Loading