Skip to content

Commit

Permalink
Deploy DecentHats on Sepolia
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgall committed Jun 25, 2024
1 parent 62ec3bf commit 9e6d6e7
Show file tree
Hide file tree
Showing 3 changed files with 308 additions and 0 deletions.
12 changes: 12 additions & 0 deletions deploy/core/017_deploy_DecentHats.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { HardhatRuntimeEnvironment } from "hardhat/types";
import { DeployFunction } from "hardhat-deploy/types";
import { deployNonUpgradeable } from "../helpers/deployNonUpgradeable";
import { ethers } from "hardhat";

const func: DeployFunction = async (hre: HardhatRuntimeEnvironment) => {
const kv = await hre.deployments.get("KeyValuePairs");
const hatsAddress = "0x3bc1A0Ad72417f2d411118085256fC53CBdDd137";
await deployNonUpgradeable(hre, "DecentHats", [hatsAddress, kv.address]);
};

export default func;
216 changes: 216 additions & 0 deletions deployments/sepolia/DecentHats.json

Large diffs are not rendered by default.

Loading

0 comments on commit 9e6d6e7

Please sign in to comment.