Installation
This page guides you through setting up the Zaphenath project using the Foundry toolchain.
Prerequisites
curl -L https://foundry.paradigm.xyz | bash
foundryup
- A modern Solidity-compatible code editor (e.g. VS Code with Solidity plugin)
Clone the Repository
git clone https://github.com/Astervia/zaphenath.git
cd zaphenath
Install Dependencies
Zaphenath uses forge to manage dependencies.
forge install
If external libraries are used in the future (e.g., OpenZeppelin), you can install them via:
forge install openzeppelin/openzeppelin-contracts
Verify Installation
Run the tests to ensure everything is working:
forge test
You should see output confirming the test suite ran successfully.
➡️ Next: Deployment Guide