Skip to content
This repository was archived by the owner on Apr 6, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 5 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
3 changes: 3 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
. "$(dirname -- "$0")/_/husky.sh"

pnpm lint-staged
4 changes: 4 additions & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
. "$(dirname -- "$0")/_/husky.sh"

pnpm fix-redirects
pnpm link-checker
17 changes: 15 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,19 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"postbuild": "next-sitemap"
"postbuild": "next-sitemap",
"prepare": "husky"
},
"lint-staged": {
"**/*.mdx": [
"eslint --max-warnings 0",
"cspell lint"
],
"**/*": [
"pnpm fix-redirects",
"pnpm link-checker"
]
},
"dependencies": {
"@eth-optimism/contracts-ts": "^0.17.0",
"@eth-optimism/tokenlist": "^9.0.9",
Expand Down Expand Up @@ -51,6 +62,8 @@
"ethers": "^5",
"globby": "^11.0.4",
"gray-matter": "^4.0.3",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"remark": "^15.0.1",
"remark-code-import": "^1.2.0",
"remark-frontmatter": "^5.0.0",
Expand All @@ -76,4 +89,4 @@
"nextra@2.13.2": "patches/nextra@2.13.2.patch"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ Here you'll estimate the cost of a simple transaction that sends a small amount
</Steps>

<Callout type="info">
Estimates will never be entirely accurate due to network conditions and gas price fluctuations, but they should be close to the actual costs.
Estimates will never be entirely accurate due to network conditions and gas price fluctuation, but they should be close to the actual costs.
</Callout>

## Next steps
Expand Down
2 changes: 1 addition & 1 deletion pages/stack/design-principles.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ We hope that you can see the influence of this philosophy when looking at Optimi
## Design principles for USEful software

The OP Stack is USEful software. The OP Stack is a set of software components for building L2 blockchain ecosystems, built by the Optimism Collective to power Optimism.
Components to be added to the OP Stack should be built according to three key design principles: **U**tility, **S**implicity, **E**xtensibility.
Components to be added to the OP Stack should be built according to three key design principles: **U**tility, Simplicity, **E**xtensibility.
Software that follows these principles is **USE**ful software for the Optimism Collective!

### Utility
Expand Down
Loading