Alpha Dune
  • Welcome
    • Alpha Dune Network
    • Arbitrum Orbit
    • Sentinel Nodes
    • Alpha Dune Community
    • Quick Links
  • WORK WITH US
    • Studios
    • Guardians
  • Dune Token
    • $DUNE Tokenomics
    • $DUNE Token Utility
  • Deploy on Alpha Dune Chain
    • Hardhat
    • Foundry
    • Remix
  • ALPHA DUNE GOVERNANCE
    • Introduction
    • Stakeholder Overview
    • Scope of Governance
    • Governance Cycles
    • Proposal Types, Stages & Quorum
    • Formal ADP Template
    • Voting Process
Powered by GitBook
On this page
  • What is Remix?
  • Getting Started With Remix
  • Deploying Your Smart Contract
  1. Deploy on Alpha Dune Chain

Remix

Deploying Smart Contracts using Remix

What is Remix?

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

  1. Visit Remix 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.

// 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!";
}
  1. Navigate to the Compile sidebar option and click Compile.

Deploying Your Smart Contract

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. Add your network to Metamask using these parameters from your Alpha Dune Chain:

    1. Network

    2. New RPC URL

    3. Chain ID

    4. Currency Symbol

    5. Block Explorer URL

PreviousFoundryNextIntroduction

Last updated 5 months ago

Page cover image