diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b4b9e2d..b75983c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,7 +2,7 @@ name: Release on: push: branches: - - master + - main - beta jobs: release: diff --git a/package.json b/package.json index f2745dc..efd84e9 100644 --- a/package.json +++ b/package.json @@ -97,7 +97,7 @@ }, "scripts": { "build:contracts": "hardhat compile", - "build:src": "rm -rf ./lib && typechain --target=ethers-v6 --out-dir typechainV6 artifacts/**/Config.json artifacts/**/EntitiesRegistry.json artifacts/**/Market.json && tsc -p ./tsconfig.build.json", + "build:src": "rm -rf ./lib && typechain --target=ethers-v6 --out-dir typechainV6 ./artifacts/contracts/Config.sol/Config.json ./artifacts/contracts/EntitiesRegistry.sol/EntitiesRegistry.json ./artifacts/contracts/Market.sol/Market.json && tsc -p ./tsconfig.build.json", "test:contracts": "hardhat test", "test:src": "mocha -t 60000 --extension spec.ts test/src", "lint": "solhint . && eslint --ext .ts",