-
Notifications
You must be signed in to change notification settings - Fork 57
Added developer tools & language guide #63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
WalkthroughAppends a new section to an HTML docs page describing programming languages, frameworks, and toolchains for building on Morph (Solidity, TypeScript/JavaScript, React, Hardhat/Foundry) and notes EVM compatibility; also adds a tiny test file containing the single line "testing". Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
✅ Files skipped from review due to trivial changes (1)
Tip 📝 Customizable high-level summaries are now available in beta!You can now customize how CodeRabbit generates the high-level summary in your pull requests — including its content, structure, tone, and formatting.
Example instruction:
Note: This feature is currently in beta for Pro-tier users, and pricing will be announced later. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
build/docs/how-morph-works/intro/index.html(1 hunks)
🧰 Additional context used
🪛 HTMLHint (1.5.0)
build/docs/how-morph-works/intro/index.html
[error] 29-29: Special characters must be escaped : [ > ].
(spec-char-escape)
| ## 🧠 What Programming Languages Do You Need? | ||
|
|
||
| To build on Morph, you'll mainly use: | ||
|
|
||
| - **Solidity** – for writing smart contracts compatible with Ethereum and Morph. | ||
| - **TypeScript / JavaScript** – for frontend integrations, SDK usage, and dApp interfaces. | ||
| - **React** (optional but recommended) – for building modern UI with Morph’s components. | ||
| - **Hardhat or Foundry** – for compiling, testing, and deploying smart contracts. | ||
|
|
||
| Morph is EVM-compatible, meaning any tooling and language used in the Ethereum ecosystem will generally work with minimal changes. | ||
|
|
||
| > 🚀 You can get started even faster with our [Morph Starter Kit](#). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❓ Verification inconclusive
Move content into the source markdown and use proper HTML tags
The PR edits the generated HTML with raw Markdown syntax (##, -, >), which won’t render correctly and will be overwritten on rebuild. Please migrate these additions into the documentation source (e.g., docs/how-morph-works/intro.md) and wrap them with valid HTML/MD:
@@ docs/how-morph-works/intro.md
+ ## 🧠 What Programming Languages Do You Need?
+ To build on Morph, you'll mainly use:
+ - **Solidity** – for writing smart contracts compatible with Ethereum and Morph.
+ - **TypeScript / JavaScript** – for frontend integrations, SDK usage, and dApp interfaces.
+ - **React** (optional but recommended) – for building modern UI with Morph’s components.
+ - **Hardhat or Foundry** – for compiling, testing, and deploying smart contracts.
+
+ Morph is EVM-compatible, meaning any tooling and language used in the Ethereum ecosystem will generally work with minimal changes.
+
+ > 🚀 You can get started even faster with our [Morph Starter Kit](#).Once merged, rebuild the site to update the HTML.
Move content into the source markdown and use proper HTML tags
The PR edits the generated HTML with raw Markdown syntax (##, -, >), which won’t render correctly and will be overwritten on rebuild. Please migrate these additions into the documentation source (e.g., docs/how-morph-works/intro.md) and wrap them with valid HTML/MD:
@@ docs/how-morph-works/intro.md
+ ## 🧠 What Programming Languages Do You Need?
+ To build on Morph, you'll mainly use:
+ - **Solidity** – for writing smart contracts compatible with Ethereum and Morph.
+ - **TypeScript / JavaScript** – for frontend integrations, SDK usage, and dApp interfaces.
+ - **React** (optional but recommended) – for building modern UI with Morph’s components.
+ - **Hardhat or Foundry** – for compiling, testing, and deploying smart contracts.
+
+ Morph is EVM-compatible, meaning any tooling and language used in the Ethereum ecosystem will generally work with minimal changes.
+
+ > 🚀 You can get started even faster with our [Morph Starter Kit](#).Once merged, rebuild the site to update the HTML.
📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| ## 🧠 What Programming Languages Do You Need? | |
| To build on Morph, you'll mainly use: | |
| - **Solidity** – for writing smart contracts compatible with Ethereum and Morph. | |
| - **TypeScript / JavaScript** – for frontend integrations, SDK usage, and dApp interfaces. | |
| - **React** (optional but recommended) – for building modern UI with Morph’s components. | |
| - **Hardhat or Foundry** – for compiling, testing, and deploying smart contracts. | |
| Morph is EVM-compatible, meaning any tooling and language used in the Ethereum ecosystem will generally work with minimal changes. | |
| > 🚀 You can get started even faster with our [Morph Starter Kit](#). | |
| ## 🧠 What Programming Languages Do You Need? | |
| To build on Morph, you'll mainly use: | |
| - **Solidity** – for writing smart contracts compatible with Ethereum and Morph. | |
| - **TypeScript / JavaScript** – for frontend integrations, SDK usage, and dApp interfaces. | |
| - **React** (optional but recommended) – for building modern UI with Morph’s components. | |
| - **Hardhat or Foundry** – for compiling, testing, and deploying smart contracts. | |
| Morph is EVM-compatible, meaning any tooling and language used in the Ethereum ecosystem will generally work with minimal changes. | |
| > 🚀 You can get started even faster with our [Morph Starter Kit](#). |
🧰 Tools
🪛 HTMLHint (1.5.0)
[error] 29-29: Special characters must be escaped : [ > ].
(spec-char-escape)
🤖 Prompt for AI Agents
In build/docs/how-morph-works/intro/index.html lines 18 to 29, the content is
added using raw Markdown syntax inside an HTML file, which will not render
correctly and will be overwritten on rebuild. Move this content into the source
markdown file, likely docs/how-morph-works/intro.md, using proper Markdown or
HTML tags as appropriate. After updating the source markdown, rebuild the
documentation site to regenerate the HTML with the correct formatting.
🧠 Developer Docs Contribution
File edited:
docs/build-on-morph/0-developer-navigation-page.md
What I added:
A new section listing the programming languages and tools required to build on Morph, including Solidity, JavaScript/TypeScript, Hardhat, and Foundry. This is meant to help new developers onboard faster.
Thanks 🙏
Summary by CodeRabbit