Skip to content

Commit

Permalink
🪚 Upgrade to solidity 0.8.22 to align with version in monorepo (#71)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Goulding <[email protected]>
  • Loading branch information
ryandgoulding authored Dec 7, 2023
1 parent 7056696 commit cca41af
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/oft/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { HardhatUserConfig } from 'hardhat/types'
import './tasks/'

const config: HardhatUserConfig = {
solidity: '0.8.19',
solidity: '0.8.22',

namedAccounts: {
deployer: {
Expand Down
2 changes: 1 addition & 1 deletion examples/oft/test/foundry/OFT.t.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.15;
pragma solidity ^0.8.22;

import { Test } from "forge-std/Test.sol";

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

contract DefaultOApp {
mapping(uint256 => address) public peers;
Expand Down
2 changes: 1 addition & 1 deletion packages/ua-utils-evm-hardhat-test/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ assert(MNEMONIC, `Missing MNEMONIC environment variable`)
*/
const config: HardhatUserConfig = {
solidity: {
version: '0.8.19',
version: '0.8.22',
},
networks: {
vengaboys: {
Expand Down
2 changes: 1 addition & 1 deletion packages/utils-evm-test/contracts/Thrower.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.19;
pragma solidity ^0.8.22;

contract Thrower {
error CustomErrorWithNoArguments();
Expand Down
2 changes: 1 addition & 1 deletion packages/utils-evm-test/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { HardhatUserConfig } from 'hardhat/types'

const config: HardhatUserConfig = {
solidity: {
version: '0.8.19',
version: '0.8.22',
},
}

Expand Down

0 comments on commit cca41af

Please sign in to comment.