Cointime

Download App
iOS & Android

A Move Developer's Perspective on Aptos’ New Token Model

Validated Project

3-1. Move: Resource Model

3-2 Transition to the Object Model

3-3. The Digital Asset Standard

Are the strongest survivors those who adapt to change? In the ever-evolving landscape of blockchain, many Ethereum Virtual Machine (EVM) killers have faded into obscurity, yielding space to the prevalent term "Layer 2" in the Ethereum ecosystem. Amid this transition, one team stands out for taking a different path—Aptos. Why did Aptos diverge from the established EVM development, abandoning a robust developer community, and why did they introduce Move, a new language? Move emerged as a solution to prevalent issues in existing smart contract languages:

1. Lack of cross-platform compatibility. 2. Insufficient security in existing smart contract languages. 3. Inadequate speed in the execution layer of smart contract languages. 4. Immaturity in the language ecosystem. 5. Poor development and user experience.

Move isn't merely about protocol compatibility and business logic; it fundamentally tackles these issues. Cairo, for instance, efficiently handles zero-knowledge proofs, while platforms like Solana and Cosmos support Sealevel and CosmWasm to implement protocol-appropriate smart contracts. In contrast, Move is designed to be protocol-agnostic, aiming to become the next generation smart contract language, with mass adoption at its core. Aptos, the driving force behind Move's development, has recently unveiled an exciting announcement. As an enthusiast captivated by the ideals embedded in this new language, I've been closely monitoring its progress and eagerly anticipate the innovations it brings to the blockchain landscape.

This report offers an insight into the present state of Move and the digital asset standard that Aptos has established. We will delve into the rationale behind Aptos setting these standards, their implications, and provide our perspective on the potential future developments.

Aptos and Sui stand as prominent protocols leveraging Move, yet their implementation of Move is independently managed. In practice, each protocol forks the original MoveVM and tailors it to its specific needs. Consequently, the Move standard library is presented differently in the development of contracts within each chain. In particular, While Aptos uses the full definition of the Move language, and is in the process of extending Move further, Sui lacks the concept of global storage. This divergence raises concerns about potential fragmentation within the Move community, particularly if Sui aims to establish itself as the next smart contract language beyond Solidity.

In response to this challenge, Aptos introduced standards for Digital Assets and Fungible Assets in August, outlined in AIP-10 and AIP-11. While example code had been provided earlier to demonstrate how Move could issue coins, the term "standard" had not been explicitly employed. This deliberate release of standards can be interpreted as a strategic move by developers to provide clear direction for the evolving language, addressing the critical need for standardization in the Move ecosystem.

Move adopts a distinctive approach known as the resource model. In this model, a resource stands as a top-level object securely stored in a designated account on the blockchain. Unlike the Ethereum Virtual Machine's (EVM) pursuit of "account-based state management," Move opts for a revolutionary "resource-based state management." In this paradigm, resources transcend mere data; they are entities residing within a user's account, and exclusive rights to modify their values are vested solely in the user who owns the respective resource.

A simpler way to describe how EVM and Move work is that in the EVM, state management operates by tracking transactions between users through ledger-based number swaps, whereas Move involves users transferring their own tokens. The diagram below illustrates how state storage differs between MoveVM and EVM.

Source: Certik

Resources hold a unique characteristic: they cannot be copied or deleted without the explicit permission of the account in which they are stored. This emphasis on ownership and integrity positions resources as ideal representations for valuable assets such as coins and NFTs. While the resource model may introduce complexity, it significantly contributes to limiting usability issues and minimizing the potential for bugs within contracts.

Given Move's reliance on the resource model tailored for managing assets in smart contracts, it inherently prioritizes stability. However, this emphasis on stability comes at the cost of encountering certain usability challenges.

Primarily, managing all user information within a Move contract proves challenging. In Move, data is stored as a user's resource, introducing complexity when attempting to handle comprehensive data management. For instance, when issuing an NFT, tracking the ownership of that NFT among users becomes a continuous task, complicating the process of identifying the specific user to whom it was transferred. Additionally, Move addresses "events" like deposits, withdrawals, and token issuance in an account-based, rather than data-driven, manner, leading to potential issues. The counterfeit Aptos token deposit on Upbit on September 24 was a consequence of these structural challenges. The disruption seems to have occurred when Upbit’s automatic wallet system incorrectly read code and labeled scam token as the same as the legitimate APT tokens.

Source: Definalist

Move faced difficulties in recursively composing resources and managing resources inefficiently. In response to these challenges, Aptos introduced "Move Objects" in AIP-10. This innovative approach establishes a globally accessible data model that transcends the limitations inherent in resources traditionally confined to a single account. In the previous resource model, creating or saving a new resource necessitated a signature from the associated account. However, in the Object model, this signature requirement is eliminated, replaced with an account address. Aptos' adoption of AIP-10 introduces new capabilities, enhancing the efficiency of resource operations and ownership management. The Object model brings forth several key changes:

1. Accessibility of data: Not always accessible → Ensure accessibility using OwnerRef 2. Type of data: Data of differing types can be stored to a single data structure via any→ Having an explicit object store 3. Scalability of data: Transferring logic is limited to the APIs provided in the respective modules → Each ref that has store ability can be placed into any module and stored anywhere 4. Efficiency of data: Requires loading resources, adding unnecessary cost overheads → No longer requires loading individual resources

The original resource-based data model in Aptos focused on storage within Move, offering flexibility to accommodate any value stored on the chain. However, this flexibility came with clear drawbacks, some of which are being addressed by the transition to the Object model. The Object model's specifications are actively under discussion in the community and are designed to be flexible, allowing for seamless integration of new features. With the successful adoption of the Object model, Aptos is presenting a proposal to establish a new digital asset standard using Move smart contracts.

Aptos introduces a comprehensive digital asset standard categorized into two primary types: fungible assets (FA) and non-fungible digital assets (DA), as outlined in AIP-11. This standard leverages objects to effectively represent assets.

For fungible assets (FAs), the standard incorporates features commonly associated with fungible tokens, achieved by embedding Move's resources within an Object. Two key object types are associated with FAs:

  • Object<Metadata>: Contains metadata information such as the name, symbol, and unit of the FA
  • Object<FungibleStore>: Holds information about the store managing the FA
Source: Aptos

The diagram illustrates the relationships between objects within an FA. For instance, it demonstrates that if Alice creates metadata using her USDC token information, she can utilize this data to generate a FungibleStore, facilitating the storage of various tokens she owns. Unlike the resource model, which utilizes generic types to differentiate coins, FAs use metadata to identify coins in a more versatile manner. Each FungibleStore holds metadata information, simplifying processes such as combination, division, or transfer of FAs that share the same type of coin. While fungible assets align with ERC-20 standards, non-fungible digital assets (DAs) encompass attributes defined in ERC-721 and ERC-1155. These attributes include the name, description, URI, and supply of the NFT. The migration of NFT assets from EVM-based chains to Aptos signals a commitment to interface compatibility with Ethereum NFTs. Innovative ideas have emerged to enhance NFT management, enabling greater customization using Object, facilitating combinatorial approaches for forming new configurations by combining NFTs, and employing parallelism for heightened scalability. By offering comprehensive interfaces throughout the token life cycle out of the box, Aptos supports a no-code solution for application development. For example, an interface for creating a collection of NFTs could be designed as follows.

