File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,9 @@ LINEA_RPC=https://linea-rpc.publicnode.com
3838# Etherscan now uses a single API key for all chains.
3939ETHERSCAN_API_KEY =
4040
41- USDC_OWNER_ADDRESS = 0x498581fF718922c3f8e6A244956aF099B2652b2b
41+ # Testing parameters.
42+ FORK_PROVIDER = https://base-mainnet.public.blastapi.io
43+ USDC_OWNER_ADDRESS = 0x498581fFF718922c3f8e6A244956aF099B2652b2b
4244GHO_OWNER_ADDRESS = 0x498581fF718922c3f8e6A244956aF099B2652b2b
4345EURC_OWNER_ADDRESS = 0x498581fF718922c3f8e6A244956aF099B2652b2b
4446WETH_OWNER_ADDRESS = 0x498581fF718922c3f8e6A244956aF099B2652b2b
Original file line number Diff line number Diff line change @@ -698,8 +698,8 @@ const config: HardhatUserConfig = {
698698 forking : {
699699 url : isSet ( process . env . DRY_RUN ) || isSet ( process . env . FORK_TEST )
700700 ? process . env [ `${ process . env . DRY_RUN || process . env . FORK_TEST } _RPC` ] !
701- : ( process . env . BASE_RPC || "https://base-mainnet.public.blastapi.io" ) ,
702- blockNumber : undefined ,
701+ : ( process . env . FORK_PROVIDER || process . env . BASE_RPC || "https://base-mainnet.public.blastapi.io" ) ,
702+ blockNumber : process . env . FORK_BLOCK_NUMBER ? parseInt ( process . env . FORK_BLOCK_NUMBER ) : undefined ,
703703 } ,
704704 accounts : isSet ( process . env . DRY_RUN )
705705 ? [ { privateKey : process . env . PRIVATE_KEY ! , balance : "1000000000000000000" } ]
You can’t perform that action at this time.
0 commit comments