Sanko Mainnet Docs
  • Sanko
    • What is Sanko?
    • Sanko Overview
      • AnyTrust and the Data Availability Committee
      • Keysets
      • Data Availability Certificates​
      • Data Posting Mechanisms
      • Data Availability Servers​
      • Sequencer-Committee Interaction
    • Official Links
  • Sanko Mainnet
    • Connect to Sanko Mainnet
    • Bridge to Sanko
    • Native DEXs
      • Sankoswap
      • Camelot Exchange
        • Camelot V2
        • Camelot V3
          • Concentrated Liquidity
          • Customizable Tickspacing
          • Directional & Dynamic Volatility Fees
    • Sudoswap
      • Sudoswap Overview
        • Bonding Curves
        • Royalties
        • Settings
        • Property Checking
        • ERC1155 NFTs
      • User Guide
        • Creating a Liquidity Pool
        • Managing Existing Pools
        • Creating an Auction
        • Managing Collections
    • SankoTools
      • Terminal Elements
        • Research Elements
        • Chaindata Elements
        • Market Data Elements
        • NFT Elements
        • Chart Elements
        • Liquidity Elements
        • Portfolio Elements
        • Utility Elements
    • Run a Sanko node
  • $DMT
    • The Dream Machine Token (DMT)
    • What is $DMT?
      • How to Purchase $DMT on Arbitrum
      • How to Purchase $DMT on Ethereum
    • The Dream Machine
    • Tokenomics
  • Build on Sanko
    • Connect to Sanko Testnet
    • Deploy on Sanko Testnet
      • Foundry
      • Hardhat
      • Remix
    • Testnet Info + Faucet
    • Testnet Bridge
    • Testnet Block Explorer
    • Pyth Entropy (RNG)
  • miscellaneous
    • Sanko Terms of Use
    • Sanko Privacy Policy
    • FAQ
    • Notice
Powered by GitBook
On this page
  • What is Remix?
  • Getting Started with Remix
  • Deploying Your Smart Contract
  1. Build on Sanko
  2. Deploy on Sanko Testnet

Remix

PreviousHardhatNextPyth Entropy (RNG)

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 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.0pragma 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 Sanko Testnet:

    • Network Name: Sanko Testnet

    • New RPC URL:

    • Chain ID: 1992

    • Currency Symbol: tDMT

    • Block Explorer URL:

https://sanko-arb-sepolia.rpc.caldera.xyz/http(opens in a new tab)
https://sanko-arb-sepolia.explorer.caldera.xyz/(opens in a new tab)