-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed to Base Sepolia, modified hardhat config, modified deploy sc…
…ript for Base Sepolia
- Loading branch information
1 parent
0139daf
commit f021c94
Showing
7 changed files
with
53,924 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,29 @@ | ||
import { HardhatUserConfig } from "hardhat/config"; | ||
import "@nomicfoundation/hardhat-toolbox"; | ||
|
||
const ALCHEMY_BASE_MAINNET_API_KEY: string = process.env.ALCHEMY_API_KEY!!; | ||
const BASE_ENGINEERING_DEPLOYER_PRIVATE_KEY: string = process.env.BASE_ENGINEERING_DEPLOYER_PRIVATE_KEY!!; | ||
const ALCHEMY_BASE_SEPLOYIA_API_KEY: string = process.env.ALCHEMY_BASE_SEPOLIA_API_KEY!!; | ||
const BASESCAN_BASED_WHALE_API_KEY: string = process.env.BASESCAN_BASED_WHALE_API_KEY!!; | ||
|
||
const config: HardhatUserConfig = { | ||
solidity: "0.8.24", | ||
networks: { | ||
hardhat: { | ||
forking: { | ||
url: `https://base-mainnet.g.alchemy.com/v2/${process.env.ALCHEMY_API_KEY}`, | ||
url: `https://base-mainnet.g.alchemy.com/v2/${ALCHEMY_BASE_MAINNET_API_KEY}`, | ||
blockNumber: 15972484 | ||
} | ||
} | ||
} | ||
}, | ||
}, | ||
// Base Sepolia | ||
sepolia: { | ||
url: `https://base-sepolia.g.alchemy.com/v2/${ALCHEMY_BASE_SEPLOYIA_API_KEY}`, | ||
accounts: [BASE_ENGINEERING_DEPLOYER_PRIVATE_KEY], | ||
}, | ||
}, | ||
etherscan: { | ||
apiKey: BASESCAN_BASED_WHALE_API_KEY, | ||
}, | ||
}; | ||
|
||
export default config; |
4 changes: 4 additions & 0 deletions
4
ignition/deployments/chain-84532/artifacts/BasedWhale#BasedWhale.dbg.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"_format": "hh-sol-dbg-1", | ||
"buildInfo": "../build-info/20347fb4e2fe24b67c06bbc7cb0f9af4.json" | ||
} |
Oops, something went wrong.