Skip to content

Commit

Permalink
update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
malteish committed Aug 17, 2023
1 parent 7cf4771 commit ade5c0d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions contracts/TokenFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ import "@openzeppelin/contracts/utils/Create2.sol";
import "./Token.sol";

/**
* @title VestingWalletFactory
* @title TokenFactory
* @author malteish
* @notice This contract deploys VestingWallets using create2.
* @dev One deployment of this contract can be used for deployment of any number of VestingWallets using create2.
* @notice This contract deploys Tokens using create2.
* @dev One deployment of this contract can be used for deployment of any number of Tokens using create2.
*/
contract TokenFactory {
event Deploy(address indexed addr);

/**
* @notice Deploys VestingWallet contract using create2.
* @notice Deploys Token contract using create2.
* @param _trustedForwarder address of the trusted forwarder
* @param _feeSettings address of the fee settings contract
* @param _admin address of the admin who controls the token
Expand Down Expand Up @@ -48,7 +48,7 @@ contract TokenFactory {
}

/**
* @notice Computes the address of VestingWallet contract to be deployed using create2.
* @notice Computes the address of Token contract to be deployed using create2.
* @param _trustedForwarder address of the trusted forwarder
* @param _feeSettings address of the fee settings contract
* @param _admin address of the admin who controls the token
Expand Down

0 comments on commit ade5c0d

Please sign in to comment.