MFX Network Documentation

This page contains the main documentation for working with MFX Network: from quick start to wallet connection and Explorer usage. Here you will find everything you need to get started with the network.

Network Overview

MFX Network is an independent EVM-compatible L1 network created as infrastructure for real-world business, payment solutions and tokenization. The network is fully compatible with the Ethereum ecosystem, meaning you can use familiar development tools, wallets and smart contracts.

The goal of the network is to provide businesses with a clear and manageable blockchain layer where they can build payment scenarios, loyalty programs, internal tokens and other products without depending on overheating of other networks and high fees.

MFX Network develops a full infrastructure stack: own nodes, indexer, explorer, wallet and services around the network.

Quick Start

  1. Create a wallet

    If you don't have a wallet yet, install MetaMask or another EVM-compatible wallet. We recommend using MetaMask to get started with the MFX network.

  2. Add MFX network

    Open your wallet and add the MFX Network with the following parameters:

    • Network name: MFX Mainnet
    • RPC URL: https://rpc.mfx.network
    • Chain ID: 2064
    • Currency symbol: MFX
    • Block explorer: https://explorer.mfx.network
    See detailed instructions for adding the network to MetaMask in the Wallet Connection section.

  3. Get test MFX from faucet

    Go to MFX Wallet v2 and use the "Faucet" section to get test MFX coins. This will allow you to test transactions without real costs.

  4. Send your first transaction

    After receiving test MFX, you can send a transaction to another address or try interacting with a dApp on the MFX network. All transactions can be tracked in MFX Explorer.

Network Configuration

Network Name:
MFX Mainnet
RPC URL:
https://rpc.mfx.network
Chain ID:
2064
Currency Symbol:
MFX
Block Explorer URL:
https://explorer.mfx.network

Wallet Connection

Adding network to MetaMask

  1. Откройте MetaMask и нажмите на выпадающий список сетей в верхней части интерфейса.
  2. Выберите "Добавить сеть" (или "Add Network") внизу списка.
  3. Введите параметры сети MFX:
    • Network name: MFX Mainnet
    • RPC URL: https://rpc.mfx.network
    • Chain ID: 2064
    • Currency symbol: MFX
    • Block explorer URL: https://explorer.mfx.network
  4. Нажмите "Сохранить" и переключитесь на сеть MFX.

Common issues and solutions

Balance not updating

If the balance is not updating automatically, try:

  • Click the "Refresh" button in the wallet
  • Switch to another network and back
  • Reload the wallet page

Transaction stuck

If a transaction is not confirming for a long time:

  • Check the transaction status in
  • Explorer
  • Make sure you have enough gas (MFX) for the fee
  • Try canceling the transaction and sending a new one with increased gas price

Cannot connect wallet to dApp

Make sure:

  • You have selected the MFX network in MetaMask
  • The dApp supports Chain ID 2064
  • Try disconnecting and reconnecting the wallet in the dApp

Explorer and API

MFX Explorer

MFX Explorer is a web interface for viewing blocks, transactions, addresses and network metrics. You can use Explorer to:

  • View transaction history by address
  • Track transaction status
  • View block and smart contract details
  • Analyze event logs

API endpoints

Explorer provides REST API for programmatic access to network data:

Get transactions by hash:
GET /v1/txs?hash={txHash}
Get transactions by address:
GET /v1/txs?from={address} or GET /v1/txs?to={address}
Get address information:
GET /v1/address/{address}
Get network summary:
GET /v1/summary
Get transaction information:
GET /v1/tx/{txHash}

Base API URL: https://explorer.mfx.network

FAQ

What are the fees in MFX Network?

Fees in MFX Network are significantly lower than in major EVM networks. Exact fee values depend on current network load and may vary. You can always check the current gas price via RPC or in Explorer.

How fast are transactions confirmed?

Blocks in MFX Network are created regularly, and transactions are usually confirmed within a few seconds. Confirmation time may vary depending on network load and set gas price.

Is the network compatible with Ethereum contracts?

Yes, MFX Network is fully EVM-compatible, which means smart contracts written for Ethereum generally work without changes on MFX network. You can use the same development tools (Truffle, Hardhat, Remix, etc.) and libraries (ethers.js, web3.js, viem).

Where to get test MFX coins?

Test MFX coins can be obtained through the faucet on MFX Wallet v2. Go to the "Faucet" section and request test coins to your address.

How to check transaction status?

You can check transaction status in several ways:

  • Via
  • MFX Explorer, entering the transaction hash in the search
  • Via RPC method
  • eth_getTransactionReceipt
  • Via Explorer API:
  • GET /v1/tx/{txHash}

Can I use other wallets besides MetaMask?

Yes, any wallet that supports EVM networks and the ability to add custom networks can work with MFX Network. Simply add the network with the parameters specified in the Network Configuration section.