Skip to content

Commit e0ca43f

Browse files
committed
solc: 0.8.26 -> 0.8.30
1 parent c855ecf commit e0ca43f

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.envrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dotenv_if_exists || direnv status # https://direnv.net/man/direnv-stdlib.1.html
44

55
# foundry to use solc.nix provided solc
66
export FOUNDRY_OFFLINE=true
7-
export FOUNDRY_SOLC_VERSION=`which solc-0.8.26`
7+
export FOUNDRY_SOLC_VERSION=`which solc-0.8.30`
88

99
# use flake shell
1010
# Note:

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
system:
3535
let
3636
minDevSolcVer = "solc_0_8_11"; # minimum solidity version used for external development
37-
solcVer = "solc_0_8_26";
37+
solcVer = "solc_0_8_30";
3838
ghcVer92 = "ghc928";
3939
ghcVer94 = "ghc948";
4040

packages/ethereum-contracts/foundry.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
root = '../..'
33
src = 'packages/ethereum-contracts/contracts'
44
test = 'packages/ethereum-contracts/test/foundry'
5-
solc_version = "0.8.26"
5+
solc_version = "0.8.30"
66
#deny_warnings = true
77
ignored_error_codes = [
88
1699 # assembly { selfdestruct } in contracts/mocks/SuperfluidDestructorMock.sol

packages/ethereum-contracts/hardhat.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function createNetworkConfig(
9393

9494
const config: HardhatUserConfig = {
9595
solidity: {
96-
version: "0.8.26",
96+
version: "0.8.30",
9797
settings: {
9898
optimizer: {
9999
enabled: true,

packages/ethereum-contracts/truffle-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ const E = (module.exports = {
381381
// Fetch exact version from solc-bin (default: truffle's version)
382382
// If SOLC environment variable is provided, assuming it is available as "solc", use it instead.
383383
// Ref, this maybe possible in the future: https://github.com/trufflesuite/truffle/pull/6007
384-
version: process.env.SOLC ? "native" : "0.8.26",
384+
version: process.env.SOLC ? "native" : "0.8.30",
385385
settings: {
386386
// See the solidity docs for advice about optimization and evmVersion
387387
optimizer: {

packages/solidity-semantic-money/foundry.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ root = '../..'
33
src = 'packages/solidity-semantic-money/src'
44
out = 'packages/solidity-semantic-money/out/default'
55
cache_path = 'packages/solidity-semantic-money/out/default.cache'
6-
solc_version = '0.8.26'
6+
solc_version = '0.8.30'
77
evm_version = 'paris' # no PUSH0 for now
88
deny_warnings = true
99
optimizer = true

packages/subgraph/hardhat.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dotenvConfig();
1313
*/
1414
const config: HardhatUserConfig = {
1515
solidity: {
16-
version: "0.8.26",
16+
version: "0.8.30",
1717
settings: {
1818
optimizer: {
1919
enabled: true,

0 commit comments

Comments
 (0)