Skip to content

Commit c702cb2

Browse files
committed
docs
1 parent 0648e41 commit c702cb2

File tree

4 files changed

+24
-18
lines changed

4 files changed

+24
-18
lines changed

website/docs/foundations/facets-and-libraries.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

website/docs/getting-started/installation.md

Lines changed: 21 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -71,26 +71,30 @@ Compose includes a pre-configured `foundry.toml`. If you're integrating Compose
7171
src = "src"
7272
out = "out"
7373
libs = ["lib"]
74-
solc_version = "0.8.24"
7574
optimizer = 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 }
8487
invariant = { 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

104108
You should see output indicating all tests pass.
105109

106-
## What's Next?
110+
<!-- ## What's Next?
107111
108112
Now 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

website/docs/getting-started/quick-start.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
sidebar_position: 2
3+
draft: true
34
---
45

56
# Quick Start

website/docs/getting-started/your-first-diamond.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
sidebar_position: 3
3+
draft: true
34
---
45

56
# Your First Diamond

0 commit comments

Comments
 (0)