Skip to content

Commit

Permalink
refactor comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kingster-will committed Dec 14, 2024
1 parent 2bb653d commit d89a004
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions contracts/src/deploy/Create3.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ import { CREATE3 } from "solmate/src/utils/CREATE3.sol";
/**
* @title Create3
* @notice Factory for deploying contracts to deterministic addresses via CREATE3 Enables deploying
* contracts using CREATE3. Each deployer (msg.sender) has its own namespace for deployed
* addresses.
* @author zefram.eth
* contracts using CREATE3.
* It is based on Zefram’s implementation and includes support for deployment using only a salt value.
* It support two deployment styles:
* 1. Each deployer (msg.sender) has its own namespace for deployed addresses.
* 2. Deterministic deployment using a single salt.
* @custom:attribution zefram.eth (https://github.com/ZeframLou/create3-factory/blob/main/src/CREATE3Factory.sol)
*/
contract Create3 {
Expand Down

0 comments on commit d89a004

Please sign in to comment.