We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47d73d1 commit 9058959Copy full SHA for 9058959
contracts/finance/VestingWallet.sol
@@ -4,6 +4,7 @@ pragma solidity ^0.8.20;
4
5
import {IERC20} from "../token/ERC20/IERC20.sol";
6
import {SafeERC20} from "../token/ERC20/utils/SafeERC20.sol";
7
+import {Math} from "../utils/math/Math.sol";
8
import {Address} from "../utils/Address.sol";
9
import {Context} from "../utils/Context.sol";
10
import {Ownable} from "../access/Ownable.sol";
@@ -33,6 +34,8 @@ import {Ownable} from "../access/Ownable.sol";
33
34
* Consider disabling one of the withdrawal methods.
35
*/
36
contract VestingWallet is Context, Ownable {
37
+ using Math for uint256;
38
+
39
event EtherReleased(uint256 amount);
40
event ERC20Released(address indexed token, uint256 amount);
41
0 commit comments