diff --git a/hardhat.config.ts b/hardhat.config.ts index 54434ba..c45ae81 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -126,11 +126,17 @@ const config: HardhatUserConfig = { }, tbaseeth: { url: 'https://sepolia.base.org', - accounts: [`${PRIVATE_KEY_FOR_V4_CONTRACT_DEPLOYMENT}`] + accounts: [ + `${PRIVATE_KEY_FOR_V1_WALLET_CONTRACT_DEPLOYMENT}`, + `${PRIVATE_KEY_FOR_V4_CONTRACT_DEPLOYMENT_BACKUP}` + ] }, baseeth: { url: 'https://mainnet.base.org/', - accounts: [`${PRIVATE_KEY_FOR_V4_CONTRACT_DEPLOYMENT}`] + accounts: [ + `${PRIVATE_KEY_FOR_V1_WALLET_CONTRACT_DEPLOYMENT}`, + `${PRIVATE_KEY_FOR_V4_CONTRACT_DEPLOYMENT_BACKUP}` + ] }, tbera: { url: `https://bartio.rpc.berachain.com/`, diff --git a/package.json b/package.json index 53fac50..b0d6257 100644 --- a/package.json +++ b/package.json @@ -9,8 +9,8 @@ "test": "test" }, "scripts": { - "deploy-prod": "hardhat run scripts/deploy.ts --network", - "deploy-test": "hardhat run scripts/deploy.ts --network", + "deploy-prod": "hardhat run scripts/deployV1FactoryContracts.ts --network", + "deploy-test": "hardhat run scripts/deployV1FactoryContracts.ts --network", "test": "hardhat test", "coverage": "hardhat coverage", "solhint": "./node_modules/.bin/solhint --fix 'contracts/**/*.sol'",