forked from ensdomains/reverse-records
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2.49 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
{
"name": "@bchdomains/reverse-records",
"version": "1.0.1",
"description": "Returns multiple LNS reverse records with forward lookup check",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"deploy:ropsten": "npx hardhat run --network ropsten scripts/deploy.js",
"verify:ropsten": "npx hardhat verify --network ropsten 0x5bBFe410e18DCcaebbf5fD7A00844d4255615258 '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e'",
"query:ropsten": "npx hardhat names --network ropsten --addresses",
"deploy:rinkeby": "npx hardhat run --network rinkeby scripts/deploy.js",
"verify:rinkeby": "npx hardhat verify --network rinkeby 0x196eC7109e127A353B709a20da25052617295F6f '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e'",
"query:rinkeby": "npx hardhat names --network rinkeby --addresses",
"deploy:goerli": "npx hardhat run --network goerli scripts/deploy.js",
"verify:goerli": "npx hardhat verify --network goerli 0x333Fc8f550043f239a2CF79aEd5e9cF4A20Eb41e '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e'",
"query:goerli": "npx hardhat names --network goerli --addresses",
"deploy:mainnet": "npx hardhat run --network mainnet scripts/deploy.js",
"verify:mainnet": "npx hardhat verify --network mainnet 0x3671aE578E63FdF66ad4F3E12CC0c0d71Ac7510C '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e'",
"query:mainnet": "npx hardhat names --network mainnet --addresses",
"test:mainnet": "npx hardhat run --network mainnet scripts/real_data_test.js",
"build": "npx hardhat compile",
"prepublishOnly": "yarn build",
"pub": "yarn publish --access public"
},
"files": [
"build/contracts/*json",
"contracts/**/*.sol",
"artifacts/contracts/**/*.json",
"deployments/smartbch/*.json",
"deployments/smartbch-amber/*.json"
],
"keywords": [],
"author": "Makoto Inoue",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.0.31",
"graphql": "^15.5.0",
"hardhat": "^2.0.11",
"hardhat-dependency-compiler": "^1.1.2",
"hardhat-deploy": "^0.11.0"
},
"dependencies": {
"@bchdomains/address-encoder": "^0.2.16",
"@bchdomains/lns-contracts": "^0.0.10",
"@ensdomains/buffer": "^0.0.10",
"@ensdomains/dnssec-oracle": "^0.2.0",
"@ensdomains/ens": "^0.5.0",
"@ensdomains/resolver": "^0.3.0",
"dotenv": "^8.2.0",
"eth-ens-namehash": "^2.0.8"
}
}