Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Updates funder and RPC env setting.
Browse files Browse the repository at this point in the history
  • Loading branch information
ckartik committed Dec 10, 2023
1 parent bae778b commit 0955b3e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build-platform.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ case "$1" in
# Pause for user to update config files
echo "Please update /integration-test/config/{nodetype}.yml files as needed."
echo "Press Enter to continue after you have made the updates..."
echo "Note: If you're on mac, set RPC endpoint to host.internal.docker to connect to localhost"
echo "Note: If you're on mac, set RPC endpoint to host.docker.internal to connect to localhost"
read -p " " # This will pause and wait for the user to press Enter

start_mev_commit "$datadog_key"
Expand All @@ -100,4 +100,4 @@ case "$1" in
exit 1
esac

exit 0
exit 0
2 changes: 0 additions & 2 deletions integration-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -545,8 +545,6 @@ services:
- DD_LOGS_ENABLED=true
- DD_LOGS_CONFIG_CONTAINER_COLLECT_ALL=true
- DD_CONTAINER_EXCLUDE="name:datadog-agent"
ports:
- "5000:5000"
networks:
mev-int-net:
ipv4_address: 172.29.0.3
Expand Down
2 changes: 1 addition & 1 deletion integrationtest/.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
USER_REGISTRY=0x5FbDB2315678afecb367f032d93F642f64180aa3
PROVIDER_REGISTRY=0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512
PRECONF_CONTRACT=0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0
RPC_URL=http://34.215.163.180:8545
RPC_URL=http://localhost:8545
PRIVATE_KEY=ac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80
2 changes: 1 addition & 1 deletion integrationtest/foundry/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

THRESHOLD=50000000000000000000 # Set your threshold value here in wei
# THRESHOLD is set to 50 Ether in wei for comparison

echo "Starting funder at RPC endpoint $RPC_URL with threshold $THRESHOLD"
while true; do
while IFS= read -r address; do
balance=$(cast balance $address --rpc-url $RPC_URL)
Expand Down

0 comments on commit 0955b3e

Please sign in to comment.