Skip to main content
Version: v6
Attention!You are viewing unreleased ink! 6 docs. Click here to view the latest docs.

Rust Title Picture

Why Rust for Smart Contracts?

ink! chooses not to invent a new programming language, but rather adapt a subset of Rust to serve our purpose. If this doesn't already convince you, you find many more good reasons here:

  • Rust is an ideal smart contract language: It is type safe, memory safe, and free of undefined behaviors. It generates small binaries because it doesn’t include extra bloat, like a garbage collector, and advanced optimizations and tree shaking remove dead code. Through compiler flags, Rust can automatically protect against integer overflow.

  • Rust ecosystem: You gain all the support available to the Rust ecosystem for free. As the language develops, ink! will automatically gain access to new features and functionality, improving how you can write smart contracts in the future.

  • Tooling: Because ink! follows Rust standards, tools like rustfmt, clippy and rust-analyzer already work out of the box. The same goes for code formatting and syntax highlighting in most modern text editors. Also, Rust has an integrated test and benchmark runner,

  • No overhead: Minimal runtime.

  • Safe & Efficient: Zero-cost & safe abstractions.

  • Productive: Cargo + crates.io Ecosystem.

  • 1st class RISC-V: The Rust compiler has excellent support for the RISC-V bytecode architecture. That's because it leverages LLVM as its backend to generate machine code for the RISC-V architecture.

  • Small Size: In the space-constrained blockchain world size is important. The Rust compiler is a great help for that, since it reorders struct fields in order to make each type as small as possible. Thus, Rust data structures are very compact, in many cases even more compact than in C.