Skip to content

Commit

Permalink
chore: use drpc endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
gosuto-inzasheru committed Sep 25, 2024
1 parent e554361 commit bdcc6b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ module.exports = {
{
hardhat: {
forking: {
url: `https://polygon-mainnet.g.alchemy.com/v2/${process.env.ALCHEMY_KEY}`,
url: `https://lb.drpc.org/ogrpc?network=polygon&dkey=${process.env.DRPC_KEY}`,
}
},
base: {
url: 'https://mainnet.base.org',
url: `https://lb.drpc.org/ogrpc?network=base&dkey=${process.env.DRPC_KEY}`,
accounts: [process.env.PRIVATE_KEY],
gasPrice: 1000000000,
},
polygon: {
url: `https://polygon-mainnet.g.alchemy.com/v2/${process.env.ALCHEMY_KEY}`,
url: `https://lb.drpc.org/ogrpc?network=polygon&dkey=${process.env.DRPC_KEY}`,
accounts: [process.env.PRIVATE_KEY],
},
},
Expand Down

0 comments on commit bdcc6b0

Please sign in to comment.