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...");
// Récupération du compte de déploiement try {
const [deployer] = await ethers.getSigners(); // Utiliser directement l'API ethers depuis hardhat
console.log("Déploiement avec le compte:", deployer.address); const ethers = hre.ethers;
// Récupération du compte de déploiement
const [deployer] = await ethers.getSigners();
console.log("Déploiement avec le compte:", deployer.address);
// Compilation du contrat // Compilation du contrat
const Voting = await ethers.getContractFactory("Voting"); const Voting = await ethers.getContractFactory("Voting");
// Déploiement du contrat // Déploiement du contrat
const voting = await Voting.deploy(); const voting = await Voting.deploy();
// Attente de la confirmation du déploiement // Attente de la confirmation du déploiement
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