Skip to content

Commit

Permalink
fork test w. factory
Browse files Browse the repository at this point in the history
  • Loading branch information
jordaniza committed Oct 4, 2024
1 parent b32b889 commit 0f34e1e
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,20 @@ deploy-mode :; forge script script/Deploy.s.sol:Deploy \
--etherscan-api-key $(ETHERSCAN_API_KEY) \
-vvv

deploy-preview-holesky :; forge script script/Deploy.s.sol:Deploy \
--rpc-url https://holesky.drpc.org \
--private-key $(DEPLOYMENT_PRIVATE_KEY) \
-vvvvv


deploy-holesky :; forge script script/Deploy.s.sol:Deploy \
--rpc-url https://holesky.drpc.org \
--private-key $(DEPLOYMENT_PRIVATE_KEY) \
--broadcast \
--verify \
--etherscan-api-key $(ETHERSCAN_API_KEY) \
-vvv

# Fork testing
ft-mode-sepolia-fork :; forge test --match-contract TestE2EV2 \
--rpc-url https://sepolia.mode.network \
Expand All @@ -63,7 +77,7 @@ ft-mode-fork :; forge test --match-contract TestE2EV2 \

ft-holesky-fork :; forge test --match-contract TestE2EV2 \
--rpc-url https://holesky.drpc.org \
--fork-block-number 2459459 \
--fork-block-number 2464835 \
-vvvvv

ft-mainnet-fork :; forge test --match-contract TestE2EV2 \
Expand Down

0 comments on commit 0f34e1e

Please sign in to comment.