Skip to content

Commit

Permalink
Merge branch 'release/0.5.x' into release-merge
Browse files Browse the repository at this point in the history
  • Loading branch information
immortal-tofu committed Aug 12, 2024
2 parents 20e8aff + 92bb963 commit a9e566f
Show file tree
Hide file tree
Showing 3 changed files with 242 additions and 3 deletions.
6 changes: 6 additions & 0 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import '@nomicfoundation/hardhat-toolbox';
import dotenv from 'dotenv';
import 'hardhat-deploy';
import 'hardhat-ignore-warnings';
import type { HardhatUserConfig, extendProvider } from 'hardhat/config';
import { task } from 'hardhat/config';
import type { NetworkUserConfig } from 'hardhat/types';
Expand Down Expand Up @@ -159,6 +160,11 @@ const config: HardhatUserConfig = {
evmVersion: 'cancun',
},
},
warnings: {
'*': {
'transient-storage': false,
},
},
typechain: {
outDir: 'types',
target: 'ethers-v6',
Expand Down
236 changes: 234 additions & 2 deletions package-lock.json

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

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fhevm",
"description": "A Solidity library for interacting with the Zama Blockchain",
"version": "0.5.7",
"version": "0.5.8",
"engines": {
"node": ">=20.0.0"
},
Expand Down Expand Up @@ -80,6 +80,7 @@
"hardhat": "^2.22.8",
"hardhat-deploy": "^0.11.29",
"hardhat-gas-reporter": "^1.0.2",
"hardhat-ignore-warnings": "^0.2.11",
"lodash": "^4.17.21",
"mocha": "^10.1.0",
"prettier": "^3.0.0",
Expand Down

0 comments on commit a9e566f

Please sign in to comment.