First Steps to DeFi: A Scrypto Tutorial
Search…
Getting Started
First Steps to DeFi: A Scrypto Tutorial
Installation
Scrypto Concepts
Hello World !
Deploying HelloWorld
More on the CLI
Writing Code
Scrypto Types
A Gumball Machine
Building a Candy Store
Security Through Badges
More About Token Creation
Appendix
Learning Rust
Community Tools
Other Resources
Powered By
GitBook
Installation
Installation
Install Rust
Windows
1.
Download and install
rustup-init.exe
2.
Install "Desktop development with C++" with
Build Tools for Visual Studio 2019
3.
Start a new PowerShell to enable cargo
Linux and MacOS
1.
Install rust:
1
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Copied!
2.
Enable cargo in the current shell:
1
source $HOME/.cargo/env
Copied!
Setup Scrypto simulator
1.
Add WebAssembly target
1
rustup target add wasm32-unknown-unknown
Copied!
2.
Install the simulator
1
git clone https://github.com/radixdlt/radixdlt-scrypto.git
2
cd radixdlt-scrypto
3
cargo install --path ./simulator
Copied!
Getting Started - Previous
First Steps to DeFi: A Scrypto Tutorial
Next - Getting Started
Scrypto Concepts
Last modified
5mo ago
Copy link
Edit on GitHub
Contents
Installation