-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (25 loc) · 765 Bytes
/
Makefile
File metadata and controls
29 lines (25 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
.PHONY: make-deploy
install:
forge install && npm i && forge build
deploy-mainnet-sourcify:
forge script script/DeployBridge.s.sol \
--rpc-url eth_mainnet_sandbox \
--verifier sourcify \
--verify \
--verifier-url https://rpc.buildbear.io/verify/sourcify/server/eth-to-pol \
--broadcast \
deploy-pol-sourcify:
forge script script/DeployBridge.s.sol \
--rpc-url pol_mainnet_sandbox \
--verifier sourcify \
--verify \
--verifier-url https://rpc.buildbear.io/verify/sourcify/server/pol-to-eth \
--broadcast \
interact-mainnet-bridge:
forge script script/InteractBridge.s.sol \
--rpc-url eth_mainnet_sandbox \
--broadcast \
interact-pol-bridge:
forge script script/InteractBridge.s.sol \
--rpc-url eth_mainnet_sandbox \
--broadcast \