@maci-protocol/contracts 0.0.0-ci.ef4f2d5 → 0.0.0-ci.efbbb42
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.
- package/build/hardhat.config.d.ts.map +1 -1
- package/build/hardhat.config.js +8 -6
- package/build/hardhat.config.js.map +1 -1
- package/build/tasks/helpers/Deployment.d.ts.map +1 -1
- package/build/tasks/helpers/Deployment.js +6 -1
- package/build/tasks/helpers/Deployment.js.map +1 -1
- package/build/tasks/helpers/constants.js +4 -4
- package/build/tasks/helpers/constants.js.map +1 -1
- package/build/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +9 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maci-protocol/contracts",
|
|
3
|
-
"version": "0.0.0-ci.
|
|
3
|
+
"version": "0.0.0-ci.efbbb42",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Solidity Smart Contracts for MACI (Minimal Anti-Collusion Infrastructure)",
|
|
6
6
|
"main": "build/ts/index.js",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"postbuild": "cp -r ./artifacts ./build",
|
|
44
44
|
"types": "tsc -p tsconfig.json --noEmit",
|
|
45
45
|
"docs": "hardhat docgen",
|
|
46
|
-
"test": "hardhat test --network hardhat",
|
|
47
|
-
"test:hardhat": "
|
|
46
|
+
"test": "hardhat test ./tests/**/*.test.ts --network hardhat",
|
|
47
|
+
"test:hardhat": "hardhat test --network hardhat ./e2e/hardhatTasks.test.ts",
|
|
48
48
|
"test:maci": "pnpm run test ./tests/MACI.test.ts",
|
|
49
49
|
"test:poll": "pnpm run test ./tests/Poll.test.ts",
|
|
50
50
|
"test:messageProcessor": "pnpm run test ./tests/MessageProcessor.test.ts",
|
|
@@ -185,6 +185,7 @@
|
|
|
185
185
|
"verify:optimism": "pnpm run verify --network optimism",
|
|
186
186
|
"verify:scroll": "pnpm run verify --network scroll",
|
|
187
187
|
"verify:scroll-sepolia": "pnpm run verify --network scroll_sepolia",
|
|
188
|
+
"verify:arbitrum": "pnpm run verify --network arbitrum",
|
|
188
189
|
"verify:arbitrum-sepolia": "pnpm run verify --network arbitrum_sepolia",
|
|
189
190
|
"verify:base": "pnpm run verify --network base",
|
|
190
191
|
"verify:base-sepolia": "pnpm run verify --network base_sepolia",
|
|
@@ -221,10 +222,10 @@
|
|
|
221
222
|
},
|
|
222
223
|
"dependencies": {
|
|
223
224
|
"@excubiae/contracts": "^0.11.0",
|
|
224
|
-
"@maci-protocol/core": "0.0.0-ci.
|
|
225
|
-
"@maci-protocol/crypto": "0.0.0-ci.
|
|
226
|
-
"@maci-protocol/domainobjs": "0.0.0-ci.
|
|
227
|
-
"@nomicfoundation/hardhat-ethers": "^3.0.
|
|
225
|
+
"@maci-protocol/core": "0.0.0-ci.efbbb42",
|
|
226
|
+
"@maci-protocol/crypto": "0.0.0-ci.efbbb42",
|
|
227
|
+
"@maci-protocol/domainobjs": "0.0.0-ci.efbbb42",
|
|
228
|
+
"@nomicfoundation/hardhat-ethers": "^3.0.9",
|
|
228
229
|
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
|
|
229
230
|
"@nomicfoundation/hardhat-verify": "^2.0.14",
|
|
230
231
|
"@openzeppelin/contracts": "^5.3.0",
|
|
@@ -261,5 +262,5 @@
|
|
|
261
262
|
"ts-node": "^10.9.1",
|
|
262
263
|
"typescript": "^5.8.3"
|
|
263
264
|
},
|
|
264
|
-
"gitHead": "
|
|
265
|
+
"gitHead": "fa745033e0e394c5af65c011176c54e9218b1005"
|
|
265
266
|
}
|