-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.88 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.88 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
{
"name": "getting-started",
"version": "1.0.0",
"main": "index.js",
"author": "Vansh Wassan <007blackhacker@gmail.com>",
"license": "MIT",
"dependencies": {
"@api3/airnode-abi": "^0.12.0",
"@api3/airnode-admin": "^0.12.0",
"@api3/airnode-protocol": "^0.12.0",
"@api3/airnode-protocol-v1": "^2.10.0",
"@api3/contracts": "^0.12.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@types/sinon-chai": "^3.2.3",
"ethereum-waffle": "*",
"hardhat": "^2.18.2",
"hardhat-deploy": "^0.11.43"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.0",
"chai": "^4.2.0",
"ethers": "^5.0.0",
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.8.0",
"typechain": "^8.1.0"
},
"scripts": {
"compile": "hardhat compile",
"deploy": "hardhat deploy --network goerli",
"deploy-rrp-requester": "hardhat deploy --network goerli --tags RrpRequester",
"deploy-dapi-reader": "hardhat deploy --network goerli --tags DapiReader",
"deploy-qrng-requester": "hardhat deploy --network goerli --tags QrngRequester",
"fund-qrng": "hardhat run scripts/fund_qrng.js --network goerli",
"fund-rrp": "hardhat run scripts/fund_rrp.js --network goerli",
"read-dapi": "hardhat run scripts/read_dapi.js --network goerli",
"request-qrng:uint256": "hardhat run scripts/request_qrng_uint256.js --network goerli",
"request-qrng:array": "hardhat run scripts/request_qrng_array.js --network goerli",
"request-rrp": "hardhat run scripts/request_rrp.js --network goerli",
"verify": "hardhat verify"
}
}