Skip to content

Commit

Permalink
feat: make l1 funding amount configurable (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
leovct authored Apr 25, 2024
1 parent ba2fecd commit d69f8f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions params.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ args:
## L1 configuration.
l1_chain_id: 271828
l1_preallocated_mnemonic: code code code code code code code code code code code quality
l1_funding_amount: 100ether
l1_rpc_url: http://el-1-geth-lighthouse:8545
l1_ws_url: ws://el-1-geth-lighthouse:8546
# https://github.com/kurtosis-tech/ethereum-package/tree/main?tab=readme-ov-file#configuration
Expand Down
2 changes: 1 addition & 1 deletion templates/contract-deploy/run-contract-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fund_account_on_l1() {
cast send \
--rpc-url "{{.l1_rpc_url}}" \
--mnemonic "{{.l1_preallocated_mnemonic}}" \
--value "100ether" \
--value "{{.l1_funding_amount}}" \
"$address"
}

Expand Down

0 comments on commit d69f8f7

Please sign in to comment.