Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
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: 2 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -139,14 +139,10 @@ lint_contracts:
@cd contracts && npm run lint:sol

anvil_start:
@echo "Starting Anvil..."
anvil --load-state contracts/scripts/anvil/state/alignedlayer-deployed-anvil-state.json

anvil_start_with_block_time:
@echo "Starting Anvil..."
anvil --load-state contracts/scripts/anvil/state/alignedlayer-deployed-anvil-state.json --block-time 7

anvil_start_with_block_time_with_more_prefunded_accounts:
anvil_start_with_more_prefunded_accounts:
@echo "Starting Anvil..."
anvil --load-state contracts/scripts/anvil/state/alignedlayer-deployed-anvil-state.json --block-time 7 -a 2000

Expand Down Expand Up @@ -1154,7 +1150,7 @@ setup_local_aligned_all:
tmux new-session -d -s aligned_layer

tmux new-window -t aligned_layer -n anvil
tmux send-keys -t aligned_layer 'make anvil_start_with_block_time' C-m
tmux send-keys -t aligned_layer 'make anvil_start' C-m

tmux new-window -t aligned_layer -n aggregator
tmux send-keys -t aligned_layer:aggregator 'make aggregator_start' C-m
Expand Down
2 changes: 1 addition & 1 deletion batcher/aligned-task-sender/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ NUM_WALLETS=<N> make task_sender_generate_and_fund_wallets_holesky_stage
### In Devnet:
Run anvil with more prefunded accounts, using the following make target:
```bash
make anvil_start_with_block_time_with_more_prefunded
make anvil_start_with_more_prefunded
Comment thread
Mechanix97 marked this conversation as resolved.
Outdated
```

Then run the following make target, with `NUM_WALLETS` being the amount of wallets you want to deposit funds to aligned payment service, up to 1000.
Expand Down
2 changes: 1 addition & 1 deletion docs/3_guides/6_setup_aligned.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ This will:
To start anvil, a local Ethereum devnet with all necessary contracts already deployed and ready to be interacted with, run:

```shell
make anvil_start_with_block_time
make anvil_start
```

<details>
Expand Down
Loading