File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 3
3
set -e
4
4
5
5
SCENARIO=$1
6
+ RPC=${RPC_URL:- http:// 127.0.0.1: 8545}
6
7
7
8
rm -rf dev-ctx/
8
9
mkdir -p dev-ctx/{addresses,labels,priceapi}/31337
9
10
10
- forge script --rpc-url ${ RPC_URL:- http :// 127.0.0.1 : 8545} " script/scenarios/$SCENARIO .s.sol" --broadcast --code-size-limit 100000 -vv
11
- cast rpc evm_increaseTime 86400 || true
12
- cast rpc evm_mine || true
11
+ forge script --rpc-url " $ RPC_URL" " script/scenarios/$SCENARIO .s.sol" --broadcast --code-size-limit 100000 -vv
12
+ cast rpc --rpc-url " $RPC_URL " evm_increaseTime 86400 || true
13
+ cast rpc --rpc-url " $RPC_URL " evm_mine || true
13
14
14
15
node chains.js
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ RPC_URL=http://127.0.0.1:$PORT bash ./deploy-scenario.sh "$SCENARIO"
23
23
echo -------------------------------
24
24
echo DEVLAND READY
25
25
echo SCENARIO = $SCENARIO
26
+ echo RPC URL = http://127.0.0.1:$PORT
26
27
echo -------------------------------
27
28
28
29
wait
You can’t perform that action at this time.
0 commit comments