Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update IERC20HoldableToken.sol by fixing a typo in a comment #168

Merged
merged 1 commit into from
Jan 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/interface/IERC20HoldableToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ interface IERC20HoldableToken is IERC20 {
@notice Called by the sender to hold some tokens for a recipient that the sender can not release back to themself until after the expiration date.
@param holdId a unique identifier for the hold.
@param recipient optional account the tokens will be transferred to on execution. If a zero address, the recipient must be specified on execution of the hold.
@param notary account that can execute the hold. Typically the recipient but can be a third party or a smart contact.
@param notary account that can execute the hold. Typically the recipient but can be a third party or a smart contract.
@param amount of tokens to be transferred to the recipient on execution. Must be a non zero amount.
@param expirationDateTime UNIX epoch seconds the held amount can be released back to the sender by the sender. Past dates are allowed.
@param lockHash optional keccak256 hash of a lock preimage. An empty hash will not enforce the hash lock when the hold is executed.
Expand Down
Loading