-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"name": "zkproof-native-to-evm-bridge",
"version": "1.0.0",
"description": "Bridge service for monitoring ZK proof submissions on Telos Native and bridging them to Telos EVM",
"main": "src/main.js",
"type": "module",
"scripts": {
"start": "node src/main.js",
"dev": "node --inspect src/main.js",
"deploy-contract": "node scripts/deployContract.js",
"fund-bridge": "node scripts/fundBridge.js",
"check-balance": "node scripts/checkBalance.js",
"test": "echo \"No tests yet\""
},
"keywords": [
"telos",
"evm",
"bridge",
"zkproof",
"snark"
],
"author": "Telos Network",
"license": "MIT",
"dependencies": {
"eosjs": "^22.1.0",
"@greymass/eosio": "^0.7.4",
"@telosnetwork/telosevm-js": "^4.0.8",
"ethers": "^5.7.2",
"ethereumjs-util": "^7.1.5",
"@ethereumjs/tx": "^4.2.0",
"@ethereumjs/common": "^3.2.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@openzeppelin/contracts": "^4.9.3"
},
"engines": {
"node": ">=16.0.0"
}
}