require("dotenv").config({ path: ".env" }); import { utils, Wallet } from "zksync-web3"; import { HardhatRuntimeEnvironment } from "hardhat/types"; import { Deployer } from "@matterlabs/hardhat-zksync-deploy"; import { CHAINS } from "@pythnetwork/xc-admin-common"; import { assert } from "chai"; import { writeFileSync } from "fs"; // import {Wallet as ZkWallet} from "zksync-ethers"; // Use These packages if "zksync-web3" doesn't work // import { Deployer as ZkDeployer } from "@matterlabs/hardhat-zksync"; const { getDefaultConfig } = require("../scripts/contractManagerConfig"); function envOrErr(name: string): string { const res = process.env[name]; if (res === undefined) { throw new Error(`${name} environment variable is not set.`); } return res; } export default async function (hre: HardhatRuntimeEnvironment) { // Initialize the wallet. const wallet = Wallet.fromMnemonic(envOrErr("MNEMONIC")); // Create deployer object and load the artifact of the contract we want to deploy. const deployer = new Deployer(hre, wallet); // Deposit some funds to L2 in order to be able to perform L2 transactions. Uncomment // this if the deployment account is unfunded. // // const depositAmount = ethers.utils.parseEther("0.005"); // const depositHandle = await deployer.zkWallet.deposit({ // to: deployer.zkWallet.address, // token: utils.ETH_ADDRESS, // amount: depositAmount, // }); // // Wait until the deposit is processed on zkSync // await depositHandle.wait(); // Deploy WormholeReceiver contract. const { wormholeGovernanceChainId, wormholeGovernanceContract, wormholeInitialSigners, governanceEmitter, governanceChainId, emitterAddresses, emitterChainIds, } = getDefaultConfig(envOrErr("MIGRATIONS_NETWORK")); const chainName = envOrErr("MIGRATIONS_NETWORK"); const wormholeReceiverChainId = CHAINS[chainName]; assert(wormholeReceiverChainId !== undefined); const receiverSetupArtifact = await deployer.loadArtifact("ReceiverSetup"); const receiverImplArtifact = await deployer.loadArtifact( "ReceiverImplementation" ); const wormholeReceiverArtifact = await deployer.loadArtifact( "WormholeReceiver" ); console.log("Deploying WormholeReceiver contract..."); const receiverSetupContract = await deployer.deploy(receiverSetupArtifact); console.log("Deployed ReceiverSetup on", receiverSetupContract.address); console.log("Deploying ReceiverImplementation contract..."); // deploy implementation const receiverImplContract = await deployer.deploy(receiverImplArtifact); console.log( "Deployed ReceiverImplementation on", receiverImplContract.address ); // encode initialisation data const whInitData = receiverSetupContract.interface.encodeFunctionData( "setup", [ receiverImplContract.address, wormholeInitialSigners, wormholeReceiverChainId, wormholeGovernanceChainId, wormholeGovernanceContract, ] ); // deploy proxy const wormholeReceiverContract = await deployer.deploy( wormholeReceiverArtifact, [receiverSetupContract.address, whInitData] ); console.log( `Deployed WormholeReceiver on ${wormholeReceiverContract.address}` ); // Hardcoding the initial sequence number for governance messages. const governanceInitialSequence = Number("0"); const validTimePeriodSeconds = Number(envOrErr("VALID_TIME_PERIOD_SECONDS")); const singleUpdateFeeInWei = Number(envOrErr("SINGLE_UPDATE_FEE_IN_WEI")); const pythImplArtifact = await deployer.loadArtifact("PythUpgradable"); const pythProxyArtifact = await deployer.loadArtifact("ERC1967Proxy"); const pythImplContract = await deployer.deploy(pythImplArtifact); console.log(`Deployed Pyth implementation on ${pythImplContract.address}`); const pythInitData = pythImplContract.interface.encodeFunctionData( "initialize", [ wormholeReceiverContract.address, emitterChainIds, emitterAddresses, governanceChainId, governanceEmitter, governanceInitialSequence, validTimePeriodSeconds, singleUpdateFeeInWei, ] ); const pythProxyContract = await deployer.deploy(pythProxyArtifact, [ pythImplContract.address, pythInitData, ]); console.log(`Deployed Pyth contract on ${pythProxyContract.address}`); // const networkId = hre.network.config.chainId; // const registryPath = `networks/${networkId}.json`; // console.log(`Saving addresses in ${registryPath}`); // writeFileSync( // registryPath, // JSON.stringify( // [ // { // contractName: "WormholeReceiver", // address: wormholeReceiverContract.address, // }, // { // contractName: "PythUpgradable", // address: pythProxyContract.address, // }, // ], // null, // 2 // ) // ); }