Solana-Settled SVM L2

Ecliptic

Epoch roots on Mainnet. $ECL is gas. Fast, open, unstoppable.

Scroll
Performance

Numbers that speak

LATENCY
<100ms
Block time in milliseconds
FINALITY
<400ms
Time to finality
COST
<$0.001
Average transaction cost
SVM
1
Active validator
Settled on Solana.Fueled by $ECL.Fast, open, unstoppable.
Architecture

From execution to settlement

LIVEEclipticL2 Execution
Transactions
BatchEpoch Grouping
Epoch Root
AnchorSubmit to L1
Verification
FinalizedSettled on Solana
01

Transactions processed on Ecliptic

02

Grouped into epochs & state root computed

03

Epoch root submitted to Solana

04

Verified & stored on L1

01 Execute02 Batch03 Anchor04 Finalized
Developer Native

Write Solana programs.
Deploy on Ecliptic.

Full SVM compatibility means your existing Anchor and native Solana programs work out of the box. Same Rust toolchain, same CLI, same deploy flow — settled on Solana, powered by $ECL.

Full Anchor & native program support
Parallel execution via Sealevel runtime
Deploy in minutes — zero code changes
lib.rsRust
use anchor_lang::prelude::*;
 
declare_id!("Ec1iptic...Program1d");
 
#[program]
pub mod ecliptic_vault {
use super::*;
 
pub fn initialize(ctx: Context<Initialize>) -> Result<()> {
let vault = &mut ctx.accounts.vault;
vault.authority = ctx.accounts.authority.key();
vault.total_deposited = 0;
vault.bump = ctx.bumps.vault;
msg!("Vault initialized on Ecliptic");
Ok(())
}
}
Terminal
$solana program deploy./target/deploy/ecliptic_vault.so
RPC URL:https://rpc.ecliptic.one
Program Id:Ec1iptic...Program1d
Deploy success