Lisk - Ethereum L2 Documentation
Complete guide to Lisk L2 integration with Dwellir RPC. Learn how to build on Lisk, access JSON-RPC methods, and optimize your dApp performance.
Lisk RPC
With Dwellir, you get access to our global Lisk network which always routes your API requests to the nearest available location, ensuring low latency and the fastest speeds.
Get your API keyWhy Build on Lisk?
Lisk is the first Layer 1 to successfully transition to an Ethereum Layer 2, focusing on real-world applications in emerging markets. Built on Optimism's OP Stack, Lisk offers:
Optimized Performance
- 2-second block times - Fast transaction confirmations
- 10-100x lower costs than Ethereum mainnet
- Full EVM equivalence - Deploy without modifications
Proven Security
- First L1 to L2 migration - Successfully transitioned from Layer 1
- Ethereum security - Inherits L1 security guarantees via Optimism
- OP Stack powered - Built on battle-tested technology
Emerging Markets Focus
- Real-world assets (RWA) - Specialized for tokenization
- DePIN applications - Decentralized physical infrastructure
- High-growth markets - Optimized for emerging economies
Quick Start with Lisk
Connect to Lisk in seconds with Dwellir's optimized endpoints:
curl -sS -X POST https://api-lisk-mainnet.n.dwellir.com/<API_Keys_Are_Not_Made_for_Bots> \ -H 'Content-Type: application/json' \ -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'import { JsonRpcProvider } from 'ethers';const provider = new JsonRpcProvider( 'https://api-lisk-mainnet.n.dwellir.com/<API_Keys_Are_Not_Made_for_Bots>');const latest = await provider.getBlockNumber();console.log('block', latest);import requestsurl = 'https://api-lisk-mainnet.n.dwellir.com/<API_Keys_Are_Not_Made_for_Bots>'payload = { 'jsonrpc': '2.0', 'id': 1, 'method': 'eth_blockNumber', 'params': []}resp = requests.post(url, json=payload)print(resp.json())package mainimport ( "bytes" "fmt" "io" "net/http")func main() { url := "https://api-lisk-mainnet.n.dwellir.com/<API_Keys_Are_Not_Made_for_Bots>" payload := []byte(`{"jsonrpc":"2.0","id":1,"method":"eth_blockNumber","params":[]}`) resp, err := http.Post(url, "application/json", bytes.NewBuffer(payload)) if err != nil { panic(err) } defer resp.Body.Close() body, _ := io.ReadAll(resp.Body) fmt.Println(string(body))}Installation & Setup
Network Information
| Parameter | Value | Details |
|---|---|---|
| Chain ID | 1135 | Mainnet |
| Block Time | 2 seconds | Average |
| Gas Token | ETH | Native token |
| RPC Standard | Ethereum | JSON-RPC 2.0 |
API Reference
Lisk supports the full Ethereum JSON-RPC API specification. Access all standard methods with L2 optimizations.
Common Integration Patterns
Transaction Monitoring
Monitor pending and confirmed transactions efficiently:
// Watch for transaction confirmation
async function waitForTransaction(txHash) {
const receipt = await provider.waitForTransaction(txHash, 1);
// L2 specific: Check L1 data availability
if (receipt.l1Fee) {
console.log('L1 data cost:', receipt.l1Fee);
}
return receipt;
}Gas Optimization
Optimize gas costs on Lisk L2:
// Estimate L2 execution gas
const l2Gas = await provider.estimateGas(tx);
// For L1 data fees on Lisk, fees are handled automatically
// Total gas cost includes both L2 execution and L1 data postingEvent Filtering
Efficiently query contract events:
// Query events with automatic retry and pagination
async function getEvents(contract, eventName, fromBlock = 0) {
const filter = contract.filters[eventName]();
const events = [];
const batchSize = 2000; // Lisk recommended batch size
for (let i = fromBlock; i <= currentBlock; i += batchSize) {
const batch = await contract.queryFilter(
filter,
i,
Math.min(i + batchSize - 1, currentBlock)
);
events.push(...batch);
}
return events;
}Performance Best Practices
1. Batch Requests
Combine multiple RPC calls for optimal performance:
const batch = [
{ method: 'eth_blockNumber', params: [] },
{ method: 'eth_gasPrice', params: [] },
{ method: 'eth_getBalance', params: [address, 'latest'] }
];
const results = await provider.send(batch);2. Connection Pooling
Reuse provider instances to minimize connection overhead:
// Singleton pattern for provider
class BaseProvider {
static instance = null;
static getInstance() {
if (!this.instance) {
this.instance = new JsonRpcProvider(
'https://api-lisk-mainnet.n.dwellir.com/YOUR_API_KEY'
);
}
return this.instance;
}
}3. Smart Caching
Cache immutable data to reduce API calls:
const cache = new Map();
async function getCachedBlockData(blockNumber) {
const key = `block_${blockNumber}`;
if (!cache.has(key)) {
const block = await provider.getBlock(blockNumber);
cache.set(key, block);
}
return cache.get(key);
}Troubleshooting Common Issues
Error: "Insufficient funds for transaction"
Lisk transactions require ETH for both L2 execution and L1 data availability:
// Always account for total gas costs
const balance = await provider.getBalance(address);
const gasEstimate = await provider.estimateGas(tx);
const gasPrice = await provider.getGasPrice();
const totalRequired = gasEstimate * gasPrice + tx.value;
if (balance < totalRequired) {
throw new Error(`Need ${totalRequired - balance} more ETH`);
}Error: "Transaction underpriced"
Lisk uses EIP-1559 pricing. Always use dynamic gas pricing:
// Get current fee data
const feeData = await provider.getFeeData();
const tx = {
to: recipient,
value: amount,
maxFeePerGas: feeData.maxFeePerGas,
maxPriorityFeePerGas: feeData.maxPriorityFeePerGas,
gasLimit: 21000n
};Error: "Rate limit exceeded"
Implement exponential backoff for resilient applications:
async function callWithRetry(fn, maxRetries = 3) {
for (let i = 0; i < maxRetries; i++) {
try {
return await fn();
} catch (error) {
if (error.code === 429 && i < maxRetries - 1) {
await new Promise(r => setTimeout(r, 2 ** i * 1000));
} else {
throw error;
}
}
}
}Migration Guide
From Ethereum Mainnet
Moving from L1 to Lisk L2 requires minimal changes:
// Before (Ethereum)
const provider = new JsonRpcProvider('https://eth-rpc.example.com');
// After (Lisk)
const provider = new JsonRpcProvider(
'https://api-lisk-mainnet.n.dwellir.com/YOUR_API_KEY'
);
// Smart contracts work identically
// Same tooling and libraries
// Note: Different chain ID (1135)
// Note: Separate block numbers
// Note: L1 data fees applyResources & Tools
Official Resources
Developer Tools
Need Help?
- Email: support@dwellir.com
- Docs: You're here!
- Dashboard: dashboard.dwellir.com
Start building on Lisk with Dwellir's enterprise-grade RPC infrastructure. Get your API key
rollup_getInfo - Get zkEVM rollup configuration
Get zkEVM rollup configuration on Linea. Essential for understanding the zkEVM rollup parameters and settings.
eth_blockNumber
Get the current block height on LISK. Essential for syncing dApps, monitoring transaction confirmations, and blockchain state tracking.

