Yaci DevKit is a comprehensive Cardano development toolkit that provides developers with a complete local blockchain environment. Create, customize, and manage your own Cardano devnet in seconds, enabling rapid development and testing of DApps, smart contracts, and blockchain integrations.
- β‘ Instant Devnet Creation - Launch a complete Cardano network in seconds
- ποΈ Flexible Configuration - Customize block times, epochs, eras, and network parameters
- π Rollback Testing - Advanced rollback simulation for robust application testing (New in v0.11.0-beta1)
- β±οΈ Sub-second Block Times - Support for ultra-fast development with sub-second block times. e.g; 100ms, 200ms (New in v0.11.0-beta1)
- π Multi-node Support - Enable multiple nodes specifically for rollback testing scenarios
- π Built-in Indexer - Integrated Yaci Store with Blockfrost-compatible APIs
- π― Developer Tools - Browser-based viewer, CLI management, and extensive APIs
- π SDK Integration - Seamless integration with popular Cardano SDKs (Mesh, CCL, Lucid Evolution)
For most development scenarios, Yaci DevKit runs a single Cardano node:
βββββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββ
β Yaci Viewer β β Your DApp β β Yaci CLI β
β (Web UI) β β (Frontend) β β (Management) β
βββββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββ
β β β
βββββββββββββββββββββββΌββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β API Layer β
β βββββββββββββββ βββββββββββββββ βββββββββββββββ β
β β Yaci Store β β Ogmios β β Kupo β β
β β (Indexer) β β (Optional) β β (Optional) β β
β βββββββββββββββ βββββββββββββββ βββββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Single Cardano Node β
β βββββββββββββββββββββββ β
β β Node 1 β β
β β (Producer) β β
β βββββββββββββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
When --enable-multi-node is used, DevKit creates a 3-node cluster for rollback testing:
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Multi-node Cluster β
β βββββββββββββββ βββββββββββββββ βββββββββββββββ β
β β Node 1 β β Node 2 β β Node 3 β β
β β (Producer) β β (Producer) β β (Producer) β β
β βββββββββββββββ βββββββββββββββ βββββββββββββββ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
π Latest Stable Release: v0.10.6
π§ͺ Latest Beta Release: v0.11.0-beta1
| Component | Description | Default Port |
|---|---|---|
| Yaci CLI | Command-line interface for devnet management | - |
| Yaci Store | Lightweight indexer with Blockfrost-compatible APIs | 8080 |
| Yaci Viewer | Web-based blockchain explorer for developers | 5173 |
| Cardano Node | Official Cardano node (supports both amd64/arm64) | 3001 (n2n), 3333 (n2c through socat) |
| Ogmios | WebSocket API for Cardano (optional) | 1337 |
| Kupo | Chain indexer (optional) | 1442 |
- Docker and Docker Compose for Docker based distribution
Yaci DevKit offers multiple distribution options to fit your development workflow:
Download and unzip the latest docker distribution.
#
# Start DevKit
./bin/devkit.sh startDownload and unzip the latest Yaci CLI distribution.
# Start Yaci CLI and download components
./yaci-cliπ Perfect for CI/CD pipelines and automated testing:
# Global installation
npm install -g @bloxbean/yaci-devkit
yaci-devkit up --enable-yaci-store
or
yaci-devkit up --enable-kupomiosCI Integration Examples:
- β GitHub Actions - Automated testing with DevKit
π CI Integration Guide | π Sample CI Project
# Create and start a single-node devnet (default)
yaci-cli> create-node -o --startπ That's it! Your devnet is now running with:
-
Yaci Viewer: http://localhost:5173
-
Yaci Store API: http://localhost:8080/api/v1/
(Can be used in a Java app with Cardano Client Lib's Blockfrost backend or Javascript app with MeshJS + Blockfrost provider as it exposes required BF compatible minimum apis for tx building and submission)
-
Yaci Store Swagger UI: http://localhost:8080/swagger-ui/index.html
-
Ogmios Url (Optional): http://localhost:1337
(Optional) If you enabled Kupo
- Kupo Url (Optional): http://localhost:1442
- n2n port: localhost:3001
- n2c port for remote client (socat): localhost:3333
# Default single-node setup (1 second blocks)
yaci-cli> create-node -o --start
# High-speed development (200ms blocks) - New in v0.11.0-beta1
yaci-cli> create-node --block-time 0.2 --slot-length 0.2 -o --start# Enable multi-node ONLY for rollback testing
yaci-cli> create-node --enable-multi-node --block-time 2 -o --start
# Simulate network partition for rollback testing
devnet:default> create-forks
# Submit transactions during fork...
devnet:default> topup addr_test1... 1000
# Trigger consensus-based rollback
devnet:default> join-forksNote: Multi-node setup is specifically designed for rollback testing scenarios. For regular development, use the standard single-node setup which is faster and uses fewer resources.
# Auto-fund addresses on startup (config/env)
topup_addresses=addr_test1...:20000,addr_test1...:10000
# Or fund manually
devnet:default> topup addr_test1qzx... 50000
# Use default test addresses (always available)
devnet:default> default-addresses# Check current tip
devnet:default> tip
# View UTXOs at address
devnet:default> utxos addr_test1...
# Get network info
devnet:default> info# Quick reset without losing configuration
devnet:default> reset
# Full cleanup -- Docker distribution only
./bin/devkit.sh stop
./bin/devkit.sh start| Resource | Description |
|---|---|
| Official Documentation | Complete guides |
| Rollback Testing Guide | Advanced rollback simulation |
| Mesh SDK Integration | JavaScript/TypeScript development |
| CLI Commands Reference | Available commands |
| Tutorial | Description |
|---|---|
![]() |
Yaci Viewer with Local Devnet and Cardano Client Lib Demo |
![]() |
Test Aiken Smart Contract Using Java Offchain Code |
# Using Earthly (recommended)
earthly --arg-file-path=config/version +build
# Manual build yaci-cli and yaci-viewer
cd applications/cli && ./gradlew clean build
cd applications/viewer && npm install && npm run build- Java 21 (for Yaci CLI)
- Node.js (for Yaci Viewer)
- Earthly (for unified builds)
- π GitHub Discussions - Questions and ideas
- π GitHub Issues - Bug reports and feature requests
- π¬ Discord Server - Real-time community support
- π Documentation - Comprehensive guides
| Traditional Development | With Yaci DevKit |
|---|---|
| β³ Wait for testnet transactions | β‘ Instant local transactions |
| π Depend on external testnets | π Fully controlled environment |
| π Slow iteration cycles | π Rapid development loops |
| π Manual rollback testing | π― Automated rollback scenarios |
This project is licensed under the MIT License - see the LICENSE file for details.
β Star this repo if Yaci DevKit helps accelerate your Cardano development!
Documentation β’ Discord


