Developing
This section provides instructions for setting up the development environment for the Alith SDK and contributing to the project.
Rust
Prerequisites
- Install Rust using rustup :
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shClone the Repository
git clone https://github.com/0xLazAI/alith.git
cd alithBuild the SDK
To build the Rust SDK, run:
make checkRun Tests
To run the test suite:
make testFormat Code
Ensure your code follows Rust’s formatting standards:
make fmtLinting
Use Clippy to catch common mistakes and improve code quality:
make clippyContributing
- Fork the repository and create a new branch for your changes.
- Submit a pull request with a detailed description of your changes.
Last updated on