# REMIX

#### What is Remix?[​](https://docs.manta.network/docs/zkShuffle/Deploy/Remix#what-is-remix) <a href="#what-is-remix" id="what-is-remix"></a>

Remix Project is a robust set of tools that can be used by individuals of any skill level throughout the entire process of developing contracts, and it also serves as an educational platform for learning and experimenting with Ethereum.

#### Getting Started with Remix[​](https://docs.manta.network/docs/zkShuffle/Deploy/Remix#getting-started-with-remix) <a href="#getting-started-with-remix" id="getting-started-with-remix"></a>

1. Visit [Remix](https://remix.ethereum.org/) to get started.
2. Under **Featured Plugins**, select **Solidity**.
3. Navigate to the **File Explorer** and click **"+"** to create a Smart Contract
4. Input your smart contract or use the sample contract below.

   ```solidity
   // SPDX-License-Identifier: MIT
   // compiler version must be greater than or equal to 0.8.17 and less than 0.9.0
   pragma solidity ^0.8.17;

   contract HelloWorld {
   string public greet = "Hello World!";
   }
   ```
5. Navigate to the **Compile** sidebar option and click **Compile**.

#### Deploying your Smart Contract[​](https://docs.manta.network/docs/zkShuffle/Deploy/Remix#deploying-your-smart-contract) <a href="#deploying-your-smart-contract" id="deploying-your-smart-contract"></a>

Once you have written your Smart Contract in Remix, you can navigate to the sidebar option to Compile your contract.

1. Change the top ENVIRONMENT dropdown from "Javascript" to "Injected Web3"
2. This will take you MetaMask - Press connect in Metamask to allow Remix access.
3. Use the following information to add Atleta Olympia Testnet network to Metamask

* Network: Atleta Olympia
* New RPC URL: [https://testnet-rpc.atleta.network](https://testnet-rpc.atleta.network/)
* Chain ID: 2340
* Currency Symbol: ATLA
* Block Explorer URL: <https://blockscout.atleta.network/>
