mirror of
https://github.com/selfxyz/self.git
synced 2026-04-05 03:00:53 -04:00
9 lines
234 B
TypeScript
9 lines
234 B
TypeScript
import { buildModule } from "@nomicfoundation/hardhat-ignition/modules";
|
|
|
|
export default buildModule("Deploy_Generic_Verifier", (m) => {
|
|
const genericVerifier = m.contract("GenericVerifier");
|
|
|
|
return { genericVerifier };
|
|
});
|
|
|