Deploy your first smart contract
In this short tutorial, we will write and deploy a Hello World contract on Yona
Setup your local environment
Install Cargo and Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | shInstall Solana CLI
sh -c "$(curl -sSfL https://release.solana.com/stable/install)"Please update your PATH environment variable to include the Solana programs:solana --versionsolana config set --url https://devnet-rpc.yona.network/Create a new Yona smart contract project
Yona smart contracts are Rust libraries #
Create your first Yona smart contract #
Build your Yona smart contract #
Deploy your Yona smart contract #
Congratulations! #
Last updated