Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Solidity language server providing smart contract development support including compilation, linting, security analysis, and code intelligence for .sol files. Use when working with Ethereum smart contracts, Substrate pallets, or any Solidity code that needs compilation, security checks, gas optimization, or code navigation. Essential for ClawChain pallet development.
Solidity language server providing smart contract development support including compilation, linting, security analysis, and code intelligence for .sol files. Use when working with Ethereum smart contracts, Substrate pallets, or any Solidity code that needs compilation, security checks, gas optimization, or code navigation. Essential for ClawChain pallet development.
This item's current download entry is known to bounce back to a listing or homepage instead of returning a package file.
Use the source page and any available docs to guide the install because the item currently does not return a direct package file.
I tried to install a skill package from Yavira, but the item currently does not return a direct package file. Inspect the source page and any extracted docs, then tell me what you can confirm and any manual steps still required.
I tried to upgrade a skill package from Yavira, but the item currently does not return a direct package file. Compare the source page and any extracted docs with my current installation, then summarize what changed and what manual follow-up I still need.
Solidity language server integration providing comprehensive smart contract development support through solc (Solidity compiler) and solhint (linter).
Compilation: Compile Solidity smart contracts with solc Linting: Static analysis with solhint for best practices and security Security: Detect common vulnerabilities (reentrancy, overflow, etc.) Gas optimization: Identify expensive operations Code intelligence: Syntax highlighting, error detection Supported extensions: .sol
Install Solidity compiler and linter: # Solidity compiler npm install -g solc # Solidity linter npm install -g solhint Verify installation: solcjs --version solhint --version
solcjs --bin --abi contract.sol Compile with optimization: solcjs --optimize --bin --abi contract.sol
Run solhint on a file: solhint contracts/MyContract.sol Run on entire project: solhint 'contracts/**/*.sol'
solhint includes security rules by default. For advanced security analysis, consider: # Install slither (requires Python) pip3 install slither-analyzer # Run security analysis slither contracts/
Create .solhint.json in project root: { "extends": "solhint:recommended", "rules": { "compiler-version": ["error", "^0.8.0"], "func-visibility": ["warn", {"ignoreConstructors": true}], "max-line-length": ["warn", 120], "not-rely-on-time": "warn", "avoid-low-level-calls": "warn", "no-inline-assembly": "warn" } }
For full development environments, see references/frameworks.md.
When developing smart contracts: Write: Edit Solidity code Lint: Run solhint to catch issues early Compile: Use solcjs to verify compilation Analyze: Run security tools before deployment Test: Write comprehensive unit tests
Compiler version mismatch: Specify pragma version in contract Gas optimization: Use view/pure where possible Security: Never use tx.origin for authentication Best practices: Follow Checks-Effects-Interactions pattern
Solidity Documentation Solhint GitHub Solidity Security Best Practices See references/frameworks.md for Hardhat/Foundry setup
Code helpers, APIs, CLIs, browser automation, testing, and developer operations.
Largest current source with strong distribution and engagement signals.