From fb4a6c429c5950a224415023c508df6dad126c10 Mon Sep 17 00:00:00 2001 From: Yuri Tkachenko Date: Thu, 12 Dec 2024 11:23:33 +0000 Subject: [PATCH] chore: add default pk for local devnet --- .env.example | 3 +++ globals.d.ts | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.env.example b/.env.example index b654199fde..6f43447a54 100644 --- a/.env.example +++ b/.env.example @@ -61,3 +61,6 @@ GAS_MAX_FEE=100 # Etherscan API key for verifying contracts ETHERSCAN_API_KEY= + +# Local devnet private key +LOCAL_DEVNET_PK=0x0000000000000000000000000000000000000000000000000000000000000000 diff --git a/globals.d.ts b/globals.d.ts index 77a941088e..ba0652a074 100644 --- a/globals.d.ts +++ b/globals.d.ts @@ -74,5 +74,8 @@ declare namespace NodeJS { /* for contract sourcecode verification with `hardhat-verify` */ ETHERSCAN_API_KEY?: string; + + /* for local devnet */ + LOCAL_DEVNET_PK?: string; } }