diff --git a/.github/workflows/contracts.yml b/.github/workflows/contracts.yml index 85f0ebdd0..03bf68352 100644 --- a/.github/workflows/contracts.yml +++ b/.github/workflows/contracts.yml @@ -128,7 +128,7 @@ jobs: run: yarn install --frozen-lockfile - name: Deploy contracts - run: yarn deploy:test + run: yarn deploy:local contracts-deployment-testnet: needs: [contracts-build-and-test] diff --git a/.github/workflows/npm-contracts.yml b/.github/workflows/npm-contracts.yml index de1a06b2b..3745d905c 100644 --- a/.github/workflows/npm-contracts.yml +++ b/.github/workflows/npm-contracts.yml @@ -45,9 +45,9 @@ jobs: @keep-network/tbtc # Deploy contracts to a local network to generate deployment artifacts that - # are required by dashboard 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/package.json b/solidity/package.json index 3b23d4904..ef2211e3d 100644 --- a/solidity/package.json +++ b/solidity/package.json @@ -16,7 +16,7 @@ "clean": "hardhat clean && rm -rf cache/ export/ external/npm export.json", "build": "hardhat compile", "deploy": "hardhat deploy --export export.json", - "deploy:test": "USE_EXTERNAL_DEPLOY=true TEST_USE_STUBS_TBTC=true hardhat deploy", + "deploy:local": "USE_EXTERNAL_DEPLOY=true hardhat deploy", "format": "npm run lint && prettier --check .", "format:fix": "npm run lint:fix && prettier --write .", "lint": "npm run lint:eslint && npm run lint:sol",