Commit 2909ae74 authored by timothe 2004's avatar timothe 2004

t

parent 0de29dc9
Pipeline #3113 canceled with stages
// Script de déploiement du contrat Voting // Script de déploiement du contrat Voting
const { ethers } = require("hardhat"); const hre = require("hardhat");
async function main() { async function main() {
console.log("Déploiement du contrat Voting..."); console.log("Déploiement du contrat Voting...");
try {
// Utiliser directement l'API ethers depuis hardhat
const ethers = hre.ethers;
// Récupération du compte de déploiement // Récupération du compte de déploiement
const [deployer] = await ethers.getSigners(); const [deployer] = await ethers.getSigners();
console.log("Déploiement avec le compte:", deployer.address); console.log("Déploiement avec le compte:", deployer.address);
...@@ -17,6 +21,10 @@ async function main() { ...@@ -17,6 +21,10 @@ async function main() {
await voting.deployed(); await voting.deployed();
console.log("Contrat Voting déployé à l'adresse:", voting.address); console.log("Contrat Voting déployé à l'adresse:", voting.address);
} catch (error) {
console.error("Erreur détaillée:", error);
throw error;
}
} }
// Exécution du script de déploiement avec gestion des erreurs // Exécution du script de déploiement avec gestion des erreurs
......
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