Fix infra test deploy (#402)

nambrot/yo-deploy
Nam Chu Hoai 3 years ago committed by GitHub
parent 301df65edd
commit 6f74c6bb0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      typescript/infra/hardhat.config.ts
  2. 4
      typescript/infra/package.json

@ -74,10 +74,7 @@ task('abacus', 'Deploys abacus on top of an already running Hardhat Network')
signer,
);
const deployer = new AbacusCoreDeployer(
multiProvider,
config.core.validatorManagers,
);
const deployer = new AbacusCoreDeployer(multiProvider, config.core);
const addresses = await deployer.deploy();
// Write configs

@ -20,8 +20,8 @@
"test": "hardhat test",
"check": "tsc --noEmit",
"node": "hardhat node",
"abacus": "hardhat abacus --environment test",
"kathy": "hardhat kathy --environment test --network localhost",
"abacus": "hardhat abacus --network localhost",
"kathy": "hardhat kathy --network localhost",
"prettier": "prettier --write *.ts ./src ./config ./scripts ./test"
},
"license": "MIT OR Apache-2.0",

Loading…
Cancel
Save