Open
Conversation
Add three self-contained shell scripts for Kaspa testnet validation: - kaspa_daa_reader.sh: reads DAA score and timestamp from Kaspa node - kaspa_wallet_send.sh: sends KAS transactions via wallet-core API - kaspa_wallet_sweeper.sh: sweeps mature UTXOs from wallet These scripts embed Rust code and auto-compile with caching, providing standalone tools for testnet validation workflows.
Add comprehensive validation orchestration and monitoring scripts:
- run-testnet-validation.sh: automated testnet validation orchestrator
that handles backup restore, service startup, and health verification
- verify-kaspa-status.sh: validates kaspad container and RPC connectivity
- send-entry-periodic.sh: periodic L1→L2 entry transaction sender with
balance monitoring and statistics tracking
Add attestor service to read L1 blocks and store attestations on L2: - New attestor service in docker-compose with health/metrics endpoints - Dockerfile.attestor for building the attestation service - Configuration options for RPC URL, contract address, and credentials - Optional igra-core-contracts repository cloning via CLONE_CORE_CONTRACTS flag - Integration with setup-repos.sh and pre-built image pulling
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add comprehensive testnet validation infrastructure and attestor service for IGRA Orchestra. This PR introduces automated validation workflows, Kaspa wallet utilities, and L1 block attestation capabilities.
Key additions:
Changes
Attestor Service
CLONE_CORE_CONTRACTSflagTestnet Validation Automation
run-testnet-validation.sh: Complete validation orchestrator handling backup restore, service startup, and health verificationverify-kaspa-status.sh: Kaspad container and RPC connectivity validatorsend-entry-periodic.sh: Periodic L1→L2 entry transaction sender with monitoringKaspa Wallet Utilities
kaspa_wallet_send.sh: Send KAS transactions via wallet-core APIkaspa_wallet_sweeper.sh: Sweep mature UTXOs from walletkaspa_daa_reader.sh: Read DAA score and timestamp from Kaspa nodeAll wallet utilities are self-contained with embedded Rust code and auto-compilation with caching.