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

N-05 - Detail "ERC20 tokens" #58

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 6 additions & 1 deletion contracts/VestingWalletHalving.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ import "OpenZeppelin/openzeppelin-contracts@4.7.0/contracts/access/Ownable.sol";

/**
* @title VestingWalletHalving
* @dev This contract can receive native currency and ERC20 tokens. Custody of multiple tokens
* @dev This contract can receive native currency and most of ERC20 tokens.
* Although is was built and tested with OCEAN token, it works with other tokens, as long as they are not implementing
* werd function returns
* (see https://github.com/d-xo/weird-erc20/tree/266025c555b42b2dd2517fd99f7d47032ec99abe#weird-erc20-tokens)
*
* Custody of multiple tokens
* can be given to this contract, which will release the token to the beneficiary following a given vesting schedule.
* The vesting schedule is customizable through the {vestedAmount} function.
*
Expand Down