Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CI
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Guillaume DEWISME
CI
Commits
6b15f496
Commit
6b15f496
authored
Mar 19, 2025
by
timothe 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed e
parent
12eb330a
Pipeline
#3115
canceled with stages
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
hardhat.config.js
hardhat.config.js
+2
-0
deploy.js
scripts/deploy.js
+3
-5
No files found.
hardhat.config.js
View file @
6b15f496
/**
/**
* @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"
,
...
...
scripts/deploy.js
View file @
6b15f496
// 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
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment