-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 3.39 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
63
64
65
66
67
{
"name": "divaOracles",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"sl": "yarn prettier --write contracts/**/*.sol",
"sh": "solhint -f table contracts/**/*.sol",
"t": "yarn hardhat test",
"c": "yarn hardhat compile",
"size": "yarn hardhat size-contracts",
"coverage": "npx hardhat coverage",
"deploy:divaTellor:ethereum": "yarn hardhat run scripts/deploy/deployTellor.js --network ethMain && yarn verify:divaTellor",
"deploy:divaTellor:polygon": "yarn hardhat run scripts/deploy/deployTellor.js --network polygon && yarn verify:divaTellor",
"deploy:divaTellor:gnosis": "yarn hardhat run scripts/deploy/deployTellor.js --network gnosis && yarn verify:divaTellor",
"deploy:divaTellor:arbitrumMain": "yarn hardhat run scripts/deploy/deployTellor.js --network arbitrumMain && yarn verify:divaTellor",
"deploy:divaTellor:goerli": "yarn hardhat run scripts/deploy/deployTellor.js --network goerli && yarn verify:divaTellor",
"deploy:divaTellor:sepolia": "yarn hardhat run scripts/deploy/deployTellor.js --network sepolia && yarn verify:divaTellor",
"deploy:divaTellor:mumbai": "yarn hardhat run scripts/deploy/deployTellor.js --network mumbai && yarn verify:divaTellor",
"deploy:divaTellor:chiado": "yarn hardhat run scripts/deploy/deployTellor.js --network chiado && yarn verify:divaTellor",
"deploy:divaTellor:arbitrumTestnet": "yarn hardhat run scripts/deploy/deployTellor.js --network arbitrumTestnet && yarn verify:divaTellor",
"diva:createContingentPool": "yarn hardhat run scripts/examples/diva_createContingentPool.js",
"diva:getPoolParameters": "yarn hardhat run scripts/examples/diva_getPoolParameters.js",
"divaTellor:getMinPeriodUndisputed": "yarn hardhat run scripts/examples/divaTellor_getMinPeriodUndisputed.js",
"divaTellor:getQueryDataAndId": "yarn hardhat run scripts/examples/divaTellor_getQueryDataAndId.js",
"divaTellor:setFinalReferenceValue": "yarn hardhat run scripts/examples/divaTellor_setFinalReferenceValue.js",
"divaTellor:addTip": "yarn hardhat run scripts/examples/divaTellor_addTip.js",
"divaTellor:claimReward": "yarn hardhat run scripts/examples/divaTellor_claimReward.js",
"tellor:submitValue": "yarn hardhat run scripts/examples/tellor_submitValue.js",
"xdeploy:divaTellor": "npx node scripts/xdeploy/xdeployTellor.js",
"verify:divaTellor": "yarn hardhat run scripts/verifyTellor.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/divaprotocol/oracles.git"
},
"keywords": [],
"author": "DIVA Protocol Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/divaprotocol/oracles/issues"
},
"homepage": "https://github.com/divaprotocol/oracles#readme",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"hardhat": "^2.10.1",
"hardhat-gas-reporter": "1.0.4",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "0.7.18",
"typescript": "^4.5.4",
"xdeployer": "^1.1.27"
},
"dependencies": {
"@chainlink/contracts": "^0.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "^4.8.3",
"dotenv": "^10.0.0",
"usingtellor": "^4.0.1"
}
}