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

feat:slashing #14

Open
wants to merge 66 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
66 commits
Select commit Hold shift + click to select a range
bf1165f
track slashing , comment out rewardsv2, update alloy
Dec 3, 2024
fce1aa2
scripts wip: socket registry missing
Dec 3, 2024
3914de9
add createOperatorSets , modifyAllocations
Dec 3, 2024
109ea7e
register for operator sets
Dec 3, 2024
07bb9aa
add info logs
Dec 3, 2024
f8fa8f7
allocation manager in deploy scripts
Dec 3, 2024
87bf982
fix scripts wip
Dec 4, 2024
b2f1b5c
bindings wip
Dec 4, 2024
5132eb7
update rev middleware
Dec 4, 2024
0701f29
middleware rev update
Dec 5, 2024
b652d56
scripts fixed
Dec 5, 2024
244fecb
update eigensdk rev
Dec 5, 2024
9799371
wip offchain
Dec 11, 2024
51c0479
update middleware rev
Dec 11, 2024
185ca69
fix:registerasoperatorwip
Dec 11, 2024
011f193
use middleware rev same as used in sdk slashing branch
Dec 11, 2024
75657c8
make it working with old middleware commit
Dec 11, 2024
e0c9ffc
update rev
Dec 11, 2024
de4e1cc
new rev update
Dec 12, 2024
ea6575d
update eigenlayer middleware latest and sdk rev also for latest
Dec 16, 2024
bd35d2a
update slashing rev
Dec 17, 2024
0a66343
enable operator sets
Dec 17, 2024
23b0f67
fix register operator
Dec 18, 2024
a68874f
working
Jan 3, 2025
0a85dc0
remove some hardcoding wip
Jan 3, 2025
762f388
add more cli params ,r emove hardcode
Jan 3, 2025
34e0509
remove hardcode in modify allocation
Jan 3, 2025
233cdc6
clippy
Jan 3, 2025
9b1e79c
allocation delay in cli
Jan 3, 2025
2f0cd44
metadata uri in cli
Jan 3, 2025
39d6d4f
update rustc:1.81
Jan 3, 2025
4c28a49
update rustc in ci
Jan 3, 2025
08fc31c
ci update rustc
Jan 3, 2025
b9715d8
clean up contracts
Jan 3, 2025
d0292ed
add slashOperator in contracts WIP
Jan 6, 2025
d4fdf5e
operator2 slash simulate response
Jan 6, 2025
f1c648f
contracts and off chain working,
Jan 7, 2025
8c7d8c9
chore:cleanup
Jan 7, 2025
9bad666
fix:edge case in processing signature in aggregator
Jan 8, 2025
0d962eb
integration test update wip
Jan 8, 2025
84de26e
Merge branch 'master' into nova/slashing
Jan 8, 2025
467c6e3
readme update
Jan 8, 2025
92b78c8
addressOfNonSigningOperators typo
Jan 8, 2025
d7baf9b
clippy
Jan 8, 2025
7e984c0
clippy
Jan 8, 2025
7a1ceef
fix:dep issue and add slash simulate in operator1 also
Jan 8, 2025
86271e7
update integration tests
Jan 9, 2025
894d667
fix test_build
Jan 9, 2025
7fbda53
clippy
Jan 9, 2025
8fbd05d
clippy
Jan 9, 2025
23fedf5
clippy
Jan 9, 2025
3b15f3a
fix tests
Jan 10, 2025
998e2a9
nudge ci
Jan 10, 2025
256f51d
old ubuntu version
Jan 10, 2025
1b89d88
remove dbg! from code , still remaining in integration tests
Jan 10, 2025
3364840
use elchainwriter instead of manual
Jan 10, 2025
7ac223c
remove commented code
Jan 10, 2025
4dcd7f4
delete operated directed payment
Jan 10, 2025
b315075
add back operator directed payments
Jan 10, 2025
7306d6e
add back rewards v1 script
Jan 10, 2025
bc808c5
fix:use quorum number instead of constant operator set id
Jan 13, 2025
59319f8
update deployment josn
Jan 13, 2025
c50f597
update middleware rev
Jan 13, 2025
43ceb80
fix reward script
Jan 13, 2025
28338d3
get strategy and wads to slash from avs
Jan 13, 2025
d7367db
10% WADS TO SLASH
Jan 14, 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: 3 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install Rust
uses: dtolnay/rust-toolchain@1.80.1
uses: dtolnay/rust-toolchain@1.81

- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install Rust
uses: dtolnay/rust-toolchain@1.80.1
uses: dtolnay/rust-toolchain@1.81
with:
components: rustfmt, clippy

Expand All @@ -46,7 +46,7 @@ jobs:

test:
name: Run Tests
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
Loading
Loading