forked from SoulWallet/soul-wallet-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 3.52 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
{
"name": "soulwallet-contract",
"scripts": {
"build": "forge build --sizes",
"test": "forge test -vvv",
"deploy:keystore": "source .env && forge script script/KeystoreDeployer.s.sol:KeystoreDeployer --ffi --rpc-url $RPC_URL --broadcast",
"deploy:soulwallet": "source .env && forge script script/WalletDeployer.s.sol:WalletDeployer --ffi --rpc-url $RPC_URL --broadcast",
"deploy:singletonFactory": "source .env && forge script script/SingletonFactory.s.sol:SingletonFactory --ffi --rpc-url $RPC_URL --broadcast",
"deploy:paymaster": "source .env && forge script script/PaymasterDeployer.s.sol:PaymasterDeployer --ffi --rpc-url $RPC_URL --broadcast",
"deploy:local": "npm-run-all -s deploy:singletonFactory deploy:keystore deploy:soulwallet deploy:paymaster",
"deploy:goeril:keystore": "source .env && forge script script/KeystoreDeployer.s.sol:KeystoreDeployer --ffi --rpc-url $GOERLI_RPC_URL --broadcast --verify --etherscan-api-key $GOERLI_SCAN_API_KEY",
"deploy:goeril:soulwallet": "source .env && forge script script/WalletDeployer.s.sol:WalletDeployer --ffi --rpc-url $GOERLI_RPC_URL --broadcast --verify --etherscan-api-key $GOERLI_SCAN_API_KEY",
"deploy:goeril:paymaster": "source .env && forge script script/PaymasterDeployer.s.sol:PaymasterDeployer --ffi --rpc-url $GOERLI_RPC_URL --broadcast --verify --etherscan-api-key $GOERLI_SCAN_API_KEY",
"deploy:goeril:testCreateWallet": "source .env && forge script script/CreateWalletDirect.s.sol:CreateWalletDirect --ffi --rpc-url $GOERLI_RPC_URL --broadcast --verify --etherscan-api-key $GOERLI_SCAN_API_KEY",
"deploy:op-goerli:keystore": "source .env && forge script script/KeystoreDeployer.s.sol:KeystoreDeployer --ffi --rpc-url $OPTIMISM_GOERLI_RPC_URL --broadcast --verify --etherscan-api-key $OPTIMISM_GOERLI_SCAN_API_KEY",
"deploy:op-goerli:soulwallet": "source .env && forge script script/WalletDeployer.s.sol:WalletDeployer --ffi --rpc-url $OPTIMISM_GOERLI_RPC_URL --broadcast --verify --etherscan-api-key $OPTIMISM_GOERLI_SCAN_API_KEY",
"deploy:op-goerli:paymaster": "source .env && forge script script/PaymasterDeployer.s.sol:PaymasterDeployer --ffi --rpc-url $OPTIMISM_GOERLI_RPC_URL --broadcast --verify --etherscan-api-key $OPTIMISM_GOERLI_SCAN_API_KEY",
"deploy:arb-goerli:keystore": "source .env && forge script script/KeystoreDeployer.s.sol:KeystoreDeployer --ffi --rpc-url $ARB_GOERLI_RPC_URL --gas-estimate-multiplier 1900 --legacy --with-gas-price 3000000000 --broadcast --verify --etherscan-api-key $ARB_GOERLI_SCAN_API_KEY --verifier-url https://api-goerli.arbiscan.io/api",
"deploy:arb-goerli:soulwallet": "source .env && forge script script/WalletDeployer.s.sol:WalletDeployer --ffi --rpc-url $ARB_GOERLI_RPC_URL --gas-estimate-multiplier 1900 --legacy --with-gas-price 3000000000 --broadcast --verify --etherscan-api-key $ARB_GOERLI_SCAN_API_KEY --verifier-url https://api-goerli.arbiscan.io/api",
"deploy:arb-goerli:paymaster": "source .env && forge script script/PaymasterDeployer.s.sol:PaymasterDeployer --ffi --rpc-url $ARB_GOERLI_RPC_URL --gas-estimate-multiplier 1900 --legacy --with-gas-price 30000000000 --broadcast --verify --etherscan-api-key $ARB_GOERLI_SCAN_API_KEY --verifier-url https://api-goerli.arbiscan.io/api",
"gas-report": "forge test --gas-report"
},
"devDependencies": {
"@ethersproject/abi": "^5.6.4",
"@ethersproject/providers": "^5.6.8",
"dotenv": "^16.0.3",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.6.9",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}