MEVerse Dev Docs
MEVerse Dev Docs (EN)
MEVerse Dev Docs (EN)
  • Welcome
  • MEVerse Introduction
    • MEVerse Core Design
    • Proof of Formulation
    • Customizable Multi Chain
    • Level Tree
    • Block Redesign
  • Get started
    • How to Set Up a Node
    • Add MEV in Account
    • IDE & Dev Tool
    • Deploy Smart Contract
    • Check Deployment
  • MEVerse Network Structure
    • Generator Node
    • Observer Node
    • Seed Node
    • Public Node
    • Bridge Node
  • Smart Contract
    • Solidity - Smart Contract Language
    • IDE and Tools
      • Remix
      • Truffle
      • Hardhat
      • MEVerse Scan(Explorer)
      • Connecting MetaMask
    • Sample Contracts
    • Testing Guide
  • MEVerse Mining Ecosystem
  • MEVerse Links
    • MEVerse Website
    • MEVerse Whitepaper
    • MEVerse Blog
    • MEVerse Disclosure & Updates (Xangle)
    • MEVerse Coinmarketcap
Powered by GitBook
On this page
  1. Smart Contract

Sample Contracts

Following is a simple example

//SPDX-License-Identifier: MIT

pragma solidity 0.8.0;

contract HelloWorld {
    string private word;

    constructor (string memory _word) {
        word = _word;
    }

    function setWord(string memory _word) external returns (bool) {
        word = _word;
        return true;
    }

    function hello() public view returns (string memory) {
        return word;
    }
}

Contract Deployment can be easily done using Remix IDE.

  • You can get Testnet MEV for the gas fee at faucet

  • Deploy contract by putting statements in generator parameter

  • You can call hello from IDE to see the statement you put

  • you can update the statement by calling the setWord function

PreviousConnecting MetaMaskNextTesting Guide

Last updated 2 years ago

https://testnet.meversescan.io/faucet