Meta Yield NFT
  • Meta Yield
    • Welcome to Meta Yield
  • White Paper
    • Welcome to Meta Yield
    • Meta Yield Introduction
      • What is Meta Yield?
      • Why Meta Yield
  • Meta Yield Protocol
    • Inside Meta Yield
    • Gas Fees
    • Fraud Proofs
  • Tokenomics
  • $MY Token Utility
  • Roadmap
  • Referral Commission Mechanism— Meta Yield (MY)
  • Backers and ECO Partners
  • Ecosystem
    • Airdrop
  • Brick touch game
  • Meta Yield Pools
    • Token Flow Diagram
    • ROI Projection Table
    • Dashboard UX Mockup Idea
  • BOX Meta Yield
  • Blind box + NFT
  • developer
    • Deploy contract on Meta Yield mainnet
      • Foundry
      • Hardhat
      • Remix
  • Deploy contract on Hal Testnet
    • Foundry
    • Hardhat
    • Remix
  • support
    • Official Links
Powered by GitBook
On this page
  • What is Remix?
  • Getting Started with Remix
  • Deploying Your Smart Contract
  1. developer
  2. Deploy contract on Meta Yield mainnet

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.

Copy

// 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 to MetaMask - Press connect in Metamask to allow Remix access.

  3. Add your network to Metamask using these parameters from Meta Yield Mainnet:

    • Network Name: Meta Yield

PreviousHardhatNextDeploy contract on Hal Testnet

Last updated 16 days ago