Skip to content

Commit

Permalink
Merge pull request #9 from fetchoracle/solidity-bump
Browse files Browse the repository at this point in the history
Solidity bump to 8.20
  • Loading branch information
jensendarren authored Mar 26, 2024
2 parents 049b787 + 9f57c72 commit 7a8df01
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion contracts/FetchPlayground.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.3;
pragma solidity 0.8.20;

contract FetchPlayground {
// Events
Expand Down
2 changes: 1 addition & 1 deletion contracts/UsingFetch.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.3;
pragma solidity 0.8.20;

import "./interface/IFetch.sol";
import "./interface/IERC2362.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/UsingFetchUpgradeReady.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.3;
pragma solidity 0.8.20;

import "./interface/IFetch.sol";
import "./interface/IERC2362.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/interface/IERC20.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.3;
pragma solidity 0.8.20;

interface IERC20 {
function transfer(address _to, uint256 _amount) external returns(bool);
Expand Down
2 changes: 1 addition & 1 deletion hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require("@nomiclabs/hardhat-ethers");
task("balance", "Prints an account's balance").setAction(async () => {});

module.exports = {
solidity: "0.8.3",
solidity: "0.8.20",
networks: {
hardhat: {
// forking: {
Expand Down

0 comments on commit 7a8df01

Please sign in to comment.