Commit 3c982c58 authored by Quentin Hamitouche's avatar Quentin Hamitouche

Fix index signature errors

parent eb3cfb5e
...@@ -113,19 +113,19 @@ export class ContractService { ...@@ -113,19 +113,19 @@ export class ContractService {
this.contract = new ethers.Contract(this.contractAddress, VOTING_ABI, this.signer); this.contract = new ethers.Contract(this.contractAddress, VOTING_ABI, this.signer);
// Récupérer le propriétaire du contrat // 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(); const account = this.accountSubject.getValue();
this.isOwnerSubject.next(account?.toLowerCase() === owner.toLowerCase()); this.isOwnerSubject.next(account?.toLowerCase() === owner.toLowerCase());
// Récupérer le statut actuel du workflow // 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()); this.currentStatusSubject.next(status.toString());
// Vérifier si l'utilisateur est un électeur inscrit // Vérifier si l'utilisateur est un électeur inscrit
try { try {
if (account) { if (account) {
const voter = await this.contract.getVoter(account); const voter = await this.contract['getVoter'](account);
this.isVoterSubject.next(voter.isRegistered); this.isVoterSubject.next(voter.isRegistered);
} else { } else {
this.isVoterSubject.next(false); this.isVoterSubject.next(false);
...@@ -192,7 +192,8 @@ export class ContractService { ...@@ -192,7 +192,8 @@ export class ContractService {
throw new Error('Contrat non initialisé'); throw new Error('Contrat non initialisé');
} }
const tx = await this.contract.registerVoter(voterAddress); const tx = await this.contract[
'registerVoter'](voterAddress);
await tx.wait(); await tx.wait();
this.loadingSubject.next(false); this.loadingSubject.next(false);
...@@ -212,7 +213,7 @@ export class ContractService { ...@@ -212,7 +213,7 @@ export class ContractService {
throw new Error('Contrat non initialisé'); throw new Error('Contrat non initialisé');
} }
const tx = await this.contract.startProposalsRegistration(durationInMinutes); const tx = await this.contract['startProposalsRegistration'](durationInMinutes);
await tx.wait(); await tx.wait();
this.loadingSubject.next(false); this.loadingSubject.next(false);
...@@ -232,7 +233,7 @@ export class ContractService { ...@@ -232,7 +233,7 @@ export class ContractService {
throw new Error('Contrat non initialisé'); throw new Error('Contrat non initialisé');
} }
const tx = await this.contract.endProposalsRegistration(); const tx = await this.contract['endProposalsRegistration']();
await tx.wait(); await tx.wait();
this.loadingSubject.next(false); this.loadingSubject.next(false);
...@@ -252,7 +253,7 @@ export class ContractService { ...@@ -252,7 +253,7 @@ export class ContractService {
throw new Error('Contrat non initialisé'); throw new Error('Contrat non initialisé');
} }
const tx = await this.contract.registerProposal(description); const tx = await this.contract['registerProposal'](description);
await tx.wait(); await tx.wait();
this.loadingSubject.next(false); this.loadingSubject.next(false);
...@@ -272,7 +273,7 @@ export class ContractService { ...@@ -272,7 +273,7 @@ export class ContractService {
throw new Error('Contrat non initialisé'); throw new Error('Contrat non initialisé');
} }
const tx = await this.contract.startVotingSession(durationInMinutes); const tx = await this.contract['startVotingSession'](durationInMinutes);
await tx.wait(); await tx.wait();
this.loadingSubject.next(false); this.loadingSubject.next(false);
...@@ -292,7 +293,7 @@ export class ContractService { ...@@ -292,7 +293,7 @@ export class ContractService {
throw new Error('Contrat non initialisé'); throw new Error('Contrat non initialisé');
} }
const tx = await this.contract.endVotingSession(); const tx = await this.contract['endVotingSession']();
await tx.wait(); await tx.wait();
this.loadingSubject.next(false); this.loadingSubject.next(false);
...@@ -312,7 +313,7 @@ export class ContractService { ...@@ -312,7 +313,7 @@ export class ContractService {
throw new Error('Contrat non initialisé'); throw new Error('Contrat non initialisé');
} }
const tx = await this.contract.vote(proposalId); const tx = await this.contract['vote'](proposalId);
await tx.wait(); await tx.wait();
this.loadingSubject.next(false); this.loadingSubject.next(false);
...@@ -332,7 +333,7 @@ export class ContractService { ...@@ -332,7 +333,7 @@ export class ContractService {
throw new Error('Contrat non initialisé'); throw new Error('Contrat non initialisé');
} }
const tx = await this.contract.delegateVoteTo(delegateAddress); const tx = await this.contract['delegateVoteTo'](delegateAddress);
await tx.wait(); await tx.wait();
this.loadingSubject.next(false); this.loadingSubject.next(false);
...@@ -352,7 +353,7 @@ export class ContractService { ...@@ -352,7 +353,7 @@ export class ContractService {
throw new Error('Contrat non initialisé'); throw new Error('Contrat non initialisé');
} }
const tx = await this.contract.tallyVotes(); const tx = await this.contract['tallyVotes']();
await tx.wait(); await tx.wait();
this.loadingSubject.next(false); this.loadingSubject.next(false);
...@@ -369,11 +370,11 @@ export class ContractService { ...@@ -369,11 +370,11 @@ export class ContractService {
throw new Error('Contrat non initialisé'); throw new Error('Contrat non initialisé');
} }
const count = await this.contract.getProposalsCount(); const count = await this.contract['getProposalsCount']();
const proposals = []; const proposals = [];
for (let i = 0; i < count; i++) { for (let i = 0; i < count; i++) {
const proposal = await this.contract.getProposal(i); const proposal = await this.contract['getProposal'](i);
proposals.push({ proposals.push({
id: i, id: i,
description: proposal.description, description: proposal.description,
...@@ -395,7 +396,7 @@ export class ContractService { ...@@ -395,7 +396,7 @@ export class ContractService {
throw new Error('Contrat non initialisé'); throw new Error('Contrat non initialisé');
} }
const voter = await this.contract.getVoter(address); const voter = await this.contract['getVoter'](address);
return { return {
isRegistered: voter.isRegistered, isRegistered: voter.isRegistered,
hasVoted: voter.hasVoted, hasVoted: voter.hasVoted,
......
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