diff --git a/artifacts.json b/artifacts.json index ebfa00f7d..16a279dc7 100644 --- a/artifacts.json +++ b/artifacts.json @@ -125,13 +125,6 @@ "address": "0xCC52f17756C04bBa7E377716d7062fC36D7f69Fd", "txHash": "0xd9eb2eca684770e4d2b192709b6071875f75072a0ce794a582824ee907a704f3" }, - { - "artifactPath": "artifacts/contracts/0.8.9/test_helpers/DummyEmptyContract.sol/DummyEmptyContract.json", - "sourcePath": "contracts/0.8.9/test_helpers/DummyEmptyContract.sol", - "name": "DummyEmptyContract", - "address": "0x6F6541C2203196fEeDd14CD2C09550dA1CbEDa31", - "txHash": "0x9d76786f639bd18365f10c087444761db5dafd0edc85c5c1a3e90219f2d1331d" - }, { "artifactPath": "artifacts/contracts/0.8.9/EIP712StETH.sol/EIP712StETH.json", "sourcePath": "contracts/0.8.9/EIP712StETH.sol", diff --git a/scripts/extract-artifacts.js b/scripts/extract-artifacts.js index f21a59e61..b00f9194c 100644 --- a/scripts/extract-artifacts.js +++ b/scripts/extract-artifacts.js @@ -6,6 +6,7 @@ const artifactsPath = path.resolve(__dirname, '..', artifactsFileName) const deployedFileName = 'deployed-mainnet.json' const deployedPath = path.resolve(__dirname, '..', deployedFileName) +const stateKeysToIgnore = ['dummyEmptyContract'] const additionalArtifacts = [ { "artifactPath": "artifacts/contracts/0.6.11/deposit_contract.sol/DepositContract.json", @@ -44,6 +45,8 @@ async function extractArtifacts() { let artifacts = [] for (const key in state) { + if (stateKeysToIgnore.indexOf(key) > -1) continue + const contractInfo = state[key] if (isValidContractInfo(contractInfo.proxy)) { artifacts.push(getArtifactFromContractInfo(contractInfo.proxy))