-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.98 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
36
{
"name": "testnet-contracts",
"version": "1.1.0",
"description": "Dependencies and scripts for Peggy smart contracts",
"private": true,
"author": "Denali Marsh",
"license": "ISC",
"workspaces": [
"testnet-contracts"
],
"scripts": {
"relayer-1": "ebrelayer init ethereum ws://localhost:7545/ 0x30753E4A8aad7F8597332E813735Def5dD395028 validator --make-claims=true --chain-id=peggy",
"relayer-2": "ebrelayer init ethereum ws://localhost:7545/ 0x30753E4A8aad7F8597332E813735Def5dD395028 validator --chain-id=peggy",
"relayer-3": "ebrelayer init cosmos tcp://localhost:26657 http://localhost:7545 0x30753E4A8aad7F8597332E813735Def5dD395028",
"develop": "yarn workspace testnet-contracts develop",
"migrate": "yarn workspace testnet-contracts migrate",
"peggy:all": "yarn migrate && yarn peggy:setup && yarn token:mint && yarn token:approve 1000000000000000000 && yarn token:address && yarn peggy:address",
"peggy:address": "yarn workspace testnet-contracts peggy:address",
"peggy:validators": "yarn workspace testnet-contracts peggy:validators",
"peggy:hasLocked": "yarn workspace testnet-contracts peggy:hasLocked",
"peggy:getTx": "yarn workspace testnet-contracts peggy:getTx",
"peggy:setup": "yarn workspace testnet-contracts peggy:setup",
"peggy:lock": "yarn workspace testnet-contracts peggy:lock",
"peggy:burn": "yarn workspace testnet-contracts peggy:burn",
"peggy:check": "yarn workspace testnet-contracts peggy:check",
"peggy:process": "yarn workspace testnet-contracts peggy:process",
"peggy:addBridgeToken": "yarn workspace testnet-contracts peggy:addBridgeToken",
"peggy:getTokenBalance": "yarn workspace testnet-contracts peggy:getTokenBalance",
"token:address": "yarn workspace testnet-contracts token:address",
"token:mint": "yarn workspace testnet-contracts token:mint",
"token:approve": "yarn workspace testnet-contracts token:approve"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.6"
}
}