-
Notifications
You must be signed in to change notification settings - Fork 11
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
feat(hardhat): add snapshot system for state persistence #1031
Conversation
- 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
Codecov ReportAll modified and coverable lines are covered by tests ✅
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. 🚀 New features to boost your workflow:
|
- 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
- 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
|
🎉 This PR is included in version 0.47.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
What
Blockchain State Persistence
Hardhat Container Flexibility
COMPOSE_PROFILES
env var..env
handling to support toggling.Custom Network Configuration
genlayer_network
configuration with customchainId: 61999
.chainId
parameters.Why
Testing done
COMPOSE_PROFILES
variations to include/exclude Hardhat.Decisions made
chainId: 61999
ensures compatibility with GenLayer consensus logic.Reviewing tips
chainId
, gas, block limits).User facing release notes
genlayer_network
with customchainId: 61999
.COMPOSE_PROFILES
.