File tree 3 files changed +16
-8
lines changed
v-next/hardhat/src/internal
builtin-plugins/network-manager
3 files changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -38,8 +38,8 @@ import chalk from "chalk";
38
38
import debug from "debug" ;
39
39
40
40
import {
41
- HARDHAT_NETWORK_RESET_EVENT ,
42
- HARDHAT_NETWORK_REVERT_SNAPSHOT_EVENT ,
41
+ EDR_NETWORK_RESET_EVENT ,
42
+ EDR_NETWORK_REVERT_SNAPSHOT_EVENT ,
43
43
} from "../../../constants.js" ;
44
44
import { DEFAULT_HD_ACCOUNTS_CONFIG_PARAMS } from "../accounts/constants.js" ;
45
45
import { BaseProvider } from "../base-provider.js" ;
@@ -271,9 +271,9 @@ export class EdrProvider extends BaseProvider {
271
271
}
272
272
273
273
if ( args . method === "hardhat_reset" ) {
274
- this . emit ( HARDHAT_NETWORK_RESET_EVENT ) ;
274
+ this . emit ( EDR_NETWORK_RESET_EVENT ) ;
275
275
} else if ( args . method === "evm_revert" ) {
276
- this . emit ( HARDHAT_NETWORK_REVERT_SNAPSHOT_EVENT ) ;
276
+ this . emit ( EDR_NETWORK_REVERT_SNAPSHOT_EVENT ) ;
277
277
}
278
278
279
279
// this can only happen if a wrapper doesn't call the default
Original file line number Diff line number Diff line change @@ -22,6 +22,10 @@ import {
22
22
ResponseStatusCodeError ,
23
23
} from "@ignored/hardhat-vnext-utils/request" ;
24
24
25
+ import {
26
+ EDR_NETWORK_RESET_EVENT ,
27
+ EDR_NETWORK_REVERT_SNAPSHOT_EVENT ,
28
+ } from "../../constants.js" ;
25
29
import { getHardhatVersion } from "../../utils/package.js" ;
26
30
27
31
import { BaseProvider } from "./base-provider.js" ;
@@ -141,7 +145,12 @@ export class HttpProvider extends BaseProvider {
141
145
throw error ;
142
146
}
143
147
144
- // TODO: emit hardhat network events (hardhat_reset, evm_revert)
148
+ if ( jsonRpcRequest . method === "hardhat_reset" ) {
149
+ this . emit ( EDR_NETWORK_RESET_EVENT ) ;
150
+ }
151
+ if ( jsonRpcRequest . method === "evm_revert" ) {
152
+ this . emit ( EDR_NETWORK_REVERT_SNAPSHOT_EVENT ) ;
153
+ }
145
154
146
155
return jsonRpcResponse . result ;
147
156
}
Original file line number Diff line number Diff line change @@ -2,9 +2,8 @@ export const HARDHAT_PACKAGE_NAME = "hardhat";
2
2
export const HARDHAT_NAME = "Hardhat" ;
3
3
export const HARDHAT_WEBSITE_URL = "https://hardhat.org/" ;
4
4
5
- export const HARDHAT_NETWORK_RESET_EVENT = "hardhatNetworkReset" ;
6
- export const HARDHAT_NETWORK_REVERT_SNAPSHOT_EVENT =
7
- "hardhatNetworkRevertSnapshot" ;
5
+ export const EDR_NETWORK_RESET_EVENT = "hardhatNetworkReset" ;
6
+ export const EDR_NETWORK_REVERT_SNAPSHOT_EVENT = "hardhatNetworkRevertSnapshot" ;
8
7
9
8
export const GENERIC_CHAIN_TYPE = "generic" ;
10
9
export const L1_CHAIN_TYPE = "l1" ;
You can’t perform that action at this time.
0 commit comments