Discover
About EBLA Roadmap Technology Security
Economics
Tokenomics Airdrop Staking
Build
Validators Developers
Network
Community FAQ Join Now
๐Ÿ‘ฉโ€๐Ÿ’ป Developers

Your Tools
Already Work.

EBLA is 100% EVM-compatible. Your Solidity contracts, Hardhat scripts, ethers.js code, and MetaMask wallet connect without any changes. Just point to EBLA.

Solidity โœ“ ethers.js โœ“ Hardhat โœ“ Foundry โœ“ MetaMask โœ“ Ledger โœ“
๐ŸŒ Network Reference

Connection Details

Network Name EBLA Network
Chain ID 60186 (0xEB1A)
RPC URL (HTTP) https://rpc.EBLAnetwork.com
RPC URL (WS) wss://ws.EBLAnetwork.com
Block Explorer explorer.EBLAnetwork.com
Currency Symbol EBLA
Min Gas Price 1,000,000,000 wei (1 Gwei)
๐ŸฆŠ MetaMask

Add EBLA to MetaMask

  1. 1

    Open MetaMask โ†’ Networks โ†’ Add a network

    Click the network selector at the top of MetaMask, then "Add a network manually" at the bottom.

  2. 2

    Enter network details

    Network Name: EBLA Network ยท RPC URL: https://rpc.EBLAnetwork.com ยท Chain ID: 60186 ยท Currency: EBLA

  3. 3

    Save and switch

    Click Save. MetaMask will switch to the EBLA network. If you had an airdrop, your balance appears immediately.

โš’๏ธ Hardhat Config

Configure Your Tools

hardhat.config.js
        require("@nomicfoundation/hardhat-toolbox");
        module.exports = {
          networks: {
            ebla: {
              url: "https://rpc.EBLAnetwork.com",
              chainId: 60186, // 0xEB1A โ€” EBLA mainnet
              gasPrice: 1000000000, // 1 Gwei minimum
              accounts: [process.env.PRIVATE_KEY]
            }
          },
          solidity: "0.8.25"
        };
      
ethers.js connection
        import { ethers } 
        from "ethers";
        // HTTP provider
        const provider = new ethers.JsonRpcProvider(
          "https://rpc.EBLAnetwork.com"
        );
        // WebSocket provider (for subscriptions)
        const wsProvider = new ethers.WebSocketProvider(
          "wss://ws.EBLAnetwork.com"
        );
        // Minimum gas price (enforced on-chain)
        const gasPrice = ethers.parseUnits("1", "gwei");
      
foundry.toml
[profile.ebla]
        rpc_url = "https://rpc.EBLAnetwork.com"
        chain_id = 60186  # 0xEB1A โ€” EBLA mainnet
        gas_price = 1000000000  # 1 Gwei minimum
      
โ›ฝ Gas Reference

Gas Limits & Pricing

ParameterValueNotes
Minimum gas price1,000,000,000 wei1 Gwei โ€” enforced at mempool level
Max gas per transaction31,500,000Hard ceiling per single transaction
DAG block gas limit63,000,000Per individual DAG block
PBFT block gas limit630,000,000Per finalized period block
Native transfer gas21,000Same as the standard EVM constant on Ethereum
Cost of a native transfer0.000021 EBLAAt the 1 Gwei minimum gas price