在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用cmta
星标7
分支7
更新时间2026年2月9日 14:05
main concept behind cmta
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
main concept behind cmta
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Instructions for writing and organizing Foundry tests in the RuleEngine project
ERC-173-A standard interface for ownership of contracts
Instructions for Foundry Development (test & deployment script)
| name | cmta |
| description | main concept behind cmta |
CMTAT (CMTA Token) is a security token framework for tokenizing real-world financial assets on EVM-compatible blockchains. It's developed by the Capital Markets and Technology Association (CMTA).
Version: 3.2.0-rc0 | License: MPL-2.0 | Solidity: 0.8.33
contracts/
├── modules/ # Core smart contract logic
│ ├── internal/ # Internal implementations
│ └── wrapper/ # Public-facing modules
│ ├── core/ # ERC20, Pause, Enforcement, Validation
│ ├── extensions/ # Documents, Snapshots
│ ├── options/ # Debt, ERC2771, Cross-chain
│ └── security/ # Access control
├── deployment/ # Pre-composed contract variants
├── interfaces/ # ERC standards & custom interfaces
└── mocks/ # Test helpers
test/ # 3,078 tests (~99% coverage)
doc/ # Specs & audit reports
| Category | Modules | Purpose |
|---|---|---|
| Core | ERC20Base, Mint, Burn, Pause, Enforcement, Validation | Basic token operations |
| Extensions | Snapshot, Document, ExtraInformation | Dividends, legal docs, metadata |
| Options | Debt, ERC2771, ERC1363, CrossChain, Allowlist, ERC7551 | Bonds, gasless tx, multi-chain, KYC |
| Security | AccessControl | RBAC with roles (MINTER, BURNER, PAUSER, ENFORCER) |
CMTATBaseCore (0) - Basic ERC20 + Mint + Burn + Validation + Access Control
↓
CMTATBaseAccessControl (1) - RBAC roles management
↓
CMTATBaseRuleEngine/Allowlist (2) - Transfer validation rules
↓
CMTATBaseERC1404 (3) - ERC-1404 compliance (restrictedTransfer)
↓
CMTATBaseERC20CrossChain (4) - CCIP & ERC-7802 support
↓
CMTATBaseERC2771 (5) - Gasless meta-transactions
↓
CMTATBaseERC1363/ERC7551 (6) - Additional standards
DEFAULT_ADMIN_ROLE - Admin access (can grant/revoke roles)MINTER_ROLE - Can mint tokensBURNER_ROLE - Can burn tokensPAUSER_ROLE - Can pause/unpause contractENFORCER_ROLE - Can freeze/unfreeze addressescontracts/modules/0_CMTATBaseCore.sol - Core base contractcontracts/deployment/CMTAT_*.sol - Pre-composed deployment variantscontracts/interfaces/ - All supported interfaces and standardshardhat.config.js - Build configurationpackage.json - Dependencies and scripts