Advanced Features

Power user capabilities for complex automation

Batch Execution

Efficiency Boost

NodeMatrix can batch multiple transactions together, reducing total execution time for multi-wallet operations across all supported EVM chains.

Sequential (Slow)

Transaction 1 → Wait → Transaction 2 → Wait → Transaction 3

Total: ~45 seconds for 3 transactions

Batched (Optimized)

Transaction 1 ↘

Transaction 2 → Batched submission

Transaction 3 ↗

Total: ~10 seconds for 3 transactions

Sequential vs Batched execution comparison
Sequential execution vs batched optimized execution

Cross-Chain Operations

NodeMatrix supports seamless cross-chain transfers using bridge integrations. Move assets between Ethereum, Base, BSC, Arbitrum, and more.

Ethereum
Base
BSC
Arbitrum
Polygon

Cross-Chain Fees

Cross-chain swaps incur bridge fees. The system automatically detects when source and destination are on different chains and enables the appropriate bridge.

MEV Protection

bloXroute MEV Protection

Protect your transactions from front-running and sandwich attacks

When enabled, transactions are routed through bloXroute's private mempool, preventing MEV bots from seeing and exploiting your trades.

Enabled by default in Multi Wallet node

Flow Duplication

Duplicate your entire workflow to another chain with a single click. All node configurations are preserved, only the chain context changes.

// Duplicate flow from Base to Ethereum
const duplicatedFlow = await duplicateFlow({
  sourceChain: "base",
  targetChain: "ethereum",
  preserveWallets: true,
  preserveConfig: true
});
Flow controls with duplication options
Duplicate flows across chains from the Flow Controls panel