Commit 0de29dc9 authored by timothe 2004's avatar timothe 2004

err fixed

parent 7690a9ca
Pipeline #3112 canceled with stages
// Script de déploiement du contrat Voting
const hre = require("hardhat");
const { ethers } = require("hardhat");
async function main() {
console.log("Déploiement du contrat Voting...");
// Récupération du compte de déploiement
const [deployer] = await hre.ethers.getSigners();
const [deployer] = await ethers.getSigners();
console.log("Déploiement avec le compte:", deployer.address);
// Compilation du contrat
const Voting = await hre.ethers.getContractFactory("Voting");
const Voting = await ethers.getContractFactory("Voting");
// Déploiement du contrat
const voting = await Voting.deploy();
......
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