Solidity smart contract development workflow. Use when modifying smart contracts in apps/erc20-token/contracts/.
Installation
Details
Usage
After installing, this skill will be available to your AI coding assistant.
Verify installation:
skills listSkill Instructions
name: solidity-development description: Solidity smart contract development workflow. Use when modifying smart contracts in apps/erc20-token/contracts/.
Solidity Development Workflow
Workflow for Solidity smart contract changes.
Prerequisites
Use git-workflow Skill for branch management, commit conventions, and PR creation.
Applicable Directories
| Path | Description |
|---|---|
apps/erc20-token/contracts/ | Smart contract source files |
contracts/ | ABI files |
Verification Commands
cd apps/erc20-token
npm install # Install dependencies
truffle compile # Compile contracts
truffle test # Run tests
npm run lint # Lint Solidity code
Self-Review Checklist
Code Quality
- Follows Solidity best practices
- Gas optimization considered
- Proper visibility modifiers
- Events emitted for state changes
Security
- No reentrancy vulnerabilities
- Integer overflow/underflow protection
- Access control properly implemented
- No hardcoded addresses
Testing
- Unit tests cover all functions
- Edge cases tested
- Gas consumption verified
ABI Generation
After contract changes:
# 1. Compile
cd apps/erc20-token
truffle compile
# 2. Update ABI
cp build/contracts/Token.json ../../contracts/token.abi
# 3. Regenerate Go bindings (if needed)
make gen-abi
Related Chain Context
- ETH (Ethereum)
- ERC20 (Token standard)
Related Skills
git-workflow- Branch, commit, PR workflowgithub-issue-creation- Task classification
More by hiromaily
View allTypeScript/JavaScript development workflow for apps/ directory. Use when modifying TypeScript code in ripple-lib-server or JavaScript in erc20-token.
CI/CD and DevOps workflow. Use when modifying GitHub Actions, Docker configurations, or compose files.
Shell script development workflow. Use when modifying files in scripts/ directory or any *.sh files.
Create GitHub issues with proper task classification. Classification determines which Skills will be used when working on the issue.
