Welcome to Sol-Drive — the home of innovative, blockchain-first, full-stack solutions built on the Solana ecosystem and beyond.
Explore our diverse portfolio of frontend, backend, and on-chain modules—designed for scalability, performance, and real-world utility.
| Repository | Description |
|---|---|
| Frontend | A modern UI for interacting with on-chain programs (stake, claim, dashboard, etc.) |
| Anchor Program | The core Solana smart contract(s) written in Anchor, implementing staking, claim logic and token flows. |
| Backend / API | A REST/GraphQL layer (Node.js / FastAPI) connecting frontend and on-chain services, including user management and off-chain logic. |
| Tools / CLI | Utility scripts for deployment, migrations, wallet setup, monitoring, etc. |
- Node.js (>=16) or Bun
- Yarn / npm / Bun as package manager
- A Solana wallet (e.g., Phantom) connected to the correct network (devnet/testnet/mainnet)
- Program ID(s) and RPC endpoint(s) configured for the on-chain program
# Clone the repo (example for Frontend)
git clone https://github.com/Sol-Drive/Frontend.git
cd Frontend
# Install dependencies
npm install
# or
yarn install
# or with Bun
bun install