-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathUser.ts
67 lines (55 loc) · 1.99 KB
/
User.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import { BigInt, BigDecimal } from "@graphprotocol/graph-ts";
import { User } from "../../generated/schema";
import { ONE, ZERO } from "../utils";
export function computeCoherenceScore(totalCoherent: BigInt, totalResolvedDisputes: BigInt): BigInt {
const smoothingFactor = BigDecimal.fromString("10");
let denominator = totalResolvedDisputes.toBigDecimal().plus(smoothingFactor);
let coherencyRatio = totalCoherent.toBigDecimal().div(denominator);
const coherencyScore = coherencyRatio.times(BigDecimal.fromString("100"));
const roundedScore = coherencyScore.plus(BigDecimal.fromString("0.5"));
return BigInt.fromString(roundedScore.toString().split(".")[0]);
}
export function ensureUser(id: string): User {
const user = User.load(id);
if (user) {
return user;
}
return createUserFromAddress(id);
}
export function createUserFromAddress(id: string): User {
const user = new User(id);
user.totalStake = ZERO;
user.totalDelayed = ZERO;
user.activeDisputes = ZERO;
user.disputes = [];
user.rounds = [];
user.resolvedDisputes = [];
user.totalResolvedDisputes = ZERO;
user.totalAppealingDisputes = ZERO;
user.totalDisputes = ZERO;
user.totalCoherentVotes = ZERO;
user.totalResolvedVotes = ZERO;
user.coherenceScore = ZERO;
user.save();
return user;
}
export function addUserActiveDispute(id: string, disputeID: string): void {
const user = ensureUser(id);
if (user.disputes.includes(disputeID)) {
return;
}
user.disputes = user.disputes.concat([disputeID]);
user.activeDisputes = user.activeDisputes.plus(ONE);
user.totalDisputes = user.totalDisputes.plus(ONE);
user.save();
}
export function resolveUserDispute(id: string, disputeID: string): void {
const user = ensureUser(id);
if (user.resolvedDisputes.includes(disputeID)) {
return;
}
user.resolvedDisputes = user.resolvedDisputes.concat([disputeID]);
user.totalResolvedDisputes = user.totalResolvedDisputes.plus(ONE);
user.activeDisputes = user.activeDisputes.minus(ONE);
user.save();
}