# Deploy contract Monad with Remix **Published by:** [FFCRYPTO COMMUNITY](https://paragraph.com/@ffcrypto/) **Published on:** 2025-02-27 **URL:** https://paragraph.com/@ffcrypto/deploy-contract-monad-with-remix-1 ## Content Truy cập link: https://remix.ethereum.org/Tạo folder mới: Đặt tên gì tùy aeNhư bên dưới mình đã tạo thành công folder ffcryptoCreate new fileĐặt tên file tùy nhưng phải theo định dạng .sol, như bên dưới mình đặt là monad.solPaste toàn bộ code vào trong file mới tạo// SPDX-License-Identifier: MIT // Make sure the compiler version is below 0.8.24 since Cancun compiler is not supported just yet pragma solidity >=0.8.0 <=0.8.24; contract Gmonad { string public greeting; constructor(string memory _greeting) { greeting = _greeting; } function setGreeting(string calldata _greeting) external { greeting = _greeting; } } Ấn closeChọn vào Solidity compiler => Ở mục 0.8.26 chọn vào đó xong chọn tới ver 0.8.24+commit.e => Ấn Compile monad.solChọn vào Deploy and run => Click vào Remix VM (Cancun) => Chọn vào Injected Provider - Metamask => Connect ví Metamask mạng Monad TestnetMục deploy điền: monadẤn deploy => Confirm lệnh trên metamask và đợi tầm 30s để lệnh xongTruy cập mục Deployed Contracts => Ở mục setgreeting điền monad hello Sau đó ấn setGreeting và confirm trên Metamask ## 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/deploy-contract-monad-with-remix-1): Support the author by collecting this post - [View Collectors](https://paragraph.com/@ffcrypto/deploy-contract-monad-with-remix-1/collectors): See who has collected this post