specify gpl license

This commit is contained in:
Noah Zinsmeister
2022-11-21 15:12:12 -05:00
parent 42f7a9e126
commit 25a79e8ec8
3 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity =0.8.17;
import {IERC20, SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

View File

@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity =0.8.17;
import {MerkleDistributor} from "./MerkleDistributor.sol";

View File

@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity >=0.5.0;
// Allows anyone to claim a token if they exist in a merkle root.
@@ -14,4 +14,4 @@ interface IMerkleDistributor {
// This event is triggered whenever a call to #claim succeeds.
event Claimed(uint256 index, address account, uint256 amount);
}
}