Skip to content

Commit 3b13a2d

Browse files
authored
Merge pull request #22 from layerx-labs/develop
Merge on Master
2 parents cbd33f3 + a47bfaa commit 3b13a2d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+6260
-415
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Added
11+
- **DSL Compiler (castc)**: YAML-based domain-specific language for pipeline definitions
12+
- New CLI tool (`castc`) with compile, validate, and decompile commands
13+
- YAML parser for human-readable pipeline configurations
14+
- AST-based compiler with comprehensive validation
15+
- Decompiler to convert JSON programs back to YAML
16+
- Template transformers for variable interpolation
17+
- Comprehensive DSL documentation (`doc/DSL-GUIDE.md`)
18+
- Full test suite for DSL components (cli, compiler, decompiler, parser, validator, transformers)
19+
- New dependencies: `commander` for CLI, `yaml` for YAML parsing
20+
21+
### Changed
22+
- Updated dependencies to latest semver-compatible versions:
23+
- `typescript`: 5.0.4 → 5.9.3
24+
- `viem`: 2.21.0 → 2.43.5
25+
- `zod`: 3.21.4 → 3.25.76
26+
- `@elastic/elasticsearch`: 8.8.1 → 8.19.1
27+
- `axios`: 1.4.0 → 1.13.2
28+
- `graphql`: 16.6.0 → 16.12.0
29+
- And other minor updates
30+
- Updated README with DSL programming guide reference and custom pipelines section
31+
- Bumped package version to 1.2.0
32+
1033
## [1.2.0] - 2026-01-07
1134

1235
### Added

CLAUDE.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -239,21 +239,21 @@ ChainCast automatically recovers missed events:
239239
- `bun run format` - Format code with Biome
240240
- `bun run check` - Run all Biome checks (lint + format)
241241
- `bun run check:fix` - Fix all Biome issues
242-
- `bun run ganache:dev` - Start local Ganache blockchain
243-
- `bun run setup:ganache` - Setup Ganache with test contracts
244242

245-
### Local Development with Ganache
243+
### Local Development
246244

247-
For testing without mainnet/testnet:
245+
For local blockchain testing (Hardhat, Anvil, or similar):
248246

249-
1. **Start Ganache**:
247+
1. **Start your local blockchain** (e.g., Anvil):
250248
```bash
251-
bun run ganache:dev
249+
anvil
252250
```
253251

254-
2. **Deploy Test Contracts**:
255-
```bash
256-
bun run setup:ganache
252+
2. **Configure local chain** in `.env.local`:
253+
```env
254+
LOCAL_CHAIN_ID=31337
255+
WEB3_RPC_LOCAL_URL=http://127.0.0.1:8545
256+
WEB3_WS_LOCAL_URL=ws://127.0.0.1:8545
257257
```
258258

259259
3. **Start ChainCast**:

0 commit comments

Comments
 (0)