U
UnyKorn
Disconnected← Back
Live TestnetXRPL Altnet

XRPL Bridge Demo

Live connection to the XRP Ledger Testnet. Real WebSocket data, real transactions, real infrastructure — demonstrating UnyKorn L1's XRPL bridge capabilities.

wss://s.altnet.rippletest.net:51233

Server Info

Waiting for connection...

Live Ledger Stream

Waiting for ledger events...

Testnet Wallet

Generate a funded testnet wallet from the XRPL faucet. No real value — testnet XRP only.

Account Lookup

Query any XRPL testnet account for balance, sequence, and object count. This uses the validated ledger.

How This Connects

This demo page connects directly to the XRPL Testnet via native WebSocket. In production, the UnyKorn L1 xrpl-bridge crate handles this with deterministic transaction routing, multi-signature custody, and the audit layer enforcement that institutional capital requires.

1
Client Request Layer
WebSocket connection to XRPL nodes with failover
2
Transaction Signing
Custody-abstracted signing via Fireblocks, BitGo, or local
3
Settlement Finality
3-5 second consensus with deterministic audit logging
4
Compliance Enforcement
Pre-flight checks, sanctions screening, AML rules engine
// UnyKorn L1 — xrpl-bridge crate
pub struct XrplBridge {
client: XrplClient,
custody: CustodyProvider,
compliance: ComplianceEngine,
audit: AuditLogger,
}
impl XrplBridge {
pub async fn submit_payment(
&self,
req: PaymentRequest,
) -> Result<TxReceipt> {
self.compliance.preflight(&req)?;
let signed = self.custody.sign(&req).await?;
let result = self.client.submit(signed).await?;
self.audit.log(&result);
Ok(result)
}
}
Network
XRPL Testnet
Consensus
3-5 seconds
Protocol
WebSocket
Bridge Crate
xrpl-bridge
Ledgers Seen
0