// This setup uses Hardhat Ignition to manage smart contract deployments.// Learn more about it at https://hardhat.org/ignitionimport{buildModule}from"@nomicfoundation/hardhat-ignition/modules";constJAN_1ST_2030=1893456000;constONE_GWEI:bigint=1_000_000_000n;constLockModule=buildModule("LockModule",(m)=>{constunlockTime=m.getParameter("unlockTime",JAN_1ST_2030);constlockedAmount=m.getParameter("lockedAmount",ONE_GWEI);constlock=m.contract("Lock",[unlockTime],{value:lockedAmount,});return{lock};});exportdefaultLockModule;