Skip to content

Commit

Permalink
chore: update solidity version
Browse files Browse the repository at this point in the history
  • Loading branch information
0xged committed Jan 14, 2023
1 parent 1a14aed commit d4692c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const config: HardhatUserConfig = {
solidity: {
compilers: [
{
version: '0.8.7',
version: '0.8.16',
settings: {
optimizer: {
enabled: true,
Expand Down
2 changes: 1 addition & 1 deletion solidity/contracts/Greeter.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//SPDX-License-Identifier: Unlicense
pragma solidity 0.8.7;
pragma solidity 0.8.16;

import 'hardhat/console.sol';
import '../interfaces/IGreeter.sol';
Expand Down
2 changes: 1 addition & 1 deletion solidity/interfaces/IGreeter.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//SPDX-License-Identifier: Unlicense
pragma solidity 0.8.7;
pragma solidity 0.8.16;

interface IGreeter {
event GreetingSet(string _greeting);
Expand Down

0 comments on commit d4692c1

Please sign in to comment.