File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
target_chains/ethereum/contracts Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -19,3 +19,10 @@ ignored_warnings_from = [
19
19
" node_modules/" ,
20
20
" /home/runner/work/pyth-crosschain/pyth-crosschain/node_modules" ,
21
21
]
22
+
23
+ [rpc_endpoints ]
24
+ rpc_url =" ${RPC_URL}"
25
+ local = " http://localhost:8545"
26
+
27
+ [etherscan ]
28
+ base_sepolia = { key = " ${ETHERSCAN_API_KEY}" }
Original file line number Diff line number Diff line change 15
15
"setup" : " npm run setup-foundry && npm run install-forge-deps" ,
16
16
"build" : " forge build" ,
17
17
"test" : " forge test" ,
18
- "deploy" : " forge script script/Deploy.s.sol --rpc-url $RPC_URL --broadcast --verify" ,
19
- "deploy-local" : " forge script script/Deploy.s.sol --rpc-url http://localhost:8545 --broadcast" ,
18
+ "deploy" : " forge script script/Deploy.s.sol --rpc-url rpc_url --broadcast" ,
19
+ "deploy-and-verify" : " forge script script/Deploy.s.sol --rpc-url rpc_url --broadcast --verify" ,
20
+ "deploy-local" : " forge script script/Deploy.s.sol --rpc-url http://127.0.0.1:8545 --broadcast" ,
20
21
"receiver-submit-guardian-sets" : " forge script script/ReceiverSubmitGuardianSetUpgrades.s.sol --rpc-url $RPC_URL --broadcast" ,
21
22
"create-governance-vaa" : " forge script script/CreateLocalnetGovernanceVaa.s.sol" ,
22
23
"install-forge-deps" :
" forge install foundry-rs/[email protected] --no-git" ,
You can’t perform that action at this time.
0 commit comments