Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
9a07dc3
feat: add Stellar Soroban workspace and Wormhole VAA parser (#3576)
jayantk Mar 28, 2026
4e5c8c0
feat: implement Pyth Lazer core verification contract for Stellar (#3…
jayantk Mar 28, 2026
9d14241
test: add real mainnet VAA parsing tests to wormhole-executor-stellar…
jayantk Mar 28, 2026
1597d58
feat: add guardian verification and set management for Wormhole execu…
jayantk Mar 28, 2026
f7477e7
feat: add governance error variants and unit tests for Pyth Lazer Ste…
jayantk Mar 28, 2026
b96d917
feat: add PTGM governance parsing and dispatch for Wormhole executor …
jayantk Mar 28, 2026
e46e235
feat: implement payload parsing for Pyth Lazer Stellar contract (#3580)
jayantk Mar 28, 2026
9d69fbb
docs: add DESIGN.md for Pyth Lazer Stellar contracts (#3585)
jayantk Mar 28, 2026
238fcb1
feat: add deployment script and fix WASM build for Stellar Lazer cont…
jayantk Mar 28, 2026
a814dd7
feat: add integration tests, README, and build infrastructure for Ste…
jayantk Mar 28, 2026
3888e4f
fix: make payload module available in wasm32 builds for Stellar Lazer…
jayantk Mar 28, 2026
e6a87c9
feat: add end-to-end test script for Pyth Lazer Stellar contracts (#3…
jayantk Mar 28, 2026
56d8e9a
feat: enhance Stellar Lazer e2e test with output validation and auto-…
jayantk Mar 29, 2026
08765c7
test cleanups
jayantk Apr 16, 2026
1d02f94
cleanup
jayantk Apr 16, 2026
d1de2c3
add todo
jayantk Apr 16, 2026
ca4231a
fix mistakes
jayantk Apr 16, 2026
2bf16cc
pnpm lock
jayantk Apr 16, 2026
f199444
fix executor address handling
jayantk Apr 17, 2026
112668c
fix integration test auth
jayantk Apr 17, 2026
aa87a12
better result handling
jayantk May 1, 2026
ef25b98
better result handling
jayantk May 1, 2026
53b671f
fix initialization
jayantk May 1, 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
8 changes: 4 additions & 4 deletions Dockerfile.metis
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ RUN curl -fsSL https://downloads.1password.com/linux/keys/1password.asc \
&& rm -rf /var/lib/apt/lists/*
RUN op --version

# Install metis CLI binary (always pulls the current release)
RUN curl -fsSL https://github.com/dourolabs/metis-releases/releases/download/latest/metis-x86_64-unknown-linux-gnu \
-o /usr/local/bin/metis \
&& chmod +x /usr/local/bin/metis
# Install hydra CLI binary
RUN curl -fsSL https://github.com/dourolabs/metis-releases/releases/download/v0.9.0/hydra-x86_64-unknown-linux-gnu \
-o /usr/local/bin/hydra \
&& chmod +x /usr/local/bin/hydra

# Create non-root worker user
RUN useradd -m -s /bin/bash -u 1000 worker
Expand Down
5 changes: 5 additions & 0 deletions lazer/contracts/stellar/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
target/
*.wasm
.soroban/
test_snapshots/
.stellar/
Loading
Loading