Skip to content

Commit cc47d64

Browse files
authored
chore: change SatbletokenV3 pragma to allow evm paris comilation in d… (#710)
1 parent 375d491 commit cc47d64

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

contracts/interfaces/IFeeCurrency.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pragma solidity ^0.8.13;
1+
pragma solidity ^0.8;
22

33
/**
44
* @notice This interface should be implemented for tokens which are supposed to

contracts/interfaces/IStableTokenV3.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: GPL-3.0-or-later
2-
pragma solidity 0.8.24;
2+
pragma solidity ^0.8;
33

44
/**
55
* @title IStableTokenV3

contracts/tokens/StableTokenV3.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// SPDX-License-Identifier: BUSL-1.1
22
// solhint-disable gas-custom-errors
3-
pragma solidity 0.8.24;
3+
pragma solidity ^0.8;
44

55
import { ERC20PermitUpgradeable } from "./patched/ERC20PermitUpgradeable.sol";
66
import { ERC20Upgradeable } from "./patched/ERC20Upgradeable.sol";

0 commit comments

Comments
 (0)