diff --git a/.github/workflows/contracts-ecdsa.yml b/.github/workflows/contracts-ecdsa.yml index 4e20dc64c9..65438be546 100644 --- a/.github/workflows/contracts-ecdsa.yml +++ b/.github/workflows/contracts-ecdsa.yml @@ -175,7 +175,7 @@ jobs: run: yarn install --frozen-lockfile - name: Deploy contracts - run: yarn deploy:test + run: yarn deploy:local - name: Build Docker Image uses: ./.github/actions/docker-build-push diff --git a/.github/workflows/contracts-random-beacon.yml b/.github/workflows/contracts-random-beacon.yml index 2c6fd00a02..ae3fa1f751 100644 --- a/.github/workflows/contracts-random-beacon.yml +++ b/.github/workflows/contracts-random-beacon.yml @@ -173,7 +173,7 @@ jobs: run: yarn install --network-concurrency 1 --frozen-lockfile - name: Deploy contracts - run: yarn deploy:test + run: yarn deploy:local - name: Build Docker Image uses: ./.github/actions/docker-build-push diff --git a/.github/workflows/npm-ecdsa.yml b/.github/workflows/npm-ecdsa.yml index 058b2a194c..b27b1cd4b3 100644 --- a/.github/workflows/npm-ecdsa.yml +++ b/.github/workflows/npm-ecdsa.yml @@ -38,9 +38,9 @@ jobs: @threshold-network/solidity-contracts # Deploy contracts to a local network to generate deployment artifacts that - # are required by dashboard and client compilation. + # are required by client compilation. - name: Deploy contracts - run: yarn deploy:test --network hardhat --write true + run: yarn deploy:local --network hardhat --write true - name: Bump up package version id: npm-version-bump diff --git a/.github/workflows/npm-random-beacon.yml b/.github/workflows/npm-random-beacon.yml index d046520aad..36a84a52f8 100644 --- a/.github/workflows/npm-random-beacon.yml +++ b/.github/workflows/npm-random-beacon.yml @@ -37,9 +37,9 @@ jobs: @threshold-network/solidity-contracts # Deploy contracts to a local network to generate deployment artifacts that - # are required by dashboard and client compilation. + # are required by client compilation. - name: Deploy contracts - run: yarn deploy:test --network hardhat --write true + run: yarn deploy:local --network hardhat --write true - name: Bump up package version id: npm-version-bump diff --git a/solidity/ecdsa/package.json b/solidity/ecdsa/package.json index f5880a5384..1751db51de 100644 --- a/solidity/ecdsa/package.json +++ b/solidity/ecdsa/package.json @@ -29,7 +29,7 @@ "build": "hardhat compile", "test": "USE_EXTERNAL_DEPLOY=true TEST_USE_STUBS_ECDSA=true hardhat test", "deploy": "hardhat deploy --export export.json", - "deploy:test": "USE_EXTERNAL_DEPLOY=true TEST_USE_STUBS_ECDSA=true hardhat deploy", + "deploy:local": "USE_EXTERNAL_DEPLOY=true hardhat deploy", "prepack": "tsc -p tsconfig.export.json && hardhat export-artifacts --including-no-public-functions export/artifacts", "prepublishOnly": "hardhat prepare-artifacts --network $npm_config_network" }, diff --git a/solidity/random-beacon/package.json b/solidity/random-beacon/package.json index f99d432039..644de1f4ae 100644 --- a/solidity/random-beacon/package.json +++ b/solidity/random-beacon/package.json @@ -18,7 +18,7 @@ "build": "hardhat compile", "test": "hardhat check-accounts-count && USE_EXTERNAL_DEPLOY=true TEST_USE_STUBS_BEACON=true hardhat test", "deploy": "hardhat deploy --export export.json", - "deploy:test": "USE_EXTERNAL_DEPLOY=true hardhat deploy", + "deploy:local": "USE_EXTERNAL_DEPLOY=true hardhat deploy", "format": "npm run lint", "format:fix": "npm run lint:fix", "lint": "npm run lint:eslint && npm run lint:sol && npm run lint:config",