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. Get started

Check Deployment

PreviousDeploy Smart ContractNextMEVerse Network Structure

Last updated 2 years ago

You can check the deployment by running deployed contract method.

you can check the deployed contract's network with truffle networks command

$ truffle networks
Network: MEVerseTestnet (id: 4759)
  MEVerseGreeter: 0xeb7A1483E3408Af19231262643672719CcFc6E17
  Migrations: 0xD542f454EdEb2CebeDF68a2B6176951c19dff9ed

To connect the deployed contract with network, please use the following command

$ truffle console --network MEVerseTestnet  
truffle(MEVerseTestnet)> 

create instance and check if it runs well by calling method in instance

truffle(development)> let mev = await MEVerseGreeter.deployed()
undefined
truffle(MEVerseTestnet)> mev.greet()
'Hello, MEVerse'
truffle(MEVerseTestnet)> 

Finally, check the Contract Address in Console and search tx hash in

MEVerse Testnet Scan