Skip to content

Commit

Permalink
Merge branch 'main' into issue/33/getWeeklySPend
Browse files Browse the repository at this point in the history
  • Loading branch information
gosuto-inzasheru authored Sep 25, 2024
2 parents 7698893 + 6cbc8d1 commit c1777ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [pull_request]

env:
PRIVATE_KEY: ${{ secrets.DUMMY_PKEY }}
ALCHEMY_KEY: ${{ secrets.ALCHEMY_KEY }}
DRPC_KEY: ${{ secrets.DRPC_KEY }}

jobs:
test:
Expand Down
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 c1777ad

Please sign in to comment.