Skip to content
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

Home Tab and SSA fixes #3891

Merged
merged 3 commits into from
Jul 5, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion apps/remix-ide/src/app/tabs/analysis-tab.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const profile = {
methods: [],
events: [],
icon: 'assets/img/staticAnalysis.webp',
description: 'Checks the contract code for security vulnerabilities and bad practices.',
description: 'Analyze your code using Remix, Solhint and Slither.',
kind: 'analysis',
location: 'sidePanel',
documentation: 'https://remix-ide.readthedocs.io/en/latest/static_analysis.html',
Expand Down
2 changes: 1 addition & 1 deletion apps/remix-ide/src/app/tabs/locales/en/home.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"home.featuredPlugins": "Featured Plugins",
"home.solidityPluginDesc": "Compile, test and analyse smart contract.",
"home.cookbookDesc": "Find smart contracts, solidity libraries, and discover protocols.",
"home.codeAnalyizerPluginDesc": "Analyze your code using Remix, Sohint and Sslither",
"home.codeAnalyizerPluginDesc": "Analyze your code using Remix, Solhint and Slither.",
"home.starkNetPluginDesc": "Compile and deploy contracts with Cairo, a native language for StarkNet.",
"home.solhintPluginDesc": "Solhint is an open source project for linting Solidity code.",
"home.sourcifyPluginDesc": "Solidity contract and metadata verification service.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ function HomeTabFeaturedPlugins ({plugin}: HomeTabFeaturedPluginsProps) {
envID="sUTLogo"
envText="Solidity unit testing"
description={intl.formatMessage({ id: 'home.unitTestPluginDesc' })}
remixMaintained={true}
callback={() => startSolidityUnitTesting()}
/>
</Carousel>
Expand Down