-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 979 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "fluid-stable-amm",
"version": "1.0.0",
"description": "Production-grade USDC/USDT StableSwap AMM on Base — open source, MIT licensed",
"scripts": {
"build": "forge build",
"test": "forge test -vvv",
"test:fork": "forge test --fork-url $BASE_RPC_URL -vvv",
"test:math": "forge test --match-contract StableMathTest -vvv",
"deploy": "forge script script/Deploy.s.sol --rpc-url base --broadcast --verify --etherscan-api-key $BASESCAN_API_KEY",
"deploy:testnet": "forge script script/Deploy.s.sol --rpc-url base_sepolia --broadcast --verify --etherscan-api-key $BASESCAN_API_KEY",
"sdk:build": "cd sdk && npm run build",
"sdk:dev": "cd sdk && npm run dev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fluidwallet/fluid-stable-amm"
},
"keywords": ["stableswap", "amm", "curve", "defi", "base", "usdc", "usdt", "solidity"],
"author": "Fluid Wallet <abhijeethganji2@gmail.com>"
}