@towns-labs/contracts 2.0.12 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -24,8 +24,8 @@ bun run generate # Generate TypeScript ABIs only
24
24
  bun run test # Run tests with verbose output
25
25
  bun run test:gas # Run tests with gas report
26
26
  bun run coverage # Generate coverage report
27
- bun run fmt # Format Solidity code
28
- bun run lint # Check formatting
27
+ bun run fmt # Format with Prettier
28
+ bun run lint # Check Prettier formatting
29
29
  bun run deploy:local # Deploy to local Anvil (for CI)
30
30
  bun run deploy:dev # Deploy to Base Sepolia
31
31
  bun run deploy:stage # Deploy to Base Mainnet (stage context)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@towns-labs/contracts",
3
- "version": "2.0.12",
3
+ "version": "2.1.0",
4
4
  "author": "",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -15,9 +15,9 @@
15
15
  "deploy:prod": "./scripts/sh/deploy.sh prod",
16
16
  "deploy:stage": "./scripts/sh/deploy.sh stage",
17
17
  "dev": "./scripts/sh/dev.sh",
18
- "fmt": "forge fmt",
18
+ "fmt": "prettier --write \"src/**/*.sol\" \"test/**/*.sol\" \"scripts/sol/**/*.sol\"",
19
19
  "generate": "wagmi generate",
20
- "lint": "forge fmt --check",
20
+ "lint": "prettier --check \"src/**/*.sol\" \"test/**/*.sol\" \"scripts/sol/**/*.sol\"",
21
21
  "make-config": "node ./deployments/make-config.js",
22
22
  "test": "forge test -vvv",
23
23
  "test:gas": "forge test --gas-report",