Skip to content

Commit cd28886

Browse files
committed
Fix import: use EIP712 instead of incorrect ERC712
1 parent 1ad1244 commit cd28886

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MerkleAirdrop.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pragma solidity ^0.8.24;
44

55
import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
66
import {IERC20, SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
7-
import {ERC712} from "@openzeppelin/contracts/utils/cryptography/EIP712.sol";
7+
import {EIP712} from "@openzeppelin/contracts/utils/cryptography/EIP712.sol";
88
import {SignatureChecker} from "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol";
99
import {ECDSA} from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
1010
import {MessageHashUtils} from "@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol";

0 commit comments

Comments
 (0)