From a70aa2e5519c7ca658c8f76f48c66beaf4440743 Mon Sep 17 00:00:00 2001 From: Alex Vega Date: Fri, 6 Feb 2026 17:15:35 +0700 Subject: [PATCH] chore: remove deprecated hardhat-etherscan and add .env.example - Remove unused @nomiclabs/hardhat-etherscan devDependency (replaced by @nomicfoundation/hardhat-verify) - Add .env.example with all required environment variables for developer onboarding Relates to #109 --- .env.example | 10 ++++++++++ package.json | 1 - 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 00000000..2410c60e --- /dev/null +++ b/.env.example @@ -0,0 +1,10 @@ +# Deployer private key (never commit the real key) +PRIVATE_KEY= + +# RPC URLs +BASE_SEPOLIA_RPC_URL= +BASE_RPC_URL= +CELO_RPC_URL= + +# Block explorer API keys (for contract verification) +BASE_API_KEY= diff --git a/package.json b/package.json index b992f46f..921d7b9c 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,6 @@ "@nomicfoundation/hardhat-chai-matchers": "^1.0.6", "@nomicfoundation/hardhat-network-helpers": "^1.0.10", "@nomicfoundation/hardhat-verify": "^2.0.14", - "@nomiclabs/hardhat-etherscan": "^3.1.7", "@types/chai": "^4.3.4", "@types/chai-as-promised": "^7.1.4", "@types/mocha": "^10.0.1",