mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 04:08:01 -05:00
* standardise contract deploy logs * apply standardization to hardhat deploy scripts * Update contracts/common/helpers/deployments.ts Co-authored-by: kyzooghost <73516204+kyzooghost@users.noreply.github.com> Signed-off-by: The Dark Jester <thedarkjester@users.noreply.github.com> * fix copy paste issues * use refactored deployment logger * add a lint space --------- Signed-off-by: The Dark Jester <thedarkjester@users.noreply.github.com> Co-authored-by: kyzooghost <73516204+kyzooghost@users.noreply.github.com>
73 lines
2.7 KiB
TypeScript
73 lines
2.7 KiB
TypeScript
import { DeployFunction } from "hardhat-deploy/types";
|
|
import { HardhatRuntimeEnvironment } from "hardhat/types";
|
|
import { deployUpgradableFromFactory } from "../scripts/hardhat/utils";
|
|
import {
|
|
generateRoleAssignments,
|
|
getEnvVarOrDefault,
|
|
getRequiredEnvVar,
|
|
tryVerifyContract,
|
|
getDeployedContractAddress,
|
|
tryStoreAddress,
|
|
LogContractDeployment,
|
|
} from "../common/helpers";
|
|
import {
|
|
L1_L2_MESSAGE_SETTER_ROLE,
|
|
L2_MESSAGE_SERVICE_INITIALIZE_SIGNATURE,
|
|
L2_MESSAGE_SERVICE_PAUSE_TYPES_ROLES,
|
|
L2_MESSAGE_SERVICE_ROLES,
|
|
L2_MESSAGE_SERVICE_UNPAUSE_TYPES_ROLES,
|
|
} from "../common/constants";
|
|
|
|
const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
|
|
const { deployments } = hre;
|
|
|
|
const contractName = "L2MessageService";
|
|
const existingContractAddress = await getDeployedContractAddress(contractName, deployments);
|
|
|
|
const l2MessageServiceSecurityCouncil = getRequiredEnvVar("L2MSGSERVICE_SECURITY_COUNCIL");
|
|
const l2MessageServiceL1L2MessageSetter = getRequiredEnvVar("L2MSGSERVICE_L1L2_MESSAGE_SETTER");
|
|
const l2MessageServiceRateLimitPeriod = getRequiredEnvVar("L2MSGSERVICE_RATE_LIMIT_PERIOD");
|
|
const l2MessageServiceRateLimitAmount = getRequiredEnvVar("L2MSGSERVICE_RATE_LIMIT_AMOUNT");
|
|
|
|
const pauseTypeRoles = getEnvVarOrDefault("L2MSGSERVICE_PAUSE_TYPE_ROLES", L2_MESSAGE_SERVICE_PAUSE_TYPES_ROLES);
|
|
const unpauseTypeRoles = getEnvVarOrDefault(
|
|
"L2MSGSERVICE_UNPAUSE_TYPE_ROLES",
|
|
L2_MESSAGE_SERVICE_UNPAUSE_TYPES_ROLES,
|
|
);
|
|
const defaultRoleAddresses = generateRoleAssignments(L2_MESSAGE_SERVICE_ROLES, l2MessageServiceSecurityCouncil, [
|
|
{ role: L1_L2_MESSAGE_SETTER_ROLE, addresses: [l2MessageServiceL1L2MessageSetter] },
|
|
]);
|
|
const roleAddresses = getEnvVarOrDefault("L2MSGSERVICE_ROLE_ADDRESSES", defaultRoleAddresses);
|
|
|
|
if (!existingContractAddress) {
|
|
console.log(`Deploying initial version, NB: the address will be saved if env SAVE_ADDRESS=true.`);
|
|
} else {
|
|
console.log(`Deploying new version, NB: ${existingContractAddress} will be overwritten if env SAVE_ADDRESS=true.`);
|
|
}
|
|
|
|
const contract = await deployUpgradableFromFactory(
|
|
"L2MessageService",
|
|
[
|
|
l2MessageServiceRateLimitPeriod,
|
|
l2MessageServiceRateLimitAmount,
|
|
l2MessageServiceSecurityCouncil,
|
|
roleAddresses,
|
|
pauseTypeRoles,
|
|
unpauseTypeRoles,
|
|
],
|
|
{
|
|
initializer: L2_MESSAGE_SERVICE_INITIALIZE_SIGNATURE,
|
|
unsafeAllow: ["constructor"],
|
|
},
|
|
);
|
|
|
|
await LogContractDeployment(contractName, contract);
|
|
const contractAddress = await contract.getAddress();
|
|
|
|
await tryStoreAddress(hre.network.name, contractName, contractAddress, contract.deploymentTransaction()!.hash);
|
|
|
|
await tryVerifyContract(contractAddress);
|
|
};
|
|
export default func;
|
|
func.tags = ["L2MessageService"];
|