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

fixed e

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