-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 775 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 775 Bytes
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
{
"name": "handshake-escrow-contracts",
"version": "1.0.0",
"description": "Trustless escrow smart contracts for Towns on Base",
"scripts": {
"build": "forge build",
"test": "forge test",
"test:gas": "forge test --gas-report",
"test:coverage": "forge coverage",
"deploy:sepolia": "forge script script/Deploy.s.sol:DeployScript --sig 'runTestnet()' --rpc-url $BASE_SEPOLIA_RPC_URL --broadcast --verify",
"deploy:base": "forge script script/Deploy.s.sol:DeployScript --rpc-url $BASE_RPC_URL --broadcast --verify",
"extract-abi": "./extract-abi.sh",
"format": "forge fmt",
"format:check": "forge fmt --check"
},
"keywords": [
"escrow",
"towns",
"base",
"defi",
"web3"
],
"author": "",
"license": "MIT"
}