-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
66 lines (61 loc) · 1.86 KB
/
index.js
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
import logger from "./utils/logger.js";
import { getEnvironmentVariables } from "./utils/env.js";
import { deriveWalletsAndDetails } from "./utils/wallet.js";
import { computeCoreAddresses } from "./src/core/precompute-core-address.js";
import { deployCoreContract } from "./src/core/deploy-core-address.js";
import { setupRelayer } from "./src/core/gateway-relayer.js";
async function main() {
const { networkUrl, mnemonic } = getEnvironmentVariables();
const {
deployerAddressCore,
privateKeyCore,
deployerAddressGateway,
privateKeyGateway,
privateKeyRelayer,
} = deriveWalletsAndDetails(mnemonic);
logger.boldinfo("========== PRECOMPUTING CORE ADDRESSES ==========");
await computeCoreAddresses(deployerAddressCore, deployerAddressGateway);
logger.boldinfo("✅ Precomputing addresses successful");
logger.boldinfo("========== CORE ADDRESSES ==========");
await deployCoreContract(
privateKeyCore,
networkUrl,
"core/lib",
"ACL.sol",
"contracts/core/lib",
".env.exec",
["FHEVM_COPROCESSOR_ADDRESS"],
);
await deployCoreContract(
privateKeyCore,
networkUrl,
"core/lib",
"TFHEExecutor.sol",
"",
"",
);
await deployCoreContract(
privateKeyCore,
networkUrl,
"core/lib",
"KMSVerifier.sol",
"",
"",
);
await deployCoreContract(
privateKeyGateway,
networkUrl,
"core/gateway",
"GatewayContract.sol",
"contracts/core/lib",
".env.kmsverifier",
[deployerAddressGateway, "KMS_VERIFIER_CONTRACT_ADDRESS"],
);
logger.boldinfo("✅ Core Contracts deployed successfully");
// Sleep for 2 seconds
await new Promise((resolve) => setTimeout(resolve, 2000));
logger.boldinfo("========== GATEWAY RELAYER ==========");
await setupRelayer(privateKeyGateway, networkUrl, privateKeyRelayer);
logger.boldinfo("✅ Gateway Relayer added successfully");
}
main();