Skip to content

Commit

Permalink
⬆️ update to solc 0.8.19
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>
  • Loading branch information
pcaversaccio committed Feb 25, 2023
1 parent e1ebc2e commit 0efdd3d
Show file tree
Hide file tree
Showing 6 changed files with 163 additions and 58 deletions.
2 changes: 1 addition & 1 deletion contracts/Create.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
pragma solidity 0.8.19;

/**
* @dev Error that occurs when the contract creation failed.
Expand Down
2 changes: 1 addition & 1 deletion contracts/mocks/ERC20Mock.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
pragma solidity 0.8.19;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";

Expand Down
2 changes: 1 addition & 1 deletion hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require("@nomicfoundation/hardhat-chai-matchers");

module.exports = {
solidity: {
version: "0.8.18",
version: "0.8.19",
settings: {
optimizer: {
enabled: true,
Expand Down
211 changes: 158 additions & 53 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"lint:fix": "npm run prettier:fix && npm run solhint:fix && npx eslint **/*.{js,ts} --fix"
},
"devDependencies": {
"@ethereumjs/tx": "^4.0.2",
"@ethereumjs/tx": "^4.1.0",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
Expand Down
2 changes: 1 addition & 1 deletion truffle-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ module.exports = {
// Configure our compiler settings
compilers: {
solc: {
version: "0.8.18",
version: "0.8.19",
settings: {
optimizer: {
enabled: true,
Expand Down

0 comments on commit 0efdd3d

Please sign in to comment.