1
0
Files
Kanel42_token/Justfile
2025-08-10 20:03:25 +02:00

18 lines
292 B
Makefile

# The default one (the one you are seeing right now)
@default:
just -l
@build:
forge build
# To lanch the tests via foundry-rs
@test:
forge test -vv
# To generate the ABI in the deployment/ folder
@abi-gen:
solc --abi code/Kanel42_token.sol -o deployment --overwrite
@fmt:
forge fmt