-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpopulateCourts.ts
129 lines (112 loc) · 4.48 KB
/
populateCourts.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
import { deployments, getNamedAccounts, getChainId, ethers } from "hardhat";
import { KlerosCore } from "../typechain-types";
import { BigNumber } from "ethers";
import courtsV1 from "../courts.v1.mainnet.json";
enum HomeChains {
ARBITRUM_ONE = 42161,
ARBITRUM_RINKEBY = 421611,
ARBITRUM_GOERLI = 421613,
HARDHAT = 31337,
}
const DISPUTE_KIT_CLASSIC = BigNumber.from(1);
const TESTING_PARAMETERS = false;
async function main() {
// fallback to hardhat node signers on local network
const deployer = (await getNamedAccounts()).deployer ?? (await ethers.getSigners())[0].address;
const chainId = Number(await getChainId());
if (!HomeChains[chainId]) {
console.error(`Aborting: script is not compatible with ${chainId}`);
return;
} else {
console.log("deploying to %s with deployer %s", HomeChains[chainId], deployer);
}
// WARNING: skip the Forking court at id 0, so the v1 courts are shifted by 1
const courtsV2 = courtsV1.map((court) => ({
...court,
id: BigNumber.from(court.id).add(1),
parent: BigNumber.from(court.parent).add(1),
minStake: TESTING_PARAMETERS ? BigNumber.from(court.minStake).div(100) : court.minStake,
feeForJuror: TESTING_PARAMETERS ? ethers.utils.parseEther("0.001") : court.feeForJuror,
timesPerPeriod: TESTING_PARAMETERS ? [120, 120, 120, 120] : court.timesPerPeriod,
}));
console.log("courtsV2 = %O", courtsV2);
const klerosCoreDeployment = await deployments.get("KlerosCore");
const core = (await ethers.getContractAt("KlerosCore", klerosCoreDeployment.address)) as KlerosCore;
for (const court of courtsV2) {
const courtPresent = await core.courts(court.id).catch(() => {});
if (courtPresent) {
console.log("Court %d found: %O", court.id, courtPresent);
// Court.parent and sortitionSumTreeK cannot be changed.
if (courtPresent.hiddenVotes !== court.hiddenVotes) {
console.log(
"Court %d: changing hiddenVotes from %d to %d",
court.id,
courtPresent.hiddenVotes,
court.hiddenVotes
);
await core.changeCourtHiddenVotes(court.id, court.hiddenVotes);
}
if (!courtPresent.minStake.eq(court.minStake)) {
console.log("Court %d: changing minStake from %d to %d", court.id, courtPresent.minStake, court.minStake);
await core.changeCourtMinStake(court.id, court.minStake);
}
if (!courtPresent.alpha.eq(court.alpha)) {
console.log("Court %d: changing alpha from %d to %d", court.id, courtPresent.alpha, court.alpha);
await core.changeCourtAlpha(court.id, court.alpha);
}
if (!courtPresent.feeForJuror.eq(court.feeForJuror)) {
console.log(
"Court %d: changing feeForJuror from %d to %d",
court.id,
courtPresent.feeForJuror,
court.feeForJuror
);
await core.changeCourtJurorFee(court.id, court.feeForJuror);
}
if (!courtPresent.jurorsForCourtJump.eq(court.jurorsForCourtJump)) {
console.log(
"Court %d: changing jurorsForCourtJump from %d to %d",
court.id,
courtPresent.jurorsForCourtJump,
court.jurorsForCourtJump
);
await core.changeCourtJurorsForJump(court.id, court.jurorsForCourtJump);
}
const timesPerPeriodPresent = (await core.getTimesPerPeriod(court.id)).map((bn) => bn.toNumber());
if (!timesPerPeriodPresent.every((val, index) => val === court.timesPerPeriod[index])) {
console.log(
"Court %d: changing timesPerPeriod from %O to %O",
court.id,
timesPerPeriodPresent,
court.timesPerPeriod
);
await core.changeCourtTimesPerPeriod(court.id, [
court.timesPerPeriod[0],
court.timesPerPeriod[1],
court.timesPerPeriod[2],
court.timesPerPeriod[3],
]);
}
} else {
console.log("Court %d not found, creating it with", court.id, court);
await core.createCourt(
court.parent,
court.hiddenVotes,
court.minStake,
court.alpha,
court.feeForJuror,
court.jurorsForCourtJump,
[court.timesPerPeriod[0], court.timesPerPeriod[1], court.timesPerPeriod[2], court.timesPerPeriod[3]],
5, // Not accessible on-chain, but has always been set to the same value so far.
[DISPUTE_KIT_CLASSIC]
);
}
await new Promise((resolve) => setTimeout(resolve, 100));
}
}
main()
.then(() => process.exit(0))
.catch((error) => {
console.error(error);
process.exit(1);
});