module_structure
Overview
Move modules define types, functions, and constants. On Aptos, modules are published under an account address and versioned via upgrades.
Best Practices
- Use abilities judiciously (
key
,store
,copy
,drop
). - Keep entry functions minimal; delegate to internal functions.
- Emit events for off-chain indexing.