Cointime

Download App
iOS & Android

Solidity vs Move vs Rust: The Evolution of Smart Contract Programming Languages

Validated Media

The security, speed, and developer activity of a blockchain are contingent on its underlying programming language and virtual machines. Two of the most popular programming languages are Solidity, used to build decentralized applications for the Ethereum Virtual Machine (EVM), and Rust for dApps on Solana.

However, since the latest emerging smart contract-based blockchains, Aptos and Sui, utilize Move as their foundation for a more secure and scalable layer 1, it’s only fitting to do a side-by-side comparison of all three.

Coding terminology

High-level languages (HLL)

HLLs are usually easier for developers to read and write in, as they more closely resemble human language compared to low-level languages which are closer to machine code. For a computer to read and execute the source code, it first needs to be compiled into machine language.

Low-level languages (LLL)

LLLs are more difficult for developers to read and write in, as they resemble machine code. As such, they can convert to machine code without an intermediate compiler or interpreter.

Runtime environment

On blockchains, virtual machines serve as the operating system runtime environment.

Interpreted or compiled programming languages

Programming languages distinguish themselves as interpreted or compiled languages.

A compiled programming language needs to be converted from the source code into executable bytecode.

An interpreted programming language, on the other hand, is being read and executed line by line at runtime by an interpreter.

As a result, interpreted languages are typically slower than compiled languages. However, interpreted languages are less prone to bugs, as the debugging of the code occurs at runtime and the intermediate compiled representation is removed.

In a compiled language, compiler bugs can occur even when the source code is flawless, so they are more prone to errors.

Sequential or parallel processing

Today, most major blockchains use sequential execution of transactions, meaning that the runtime environment can only process one transaction at a time. This is a major bottleneck for network throughput.

In contrast, some programming languages enable parallel processing (or parallel execution), allowing for much higher TPS compared to sequential processing without the need for mathematically driven solutions like zero-knowledge proofs.

Parallel execution identifies independent transactions to execute them concurrently. Dependent transactions, however, would affect the execution of another and therefore must be executed in sequence.

Solidity — the programming language for EVM smart contracts

Ethereum is the first programmable blockchain, which to this day remains the foundational development environment for the Web3 ecosystem growth. In order to program on Ethereum, you need to first create a “smart contract” by utilizing Solidity — a custom language specifically designed by Dr. Gavin Wood for smart contracts on Ethereum in 2014. The smart contract is then run on the Ethereum Virtual Machine (EVM).

As an HLL, Solidity makes software development more user-friendly. Additionally, Solidity is influenced by and similar to other popular languages such as C++, Java, and Python, making it easier for new developers to start developing in the EVM ecosystem.

However, as a compiled language, Solidity is more prone to bugs due to the additional steps necessary to translate it into machine-readable bytecode. As a result, and despite the extremely complex and costly audits that smart contracts undergo, we continue to see smart contract exploits in the Ethereum ecosystem.

Today, Solidity is an independent open-source project that is further refined and developed on GitHub. While it is not the only language that can be used to write code for Ethereum, Solidity’s syntax is specifically designed to target the EVM.

Advantages of Solidity

  • HLL and thus easier to learn and user-friendly
  • Abundance of good developer tools and open-source libraries
  • The most used language in Web3
  • Similar to languages like C++, Python, and JavaScript
  • Developers are less likely to make mistakes in languages they are already familiar with
  • Good community support
  • Existing standards (ERC20 and ERC 721)
  • Multichain compatibility (layer-two blockchains, sidechains and EVM-compatible layer-one blockchains)

Disadvantages of Solidity

  • As a compiled language, Solidity is more prone to exploitable bugs
  • Sequential processing is a bottleneck for network throughput

Solidity Adoption

At the time of writing, Solidity accounts for 87.45% of all total value locked in smart contracts, followed by Vyper (8.95%) and Rust (2.31%)

Rust — Solana’s primary programming languages

While many ecosystems are trying to attract new developers by being EVM compatible, Solana has taken a different path with its own unique programming language, which has seen impressive growth in adoption since launch.

Launched in 2011, Rust, unlike Solidity, was designed from the ground up as a general-purpose programming language and is not limited to smart contract programs.

