Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(hardhat): add snapshot system for state persistence #1031

Merged
merged 17 commits into from
Apr 1, 2025

Conversation

mpaya5
Copy link
Contributor

@mpaya5 mpaya5 commented Mar 27, 2025

What

  • Blockchain State Persistence

    • Added snapshot and restore scripts to save/load the complete blockchain state.
    • Snapshots include:
      • Account balances
      • Nonces
      • Block numbers
      • Deployed contracts
    • Dynamically tracks all interacting accounts (predefined + created at runtime).
    • Introduced a background service to auto-snapshot every 5 seconds.
    • Validates snapshot integrity before restoring state (e.g., balances, contracts).
    • Snapshots stored in a shared local volume for portability.
  • Hardhat Container Flexibility

    • Made the Hardhat container optional via the COMPOSE_PROFILES env var.
    • Updated Docker configuration and .env handling to support toggling.
  • Custom Network Configuration

    • Introduced genlayer_network configuration with custom chainId: 61999.
    • Fixed nonce-related issues during transaction submission.
    • Corrected JSON-RPC calls by removing invalid chainId parameters.
    • Implemented contract encoding and raw transaction submission directly to the node.
    • Updated Dockerfile and Hardhat scripts to use the new network config.
    • Set proper gas limits and block settings to align with expected GenLayer behaviors.

Why

  • Enable fast, reproducible dev/testing workflows by snapshotting blockchain state.
  • Allow restoring exact environments across reboots or simulations.
  • Improve transaction integrity by fixing nonce and chainId issues.
  • Provide flexibility to use external nodes or disable Hardhat when needed.

Testing done

  • ✅ Verified snapshot creation and restoration (accounts, balances, blocks).
  • ✅ Confirmed auto-snapshot writes every 5 seconds as expected.
  • ✅ Manually tested deployments and raw transaction flows on custom network.
  • ✅ Checked Docker logs for network consistency and no chainId mismatch.
  • ✅ Tested COMPOSE_PROFILES variations to include/exclude Hardhat.
  • ✅ Confirmed contract bytecode availability and proper gas behavior.

Decisions made

  • Default chainId: 61999 ensures compatibility with GenLayer consensus logic.
  • Auto-snapshot interval of 5s balances performance and persistence.
  • Stored state includes all active accounts, improving reliability during simulation and indexing.

Reviewing tips

  • Review the snapshot logic and account tracking for completeness.
  • Check the updated Hardhat and network configs (chainId, gas, block limits).
  • Confirm Docker service isolation and profile toggling behavior.
  • Validate that contract deployment and submission work on both test and persistent networks.

User facing release notes

  • New Feature: Blockchain state is now automatically snapshotted every 5 seconds.
  • Network Configuration: Added genlayer_network with custom chainId: 61999.
  • Improved Flexibility: Optionally disable Hardhat using COMPOSE_PROFILES.
  • More Reliable Testing: Contract state, accounts, and blocks now persist across sessions.
  • Improved Infrastructure: Accurate gas, nonce, and chainId handling ensures compatibility with GenLayer.

mpaya5 added 2 commits March 27, 2025 12:59
- Add snapshot and restore scripts to save/load blockchain state
- Store account balances, nonces, block numbers and contract deployments
- Track both predefined and external accounts in snapshots
- Add automatic snapshot service every 5 seconds
- Make hardhat service optional via COMPOSE_PROFILES env var
- Add validation to ensure state is correctly restored
- Improve logging for better debugging of snapshot operations
- Add snapshot and restore scripts to save/load blockchain state
- Store account balances, nonces, block numbers and contract deployments
- Track both predefined and external accounts in snapshots
- Add automatic snapshot service every 5 seconds
- Make hardhat service optional via COMPOSE_PROFILES env var
- Add validation to ensure state is correctly restored
- Improve logging for better debugging of snapshot operations
@mpaya5 mpaya5 added the enhancement New feature or request label Mar 27, 2025
@mpaya5 mpaya5 self-assigned this Mar 27, 2025
Copy link

codecov bot commented Mar 27, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 14.81%. Comparing base (5f6f8bc) to head (015c335).
Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #1031   +/-   ##
=======================================
  Coverage   14.81%   14.81%           
=======================================
  Files         123      123           
  Lines        7364     7364           
  Branches      254      254           
=======================================
  Hits         1091     1091           
  Misses       6194     6194           
  Partials       79       79           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@mpaya5 mpaya5 marked this pull request as draft March 27, 2025 14:01
- Add genlayer_network configuration with custom chainId
- Configure mining settings for both hardhat and genlayer_network
- Fix nonce issues by properly handling transaction nonces
- Implement contract encoding and direct node submission
- Remove incorrect chainId parameter from JSON-RPC calls
- Update Dockerfile to use correct network configuration
- Add proper gas settings and block limits
@mpaya5 mpaya5 marked this pull request as ready for review March 28, 2025 11:52
mpaya5 and others added 14 commits March 28, 2025 12:54
- Add genlayer_network configuration with custom chainId
- Configure mining settings for both hardhat and genlayer_network
- Fix nonce issues by properly handling transaction nonces
- Implement contract encoding and direct node submission
- Remove incorrect chainId parameter from JSON-RPC calls
- Update Dockerfile to use correct network configuration
- Add proper gas settings and block limits
- Add genlayer_network configuration with custom chainId
- Configure mining settings for both hardhat and genlayer_network
- Fix nonce issues by properly handling transaction nonces
- Implement contract encoding and direct node submission
- Remove incorrect chainId parameter from JSON-RPC calls
- Update Dockerfile to use correct network configuration
- Add proper gas settings and block limits
- Modify football prediction market test to pass mock data directly to resolve method
- Remove HTTP request mocking in favor of direct data injection
- Update contract to accept test data parameter for better testability
- Ensure proper handling of NewTransaction events from ConsensusMain contract
…github.com:yeagerai/genlayer-studio into feat/add-snapshots-to-hardhat-and-optional-service
…github.com:yeagerai/genlayer-studio into feat/add-snapshots-to-hardhat-and-optional-service
- Add section explaining how to enable Hardhat service
- Document COMPOSE_PROFILES=hardhat environment variable requirement
- Place instructions after basic installation steps
- Add section explaining how to disable Hardhat service
- Place instructions after how to enable Hardhat Service
…d-optional-service' into feat/add-snapshots-to-hardhat-and-optional-service
Copy link

sonarqubecloud bot commented Apr 1, 2025

Quality Gate Failed Quality Gate failed

Failed conditions
1.2% Coverage on New Code (required ≥ 80%)
4.1% Duplication on New Code (required ≤ 3%)

See analysis details on SonarQube Cloud

@cristiam86 cristiam86 merged commit 4fedc4e into main Apr 1, 2025
17 of 21 checks passed
Copy link
Contributor

github-actions bot commented Apr 2, 2025

🎉 This PR is included in version 0.47.0 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants