multiAI Summary Pending

contract-deployer

Deploy smart contracts (ERC20, ERC721) from templates.

272 stars

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/contract-deployer/SKILL.md --create-dirs "https://raw.githubusercontent.com/TermiX-official/cryptoclaw/main/skills/contract-deployer/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/contract-deployer/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How contract-deployer Compares

Feature / Agentcontract-deployerStandard Approach
Platform SupportmultiLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Deploy smart contracts (ERC20, ERC721) from templates.

Which AI agents support this skill?

This skill is compatible with multi.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# 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