forked from ThomasdenH/yvarb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
22 lines (22 loc) · 1.09 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
{
"name": "yvarb",
"version": "1.0.0",
"description": "Run `ganache-cli`:\r ```\r ganache-cli --fork {NODE_ID} --wallet.defaultBalance 1000000 --wallet.unlockedAccounts 0x3b870db67a45611CF4723d44487EAF398fAc51E3\r npx truffle compile\r npx truffle test .\\test\\TestYieldLever.sol\r ```",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "forge create contracts/YieldLever.sol:YieldLever --rpc-url \"http://127.0.0.1:8545\" --private-key 0xde7e35b0dd8b3bebebd1f793daf12659f9cf3cb7d52a3d3921fcff63808e7d05 --legacy --gas-price 182929878490 --json > ./frontend/src/generated/deployment.json && cp \"./out/YieldLever.sol/YieldLever.json\" \"./frontend/src/generated/abi/\" && npx abi-types-generator ./frontend/src/generated/abi/YieldLever.json --provider=ethers_v5 && npx ts-node ./scripts/prepare-ethers.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"ethers": "^5.6.1",
"ganache": "^7.0.5"
},
"devDependencies": {
"ethereum-abi-types-generator": "^1.3.2"
}
}