-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
19 lines (19 loc) · 1.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "foundry-template",
"version": "1.0.0",
"description": "**Foundry is a blazing fast, portable and modular toolkit for Ethereum application development written in Rust.**",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy:local": "source ./.env && forge script script/DeploySampleToken.s.sol:DeploySampleToken --fork-url http://localhost:8545 --broadcast -vvvv",
"deploy:sepolia": "source ./.env && forge script script/DeploySampleToken.s.sol:DeploySampleToken --chain sepolia --rpc-url $SEPOLIA_RPC_URL --broadcast --verify -vvvv",
"deploy:mainnet": "source ./.env && forge script script/DeploySampleToken.s.sol:DeploySampleToken --chain mainnet --rpc-url $MAINNET_RPC_URL --broadcast --verify -vvvv"
},
"author": "johnpaulcas",
"license": "ISC",
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}