# Fuel Deploy Smart Contract **Published by:** [CryptoWizard (💙,🧡)](https://paragraph.com/@cashpack/) **Published on:** 2023-04-08 **URL:** https://paragraph.com/@cashpack/fuel-deploy-smart-contract ## Content .سلام رفقا آموزش دیپلوی اسمارت کانترکت روی فاز سوم تست نت فوئل رو داریم اول از همه بگم این آموزش توسط سینای عزیز آماده شده پس برای حمایت ازش از لینک زیر توییترش رو فالو داشته باشید.خب مراحل به این صورته که ویدیو رو از لینک پایین میبینید و همزمان این دستورات رو وارد میکنید.برای شروع نیاز هست که روی سیستم اوبونتو نصب داشته باشید اگر ندارید از لینک زیر ( دقیقه 11 به بعد ) آموزشش رو ببینید و راه بندازیدش تا به ادامه کار برسیم. بعد از اینکه ترمینال اوبونتو رو راه اندازی کردید از ویدیو زیر کار رو جلو ببرید و کدها رو وارد کنید.از لینک زیر وارد بشیدGitHub - tapexyz/tape: an open media-sharing platform.an open media-sharing platform. Contribute to tapexyz/tape development by creating an account on GitHub.https://github.comFuel Network دستورات مربوط بهsudo apt-get install screen sudo apt-get install git-all curl --proto '=https' --tlsv1.3 https://sh.rustup.rs -sSf | sh source "$HOME/.cargo/env" rustup update stable rustup default stable curl --proto '=https' --tlsv1.2 -sSf https://install.fuel.network/fuelup-init.sh | sh export PATH="$HOME/.fuelup/bin:$PATH" source /root/.bashrc fuelup toolchain install latest fuelup self update fuelup toolchain install beta-3 fuelup default beta-3 fuelup --version fuelup default beta-3 mkdir fuel-project cd fuel-project forc new counter-contract nano counter-contract/src/main.swContractcontract; storage { counter: u64 = 0, } abi Counter { #[storage(read, write)] fn increment(); #[storage(read)] fn count() -> u64; } impl Counter for Contract { #[storage(read)] fn count() -> u64 { storage.counter } #[storage(read, write)] fn increment() { storage.counter = storage.counter + 1; } } cd counter-contract forc build forc-wallet new (برای ایجاد ولت جدید) forc-wallet import ( ایمپورت والت قدیمی خودتون) forc-wallet account new forc deploy --node-url beta-3.fuel.network/graphql --gas-price 1 --random-salt forc wallet sign --account 0 tx-id 00000000000000000000000000000000000000000000000000000000000000 https://fuellabs.github.io/block-explorer-v2/beta-3/موفق باشید :) ## Publication Information - [CryptoWizard (💙,🧡)](https://paragraph.com/@cashpack/): Publication homepage - [All Posts](https://paragraph.com/@cashpack/): More posts from this publication - [RSS Feed](https://api.paragraph.com/blogs/rss/@cashpack): Subscribe to updates - [Twitter](https://twitter.com/Moe1no): Follow on Twitter