Skip to content

Commit 3750069

Browse files
committed
Add hardhat node support
1 parent 0ba9103 commit 3750069

File tree

6 files changed

+3078
-7
lines changed

6 files changed

+3078
-7
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,9 @@ revive_dev_stack
124124
# Or run with mitmproxy for traffic inspection
125125
# Note: Requires mitmproxy setup first - https://github.com/pgherveou/mitmproxy
126126
revive_dev_stack --proxy
127+
128+
# Run with custom consensus mode (e.g., manual-seal with 12 second block time)
129+
revive_dev_stack --consensus manual-seal-12000
127130
```
128131

129132
## Running the Geth Stack
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
node_modules
2+
.env
3+
4+
# Hardhat files
5+
/cache
6+
/artifacts
7+
8+
# TypeChain files
9+
/typechain
10+
/typechain-types
11+
12+
# solidity-coverage files
13+
/coverage
14+
/coverage.json
15+
16+
# Hardhat Ignition default folder for deployments against a local node
17+
ignition/deployments/chain-31337
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/** @type import('hardhat/config').HardhatUserConfig */
2+
module.exports = {
3+
solidity: "0.8.28",
4+
};

0 commit comments

Comments
 (0)