Commit 90a12fa9 authored by Quentin Hamitouche's avatar Quentin Hamitouche

Fix deploy script

parent bf1fc45d
......@@ -2,32 +2,20 @@
const hre = require("hardhat");
async function main() {
console.log("Déploiement du contrat Voting...");
const [deployer] = await hre.ethers.getSigners();
console.log("Deploying contracts with the account:", deployer.address);
try {
// Récupération du compte de déploiement
const [deployer] = await hre.ethers.getSigners();
console.log("Déploiement avec le compte:", deployer.address);
const Voting = await hre.ethers.getContractFactory("Voting");
// Compilation du contrat
const Voting = await hre.ethers.getContractFactory("Voting");
// Déploiement du contrat
const voting = await Voting.deploy();
// Attente de la confirmation du déploiement
await voting.deployed();
console.log("Contrat Voting déployé à l'adresse:", voting.address);
} catch (error) {
console.error("Erreur détaillée:", error);
throw error;
}
const voting = await Voting.deploy(deployer.address);
const address = await voting.getAddress()
console.log("Voting contract deployed to:", address);
}
// Exécution du script de déploiement avec gestion des erreurs
main()
.then(() => process.exit(0))
.catch((error) => {
console.error("Erreur lors du déploiement:", error);
process.exit(1);
});
\ No newline at end of file
console.error(error);
process.exit(1);
});
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment