What problem does it solve? AI agents frequently generate incorrect Aptos code by confusing it with Sui Move or Solidity patterns — wrong storage models, deprecated SDK packages, deprecated Token V1 APIs, and hallucinated coin addresses. This Skill provides verified chain configuration, correct Move module patterns, current SDK usage, and on-chain reference data for Aptos development. ## Core Features & Use Cases - Move Module Development: Write modules using global storage operations (move_to, borrow_global), resource accounts, events, access control, and Block-STM-friendly per-user state patterns. - Coin and Token V2 Standards: Create custom coins with the Coin standard and NFT collections with the Digital Assets (Token V2) object model, including mint, burn, and royalty configuration. - TypeScript SDK Integration: Transfer APT, call entry and view functions, estimate gas via simulation, handle multi-agent transactions, and query the GraphQL indexer using @aptos-labs/ts-sdk. - Use Case: Deploy a vault module to testnet, then use the SDK to deposit APT, read user balances via view functions, and decode abort codes when transactions fail. ## Quick Start Ask the agent to write and deploy an Aptos Move counter module to testnet and then query its value with a view function using the TypeScript SDK.