Skip to content

Commit

Permalink
make evm versions consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
mvillere committed Mar 13, 2024
1 parent e894790 commit 50ce13e
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion contracts/seadrop/ERC721ContractMetadata.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.21;

import {ISeaDropTokenContractMetadata} from './interfaces/ISeaDropTokenContractMetadata.sol';

Expand Down
2 changes: 1 addition & 1 deletion contracts/seadrop/ERC721SeaDrop.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.21;

import {ERC721ContractMetadata, ISeaDropTokenContractMetadata} from './ERC721ContractMetadata.sol';

Expand Down
2 changes: 1 addition & 1 deletion contracts/seadrop/SeaDrop.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.21;

import {ISeaDrop} from './interfaces/ISeaDrop.sol';

Expand Down
2 changes: 1 addition & 1 deletion contracts/seadrop/interfaces/INonFungibleSeaDropToken.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.21;

import {ISeaDropTokenContractMetadata} from './ISeaDropTokenContractMetadata.sol';

Expand Down
2 changes: 1 addition & 1 deletion contracts/seadrop/interfaces/ISeaDrop.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.21;

import {AllowListData, MintParams, PublicDrop, TokenGatedDropStage, TokenGatedMintParams, SignedMintValidationParams} from '../libs/SeaDropStructs.sol';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.21;

import {IERC2981} from '@openzeppelin/contracts/interfaces/IERC2981.sol';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.21;

import {AllowListData, PublicDrop, SignedMintValidationParams, TokenGatedDropStage} from './SeaDropStructs.sol';

Expand Down
2 changes: 1 addition & 1 deletion contracts/seadrop/libs/SeaDropErrorsAndEvents.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.21;

import {PublicDrop, TokenGatedDropStage, SignedMintValidationParams} from './SeaDropStructs.sol';

Expand Down
2 changes: 1 addition & 1 deletion contracts/seadrop/libs/SeaDropStructs.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity 0.8.21;

/**
* @notice A struct defining public drop data.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
pragma solidity ^0.8.11;

import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';
Expand Down

0 comments on commit 50ce13e

Please sign in to comment.