-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.47 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@nuts-finance/merkle-distributor",
"author": {
"name": "NUTS Finance"
},
"description": "📦 A smart contract that distributes a balance of tokens according to a merkle root",
"version": "1.1.0",
"homepage": "https://nuts.finance",
"keywords": [
"nuts",
"merkle"
],
"repository": {
"type": "git",
"url": "https://github.com/nutsfinance/merkle-distributor"
},
"files": [
"build"
],
"engines": {
"node": ">=10"
},
"devDependencies": {
"@acala-network/contracts": "4.2.1",
"@acala-network/eth-providers": "^2.9.1",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "4.4.2",
"@openzeppelin/contracts-upgradeable": "4.4.2",
"@openzeppelin/hardhat-upgrades": "^1.17.0",
"@reactivex/rxjs": "^6.6.7",
"@types/chai": "^4.2.6",
"@types/mocha": "^5.2.7",
"@types/yargs": "^17.0.11",
"axios": "^0.20.0",
"chai": "^4.2.0",
"commander": "^6.1.0",
"ethereum-waffle": "^3.0.0",
"ethereumjs-util": "^7.0.4",
"ethers": "^5.6.9",
"hardhat": "^2.9.3",
"mocha": "^6.2.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.0",
"rxjs": "^7.5.6",
"solc": "0.6.11",
"truffle-hdwallet-provider": "^1.0.6",
"truffle-plugin-verify": "^0.5.6",
"ts-node": "^8.5.4",
"typescript": "^4.7.4",
"web3": "^1.7.4"
},
"dependencies": {
"@acala-network/api": "^6.1.3",
"@acala-network/bodhi": "^2.9.1",
"@acala-network/sdk-core": "^4.1.11",
"@acala-network/types": "^6.1.3",
"@aws-sdk/client-s3": "^3.145.0",
"@aws-sdk/client-sns": "^3.145.0",
"@babel/runtime": "^7.26.0",
"@ericxstone/hardhat-blockscout-verify": "^1.0.0",
"@fast-csv/format": "^4.3.5",
"@open-web3/util": "^2.0.1",
"@polkadot/api": "^14.0.1",
"@polkadot/types": "^14.0.1",
"@polkadot/ui-keyring": "^3.11.2",
"@polkadot/util-crypto": "^13.2.2",
"@types/lodash": "^4.14.182",
"add": "^2.0.6",
"dotenv": "^16.0.0",
"graphql": "^16.5.0",
"graphql-request": "^4.3.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"npm": "^10.9.0",
"rxjs": "^7.5.5",
"stream": "^0.0.2",
"yargs": "^17.4.0"
},
"scripts": {
"build": "hardhat compile",
"deploy-local": "hardhat run scripts/deploy.js --network local",
"deploy-mandala": "hardhat run scripts/deploy-mandala.js",
"deploy-karura": "hardhat run scripts/deploy-karura.js"
}
}