# Remixでスマコンをデプロイする

By [Something about Web3](https://paragraph.com/@0xkyosuke) · 2024-05-17

---

準備
--

*   Remix([remix.ethereum.org](http://remix.ethereum.org))にアクセスする
    
*   メタマスク等で、デプロイしたいチェーンにあらかじめ変更しておく
    
*   下のコードをコピーしておく
    
        // SPDX-License-Identifier: MIT
        pragma solidity ^0.8.0;
        
        contract Gm {
            function gm() public pure returns (string memory) {
                return "gm";
            }
        }
        
    

やり方（動画）
-------

[https://vimeo.com/947462483](https://vimeo.com/947462483)

以上！

---

*Originally published on [Something about Web3](https://paragraph.com/@0xkyosuke/remix)*
