-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontract-deploy.js
34 lines (28 loc) · 1.06 KB
/
contract-deploy.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
import fs from "fs";
import path from "path";
import logger from "./utils/logger.js";
import { getEnvironmentVariables } from "./utils/env.js";
import { deriveWalletsAndDetails } from "./utils/wallet.js";
import { deployContract } from "./src/deploy.js";
let { networkUrl, mnemonic } = getEnvironmentVariables();
let { privateKeyTest } = deriveWalletsAndDetails(mnemonic);
let contractName = "EncryptedERC20.sol";
async function deployAndSave() {
try {
logger.boldinfo("========== DEPLOYING USER CONTRACT ==========");
const { contract } = await deployContract(
networkUrl,
privateKeyTest,
contractName,
["NAME", "SYMBOL"],
);
const contractAddress = await contract.getAddress();
const filePath = path.join(process.cwd(), "data", "contractAddress.txt");
fs.mkdirSync(path.dirname(filePath), { recursive: true });
fs.writeFileSync(filePath, contractAddress);
logger.boldinfo("✅ Contract deployed successfully and address saved!");
} catch (error) {
logger.error("❌ Deployment failed:", error);
}
}
deployAndSave();