FNCY Chain
FNCY 2.0.2 (ENG)
FNCY 2.0.2 (ENG)
  • Introduction
  • Getting Started
  • Design
    • Structure
    • Three Main Sets of Participants
    • PoSA Consensus
    • Governance
    • Staking
    • Mining Reward
    • Gas Fee
    • Runtime Upgrade
    • Cross-Chain Bridge
    • Security
  • Build On FNCY Chain
    • RPC Endpoints
    • Testnet Faucet
    • Block Explorer
      • Token Listing
    • BEP20 Token
    • NFT
    • Validator Requirements
    • NFT Market
      • FNCY Marketplace
  • For Developers
    • JSON-RPC
    • FNCY Chain API
      • Wallet API
      • Transaction API
      • Blockchain API
    • Wallet
      • FNCY Wallet
      • Use MetaMask for FNCY Chain
      • SDK
        • Android
          • Install
          • Guide
            • Initialize
            • Create/Restore Wallet
            • Wallet Search
            • Execute SendCoin/Contract
            • Transaction Search
            • Other Features
          • Methods
          • Domain
          • ETC
        • iOS
          • Install
          • Guide
            • Initialize
            • Create/Restore Wallet
            • Wallet Search
            • Execute SendCoin/Contract
            • Transaction Search
            • Other Features
          • Methods
          • Domain
          • ETC
    • Smart Contract
      • Deployment
        • Truffle
        • Hardhat
        • Remix IDE
      • Verify Your Contract on FncyScan
    • Gasless Transaction
    • with FNCY
      • FNCY Login
      • GAME AUTH Login
  • Tokenomics
  • Ecosystem Partner
  • FNCY Governance Partner
Powered by GitBook
On this page
  • Deploying Smart Contracts Using Remix IDE
  • Accessing Remix IDE
  • Compiling Smart Contract
  • Deploying Smart Contracts
  • Wrapping Up
  1. For Developers
  2. Smart Contract
  3. Deployment

Remix IDE

PreviousHardhatNextVerify Your Contract on FncyScan

Deploying Smart Contracts Using Remix IDE

In this guide, you'll learn how to deploy a smart contract using the Remix IDE. The Remix IDE is an integrated development environment (IDE) that helps you develop smart contracts using solidity in a web browser.

Accessing Remix IDE

First, if you go to https://remix.ethereum.org/, you'll see that there are three files created by default.

  • 1_Storage.sol

  • 2_Owner.sol

  • 3_Ballot.sol

In this example, we'll deploy the 2_Owner.sol contract.

Compiling Smart Contract

Press the Compile 2_Owner.sol button and it will compile automatically. If the compilation completes successfully, you will see a green mark.

The photo below shows compilation complete.

Deploying Smart Contracts

Pressing the Deploy button will automatically deploy it.

You can check throuhg the console.log that the smart contract deployed successfully.

Wrapping Up

You have successfully deployed a smart contract using the Remix IDE. You can now use its address to call the deployed contract.

2_Owner.sol