Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@towns-protocol/diamond",
"version": "0.6.3",
"version": "0.7.0",
"description": "A comprehensive toolkit for building modular smart contracts with the EIP-2535 Diamond Standard, including core contracts and optimized building blocks",
"main": "index.js",
"repository": {
Expand Down Expand Up @@ -40,8 +40,8 @@
"dependencies": {
"@openzeppelin/contracts": "^5.4.0",
"@prb/test": "^0.6.4",
"forge-std": "github:foundry-rs/forge-std#v1.10.0",
"solady": "^0.1.24"
"forge-std": "github:foundry-rs/forge-std#v1.12.0",
"solady": "^0.1.26"
},
"devDependencies": {
"husky": "^9.0.6"
Expand Down
2 changes: 1 addition & 1 deletion scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ The script uses a comprehensive gas estimation model that considers:
- Deployed bytecode costs (200 gas per byte)
- Storage variable costs (22,100 gas)

This ensures accurate gas estimates for both single and batch deployments while providing warnings when approaching block gas limits.
This ensures accurate gas estimates for both single and batch deployments. Batches are automatically split when approaching per-transaction gas limits, and contracts exceeding the limit are blocked at queue time.