Skip to content

Commit 47c4228

Browse files
authored
Merge pull request #5489 from NomicFoundation/two-renames
Two small renames
2 parents 023b195 + c901bd2 commit 47c4228

File tree

10 files changed

+124
-115
lines changed

10 files changed

+124
-115
lines changed

v-next/core/src/index.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ import type { HardhatRuntimeEnvironment } from "./types/hre.js";
66
import { HardhatRuntimeEnvironmentImplementation } from "./internal/hre.js";
77

88
/**
9-
* Creates an instances of the Hardhat Runtime Environment.
9+
* Creates an instances of the Hardhat Runtime Environment without any of the
10+
* built-in plugins.
11+
*
12+
* To get the built-in plugins, use `createHardhatRuntimeEnvironment` from
13+
* `hardhat/hre` instead.
1014
*
1115
* @param config - The user's Hardhat configuration.
1216
* @param userProvidedGlobalOptions - The global options provided by the
@@ -15,7 +19,7 @@ import { HardhatRuntimeEnvironmentImplementation } from "./internal/hre.js";
1519
* redoing it in the CLI. Should only be used in the official CLI.
1620
* @returns The Hardhat Runtime Environment.
1721
*/
18-
export async function createHardhatRuntimeEnvironment(
22+
export async function createBaseHardhatRuntimeEnvironment(
1923
config: HardhatUserConfig,
2024
userProvidedGlobalOptions: Partial<GlobalOptions> = {},
2125
unsafeOptions?: UnsafeHardhatRuntimeEnvironmentOptions,

0 commit comments

Comments
 (0)