-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 3.11 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
{
"name": "web3oj",
"postinstall": "typechain",
"scripts": {
"plus": "npx hardhat --network rinkeby run scripts/sol_plus.ts",
"minus": "npx hardhat --network rinkeby run scripts/sol_minus.ts",
"mul": "npx hardhat --network rinkeby run scripts/sol_mul.ts",
"div": "npx hardhat --network rinkeby run scripts/sol_div.ts",
"token": "npx hardhat --network rinkeby run scripts/sol_token.ts",
"transfer": "npx hardhat --network rinkeby run scripts/sol_transfer.ts",
"approve": "npx hardhat --network rinkeby run scripts/sol_approve.ts",
"transfer_from": "npx hardhat --network rinkeby run scripts/sol_transfer_from.ts",
"burn": "npx hardhat --network rinkeby run scripts/sol_burn.ts",
"pause": "npx hardhat --network rinkeby run scripts/sol_pause.ts",
"nft": "npx hardhat --network rinkeby run scripts/sol_nft.ts",
"nft_approve": "npx hardhat --network rinkeby run scripts/sol_nft_approve.ts",
"nft_transfer_from": "npx hardhat --network rinkeby run scripts/sol_nft_transfer_from.ts",
"nft_burn": "npx hardhat --network rinkeby run scripts/sol_nft_burn.ts",
"nft_pause": "npx hardhat --network rinkeby run scripts/sol_nft_pause.ts",
"nft_find": "npx hardhat --network rinkeby run scripts/sol_nft_find.ts",
"mint": "npx hardhat --network rinkeby run scripts/sol_mint.ts",
"permit": "npx hardhat --network rinkeby run scripts/sol_permit.ts",
"nft_mint": "npx hardhat --network rinkeby run scripts/sol_nft_mint.ts",
"nft_mint2": "npx hardhat --network rinkeby run scripts/sol_nft_mint2.ts",
"abi": "npx hardhat --network rinkeby run scripts/sol_abi.ts",
"find_private": "npx hardhat --network rinkeby run scripts/sol_find_private.ts",
"abi2": "npx hardhat --network rinkeby run scripts/sol_abi2.ts",
"receive": " npx hardhat --network rinkeby run scripts/sol_receive.ts",
"unlock": "npx hardhat --network rinkeby run scripts/sol_unlock.ts",
"cmp": "npx hardhat --network rinkeby run scripts/sol_cmp.ts",
"error_handle": "npx hardhat --network rinkeby run scripts/sol_error_handle.ts",
"error_handle2": "npx hardhat --network rinkeby run scripts/sol_error_handle2.ts",
"error_handle3": "npx hardhat --network rinkeby run scripts/sol_error_handle3.ts",
"array_sum": "npx hardhat --network rinkeby run scripts/sol_array_sum.ts"
},
"devDependencies": {
"@ethersproject/abi": "^5.6.4",
"@ethersproject/providers": "^5.6.8",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.3",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@openzeppelin/contracts": "^4.7.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.6",
"chai": "^4.3.6",
"ethers": "^5.6.9",
"hardhat": "^2.10.1",
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.7.4"
},
"dependencies": {
"dotenv": "^16.0.1"
}
}