Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1234 from EspressoSystems/hardhat-remove-hardcode…
Browse files Browse the repository at this point in the history
…d-fees

hardhat: remove hardcoded fees
  • Loading branch information
sveitser authored Nov 11, 2022
2 parents fcc45d7 + a2c0708 commit 0c96eb4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/arm-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
access_token: ${{ github.token }}

- uses: cachix/cachix-action@v10
- uses: cachix/cachix-action@v12
with:
name: espresso-systems-private
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
access_token: ${{ github.token }}

- uses: cachix/cachix-action@v10
- uses: cachix/cachix-action@v12
with:
name: espresso-systems-private
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/slither.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
access_token: ${{ github.token }}

- name: Install Nix
uses: cachix/install-nix-action@v17
uses: cachix/install-nix-action@v18

- uses: cachix/cachix-action@v10
- uses: cachix/cachix-action@v12
with:
name: espresso-systems-private
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slow-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
access_token: ${{ github.token }}

- uses: cachix/cachix-action@v10
- uses: cachix/cachix-action@v12
with:
name: espresso-systems-private
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
Expand Down
3 changes: 0 additions & 3 deletions contracts/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,19 +73,16 @@ const config: HardhatUserConfig = {
},
rinkeby: {
url: process.env.RINKEBY_URL,
gasPrice: 2_000_000_000,
accounts: { mnemonic: process.env.RINKEBY_MNEMONIC },
tags: ["public"],
},
goerli: {
url: process.env.GOERLI_URL,
gasPrice: 2_000_000_000,
accounts: { mnemonic: process.env.GOERLI_MNEMONIC },
tags: ["public"],
},
arbitrum_goerli: {
url: "https://goerli-rollup.arbitrum.io/rpc",
gasPrice: 100_000_000,
accounts: { mnemonic: process.env.GOERLI_MNEMONIC },
},
localhost: {
Expand Down

0 comments on commit 0c96eb4

Please sign in to comment.