Skip to content

fix etherscan api key name for ethereum mainnet #124

fix etherscan api key name for ethereum mainnet

fix etherscan api key name for ethereum mainnet #124

Workflow file for this run

name: Hardhat Tests
on:
push:
branches:
- main # Trigger the workflow on pushes to the main branch
tags:
- "**" # Trigger the workflow on tags including hierarchical tags like v1.0/beta
pull_request:
types: [opened, synchronize] # Trigger the workflow when a PR is opened or updated
jobs:
tests:
name: Run Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Install packages
uses: actions/setup-node@v4
with:
node-version: "18.x"
- run: npm ci
shell: bash
- name: Run Tests
run: npm run test