-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.5 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": "fula-chain",
"private": true,
"version": "1.0.0",
"scripts": {
"lint": "eslint --color --ext .ts scripts/",
"lint:fix": "yarn run lint --fix",
"hardhat": "hardhat",
"build": "hardhat compile",
"hardhat:setvar": "yarn hardhat vars set PK",
"deploy:deployMultichain": "yarn hardhat run scripts/deployToken.ts --network sepolia --show-stack-traces",
"deploy:deployMultichainBytecode": "yarn hardhat run scripts/deployMultichainBytecode.ts --network sepolia",
"deploy:localhost": "yarn hardhat run scripts/localhost.ts",
"test:token": "yarn hardhat test test/Storagetoken.test.ts",
"test:staking": "yarn hardhat test test/stakingEngine.test.ts",
"test:distribution": "yarn hardhat test test/TokenDistributionEngine.test.ts",
"test": "yarn hardhat test"
},
"devDependencies": {
"@buildwithsygma/sygma-sdk-core": "^2.7",
"@chainsafe/hardhat-plugin-multichain-deploy": "^1.0.4",
"@chainsafe/hardhat-ts-artifact-plugin": "^1.0.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.4",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.4",
"@nomicfoundation/hardhat-web3-v4": "^1.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/hardhat-upgrades": "^3.8.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.2.0",
"@types/eslint": "^8",
"@types/mocha": ">=9.1.0",
"@types/node": "^22.10.2",
"chai": "^4.2.0",
"eslint": "^8",
"ethereum-waffle": "^4.0.10",
"ethers": "^6.13.4",
"hardhat": "^2.19.5",
"hardhat-gas-reporter": "^1.0.10",
"solidity-coverage": "^0.8.7",
"ts-node": ">=8.0.0",
"typechain": "^8.3.2",
"typescript": ">=4.5.0",
"web3": "^4.5.0"
},
"packageManager": "[email protected]",
"dependencies": {
"@chainlink/contracts": "^1.3.0",
"@nomicfoundation/hardhat-ignition": "^0.15.9",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@openzeppelin/upgrades-core": "^1.41.0",
"@polkadot/api": "^15.0.2",
"@polkadot/keyring": "^13.2.3",
"@polkadot/types": "^15.0.2",
"@polkadot/types-codec": "^15.0.2",
"@polkadot/types-create": "^15.0.2",
"@polkadot/types-known": "^15.0.2",
"@polkadot/types-support": "^15.0.2",
"@polkadot/util": "^13.2.3",
"tslib": "^2.8.1"
}
}