Skip to content

Commit 7360a58

Browse files
committed
change solidity version to 0.8.19
1 parent 54a6e6d commit 7360a58

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

contracts/GameItem.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: UNLICENSED
2-
pragma solidity ^0.8.20;
2+
pragma solidity ^0.8.19;
33

44
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
55
import "@openzeppelin/contracts/utils/Counters.sol";

foundry.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[profile.default]
2-
solc = '0.8.20'
2+
solc = '0.8.19'
33
via_ir = true
44
src = 'contracts'
55
out = 'out'

hardhat.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const mnemonic: string =
88
: "test test test test test test test test test test test junk";
99

1010
const config: HardhatUserConfig = {
11-
solidity: "0.8.20",
11+
solidity: "0.8.19",
1212
defaultNetwork: "hardhat",
1313
networks: {
1414
hardhat: {

test/foundry/GameItem.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: UNLICENSED
2-
pragma solidity ^0.8.20;
2+
pragma solidity ^0.8.19;
33

44
import "forge-std/Test.sol";
55

0 commit comments

Comments
 (0)