Created
January 28, 2025 11:25
-
-
Save CepIbp1950/bf9ad3147a93a053e97ac68c3c52db9c to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.26+commit.8a97fa7a.js&optimize=false&runs=200&gist=
This file contains hidden or 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
require("dotenv").config() | |
require("@nomicfoundation/hardhat-toolbox") | |
const privateKey = process.env.PRIVATE_KEY || "" | |
/** @type import('hardhat/config').HardhatUserConfig */ | |
module.exports = { | |
solidity: "0.8.18", | |
networks: { | |
hardhat: { | |
forking: { | |
url: `https://arb-mainnet.g.alchemy.com/v2/${bHz1Ue2GPYnyY5iSxRTJqr9ztIlUj9jB}`, | |
blockNumber: 223528000 | |
}, | |
} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment