File tree Expand file tree Collapse file tree 4 files changed +24
-18
lines changed
Expand file tree Collapse file tree 4 files changed +24
-18
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ Facets are fully functional smart contracts that can be added to your diamond:
5353 <FeatureGridItem
5454 icon = { <Icon name = " checkmark" size = { 32 } />}
5555 title = " Verified"
56- description = " Audited, tested, and deployed on multiple chains."
56+ description = " (In the future) Audited, tested, and deployed on multiple chains."
5757 />
5858</FeatureGrid >
5959
Original file line number Diff line number Diff line change @@ -71,26 +71,30 @@ Compose includes a pre-configured `foundry.toml`. If you're integrating Compose
7171src = " src"
7272out = " out"
7373libs = [" lib" ]
74- solc_version = " 0.8.24"
7574optimizer = true
76- optimizer_runs = 200
77- via_ir = false
78-
79- [profile .default .fuzz ]
80- runs = 256
75+ optimizer_runs = 20_000
76+ evm_version = " prague"
8177
8278[profile .ci ]
83- fuzz = { runs = 5000 }
79+ src = " src"
80+ out = " out"
81+ libs = [" lib" ]
82+ optimizer = true
83+ optimizer_runs = 20_000
84+ evm_version = " prague"
85+ # Coverage settings
86+ fuzz = { runs = 1000 }
8487invariant = { runs = 1000 }
85- ```
86-
87- ### Remappings
8888
89- Add these remappings to your ` remappings.txt ` or ` foundry.toml ` :
90-
91- ```
92- compose/=lib/Compose/src/
93- forge-std/=lib/forge-std/src/
89+ [fmt ]
90+ line_length = 120
91+ tab_width = 4
92+ bracket_spacing = false
93+ int_types = ' long'
94+ multiline_func_header = ' attributes_first'
95+ quote_style = ' double'
96+ number_underscore = ' preserve'
97+ single_line_statement_blocks = ' preserve'
9498```
9599
96100## Verify Installation
@@ -103,13 +107,13 @@ forge test -vvv
103107
104108You should see output indicating all tests pass.
105109
106- ## What's Next?
110+ <!-- ## What's Next?
107111
108112Now that you have Compose installed, let's understand the core concepts:
109113
110114- **[Core Concepts](/)** - Learn about facets, libraries, and shared storage
111115- **[Quick Start Guide](/docs/getting-started/quick-start)** - Jump right in with a working example
112- - ** [ Your First Diamond] ( /docs/getting-started/your-first-diamond ) ** - Build a simple diamond with Compose facets
116+ - **[Your First Diamond](/docs/getting-started/your-first-diamond)** - Build a simple diamond with Compose facets -->
113117
114118## Getting Help
115119
Original file line number Diff line number Diff line change 11---
22sidebar_position : 2
3+ draft : true
34---
45
56# Quick Start
Original file line number Diff line number Diff line change 11---
22sidebar_position : 3
3+ draft : true
34---
45
56# Your First Diamond
You can’t perform that action at this time.
0 commit comments