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
3c982c58
Commit
3c982c58
authored
Mar 23, 2025
by
Quentin Hamitouche
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix index signature errors
parent
eb3cfb5e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
15 deletions
+16
-15
contract.service.ts
frontend-angular/src/app/services/contract.service.ts
+16
-15
No files found.
frontend-angular/src/app/services/contract.service.ts
View file @
3c982c58
...
...
@@ -113,19 +113,19 @@ export class ContractService {
this
.
contract
=
new
ethers
.
Contract
(
this
.
contractAddress
,
VOTING_ABI
,
this
.
signer
);
// Récupérer le propriétaire du contrat
const
owner
=
await
this
.
contract
.
owner
();
const
owner
=
await
this
.
contract
[
'owner'
]
();
const
account
=
this
.
accountSubject
.
getValue
();
this
.
isOwnerSubject
.
next
(
account
?.
toLowerCase
()
===
owner
.
toLowerCase
());
// Récupérer le statut actuel du workflow
const
status
=
await
this
.
contract
.
workflowStatus
();
const
status
=
await
this
.
contract
[
'workflowStatus'
]
();
this
.
currentStatusSubject
.
next
(
status
.
toString
());
// Vérifier si l'utilisateur est un électeur inscrit
try
{
if
(
account
)
{
const
voter
=
await
this
.
contract
.
getVoter
(
account
);
const
voter
=
await
this
.
contract
[
'getVoter'
]
(
account
);
this
.
isVoterSubject
.
next
(
voter
.
isRegistered
);
}
else
{
this
.
isVoterSubject
.
next
(
false
);
...
...
@@ -192,7 +192,8 @@ export class ContractService {
throw
new
Error
(
'Contrat non initialisé'
);
}
const
tx
=
await
this
.
contract
.
registerVoter
(
voterAddress
);
const
tx
=
await
this
.
contract
[
'registerVoter'
](
voterAddress
);
await
tx
.
wait
();
this
.
loadingSubject
.
next
(
false
);
...
...
@@ -212,7 +213,7 @@ export class ContractService {
throw
new
Error
(
'Contrat non initialisé'
);
}
const
tx
=
await
this
.
contract
.
startProposalsRegistration
(
durationInMinutes
);
const
tx
=
await
this
.
contract
[
'startProposalsRegistration'
]
(
durationInMinutes
);
await
tx
.
wait
();
this
.
loadingSubject
.
next
(
false
);
...
...
@@ -232,7 +233,7 @@ export class ContractService {
throw
new
Error
(
'Contrat non initialisé'
);
}
const
tx
=
await
this
.
contract
.
endProposalsRegistration
();
const
tx
=
await
this
.
contract
[
'endProposalsRegistration'
]
();
await
tx
.
wait
();
this
.
loadingSubject
.
next
(
false
);
...
...
@@ -252,7 +253,7 @@ export class ContractService {
throw
new
Error
(
'Contrat non initialisé'
);
}
const
tx
=
await
this
.
contract
.
registerProposal
(
description
);
const
tx
=
await
this
.
contract
[
'registerProposal'
]
(
description
);
await
tx
.
wait
();
this
.
loadingSubject
.
next
(
false
);
...
...
@@ -272,7 +273,7 @@ export class ContractService {
throw
new
Error
(
'Contrat non initialisé'
);
}
const
tx
=
await
this
.
contract
.
startVotingSession
(
durationInMinutes
);
const
tx
=
await
this
.
contract
[
'startVotingSession'
]
(
durationInMinutes
);
await
tx
.
wait
();
this
.
loadingSubject
.
next
(
false
);
...
...
@@ -292,7 +293,7 @@ export class ContractService {
throw
new
Error
(
'Contrat non initialisé'
);
}
const
tx
=
await
this
.
contract
.
endVotingSession
();
const
tx
=
await
this
.
contract
[
'endVotingSession'
]
();
await
tx
.
wait
();
this
.
loadingSubject
.
next
(
false
);
...
...
@@ -312,7 +313,7 @@ export class ContractService {
throw
new
Error
(
'Contrat non initialisé'
);
}
const
tx
=
await
this
.
contract
.
vote
(
proposalId
);
const
tx
=
await
this
.
contract
[
'vote'
]
(
proposalId
);
await
tx
.
wait
();
this
.
loadingSubject
.
next
(
false
);
...
...
@@ -332,7 +333,7 @@ export class ContractService {
throw
new
Error
(
'Contrat non initialisé'
);
}
const
tx
=
await
this
.
contract
.
delegateVoteTo
(
delegateAddress
);
const
tx
=
await
this
.
contract
[
'delegateVoteTo'
]
(
delegateAddress
);
await
tx
.
wait
();
this
.
loadingSubject
.
next
(
false
);
...
...
@@ -352,7 +353,7 @@ export class ContractService {
throw
new
Error
(
'Contrat non initialisé'
);
}
const
tx
=
await
this
.
contract
.
tallyVotes
();
const
tx
=
await
this
.
contract
[
'tallyVotes'
]
();
await
tx
.
wait
();
this
.
loadingSubject
.
next
(
false
);
...
...
@@ -369,11 +370,11 @@ export class ContractService {
throw
new
Error
(
'Contrat non initialisé'
);
}
const
count
=
await
this
.
contract
.
getProposalsCount
();
const
count
=
await
this
.
contract
[
'getProposalsCount'
]
();
const
proposals
=
[];
for
(
let
i
=
0
;
i
<
count
;
i
++
)
{
const
proposal
=
await
this
.
contract
.
getProposal
(
i
);
const
proposal
=
await
this
.
contract
[
'getProposal'
]
(
i
);
proposals
.
push
({
id
:
i
,
description
:
proposal
.
description
,
...
...
@@ -395,7 +396,7 @@ export class ContractService {
throw
new
Error
(
'Contrat non initialisé'
);
}
const
voter
=
await
this
.
contract
.
getVoter
(
address
);
const
voter
=
await
this
.
contract
[
'getVoter'
]
(
address
);
return
{
isRegistered
:
voter
.
isRegistered
,
hasVoted
:
voter
.
hasVoted
,
...
...
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