Skip to content

Commit

Permalink
Add deployment script
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgall committed Oct 31, 2024
1 parent 18d6bfd commit 861243a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions deploy/core/021_deploy_DecentHatsModificationModule.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { HardhatRuntimeEnvironment } from 'hardhat/types';
import { DeployFunction } from 'hardhat-deploy/types';
import { deployNonUpgradeable } from '../helpers/deployNonUpgradeable';

const func: DeployFunction = async (hre: HardhatRuntimeEnvironment) => {
await deployNonUpgradeable(hre, 'DecentHatsModificationModule');
};

export default func;

0 comments on commit 861243a

Please sign in to comment.