Rust is a compiled, low-level and more complex programming language compared to Solidity. As such, it may be less attractive to new developers as it is more difficult to learn. However, many developers outside the Web3 ecosystem are already proficient with Rust, making it easier to start working on Solana or Near projects.

Rust is best known for being the primary programming language of Solana where it helps to achieve throughput that other blockchains can only dream of. For many, it is also a more powerful, versatile language compared to Solidity as it allows developers to manage memory effectively and leverage parallel processing.

Advantages of Rust

  • As a machine-oriented, compiled language, Rust offers high speed and good memory efficiency
  • Rust allows to achieve higher throughout with parallel processing
  • Rust achieves memory safety through the principle of ownership and borrowing, eliminating memory-related errors at compile time
  • As Rust developers are often more experienced developers, smart contracts (called programs) on Solana can be expected to be less prone to bugs

Disadvantages of Rust

  • As an LLL, Rust has a steep learning curve and is generally more difficult to learn
  • Program compilation for larger projects can take up to 10 minutes
  • Today, just a handful of blockchains support Rust, namely Solana and Near

Rust adoption

While blockchains using Solidity as their main programming language continue to have the largest share of active developers, Solana is currently seeing faster growth than Ethereum.

Move

Launched in 2019, Move is one of the most modern programming languages used in new layer-one chains like Aptos and Sui. Move is based on Rust, but was specifically designed by Meta for its Diem blockchain to solve the problems of existing smart contract languages.

As such, the team behind Move had the opportunity to examine the existing languages of the Web3 space and learn from their shortcoming.

Above all, Move is designed as an object-oriented language to write smart contracts or programs with safe resource management. Assets are defined as a “resource”, which can be moved between accounts, but which cannot be double-spent or duplicated.

This makes it very easy to write error-free code, in contrast to Solidity, where transfers of assets must be specified manually, increasing the likelihood of writing faulty code.

As such, Move eliminates the possibility of reentrancy attacks, which is one of the worst possible attacks on Solidity smart contracts.

As an interpreted language, Move’s performance is slower compared to compiled languages. However, the lack of a compiler and compiler bugs makes Move inherently more secure than Solidity.

In addition, Move inherits Rust’s memory efficiency and parallel processing, making it a solid choice for overall performance.

Advantages of Move

  • Like Rust, Move allows users to achieve higher throughput with parallel processing
  • As an interpreted language, Move doesn’t have a compiler, and as a result no compiler bugs
  • Move was designed with security in mind and aims to eliminate vulnerabilities such as reentrancy

Disadvantages of Move

  • New language with limited tooling, resources, and community
  • Harder to learn than a high-level language
  • Interpreted languages are generally weaker in performance than comparable compiled languages
  • No multichain compatibility as no major blockchain has adopted Move to date

Move Adoption

Aptos and Sui are currently the only blockchain projects using Move as their primary programming language and it is still too early to say how successful the language will be.

Conclusion

Solidity is the most popular programming language for blockchain development due to its user-friendliness and its widespread use on Ethereum. However, it has several vulnerabilities that have caused costly mistakes in the past. In contrast, Rust and Move are interesting alternatives due to their increased security and efficiency.

While Rust already offers better performance on Solana and shows impressive adoption, Move was designed to provide the most secure solution of the three, eliminating many of Solidity’s vulnerabilities.

It is important to remember that all three languages are relatively new. Potential security pitfalls are yet to be discovered and their long-term success remains to be seen.

While providing the foundation for smart contract development, programming languages are only one factor determining the speed and security of a blockchain and its dApps.

Comments

All Comments

