Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Rust for Blockchain Application Development

You're reading from  Rust for Blockchain Application Development

Product type Book
Published in Apr 2024
Publisher Packt
ISBN-13 9781837634644
Pages 392 pages
Edition 1st Edition
Languages
Author (1):
Akhil Sharma Akhil Sharma
Profile icon Akhil Sharma

Table of Contents (19) Chapters

Preface 1. Part 1:Blockchains and Rust
2. Chapter 1: Blockchains with Rust 3. Chapter 2: Rust – Necessary Concepts for Building Blockchains 4. Part 2: Building the Blockchain
5. Chapter 3: Building a Custom Blockchain 6. Chapter 4: Adding More Features to Our Custom Blockchain 7. Chapter 5: Finishing Up Our Custom Blockchain 8. Part 3: Building Apps
9. Chapter 6: Using Foundry to Build on Ethereum 10. Chapter 7: Exploring Solana by Building a dApp 11. Chapter 8: Exploring NEAR by Building a dApp 12. Part 4: Polkadot and Substrate
13. Chapter 9: Exploring Polkadot, Kusama, and Substrate 14. Chapter 10: Hands-On with Substrate 15. Part 5: The Future of Blockchains
16. Chapter 11: Future of Rust for Blockchains 17. Index 18. Other Books You May Enjoy

Technical requirements

Here’s what you will need to get started with the NEAR blockchain.

Prerequisites

To develop a smart contract, you will need to install Node.js. If you want to use Rust as your main language, then you’ll need to install rustup as well.

You’ll also need the following:

  • Node.js: Download and install Node.js (https://nodejs.org/en/download/)
  • Rust and Wasm:
    1. Follow these instructions for setting up Rust: https://doc.rust-lang.org/book/ch01-01-installation.html.
    2. Then, add the wasm32-unknown-unknown toolchain, which enables compiling Rust to WebAssembly (Wasm) – https://webassembly.org/– the low-level language used by the NEAR platform:
      # Installing Rust in Linux and MacOS
      curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh
      source $HOME/.cargo/env
      # Add the wasm toolchain
      rustup target add wasm32-unknown-unknown

Next, we must set up the environment with the required installations.

Installation...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}