Skip to content

Commit

Permalink
bump solc version
Browse files Browse the repository at this point in the history
  • Loading branch information
Siddharth2207 committed Jul 19, 2024
1 parent 1ff5c51 commit 271f000
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion protocols/route-processor/interfaces/ITridentCLPool.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-3.0-or-later

pragma solidity 0.8.10;
pragma solidity =0.8.25;

interface ITridentCLPool {
function token0() external returns (address);
Expand Down
2 changes: 1 addition & 1 deletion protocols/route-processor/interfaces/IUniswapV3Pool.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-3.0-or-later

pragma solidity 0.8.10;
pragma solidity =0.8.25;

interface IUniswapV3Pool {
function token0() external returns (address);
Expand Down
2 changes: 1 addition & 1 deletion protocols/route-processor/interfaces/IWETH.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-3.0-or-later

pragma solidity 0.8.10;
pragma solidity =0.8.25;

interface IWETH {
function deposit() external payable;
Expand Down
2 changes: 1 addition & 1 deletion protocols/tines-sandbox/contracts/ERC20Mock.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.10;
pragma solidity =0.8.25;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract ERC20Mock is ERC20 {
Expand Down
2 changes: 1 addition & 1 deletion protocols/tines-sandbox/contracts/TestRouter.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: Unlicense

pragma solidity 0.8.10;
pragma solidity =0.8.25;

import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";

Expand Down
2 changes: 1 addition & 1 deletion protocols/tines-sandbox/hardhat.config.cts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const config: HardhatUserConfig = {
solidity: {
compilers: [
{
version: '0.8.10',
version: '0.8.25',
settings: {
optimizer: {
enabled: true,
Expand Down

0 comments on commit 271f000

Please sign in to comment.