# Hướng dẫn Deploy Contracts trên Scroll Mainnet > Creat by SnowFlower9x **Published by:** [FFCRYPTO COMMUNITY](https://paragraph.com/@ffcrypto/) **Published on:** 2023-10-27 **URL:** https://paragraph.com/@ffcrypto/huong-dan-deploy-contracts-tren-scroll-mainnet ## Content Bước 1: Truy cập Remixhttps://remix.ethereum.orgRemix - Ethereum IDETạo thư mục mới trên Remix Đặt tên thư mục theo dạng name.sol Copy nguyên dòng code bên dưới sau đó paste vào thự mục mới tạo // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract FunctionTypes{ uint256 public number = 5; constructor() payable {} function addView() external view returns(uint256 new_number) { new_number = number + 1; } }Chuyển sang mục Solidity Compiler => Ấn tiếp vào Compile name.sol Chuyển sang mục Deploy & run => Connect ví Meta => Deploy ## Publication Information - [FFCRYPTO COMMUNITY](https://paragraph.com/@ffcrypto/): Publication homepage - [All Posts](https://paragraph.com/@ffcrypto/): More posts from this publication - [RSS Feed](https://api.paragraph.com/blogs/rss/@ffcrypto): Subscribe to updates - [Twitter](https://twitter.com/thanhva5373382): Follow on Twitter ## Optional - [Collect as NFT](https://paragraph.com/@ffcrypto/huong-dan-deploy-contracts-tren-scroll-mainnet): Support the author by collecting this post - [View Collectors](https://paragraph.com/@ffcrypto/huong-dan-deploy-contracts-tren-scroll-mainnet/collectors): See who has collected this post