Skip to content

Commit

Permalink
update solidity version (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
defi-dev authored Jul 22, 2024
1 parent ce556b4 commit 3ae5b1d
Show file tree
Hide file tree
Showing 14 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion contracts/PPAgentV2.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.24;

import {PPAgentV2Based} from "./PPAgentV2Based.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/PPAgentV2Flags.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.24;

contract PPAgentV2Flags {
// Keeper pass this flags withing execute() transaction
Expand Down
2 changes: 1 addition & 1 deletion contracts/PPAgentV2Interfaces.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.24;

interface IPPAgentV2Executor {
function execute_44g58pv() external;
Expand Down
2 changes: 1 addition & 1 deletion contracts/PPAgentV2Lens.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.24;

import "./PPAgentV2.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/PPAgentV2Randao.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.24;

import {PPAgentV2RandaoBased} from "./PPAgentV2RandaoBased.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/PPAgentV2RandaoBased.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.24;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/PPAgentV2RandaoWithGasTracking.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.24;

import {PPAgentV2RandaoBased} from "./PPAgentV2Randao.sol";
import { IPPGasUsedTracker } from "./PPAgentV2Interfaces.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/PPAgentV2VRF.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.24;

import {PPAgentV2VRFBased} from "./PPAgentV2VRFBased.sol";

Expand Down
4 changes: 2 additions & 2 deletions contracts/PPAgentV2VRFBased.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import {PPAgentV2RandaoBased} from "./PPAgentV2Randao.sol";
import {PPAgentV2RandaoBased} from "./PPAgentV2RandaoBased.sol";

import "./interfaces/VRFAgentConsumerInterface.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/VRF.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
pragma solidity ^0.8.24;

import "./interfaces/VRFAgentCoordinatorInterface.sol";

Expand Down
2 changes: 1 addition & 1 deletion contracts/VRFAgentConsumer.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.24;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/VRFAgentCoordinatorInterface.sol";
Expand Down
4 changes: 2 additions & 2 deletions contracts/VRFAgentConsumerFactory.sol
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
pragma solidity ^0.8.24;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./VRFAgentConsumer.sol";
import "./interfaces/VRFAgentConsumerFactoryInterface.sol";

/**
* @title VRFAgentConsumer
* @title VRFAgentConsumerFactory
* @author PowerPool
*/
contract VRFAgentConsumerFactory is VRFAgentConsumerFactoryInterface, Ownable {
Expand Down
2 changes: 1 addition & 1 deletion contracts/VRFAgentCoordinator.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.24;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
Expand Down
4 changes: 2 additions & 2 deletions contracts/VRFAgentManager.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.24;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
Expand All @@ -10,7 +10,7 @@ import "./interfaces/VRFAgentCoordinatorInterface.sol";
import "./interfaces/VRFAgentConsumerInterface.sol";

/**
* @title PPAgentV2Randao
* @title VRFAgentManager
* @author PowerPool
*/
contract VRFAgentManager is Ownable {
Expand Down

0 comments on commit 3ae5b1d

Please sign in to comment.