Commit 6b15f496 authored by timothe 2004's avatar timothe 2004

fixed e

parent 12eb330a
Pipeline #3115 canceled with stages
/**
* @type import('hardhat/config').HardhatUserConfig
*/
require("@nomicfoundation/hardhat-ethers");
module.exports = {
solidity: {
version: "0.8.20",
......
// Script de déploiement du contrat Voting
const hre = require("hardhat");
const ethers = require("ethers");
async function main() {
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
const [deployer] = await ethers.getSigners();
const [deployer] = await hre.ethers.getSigners();
console.log("Déploiement avec le compte:", deployer.address);
// Compilation du contrat
const Voting = await ethers.getContractFactory("Voting");
const Voting = await hre.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