EBLA is 100% EVM-compatible. Your Solidity contracts, Hardhat scripts, ethers.js code, and MetaMask wallet connect without any changes. Just point to EBLA.
Click the network selector at the top of MetaMask, then "Add a network manually" at the bottom.
Network Name: EBLA Network ยท RPC URL: https://rpc.EBLAnetwork.com ยท Chain ID: 60186 ยท Currency: EBLA
Click Save. MetaMask will switch to the EBLA network. If you had an airdrop, your balance appears immediately.
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"
};
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");
[profile.ebla] rpc_url = "https://rpc.EBLAnetwork.com" chain_id = 60186 # 0xEB1A โ EBLA mainnet gas_price = 1000000000 # 1 Gwei minimum
| Parameter | Value | Notes |
|---|---|---|
| Minimum gas price | 1,000,000,000 wei | 1 Gwei โ enforced at mempool level |
| Max gas per transaction | 31,500,000 | Hard ceiling per single transaction |
| DAG block gas limit | 63,000,000 | Per individual DAG block |
| PBFT block gas limit | 630,000,000 | Per finalized period block |
| Native transfer gas | 21,000 | Same as the standard EVM constant on Ethereum |
| Cost of a native transfer | 0.000021 EBLA | At the 1 Gwei minimum gas price |
View transactions, blocks, addresses, and contract interactions.
HTTP and WebSocket endpoints for querying the network.
All source code, open-source. Fork it, audit it, contribute.
#dev-support channel for build questions, bug reports, and collaboration.