A DAML project for Chainlink Data Streams integration with Canton.
- Daml SDK 3.4.9
- Java 17 or higher
curl -sSL https://get.daml.com/ | sh
daml install 3.4.9# Build all packages (main + tests)
make build
# Run all tests
make test
# Run example tests
make test-examples
# Lint all DAML files for code quality and best practices
make lint
# Clean build artifacts
make clean# Build all packages
daml build --all
# Build main package only
daml build --project-root src/main
# Build test package only
daml build --project-root src/test
# Run tests
daml test --project-root src/testThis project uses GitHub Actions for continuous integration:
- Build: Compiles DAML contracts
- Test: Runs all test suites
- Lint: Ensures code quality and DAML best practices