Recommended for you

  • American Bitcoin's Bitcoin reserves have increased by approximately 623 BTC in the past 7 days, bringing its current holdings to 4941 BTC.

    Emmett Gallic, a blockchain analyst who previously disclosed and analyzed the "1011 insider whale," posted on the X platform revealing updated data on the Bitcoin reserves of American Bitcoin, a crypto mining company supported by the Trump family. In the past seven days, they increased their holdings by about 623 BTC, of which approximately 80 BTC came from mining income and 542 BTC from strategic acquisitions in the open market. Currently, their total Bitcoin holdings have risen to 4,941 BTC, with a current market value of about 450 million USD.

  • The US spot Ethereum ETF saw a net outflow of $19.4 million yesterday.

    according to TraderT monitoring, the US spot Ethereum ETF had a net outflow of 19.4 million USD yesterday.

  • Listed companies, governments, ETFs, and exchanges collectively hold 5.94 million Bitcoins, representing 29.8% of the circulating supply.

    Glassnode analyzed the holdings of major types of Bitcoin holders as follows: Listed companies: about 1.07 million bitcoins, government agencies: about 620,000 bitcoins, US spot ETFs: about 1.31 million bitcoins, exchanges: about 2.94 million bitcoins. These institutions collectively hold about 5.94 million bitcoins, accounting for approximately 29.8% of the circulating supply, highlighting the trend of liquidity increasingly concentrating in institutions and custodians.

  • The Bank of Japan is reportedly planning further interest rate hikes; some officials believe the neutral interest rate will be higher than 1%.

    according to insiders, Bank of Japan officials believe that before the current rate hike cycle ends, interest rates are likely to rise above 0.75%, indicating that there may be more rate hikes after next week's increase. These insiders said that officials believe that even if rates rise to 0.75%, the Bank of Japan has not yet reached the neutral interest rate level. Some officials already consider 1% to still be below the neutral interest rate level. Insiders stated that even if the Bank of Japan updates its neutral rate estimates based on the latest data, it currently does not believe that this range will significantly narrow. Currently, the Bank of Japan's estimate for the nominal neutral interest rate range is about 1% to 2.5%. Insiders said that Bank of Japan officials also believe there may be errors in the upper and lower limits of this range itself. (Golden Ten)

  • OKX: Platform users can earn up to 4.10% annualized return by holding USDG.

    According to the official announcement, from 00:00 on December 11, 2025 to 00:00 on January 11, 2026 (UTC+8), users holding USDG in their OKX funding, trading, and lending accounts can automatically earn an annualized yield of up to 4.10% provided by the OKX platform, with the ability to withdraw or use it at any time, allowing both trading and wealth management simultaneously. Users can check their earnings anytime through the OKX APP (version 6.136.10 and above) - Assets - by clicking on USDG. Moving forward, the platform will continue to expand the application of USDG in more trading and wealth management scenarios.

  • The Federal Reserve will begin its Reserve Management Purchase (RMP) program today, purchasing $40 billion in Treasury bonds per month.

     according to the Federal Reserve Open Market Committee's decision on December 10, the Federal Reserve will start implementing the Reserve Management Purchase (RMP) program from December 12, purchasing a total of $40 billion in short-term Treasury securities in the secondary market.

  • Bitcoin treasury company Strategy's daily transaction volume has now surpassed that of payment giant Visa.

    according to market sources: the daily trading volume of Bitcoin treasury company Strategy (MSTR) has now surpassed the payment giant Visa.

  • The US spot Bitcoin ETF saw a net outflow of $78.35 million yesterday.

    according to Trader T's monitoring, the US spot Bitcoin ETF had a net outflow of $78.35 million yesterday.

  • JPMorgan Chase issues Galaxy short-term bonds on Solana network

     JPMorgan arranged and created, distributed, and settled a short-term bond on the Solana blockchain for Galaxy Digital Holdings LP, as part of efforts to enhance financial market efficiency using underlying cryptocurrency technology.

  • HSBC expects the Federal Reserve to refrain from cutting interest rates for the next two years.

    HSBC Securities predicts the Federal Reserve will maintain interest rates stable at the 3.5%-3.75% range set on Wednesday for the next two years. Previously, Federal Reserve policymakers lowered rates by 25 basis points with a split vote. The institution's U.S. economist Ryan Wang pointed out in a report on December 10 that Federal Reserve Chairman Jerome Powell was "open to the question of whether and when to further cut rates at next year's FOMC press conference." "We believe the FOMC will keep the federal funds rate target range unchanged at 3.50%-3.75% throughout 2026 and 2027, but as the economy evolves, as in the past, it is always necessary to pay close attention to the significant two-way risks facing this outlook."