-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 5.03 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 5.03 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@deed3labs/protocol-contracts",
"version": "0.1.0",
"description": "DeedNFT Contracts with Validator integration for decentralized asset registration and verification",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"test:coverage": "hardhat coverage",
"test:gas": "REPORT_GAS=true hardhat test",
"test:core": "hardhat test test/core/*.spec.ts",
"test:extensions": "hardhat test test/extensions/*.test.ts",
"test:integration": "hardhat test test/integration/*.test.ts",
"compile": "npx hardhat compile",
"deploy": "npx hardhat run scripts/deploy.js --network <network-name>",
"deploy:burner-bonds": "npx hardhat run deploy/deploy_burner_bonds.ts --network",
"deploy:access-manager": "npx hardhat run deploy/16_deploy_AccessManager.ts --network",
"deploy:membership-registry": "npx hardhat run deploy/17_deploy_MembershipRegistry.ts --network",
"configure:membership-registry": "npx hardhat run deploy/18_configure_AccessManagerMembershipRegistry.ts --network",
"deploy:burner-bonds:sepolia": "npx hardhat run deploy/deploy_burner_bonds.ts --network base-sepolia",
"deploy:burner-bonds:base": "npx hardhat run deploy/deploy_burner_bonds.ts --network base",
"deploy:token-registry": "npx hardhat run deploy/07_deploy_TokenRegistry.ts --network",
"deploy:assurance-pool": "npx hardhat run deploy/08_deploy_AssurancePool.ts --network",
"deploy:assurance-oracle": "npx hardhat run deploy/09_deploy_AssuranceOracle.ts --network",
"deploy:burner-bond-factory": "npx hardhat run deploy/10_deploy_BurnerBondFactory.ts --network",
"deploy:clrusd": "npx hardhat run deploy/12_deploy_ClearUSD.ts --network",
"deploy:esa-vault": "npx hardhat run deploy/13_deploy_ESADepositVault.ts --network",
"deploy:savings-intents": "npx hardhat run deploy/19_deploy_SavingsIntentFactory.ts --network",
"deploy:clrusd-register": "npx hardhat run deploy/14_register_CLRUSD_in_registry.ts --network",
"deploy:clrusd-pool": "npx hardhat run deploy/15_deploy_CLRUSDTokenPool.ts --network",
"clrusd:ccip:configure": "npx hardhat run scripts/clrusd/configure_ccip.ts --network",
"clrusd:validate": "npx hardhat run scripts/clrusd/validate_setup.ts --network",
"clrusd:repair-vault": "npx hardhat run scripts/clrusd/repair_vault.ts --network",
"send:grant-settler:base": "npx hardhat run scripts/grant_claim_escrow_settler.ts --network base",
"send:grant-settler:base-sepolia": "npx hardhat run scripts/grant_claim_escrow_settler.ts --network base-sepolia",
"verify:deployments": "npx hardhat run deploy/verify_deployments.ts --network",
"verify:deployments:sepolia": "npx hardhat run deploy/verify_deployments.ts --network base-sepolia",
"upgrade:check": "npx hardhat run deploy/upgrade/checkUpgrade.ts --network",
"upgrade:execute": "npx hardhat run deploy/upgrade/upgradeContract.ts --network",
"upgrade:validate": "npx hardhat run deploy/upgrade/checkUpgrade.ts --network",
"test:esa-vault": "hardhat test test/peripherals/ESADepositVault.spec.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/Deed3Labs/Protocol-Contracts.git"
},
"keywords": [
"Solidity",
"ERC721",
"NFT",
"Validator",
"Smart Contracts"
],
"author": "Deed3Labs, LLC. <dev@deed3.io>",
"contributors": [
"Isaiah @kyngkai909 Litt <isaiahlitt@deed3.io>",
"Corantin @gossman Noll <corantin@deed3.io>",
"Kevin @kafann Mansour <kev@deed3.io>"
],
"license": "AGPL-3.0",
"dependencies": {
"@chainlink/contracts": "1.5.0",
"@chainlink/contracts-ccip": "1.6.4",
"@limitbreak/creator-token-standards": "^4.0.1",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"debug": "^4.4.0",
"qs": "^6.14.0",
"side-channel-weakmap": "^1.0.2",
"solady": "^0.1.16"
},
"devDependencies": {
"@ethersproject/bignumber": "^5.8.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-verify": "^2.0.13",
"@openzeppelin/hardhat-upgrades": "^3.9.0",
"@typechain/ethers-v6": "^0.4.3",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.3.20",
"@types/config": "^3.3.5",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/keccak": "^3.0.5",
"@types/lodash": "^4.17.16",
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.3",
"@types/resolve": "^1.20.6",
"@types/semver": "^7.7.0",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"chai": "^4.3.7",
"dotenv": "^16.5.0",
"ethers": "^6.13.5",
"fs-extra": "^11.3.0",
"hardhat": "^2.24.0",
"hardhat-deploy": "^0.11.45",
"hardhat-gas-reporter": "^1.0.10",
"hardhat-preprocessor": "^0.1.5",
"mocha": "^10.3.0",
"prettier": "^3.5.3",
"resolve": "^1.22.10",
"solhint": "^3.3.6",
"solidity-coverage": "^0.8.15",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.8.3",
"zksync-web3": "^0.17.1"
},
"engines": {
"node": ">=16.0.0"
}
}