XR One
  • Welcome
    • Introduction to XR One
      • Vision
      • About the XR One Network
        • Paint Points
        • The Future is DeMoN
          • DeMoN: A Decentralized Modular Network Whitepaper
    • Important Links
  • Technology
    • XR One
      • Architecture
        • Arbitrum Orbit
        • AnyTrust
          • Data Availability Committee (DAC)
        • RaaS
        • Accounts
          • Account Abstraction
          • Multi-Party Computation
        • Bridge
      • Partners
    • XR One Products
      • NFT Avatars
      • On-chain names
      • Marketplaces
      • On-chain tournaments
      • $XR1 liquidity mining
      • Faustian
    • Nodes
      • Hero Nodes
      • What are Hero Nodes?
      • What are Node Sales?
      • What Makes the Hero Node sale Different
      • Sale Structure
      • XR Airdrop for Node Holders
      • Daily rewards
    • Security
      • Audits
      • Bug Bounty
      • Sequencer Decentralization
      • Multi-Sig Operations
      • Withdrawal Delay
    • Roadmap
  • Tokenomics
    • $XR Token
      • Utility
      • Hero Node Pricing Tiers
    • Token Distribution
    • Emission Schedule
  • Ecosystem
    • Games
      • Saltwater Games
        • Celeros
        • Resurgence
        • Freerunner
    • Agentic AI
      • MySidekick
        • $SKICK
    • Native Tooling
      • Faustian
    • The XR Foundation
      • Constitution
      • ByLaws
      • Amended and Restated Articles of Association of the XR Foundation
      • Foundation Grants
      • DAO Governance
      • Stakeholders
  • Connect
    • XR Sepolia (Testnet)
      • tXR Token
      • Add XR Sepolia to Wallet
      • Bridge to XR Sepolia
      • XR Sepolia Block Explorer
      • XR Sepolia Analytics
    • XR One (Mainnet)
  • Deploy
    • Deploy to XR Sepolia
      • Using Foundry
      • Using Hardhat
      • Using Remix
  • GUIDES
    • Hero Nodes
      • Owner's Manual
        • Purchasing
        • Transferring
        • Delegation
      • Operator's Manual
        • Requirements
        • Installation
        • Operation
Powered by GitBook
On this page
  • What is Remix?
  • Getting Started with Remix
  • Deploying Your Smart Contract
  1. Deploy
  2. Deploy to XR Sepolia

Using Remix

PreviousUsing HardhatNextHero Nodes

Last updated 1 year ago

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 .

  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 Deploy your contract.

  1. Navigate to the Deploy sidebar option.

  2. Change the top ENVIRONMENT dropdown to "Injected Web3"

  3. This will trigger your Wallet. Press connect in your wallet to provide Remix with access to it.

  4. Click the orange Deploy button.

your wallet to XR Sepolia.

Remix
Connect