-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.97 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
{
"name": "evm-compatible-chain-bridge.git",
"version": "1.0.0",
"description": "Bridging between EVM compatable chains, like Ethereum and Quorum for moving erc20 tokens back and forth",
"scripts": {
"chain": "ganache-cli -p 8545 -i 1010 -h localhost -l 300000000 --account '0xd1c71e71b06e248c8dbe94d49ef6d6b0d64f5d71b1e33a0f39e14dadb070304a,1000000000000000000000' '0x8179ce3d00ac1d1d1d38e4f038de00ccd0e0375517164ac5448e3acc847acb34,1000000000000000000000' '0xdf38daebd09f56398cc8fd699b72f5ea6e416878312e1692476950f427928e7d,1000000000000000000000' '0x97d12403ffc2faa3660730ae58bca14a894ebd78b4d8207d22083554ae96be5c,1000000000000000000000' '0x71c64befc3dfd761a94cdcd1ce3e7603ea19cccdde4ac3428818821863e60481,1000000000000000000000' '0x70d46b61473e44be3e4a438c8aa373a795eb8ee0155993776b51062c59353918,1000000000000000000000' '0xe503cceff655bfb9075de9ff5bb3aa84aec08cf426c5fa87c1bec65ab5b975bc,1000000000000000000000' '0x7663e0a3bb5b39b233726ea6d4939fb9477a8c24b4b289564f24fb8b651d4c25,1000000000000000000000' '0x27f5756660416f3f1469b296ee4ee579b9a19167a15337b44e34e1f8221f4bd7,1000000000000000000000' '0x432494ee8a9af04064bd4bee7419c7e7023ec9fcdb9d1b7a6d02289f62545dd7,1000000000000000000000'",
"compile": "truffle compile",
"migrate": "truffle migrate --reset --network development",
"test": "truffle test",
"fmt": "prettier --write 'contracts/**/*.sol'",
"lint": "prettier --list-different 'contracts/**/*.sol'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tak1827/quorum-bridge.git"
},
"author": "tak<[email protected]>",
"license": "MIT License",
"bugs": {
"url": "https://github.com/tak1827/quorum-bridge/issues"
},
"homepage": "https://github.com/tak1827/quorum-bridge#readme",
"dependencies": {
"@openzeppelin/contracts": "^4.3.2",
"@truffle/hdwallet-provider": "^1.5.1"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.15",
"chai": "^4.3.4",
"prettier-plugin-solidity": "^1.0.0-beta.19"
}
}