-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.85 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
{
"name": "multisender",
"description": "Bulk send Ethereum or ERC20 tokens to multiple addresses in one single transasction and save gas fees.",
"version": "1.0.0",
"main": "index.js",
"directories": {
"test": "test"
},
"config": {
"deployed_proxy_address": "0xEf4c9f5a2e77aD937bEB59E676e77ae57719cae2",
"deployed_upgraded_address": "0x386e570Edb864faB91Ff65AD091b88844dA236Dc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alicesin615/multi-sender.git"
},
"author": "alicesin615",
"license": "ISC",
"bugs": {
"url": "https://github.com/alicesin615/multi-sender/issues"
},
"homepage": "https://github.com/alicesin615/multi-sender#readme",
"scripts": {
"console": "npx hardhat console --network sepolia",
"test": "mocha test/Multisender.ts --reporter spec",
"test-v2": "npx hardhat test test/MultisenderV2.ts",
"compile": "npx hardhat compile",
"verify": "npx hardhat verify --network sepolia $npm_package_config_deployed_proxy_address",
"verify-v2": "npx hardhat verify --network sepolia $npm_package_config_deployed_upgraded_address",
"upgrade": "npx hardhat run scripts/upgrade.ts --network sepolia",
"deploy": "npx hardhat run scripts/deploy.ts --network sepolia"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.1",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@openzeppelin/hardhat-upgrades": "^3.0.2",
"dotenv": "^16.4.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-toolbox-viem": "^2.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.4",
"ethers": "^6.10.0",
"hardhat": "^2.22.2"
}
}