Skip to content

Commit

Permalink
chore: use the basescan explorer for mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
chechu committed Dec 14, 2024
1 parent feaf5d9 commit acd5b79
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ extendConfig((config: HardhatConfig) => {
"node_modules/@venusprotocol/governance-contracts/deployments/basesepolia",
"node_modules/@venusprotocol/oracle/deployments/basesepolia",
],
basemainnet: [
// TODO: "node_modules/@venusprotocol/governance-contracts/deployments/basemainnet",
// TODO: "node_modules/@venusprotocol/oracle/deployments/basemainnet",
],
},
};
}
Expand Down Expand Up @@ -188,7 +192,7 @@ const config: HardhatUserConfig = {
url: process.env.ARCHIVE_NODE_basemainnet || "https://mainnet.base.org",
chainId: 8453,
live: true,
accounts: process.env.DEPLOYER_PRIVATE_KEY ? [`0x${process.env.DEPLOYER_PRIVATE_KEY}`] : [],
accounts: DEPLOYER_PRIVATE_KEY ? [`0x${DEPLOYER_PRIVATE_KEY}`] : [],
},
},
gasReporter: {
Expand Down Expand Up @@ -289,7 +293,7 @@ const config: HardhatUserConfig = {
network: "basemainnet",
chainId: 8453,
urls: {
apiURL: "https://mainnet.base.org",
apiURL: "https://api.basescan.org/api",
browserURL: "https://basescan.org/",
},
},
Expand Down

0 comments on commit acd5b79

Please sign in to comment.