-
Notifications
You must be signed in to change notification settings - Fork 55
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
WalkthroughA new section has been appended to an HTML documentation page, outlining the programming languages and tools relevant for building on Morph. This section highlights key languages, frameworks, and toolchains, emphasizes EVM compatibility, and provides a link to a Morph Starter Kit for quick onboarding. Changes
Poem
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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 🙏