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