contract-guide
Installation
SKILL.md
Contract Guide Skill
This skill provides expert guidance for writing smart contracts on Initia. It helps identify the correct libraries, naming conventions, and deployment patterns for Move, Wasm, and EVM.
MoveVM
Project Structure
A typical MoveVM project on Initia has the following structure:
.
├── Move.toml
└── sources
└── *.move
Move.toml: The manifest file that defines the project's metadata, dependencies, and addresses.sources/: The directory containing the Move source code files.