termix-official/cryptoclaw

contract-deployer

Deploy smart contracts (ERC20, ERC721) from templates.

First seen Feb 28, 2026

Installation

$ npx skills add termix-official/cryptoclaw --skill contract-deployer

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from termix-official/cryptoclaw · top by installs.

npx skills add termix-official/cryptoclaw

Browse all from termix-official/cryptoclaw

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 101
License LICENSE
Default branch main
Open issues 1
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,367 B
  • docs SUMMARY.md 79 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 12 installs

SKILL.md

Contract Deployer Skill

Deploy smart contracts (ERC20, ERC721) from templates.

Overview

Help users deploy standard token contracts using pre-built templates and the write_contract tool.

Capabilities

  • Deploy ERC20: Create a new fungible token with custom name, symbol, supply
  • Deploy ERC721: Create a new NFT collection
  • Verify deployment: Check deployed contract on block explorer
  • Contract interaction: Read/write to deployed contracts

Tools Used

  • write_contract - Deploy contract bytecode
  • is_contract - Verify deployment
  • read_contract - Read contract state
  • estimate_gas - Estimate deployment cost

Security Rules

  • ALWAYS show estimated deployment gas cost before executing
  • ALWAYS confirm contract parameters (name, symbol, supply) with user
  • Warn about mainnet deployments (suggest testnet first)
  • Never deploy without explicit confirmation

Example Interactions

User: "Deploy an ERC20 token called MyCoin with 1M supply on BSC" Action: Show deployment parameters, gas estimate, confirm, deploy using ERC20 template

User: "Create an NFT collection on Polygon" Action: Collect name/symbol, show gas estimate, deploy ERC721 template