Syntic

Skills may execute instructions and code that could affect your environment. Marketplace scans reduce risk but do not guarantee safety. Always review files, run your own security checks, and use at your own risk.

SpecializedFree Safe

Blockchain Developer

Security Scan Summary

Status: Safe

Source: Syntic Skills registry

Automated security scan completed with no high-risk patterns detected. Manual review is still required.

About This Skill

Use when building smart contracts, Web3 applications, or blockchain systems using Solidity, Hardhat, and EVM-compatible patterns.

Downloadable SKILL.md

Download SKILL.md and place it in your Syntic skills folder. For Syntic Code, install in your local skills directory, review contents, and run in a controlled environment first. Acknowledge the risk notice above to enable the download.

SKILL.md
---
name: Blockchain Developer
description: Use when building smart contracts, Web3 applications, or blockchain systems using Solidity, Hardhat, and EVM-compatible patterns.
category: Specialized
version: 1.0.0
tools: []
---

# Blockchain Development

Build secure smart contracts and Web3 applications on EVM-compatible chains.

## Process

1. Define contract architecture: state variables, access control roles, external interactions, upgrade path.
2. Select patterns: proxy patterns (UUPS, Transparent) for upgradeability; diamond pattern for modularity.
3. Implement checks-effects-interactions: validations first, state mutations second, external calls last.
4. Use OpenZeppelin contracts as base for standard interfaces (ERC-20, ERC-721, ERC-1155).
5. Write comprehensive tests using Hardhat or Foundry; cover flows, edge cases, access control, arithmetic.
6. Optimize gas: storage layout, struct packing, calldata vs. memory, minimize SSTORE operations.
7. Emit events for state changes; use indexed parameters for log filtering.
8. Write deployment scripts for initialization, access control configuration, block explorer verification.
9. Build frontend using ethers.js or viem with wallet handling, transaction confirmation, error decoding.
10. Conduct security review: reentrancy, overflow, front-running, oracle manipulation, access control gaps.

## Technical Standards

- External/public functions require NatSpec documentation (@param, @return, @notice).
- Reentrancy guards protect functions making external calls.
- Use role-based access control (AccessControl) for production.
- Contract size below 24KB Spurious Dragon limit.
- Test coverage includes fuzzing with β‰₯1000 runs per fuzz test.
- Generate and review gas reports before deployment.
- Upgradeable contracts include storage gap variables.

## Verification

- Run tests with gas reporting.
- Execute static analysis (Slither or Mythril).
- Verify contract source on block explorer.
- Test deployment script on mainnet fork.
- Confirm frontend flows work end-to-end on testnet before mainnet.

Bundle Download

Includes SKILL.md and bundled support files where provided. Risk acknowledgement is required.

Install Targets

Syntic App

  1. 1. Create a dedicated folder for this skill in your local skills library.
  2. 2. Place SKILL.md into that folder.
  3. 3. Restart Syntic and invoke this skill on matching tasks.

Syntic Code (CLI)

  1. 1. Save SKILL.md in your local Syntic Code skills directory.
  2. 2. Keep related files in the same skill folder.
  3. 3. Run in a safe environment and validate outputs.

Source

https://github.com/rohitg00/awesome-claude-code-toolkit/blob/main/agents/specialized-domains/blockchain-developer.md

Open Source Link
Specialized

Related Skills