-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (60 loc) · 2.69 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "unlockd",
"version": "2.0.0",
"description": "Unlockd V2 core smart contracts",
"main": "index.js",
"keywords": [
"unlockd",
"protocol",
"protocol-v2",
"rwa",
"defi",
"ethereum",
"solidity"
],
"bugs": {
"url": "https://github.com/UnlockdFinance/unlockdv2/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UnlockdFinance/unlockdv2.git"
},
"author": "Daniel Martin Jimenez @damarnez",
"license": "BUSL-1.1",
"homepage": "https://unlockd.finance",
"scripts": {
"natspec": "natspec-smells",
"command:buy:weth": "ts-node ./exec/index.ts generate --action buy --address 0x000000000000000000000000000000000000DEAD --nft 0xc1a5fc1d2b17f3a4c592da5d3c533c27f353d8a1:8821 --currency 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2",
"command:buy:dai": "ts-node ./exec/index.ts generate --action buy --address 0x000000000000000000000000000000000000DEAD --nft 0xc1a5fc1d2b17f3a4c592da5d3c533c27f353d8a1:8821 --currency 0x6B175474E89094C44Da98b954EedeAC495271d0F",
"command:sell:weth": "ts-node ./exec/index.ts generate --action sell --address 0x815Deac7795c1566E17995f4e457518B1b593edc --nft 0x26727ed4f5ba61d3772d1575bca011ae3aef5d36:1528 --currency 0x6B175474E89094C44Da98b954EedeAC495271d0F",
"command:sell:dai": "ts-node ./exec/index.ts generate --action sell --address 0x815Deac7795c1566E17995f4e457518B1b593edc --nft 0x26727ed4f5ba61d3772d1575bca011ae3aef5d36:1528 --currency 0x6B175474E89094C44Da98b954EedeAC495271d0F",
"command:bitmap": "ts-node ./exec/index.ts bitmap --price 100000000000000000000 --ltv 60 --threshold 65 --loanId 2",
"report": "forge coverage --ir-minimum --report lcov && genhtml -o report --branch-coverage lcov.info",
"lint": "prettier ./",
"lint:fix": "npm run lint -- --write",
"format": "forge fmt && prettier --write \"src/**/*.+(js|ts|json|yaml|sol)\" \"test/**/*.+(js|ts|json|yaml|sol)\"",
"fork:create": "ts-node _helpers/fork_create.ts",
"fork:destroy": "ts-node _helpers/fork_destroy.ts",
"coverage": "node .coverage/run_coverage.js",
"inspect": "bash ./exec/inspect.sh",
"verify:sepolia": "bash ./exec/verify_contracts_sepolia.sh",
"verify:amoy": "bash ./exec/verify_contracts_amoy.sh",
"verify:mainnet": "bash ./exec/verify_contracts_mainnet.sh"
},
"devDependencies": {
"@types/ora": "^3.2.0",
"prettier": "^2.8.3",
"prettier-plugin-solidity": "^1.1.1"
},
"dependencies": {
"@defi-wonderland/natspec-smells": "^1.0.3",
"@types/node": "^20.1.2",
"axios": "^1.4.0",
"bignumber.js": "^9.1.1",
"commander": "^10.0.1",
"dotenv": "^16.0.3",
"ethers": "5.7",
"ora": "^3.4.0",
"typescript": "^5.0.4"
}
}