-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.29 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.29 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
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
{
"name": "hardhat-project",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomicfoundation/hardhat-verify": "^2.0.3",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@openzeppelin/hardhat-upgrades": "^3.0.1",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "^6.1.6",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"chai": "^4.3.10",
"hardhat": "^2.16.1",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.5",
"typechain": "^8.3.2"
},
"scripts": {
"deploy-bank-bsc": "cross-env CONTRACT_TYPE=bank-single-file npx hardhat run scripts/deploy.ts --network bscTestnet",
"deploy-bank-cvc": "cross-env CONTRACT_TYPE=bank-single-file npx hardhat run scripts/deploy.ts --network cvcTestnet",
"deploy-bank-multiple-file-bsc": "cross-env CONTRACT_TYPE=bank-multiple-file npx hardhat run scripts/deploy.ts --network bscTestnet",
"deploy-bank-multiple-file-cvc": "cross-env CONTRACT_TYPE=bank-multiple-file npx hardhat run scripts/deploy.ts --network cvcTestnet",
"deploy-tether-bsc": "cross-env CONTRACT_TYPE=tether npx hardhat run scripts/deploy.ts --network bscTestnet",
"deploy-tether-cvc": "cross-env CONTRACT_TYPE=tether npx hardhat run scripts/deploy.ts --network cvcTestnet",
"deploy-nft-bsc": "cross-env CONTRACT_TYPE=nft npx hardhat run scripts/deploy.ts --network bscTestnet",
"deploy-nft-cvc": "cross-env CONTRACT_TYPE=nft npx hardhat run scripts/deploy.ts --network cvcTestnet",
"deploy-nft-xdc": "cross-env CONTRACT_TYPE=nft npx hardhat run scripts/deploy.ts --network xdcTestnet"
},
"dependencies": {
"@chainapsis/cosmosjs": "^0.0.3-alpha.3",
"@dfinity/rosetta-client": "^0.6.2",
"@ethereumjs/common": "2.6.0",
"@ethereumjs/rlp": "^5.0.1",
"@ethereumjs/tx": "3.4.0",
"@ethereumjs/util": "^9.0.1",
"@kunroku/iost": "^2.2.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/contracts": "^4.9.2",
"@openzeppelin/contracts-upgradeable": "^4.9.5",
"@poanet/solidity-flattener": "^3.0.9",
"@polkadot/api": "^10.11.1",
"@polkadot/keyring": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"@polkadot/wasm-crypto": "^7.3.2",
"@solana/web3.js": "^1.89.1",
"@substrate/txwrapper-polkadot": "^7.1.1",
"@terra-money/terra.js": "^3.0.10",
"add": "^2.0.6",
"avalanche": "^3.13.3",
"axios": "^1.6.2",
"bignumber.js": "^9.1.2",
"bitcore-lib": "^8.25.25",
"bitcore-lib-cash": "^8.25.31",
"bitcore-lib-doge": "^8.25.27",
"bitcore-lib-ltc": "^8.25.27",
"bn.js": "^5.2.0",
"cardanocli-js": "^4.0.1",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"ethereum-private-key-to-public-key": "^0.0.5",
"ethereum-public-key-to-address": "^0.0.5",
"ethers": "^6.9.1",
"iost": "^0.1.22",
"iotex-antenna": "^0.30.10",
"lodash": "^4.17.21",
"near-api-js": "^0.44.2",
"sha256": "^0.2.0",
"sol-merger": "^4.4.0",
"sol2uml": "^2.5.14",
"sotez": "^10.0.0",
"stellar-sdk": "^9.1.0",
"tronweb": "^4.1.0",
"ts-node": "^10.9.2", "typescript": "^5.2.2",
"web3": "^1.6.1",
"xrpl": "^2.0.2",
"yarn": "^1.22.21"
}
}