Skip to content

Commit 9c501e5

Browse files
committed
Merge branch 'feat/full-example-and-docs-for-agg-mod' into feat/verify-agg-proof-on-chain
2 parents 4352e3b + 050edea commit 9c501e5

34 files changed

+17934
-3
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,6 @@
4040
[submodule "contracts/eigenlayer_contracts/eigenlayer-contracts"]
4141
path = contracts/eigenlayer_contracts/eigenlayer-contracts
4242
url = https://github.com/Layr-Labs/eigenlayer-contracts.git
43+
[submodule "examples/L2/contracts/lib/forge-std"]
44+
path = examples/L2/contracts/lib/forge-std
45+
url = https://github.com/foundry-rs/forge-std

batcher/aligned-sdk/src/common/types.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ use std::fmt::Display;
33
use std::fmt::Formatter;
44
use std::str::FromStr;
55

6-
use ethers::core::k256::ecdsa::SigningKey;
7-
use ethers::signers::Signer;
8-
use ethers::signers::Wallet;
6+
pub use ethers::core::k256::ecdsa::SigningKey;
7+
pub use ethers::signers::{Signer, Wallet};
98
use ethers::types::transaction::eip712::EIP712Domain;
109
use ethers::types::transaction::eip712::Eip712;
1110
use ethers::types::transaction::eip712::Eip712Error;

examples/L2/.env.holesky

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# .env example for holesky network
2+
NETWORK=holesky
3+
ETH_RPC_URL=https://ethereum-holesky-rpc.publicnode.com
4+
WS_ETH_RPC_URL=wss://ethereum-holesky-rpc.publicnode.com
5+
BEACON_CLIENT_URL=<YOUR_BEACON_CLIENT_URL> # This can't be a public one as we need to retrieve blobs and they don't support that method
6+
PRIVATE_KEY_STORE_PATH=<PATH_TO_STATE_TRANSITION_OWNER_KEYSTORE>
7+
PRIVATE_KEY_STORE_PASSWORD=<STATE_TRANSITION_OWNER_KEYSTORE_PASSWORD>
8+
STATE_TRANSITION_CONTRACT_ADDRESS=<STATE_TRANSITION_CONTRACT_ADDRESS>

examples/L2/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
crates/l2/programs_ids.json

0 commit comments

Comments
 (0)