-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) 路 1.29 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) 路 1.29 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "stealth-auction-hook",
"version": "1.0.0",
"description": "StealthAuction Hook for Uniswap v4 - confidential stealth auctions with FHE",
"scripts": {
"test": "forge test --via-ir",
"build": "forge build --via-ir",
"deploy": "forge script script/Deploy.s.sol --broadcast",
"demo": "forge script script/Demo.s.sol --broadcast"
},
"keywords": [
"blockchain",
"ethereum",
"smart-contracts",
"solidity",
"FHE",
"encryption",
"privacy",
"coprocessor",
"fhenix",
"cofhe",
"uniswap",
"trading",
"hooks",
"auction",
"stealth-auction"
],
"repository": {
"type": "git",
"url": "git+https://github.com/najnomics/StealthAuction.git"
},
"author": "najnomics",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^5.0.0",
"@openzeppelin/contracts-upgradeable": "^5.0.0",
"@fhenixprotocol/cofhe-contracts": "0.0.13",
"@fhenixprotocol/cofhe-mock-contracts": "^0.3.0",
"@uniswap/v4-core": "1.0.2",
"@uniswap/v4-periphery": "1.0.2",
"forge-std": "github:foundry-rs/forge-std"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-foundry": "^1.1.3",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"hardhat": "^2.22.19"
}
}