create-fhevm-playground-pro 1.0.1 → 1.0.2
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.
|
@@ -3,11 +3,15 @@
|
|
|
3
3
|
"version": "0.1.0",
|
|
4
4
|
"description": "Base template for fhEVM example projects",
|
|
5
5
|
"scripts": {
|
|
6
|
-
"test": "
|
|
6
|
+
"test": "hardhat test",
|
|
7
7
|
"compile": "hardhat compile"
|
|
8
8
|
},
|
|
9
9
|
"devDependencies": {
|
|
10
10
|
"hardhat": "^2.19.4",
|
|
11
|
+
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
|
|
12
|
+
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
|
|
13
|
+
"chai": "^4.3.10",
|
|
14
|
+
"ethers": "^6.10.0",
|
|
11
15
|
"typescript": "^5.5.0",
|
|
12
16
|
"ts-node": "^10.9.1"
|
|
13
17
|
}
|
package/dist/create-example.js
CHANGED
|
@@ -131,8 +131,7 @@ program
|
|
|
131
131
|
console.log(chalk_1.default.white(' npm install'));
|
|
132
132
|
console.log(chalk_1.default.white(' npm test (use MOCK=true for mocked mode)'));
|
|
133
133
|
console.log(chalk_1.default.white('\n To run with a real fhEVM node, see the project README or run the provided Docker script.'));
|
|
134
|
-
console.log(chalk_1.default.white('\nRun `npx create-fhevm-playground-pro guided` again to create another example
|
|
135
|
-
console.log(chalk_1.default.white('\nProject site: https://example.com/fhevm-playground-pro (placeholder)\n'));
|
|
134
|
+
console.log(chalk_1.default.white('\nRun `npx create-fhevm-playground-pro guided` again to create another example.\n'));
|
|
136
135
|
}
|
|
137
136
|
catch (err) {
|
|
138
137
|
console.error(chalk_1.default.red.bold(`\n❌ Creation failed: ${err?.message || String(err)}`));
|