mirror of
https://github.com/selfxyz/self.git
synced 2026-02-21 03:00:36 -05:00
15 lines
416 B
TypeScript
15 lines
416 B
TypeScript
import { buildModule } from "@nomicfoundation/hardhat-ignition/modules";
|
|
import hre from "hardhat";
|
|
import fs from "fs";
|
|
import path from "path";
|
|
|
|
export default buildModule("DeployPCR0", (m) => {
|
|
const networkName = hre.network.config.chainId;
|
|
|
|
// Deploy the PCR0Manager contract (implementation from PCR0.sol)
|
|
const pcr0Manager = m.contract("PCR0Manager");
|
|
|
|
return {
|
|
pcr0Manager,
|
|
};
|
|
}); |