Skip to content

Commit b0d03f9

Browse files
authored
Merge pull request #9065 from WhiteMatrixTech/addChainIDE
add ChainIDE
2 parents 80c3b08 + 3713d07 commit b0d03f9

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

src/assets/dev-tools/chainIDE.png

5.66 KB
Loading

src/intl/en/page-developers-learning-tools.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,10 @@
2929
"page-learning-tools-questbook-description": "Self paced tutorials to learn Web 3.0 by building",
3030
"page-learning-tools-questbook-logo-alt": "Questbook logo",
3131
"page-learning-tools-remix-description": "Develop, deploy and administer smart contracts for Ethereum. Follow tutorials with the Learneth plugin.",
32-
"page-learning-tools-remix-description-2": "Remix and Replit aren't just sandboxes—developers can write, compile and deploy their smart contracts using them.",
32+
"page-learning-tools-remix-description-2": "Remix, Replit, and ChainIDE aren't just sandboxes—developers can write, compile and deploy their smart contracts using them.",
3333
"page-learning-tools-replit-description": "A customizable development environment for Ethereum with hot reloading, error checking, and first-class testnet support.",
34+
"page-learning-tools-chainIDE-description": "Get started on your journey to Web3 by writing smart contracts for Ethereum with ChainIDE. Use the built-in templates to learn and save time.",
35+
"page-learning-tools-chainIDE-logo-alt": "ChainIDE logo",
3436
"page-learning-tools-replit-logo-alt": "Replit logo",
3537
"page-learning-tools-remix-logo-alt": "Remix logo",
3638
"page-learning-tools-sandbox": "Code sandboxes",

src/pages/developers/learning-tools.tsx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,15 @@ const LearningToolsPage = ({
113113
background: "#0f1524",
114114
subjects: ["Solidity", "web3"],
115115
},
116+
{
117+
name: "ChainIDE",
118+
description: "page-learning-tools-chainIDE-description",
119+
url: "https://chainide.com/",
120+
image: getImage(data.chainIDE)!,
121+
alt: "page-learning-tools-chainIDE-logo-alt",
122+
background: "#2C60A3",
123+
subjects: ["Solidity", "web3"],
124+
},
116125
]
117126
const randomizedSandboxes = shuffle(sandboxes)
118127
setRandomizedSandboxes(randomizedSandboxes)
@@ -364,6 +373,9 @@ export const query = graphql`
364373
ethdotbuild: file(relativePath: { eq: "dev-tools/eth-dot-build.png" }) {
365374
...learningToolImage
366375
}
376+
chainIDE: file(relativePath: { eq: "dev-tools/chainIDE.png" }) {
377+
...learningToolImage
378+
}
367379
nftschool: file(relativePath: { eq: "dev-tools/nftschool.png" }) {
368380
...learningToolImage
369381
}

0 commit comments

Comments
 (0)