public entry fun create_collection(creator: &signer) { let collection_constructor_ref = &collection::create_unlimited_collection( creator, "My Collection Description", "My Collection", royalty, "<https://mycollection.com>", ); let mutator_ref = collection::get_mutator_ref(collection_constructor_ref); // Store the mutator ref somewhere safe }

By incorporating MutatorRef during the creation of a collection, Aptos introduces a powerful mechanism ensuring that only authorized entities can modify NFT information securely. This surpasses the limitations of the Resource model, where only the owner can alter the resource value, transitioning to the Object model's flexibility. In the Object model, anyone can modify the value, granted they have contractual authorization with the appropriate reference. The introduction of the Aptos Digital Asset Standard significantly enhances the usability of the Move language.

Ironically, the primary challenge for non-EVM chains lies in achieving compatibility with EVMs. As the majority of smart contract-based assets currently adhere to ERC-20 standards, achieving this compatibility is crucial for non-EVM chains to gain prominence. Standards like CosmWasm's CW-20 and Move's Digital Asset Standard have emerged to address this challenge. Another hurdle is the comparatively smaller size of the community in non-EVM chains. Mastering a new contract language and comprehending its intricacies pose challenges for even experienced developers. The popularity of a language or platform significantly influences the relevance of developers' efforts. This dynamic often results in the oversight of many EVM alternatives unless they prove their sustainability in the market.

Aptos' initiative to establish standards transcends mere community growth; it is a survival strategy. The creation of a contract standard for digital assets not only streamlines the complexity associated with a new language (Move) but also reduces the entry barriers for developers by minimizing learning costs. However, amidst this pursuit, it is crucial to uphold the "secure smart contracts" philosophy that Move endeavors to deliver. With Aptos leading the charge in the Move community, we eagerly anticipate the evolutionary path that lies ahead.

I have been particularly engaged in ongoing development within the Non-EVM sector, working with platforms like CosmWasm and Move. Based on my experience, the Non-EVM sector undergoes rapid changes, marked by breaking alterations with each update. This dynamic necessitates constant learning and swift adaptation from developers, placing the responsibility on them to stay abreast of evolving trends. Although there are instances when the comparatively stable and prevalent EVM sector appears desirable, the limitations of EVM are apparent concerning the assurance of secure and efficient smart contract development for the widespread apdoption of Web3.

With the recent surge in Bitcoin prices, Solana's strength stands out prominently. Currently, Solana represents the most advanced state among Non-EVM ecosystems and is entering a period of stability. The Move ecosystem is at a formative stage, reminiscent of Solana in its early days, with Move standards gradually taking shape. This presents an opportune moment to participate in the early Move ecosystem, and we recommend learning Move for those:

1. Individuals seeking to contribute to the early Move community 2. Individuals interested in participating in development within the Non-EVM sector 3. Individuals aspiring to spearhead the widespread adoption of Web3 through the implementation of secure and efficient smart contracts

Much like the diverse array of programming languages suited to different contexts, we advocate for the development of smart contracts in new languages tailored to specific situations. The evolving narrative will reveal whether Move can surpass Solidity and emerge as a new powerhouse.


Original Link

Comments

All Comments

Recommended for you

  • A Total of 37,212.18 DMD Permanently Burned Over the Past 7 Days

    July 9, 2026 — According to the latest on-chain data released by DMDAO, a total of 37,212.18 DMD has been permanently burned over the past seven calendar days through the protocol's predefined trading and wealth management burn mechanisms.

  • Whale Transfers 1,133 BTC to Coinbase Prime, Valued at $71.48 Million

    According to Onchain Lens monitoring, a whale transferred 1,133 BTC from Coinbase to Coinbase Prime through an intermediary wallet, valued at $71.48 million.

  • U.S. AI Chip Stocks Decline Before Market Open, Intel Falls Over 3%

    On July 7, U.S. AI chip stocks experienced widespread declines before the market opened. Intel dropped over 3%, while AMD, Qualcomm, and NXP fell more than 2%. TSMC, Broadcom, and Tesla decreased by over 1%, and NVIDIA declined by 0.7%.

  • China's Central Bank Increases Gold Reserves for the 20th Consecutive Month

    As of the end of June, China's gold reserves stood at 75.44 million ounces (approximately 2,346.446 tons), an increase of 480,000 ounces (about 14.93 tons) from the end of May, which reported 74.96 million ounces (approximately 2,331.52 tons). This marks the 20th consecutive month of gold accumulation.

  • China's Foreign Exchange Reserves in June at $341.6262 Billion

    On July 7, China's foreign exchange reserves for June stood at $341.6262 billion, a decrease of $26 billion from the end of May, representing a decline of 0.75%, with expectations set at $343.2 billion.

  • U.S. Storage Stocks Drop Pre-Market, SanDisk and Micron Down Over 4%

    On July 7, U.S. storage concept stocks collectively fell in pre-market trading. Western Digital dropped over 5%, SanDisk and Micron Technology fell over 4%, Seagate Technology declined over 3%, Rambus fell over 2%, and SMI fell over 1%.

  • U.S. Stocks in Optical Communication Sector Drop Pre-Market

    On July 7, stocks in the optical communication sector of the U.S. market collectively fell pre-market. Astera Labs dropped over 4%, while Marvell Technology, Credo Technology, and AXT Inc. fell more than 3%. Tower Semiconductor, MaxLinear, Corning, Applied Optoelectronics, GlobalFoundries, Lumentum, and Qorvo all declined by more than 2%. Coherent, Nokia, Amphenol, and Broadcom dropped over 1%.

  • Pre-market Decline in U.S. Storage Stocks

    In pre-market trading, U.S. storage concept stocks experienced a widespread decline, with Micron Technology falling by 4.8%, SanDisk dropping over 4%, Corning down more than 2%, and Intel decreasing by over 3%.

  • Two Departments: Support for Reinsurance Institutions to Increase Capital and Issue Supplementary Capital Tools

    On July 7, the National Financial Supervision and Administration Bureau and the Shanghai Municipal Government released several measures to accelerate the construction of the Shanghai International Reinsurance Center. Among these measures, they proposed to enhance the quality and efficiency of the reinsurance industry, support reinsurance institutions in increasing capital and expanding shares, and issuing supplementary capital tools to improve the capacity for internal capital accumulation and external capital supplementation, thereby strengthening the reinsurance industry's capabilities. The initiative aims to guide the insurance industry to focus on major national projects, strategic emerging industries, and livelihood security, consolidating insurance and reinsurance underwriting capabilities to enhance risk protection levels. It also supports reinsurance institutions in leveraging their professional technical advantages to assist the insurance industry in reducing risk.

  • Sources: Saudi Arabia Plans to Expand Oil Pipeline to Red Sea, Increasing Capacity by 2 Million Barrels Daily to Bypass Strait of Hormuz

    On July 7, five informed sources revealed that Saudi Arabia is considering expanding the crude oil pipeline capacity to its western coast on the Red Sea, allowing Saudi Arabia and its neighbors to transport more oil without passing through the Strait of Hormuz. This east-west pipeline, built in the early 1980s, has gained strategic importance since the outbreak of the Iran war in February and the disruption of shipping in the Strait of Hormuz. The pipeline can deliver up to 7 million barrels of crude oil per day to the Red Sea port. The CEO of Saudi Aramco stated in May that approximately 2 million barrels are supplied to west coast refineries, while about 5 million barrels are for export. Sources indicate that Saudi Arabia is in preliminary discussions with some neighboring countries regarding the pipeline expansion, aiming to add about 2 million barrels of pipeline capacity per day. It remains unclear whether Aramco's planned expansion involves upgrading existing infrastructure or constructing new pipelines. One source mentioned that the expansion plan also includes a smaller refined oil pipeline. Two sources indicated that the expansion scale could range from 1 million to 2 million barrels per day, with refined oil also being considered. Another source stated that the project would take several years and cost billions of dollars, requiring adjustments to Saudi crude pricing mechanisms.