-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "@primuslabs/zktls-contracts",
"version": "0.1.0",
"description": "Primus zkTLS contracts",
"repository": {
"type": "git",
"url": "https://github.com/primus-labs/zktls-contracts.git"
},
"main": "index.js",
"files": [
"./src"
],
"scripts": {
"compile": "forge build",
"deploy:zkTLS": "forge script script/PrimusZkTLS.s.sol --rpc-url holesky --broadcast",
"upgrade:zkTLS": "forge script script/UpgradeZkTLS.s.sol --rpc-url holesky --broadcast",
"call:zkTLS": "forge script script/CallZKTLS.s.sol --rpc-url holesky --broadcast",
"clean": "forge clean",
"publish": "npm publish --access public",
"deploy:hardhat:linea": "npx hardhat run --network linea script/hardhat/deployPrimus.js",
"deploy:hardhat:lineasepolia": "npx hardhat run --network lineasepolia script/hardhat/deployPrimus.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@openzeppelin/hardhat-upgrades": "^2.3.1",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"hardhat": "^2.16.1"
},
"dependencies": {
"dotenv": "^16.3.1"
}
}