Skip to content

Commit

Permalink
specify gpl license
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahZinsmeister committed Nov 21, 2022
1 parent 42f7a9e commit 25a79e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contracts/MerkleDistributor.sol
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion contracts/MerkleDistributorWithDeadline.sol
@@ -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";
Expand Down
4 changes: 2 additions & 2 deletions contracts/interfaces/IMerkleDistributor.sol
@@ -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.
Expand All @@ -14,4 +14,4 @@ interface IMerkleDistributor {

// This event is triggered whenever a call to #claim succeeds.
event Claimed(uint256 index, address account, uint256 amount);
}
}

0 comments on commit 25a79e8

Please sign in to comment.