Added Makefile
Some checks are pending
CI / Foundry project (push) Waiting to run

This commit is contained in:
hoelee 2024-08-17 01:50:54 +08:00
parent 47393f36ad
commit d65d7966bf
4 changed files with 72 additions and 12 deletions

View File

@ -46,6 +46,8 @@ Usage
forge script script/DeployContract.s.sol --rpc-url HTTP://127.0.0.1:7545 --broadcast --account localAccountName
forge snapshot
See Gas Usage For Each Function
forge test --mt testFunctionName --fork-url $SEPOLIA_RPC_URL -vvvv
Test with Testnet & Mainnet, access latest data without affecting the blockchain, no cost needed
```
### Usage of cast:

56
Makefile Normal file
View File

@ -0,0 +1,56 @@
-include .env
.PHONY: all test clean deploy fund help install snapshot format anvil
DEFAULT_ANVIL_KEY := 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80
help:
@echo "Usage:"
@echo " make deploy [ARGS=...]\n example: make deploy ARGS=\"--network sepolia\""
@echo ""
@echo " make fund [ARGS=...]\n example: make deploy ARGS=\"--network sepolia\""
all: clean remove install update build
# Clean the repo
clean :; forge clean
# Remove modules
remove :; rm -rf .gitmodules && rm -rf .git/modules/* && rm -rf lib && touch .gitmodules && git add . && git commit -m "modules"
install :
forge install cyfrin/foundry-devops@0.2.2 --no-commit && forge install smartcontractkit/chainlink-brownie-contracts@1.1.1 --no-commit && forge install foundry-rs/forge-std@v1.8.2 --no-commit && forge install transmissions11/solmate@v6 --no-commit
deploy-sepolia:
@forge script script/DeployRaffle.s.sol:DeployRaffle --rpc-url $(SEPOLIA_RPC_URL) --broadcast --verify --etherscan-api-key $(ETHERSCAN_API_KEY) --account hoelee -vvvv
# Update Dependencies
update:; forge update
build:; forge build
test :; forge test
snapshot :; forge snapshot
format :; forge fmt
anvil :; anvil -m 'test test test test test test test test test test test junk' --steps-tracing --block-time 1
NETWORK_ARGS := --rpc-url http://localhost:8545 --private-key $(DEFAULT_ANVIL_KEY) --broadcast
ifeq ($(findstring --network sepolia,$(ARGS)),--network sepolia)
NETWORK_ARGS := --rpc-url $(SEPOLIA_RPC_URL) --private-key $(PRIVATE_KEY) --broadcast --verify --etherscan-api-key $(ETHERSCAN_API_KEY) -vvvv
endif
deploy:
@forge script script/DeployRaffle.s.sol:DeployRaffle $(NETWORK_ARGS)
createSubscription:
@forge script script/Interactions.s.sol:CreateSubscription $(NETWORK_ARGS)
addConsumer:
@forge script script/Interactions.s.sol:AddConsumer $(NETWORK_ARGS)
fundSubscription:
@forge script script/Interactions.s.sol:FundSubscription $(NETWORK_ARGS)

View File

@ -0,0 +1,12 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
// unit
// integrations
// fork test
// staging
// fuzzing
// statefull fuzz
// stateless fuzz
// formal verfiication - mathmatical proof

View File

@ -68,18 +68,8 @@ contract RaffleTest is Test, CodeConstants {
_;
}
modifier onlyOnDeployedContracts() {
if (block.chainid == 31337) {
return;
}
try vm.activeFork() returns (uint256) {
return;
} catch {
_;
}
}
modifier skipFork() {
// Testnet cannot test with Mock, don't have Mock control
if (block.chainid != 31337) {
return;
}
@ -340,7 +330,7 @@ contract RaffleTest is Test, CodeConstants {
assert(endingTimeStamp > startingTimeStamp);
}
function testHoelee() public raffleEntered {
function testHoelee() public raffleEntered skipFork {
address expectedWinner = address(1);
// Arrange