Skip to content

Commit 5557888

Browse files
committed
refactor: rename hardhat network "test" to "custom"
The name "test" was misleading as it implied a specific testnet, but the network's RPC URL is entirely user-defined via RPC_URL env var. Rename to "custom" to better reflect its purpose.
1 parent be2a280 commit 5557888

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kms/auth-eth/hardhat.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const config: HardhatUserConfig = {
4040
url: 'https://mainnet.base.org',
4141
accounts: [PRIVATE_KEY],
4242
},
43-
test: {
43+
custom: {
4444
url: process.env.RPC_URL || 'http://127.0.0.1:8545/',
4545
accounts: [PRIVATE_KEY],
4646
}

0 commit comments

Comments
 (0)