Skip to content

Commit

Permalink
fix contract address
Browse files Browse the repository at this point in the history
  • Loading branch information
yu23ki14 committed Jan 27, 2025
1 parent 87a12c2 commit cc8bff6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 18 deletions.
22 changes: 6 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,26 +62,16 @@ These solutions were combined with ideas from [Hats Protocol](https://www.hatspr

| ContractAddress | Name | Memo |
| ------------------------------------------ | ----------------------- | ---- |
| 0x5d7a64Cc808294C516076d371685ed4E6aDd6337 | BigBang | |
| 0xb8f7ca7a5b1e457b8735884419e114f90d53e1d5 | FractionToken | |
| 0x8da1c0864962c5e26c99cf839b0dc48e39104568 | SplitsCreatorFactory | |
| 0xda9fbab4436e4124cd6ee6864d4b46d0dd412414 | SplitsCreatorIMPL | |
| 0xd4a66507ea8c8382fa8474ed6cae4163676a434a | HatsTimeFrameModuleIMPL | |
| 0x3E70d10aCdcC14B6C31DA26DcC195a6EDf1C2c16 | BigBang | |
| 0x54889278bf4F16ACAa3CC1402C987A6C42a5308B | FractionToken | |
| 0x2b44c1F5B0D2a6a39F83effbF48aA09C833EBe12 | SplitsCreatorFactory | |
| 0x09b853E0945d1c86af10b5665472501bD5F6627c | SplitsCreatorIMPL | |
| 0x808996331ADD2715854e31e3dd4f9a736DE23604 | HatsTimeFrameModuleIMPL | |
| 0xbE24C4270B65f68E22CD2e58eD7A61eAF36240a0 | HatsHatCreatorModuleIMPL | |
| 0x3bc1A0Ad72417f2d411118085256fC53CBdDd137 | Hats | |
| 0x0a3f85fa597B6a967271286aA0724811acDF5CD9 | HatsModuleFactory | |
| 0x80f1B766817D04870f115fEBbcCADF8DBF75E017 | PullSplitsFactory | |

### Holesky

| ContractAddress | Name | Memo |
| ------------------------------------------ | -------------------- | ---- |
| 0xa55410b75578c8941a76249c18c72167459253c7 | BigBang | |
| 0x143a4605b682ec096274cef9fde5b3c077498942 | FractionToken | |
| 0xea4ee24c8411a71a7ce2cd676e1f17ebe18c2a98 | SplitsCreatorFactory | |
| 0x3bc1A0Ad72417f2d411118085256fC53CBdDd137 | Hats | |
| 0xfE661c01891172046feE16D3a57c3Cf456729efA | HatsModuleFactory | |
| 0x80f1B766817D04870f115fEBbcCADF8DBF75E017 | PullSplitsFactory | |

## How to work

- ### **setUp**
Expand Down
2 changes: 1 addition & 1 deletion pkgs/contract/helpers/deploy/Splits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const deploySplitsCreatorFactory = async (
baseSalt,
splitsCreatorFactoryImplTx.data || "0x",
ethers.keccak256(splitsCreatorFactoryImplTx.data),
"SplitsCreatorFactory",
"SplitsCreatorFactory_Implementation",
create2DeployerAddress,
);

Expand Down
6 changes: 5 additions & 1 deletion pkgs/contract/scripts/deploy/create2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,11 @@ const deploy = async () => {

console.log(
"HatsTimeframeModule module:\n",
`npx hardhat verify ${hatsTimeFrameModuleAddress} 1.0.0 --network ${network.name}\n`,
`npx hardhat verify ${hatsTimeFrameModuleAddress} 1.0.0 0x0000000000000000000000000000000000000001 --network ${network.name}\n`,
);
console.log(
"HatsHatCreatorModule module:\n",
`npx hardhat verify ${hatsHatCreatorModuleAddress} 1.0.0 0x0000000000000000000000000000000000000001 --network ${network.name}\n`,
);
console.log(
"FractionToken:\n",
Expand Down

0 comments on commit cc8bff6

Please sign in to comment.