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: add Aligned Layer's AVS example #30

Merged
merged 37 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
38e0a7e
feat: add example with Aligned contracts
MegaRedHand Oct 22, 2024
1042fe2
feat: add Batcher Payment Service to the example
MegaRedHand Oct 22, 2024
e312ab0
feat: dynamically generate aggregator keys
MegaRedHand Oct 22, 2024
c4a41a5
feat: add aggregator
MegaRedHand Oct 22, 2024
f73b0aa
feat: add operator1
MegaRedHand Oct 22, 2024
10012d4
feat: add intermediate one-shot services
MegaRedHand Oct 23, 2024
4817618
feat: add remaining one-shot services
MegaRedHand Oct 24, 2024
606dbe9
fix: build images used by config
MegaRedHand Oct 24, 2024
ea989da
fix: was using wrong magic variable
MegaRedHand Oct 24, 2024
288e4f4
ci: disable aligned_layer example
MegaRedHand Oct 24, 2024
b6e77f1
Merge branch 'master' into validation/aligned-layer
MegaRedHand Dec 9, 2024
c07377c
chore: bump
MegaRedHand Dec 9, 2024
1d717bd
Merge branch 'master' into validation/aligned-layer
MegaRedHand Dec 27, 2024
2504c1b
chore: use testnet
MegaRedHand Dec 27, 2024
db77e76
feat: add localstack
MegaRedHand Dec 27, 2024
e30ca72
fix: use latest syntax
MegaRedHand Dec 27, 2024
1e3558b
fix: use keys instead of keystores
MegaRedHand Dec 27, 2024
8da733a
feat: add batcher to example
MegaRedHand Dec 27, 2024
f7e4104
fix: use new syntax for envvars
MegaRedHand Dec 27, 2024
450a8ef
fix: use .keys instead of .keystores
MegaRedHand Dec 27, 2024
2ec8506
fix: add batcher config
MegaRedHand Dec 27, 2024
d153e0b
fix: change to new branch with updated scripts
MegaRedHand Dec 30, 2024
f1fa0ca
fix: use 60s sleep on operator startup
MegaRedHand Dec 30, 2024
95bd8ee
Merge branch 'master' into validation/aligned-layer
MegaRedHand Dec 30, 2024
d64ccc8
fix: signer local -> local_keystore
MegaRedHand Dec 30, 2024
c7a1aa4
feat: add batcher's rpc port
MegaRedHand Jan 2, 2025
e5101c8
docs: add some comments
MegaRedHand Jan 2, 2025
c5db2d6
chore: update Aligned Layer ref in Makefile
MegaRedHand Jan 2, 2025
3253560
chore: remove aligned target from makefile
MegaRedHand Jan 2, 2025
56c615a
chore: remove comment
MegaRedHand Jan 2, 2025
1850b74
chore: remove .gitignore entry
MegaRedHand Jan 2, 2025
3e9cc8a
Merge branch 'master' into validation/aligned-layer
MegaRedHand Jan 3, 2025
428c6d4
fix: specify batcher address and pk on deploy config
MegaRedHand Jan 3, 2025
f24c419
fix: deposit initial funds for batcher payment service
MegaRedHand Jan 8, 2025
a07abd9
Merge branch 'main' into validation/aligned-layer
MegaRedHand Jan 17, 2025
3bbc165
Merge branch 'main' into validation/aligned-layer
MegaRedHand Jan 17, 2025
03a978a
Merge branch 'main' into validation/aligned-layer
MegaRedHand Jan 21, 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 Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ HELLO_WORLD_REF:=4626e206fd119b26ebe98935b256daa7256e863b

examples/hello-world-avs:
@echo "Cloning hello-world-avs repo..."
@mkdir -p examples/hello-world-avs
@cd examples/hello-world-avs && \
@mkdir -p $@
@cd $@ && \
git init . && \
git remote add origin https://github.com/Layr-Labs/hello-world-avs.git && \
git fetch --depth 1 origin $(HELLO_WORLD_REF) && \
Expand Down
Loading
Loading