@cofhe/mock-contracts 0.3.2 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +2 -0
  2. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @cofhe/mock-contracts Changelog
2
2
 
3
+ ## 0.4.0
4
+
3
5
  ## 0.3.2
4
6
 
5
7
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cofhe/mock-contracts",
3
- "version": "0.3.2",
3
+ "version": "0.4.0",
4
4
  "description": "Mock smart contracts for testing CoFHE with FHE primitives locally",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -45,16 +45,17 @@
45
45
  "ethers": "^6.0.0",
46
46
  "forge-std": "github:foundry-rs/forge-std",
47
47
  "hardhat": "^2.24.1",
48
+ "tsx": "^4.20.5",
48
49
  "tsup": "^8.0.2",
49
50
  "typechain": "^8.3.2",
50
- "@cofhe/sdk": "0.3.2",
51
+ "@cofhe/sdk": "0.4.0",
51
52
  "@cofhe/tsconfig": "0.1.2"
52
53
  },
53
54
  "publishConfig": {
54
55
  "access": "public"
55
56
  },
56
57
  "scripts": {
57
- "build": "forge build -q && npx tsx scripts/build-artifacts.ts && npx typechain --target ethers-v6 --out-dir src/typechain-types 'abi/*.json' && npx tsx scripts/remove-typechain-factories.ts && prettier --write 'src/**/*.ts' && tsup",
58
+ "build": "forge build -q && tsx scripts/build-artifacts.ts && npx typechain --target ethers-v6 --out-dir src/typechain-types 'abi/*.json' && tsx scripts/remove-typechain-factories.ts && prettier --write 'src/**/*.ts' && tsup",
58
59
  "test": "forge build -q && forge test -vvv",
59
60
  "test:coverage": "forge coverage",
60
61
  "anvil": "anvil --code-size-limit 100000",