XORA PROTOCOL · Technical Whitepaper v1.2
← Back to Xora
Technical Whitepaper

Yield-Optimized Custodial Banking Infrastructure for XRP, with TRX Pilot Support

A formal specification of the XORA protocol: APY value construction, treasury disclosure, token economics, and risk controls for XRP-native digital asset management, plus native TRX on Tron pilot support.

XORA Research
Updated June 26, 2026

Contact: research@xora.finance
Website: https://xora.finance
Version 1.2 · June 26, 2026
© 2026 XORA PROTOCOL · ALL RIGHTS RESERVED
Abstract

We present XORA, a yield-optimized custodial banking protocol built natively around the XRP Ledger (XRPL), with a separate native TRX on Tron pilot in the app. XORA implements a tiered APY value model that combines a native XRP yield component with an estimated XORA reward-value component. During bootstrap, the native XRP component is subsidised by a finite XORA treasury reserve and is disclosed separately from future on-chain yield sources such as XRPL AMM liquidity and XRPL-native lending markets. This paper formalizes the current yield-accounting model, specifies the XORA token emission schedule, and provides a risk framework for the protocol's custodial architecture. Rates are variable, not guaranteed, and may be suspended or stepped down under treasury risk controls. The TRX pilot supports native TRX only, uses TRON mainnet addresses with no memo, and is documented separately in the TRX deposit guide.

Contents
1. Introduction2
2. Protocol Architecture3
3. XRP Ledger Integration5
4. Yield Generation Model7
5. XORA Token Economics10
6. Security & Risk Framework13
7. Governance & DAO Transition15
8. Roadmap16
9. Conclusion17
References18

Introduction

The XRP Ledger (XRPL), launched in 2012, is one of the most battle-tested distributed ledger technologies in operation. With over $45 billion in market capitalization and sub-4-second settlement finality[1], XRPL offers a uniquely compelling substrate for financial applications. However, the ecosystem has historically lacked sophisticated yield-generating infrastructure comparable to what exists on Ethereum and Solana.

XORA addresses this gap by constructing a custodial yield banking layer that abstracts the complexity of treasury disclosure, daily XRP credits, and token rewards into a seamless neobanking experience. Unlike decentralized lending protocols that expose users directly to smart contract risk and impermanent loss, XORA employs a managed treasury model with explicit source-of-yield disclosure, daily reconciliation, and finite reserve controls.

Design Principles

  1. Auditable Custody: A segregated XRPL treasury account, per-user destination tags, daily reconciliation, restricted operational access, and a 3-of-5 multisig migration on the custody roadmap.
  2. Transparent APY Value: Displayed APY value separates native XRP yield from estimated XORA reward value, with the bootstrap treasury subsidy disclosed rather than hidden inside vague yield language.
  3. Dual-Stream Incentivization: Depositors can accrue native XRP yield and XORA governance tokens, while token quantity remains separate from any APY value estimate.
  4. Regulatory Compatibility: The custodial architecture is designed to be compatible with emerging digital asset regulatory frameworks, including MiCA (EU), the Stablecoin TRUST Act (US), and MAS PS Act (Singapore).

Protocol Architecture

XORA operates as a three-layer system: the Settlement Layer (XRPL), the Protocol Layer (XORA Engine), and the Application Layer (Client Dashboard). Each layer is designed for independent auditability and modular upgradability.

User
Deposit XRP
XORA
Treasury
Treasury
Engine
Yield
Distributor
User
Balance ↑
Figure 1. High-level protocol flow: User deposits route to the XORA treasury. The yield distributor credits daily XRP yield and XORA reward accruals according to the disclosed schedule, treasury controls, and current source-of-yield mix.

Custodial Sub-Account Model

Each user is assigned a unique destination tag $\tau_i \in \mathbb{Z}^+$ on the shared treasury address $\mathcal{A}_T$. Deposits are identified by the tuple $(\mathcal{A}_T, \tau_i)$, enabling permissionless deposit from any XRPL-compatible wallet or centralized exchange. The protocol maintains an off-chain ledger $\mathcal{L}$ that maps destination tags to user balances:

$$ \mathcal{L} : \tau_i \mapsto (b_i, y_i, t_i) $$
(1)

where $b_i$ is the user's principal balance, $y_i$ is the accrued yield, and $t_i$ is the timestamp of the last yield computation. The invariant maintained by the protocol is:

$$ \sum_{i=1}^{N} (b_i + y_i) \leq B_T - R_{\min} $$
(2)

where $B_T$ is the total treasury balance on-chain and $R_{\min}$ is the minimum reserve (including the XRPL base reserve of 10 XRP and owner reserves).

Transaction Flow Specification

Operation Mechanism Settlement Time Fee
Deposit XRPL Payment to $\mathcal{A}_T$ with $\tau_i$ 3-5 seconds 0%
Withdrawal XRPL Payment from $\mathcal{A}_T$ to user 3-5 seconds 0%
Yield Credit Daily internal ledger credit from disclosed yield sources Daily at 00:00 UTC Included in displayed APY value
XORA Token Accrual Off-chain balance increment Daily at 00:00 UTC 0%

XRP Ledger Integration

XORA interfaces with the XRP Ledger through a dedicated full-history node connected via WebSocket to the consensus network. The protocol leverages several native XRPL features to minimize trust assumptions.

Consensus and Finality

The XRP Ledger employs the XRP Ledger Consensus Protocol (XRP-LCP), a Byzantine Fault Tolerant (BFT) consensus algorithm that achieves finality in a single round[2]. Unlike Nakamoto-style consensus used by Bitcoin and Ethereum PoW, XRP-LCP provides deterministic finality: once a transaction is validated in a closed ledger, it cannot be reversed. This property is formalized as:

Theorem 1 (XRP-LCP Finality)

Given a set of validators $\mathcal{V} = \{v_1, \ldots, v_n\}$ with unique node lists (UNLs) satisfying the overlap condition $|\text{UNL}_i \cap \text{UNL}_j| > \frac{3}{5} \cdot \max(|\text{UNL}_i|, |\text{UNL}_j|)$ for all $i, j$, the consensus protocol guarantees that no fork of length $\geq 1$ can occur, and all transactions included in a validated ledger are irreversible[2].

This finality guarantee is critical for XORA's deposit detection system, which polls the ledger every 10 seconds for incoming payments matching the treasury address.

Payment Channel Architecture

XORA's primary public XRP deposit and withdrawal flows use native XRPL payments. The app also supports a native TRX on Tron pilot with TRON mainnet addresses and no memo; TRC-20 tokens and other Tron assets are outside the pilot scope. For future high-frequency settlement between internal treasury components, the protocol can use the XRPL's native Payment Channels (Amendment: PayChan, 2017). Payment channels enable off-chain settlement with on-chain dispute resolution, reducing per-transaction overhead while maintaining the security guarantees of the base layer. The live depositor-facing yield credit remains a daily internal ledger update reconciled against treasury backing.

The expected throughput of the payment channel system is modeled as:

$$ \Theta = \frac{N \cdot \lambda}{T_{\text{batch}}} \quad \text{transactions/second} $$
(3)

where $N$ is the number of active depositors, $\lambda$ is the average yield distribution frequency, and $T_{\text{batch}}$ is the batch settlement interval (currently 86,400 seconds for daily distribution).

Yield Generation Model

The XORA yield engine implements a tiered APY value schedule that adjusts the native XRP component based on deposit size while keeping the estimated XORA reward-value component separate. This design makes the headline number readable without describing token quantity as native XRP yield.

Tiered APY Value Function

Let $b$ denote a user's XRP balance. The native XRP annual yield component $r_{\text{XRP}}(b)$ is defined as a piecewise function:

$$ r_{\text{XRP}}(b) = \begin{cases} 0.15 & \text{if } b \leq 1{,}000 \text{ XRP} \\ 0.12 & \text{if } 1{,}000 < b \leq 10{,}000 \text{ XRP} \\ 0.10 & \text{if } 10{,}000 < b \leq 100{,}000 \text{ XRP} \\ 0.08 & \text{if } b> 100{,}000 \text{ XRP} \end{cases} $$
(4)

The displayed APY value adds an estimated XORA reward-value component $v_{\text{XORA}} = 0.07$:

$$ r_{\text{display}}(b) = r_{\text{XRP}}(b) + v_{\text{XORA}} $$
(5)
Tier Balance Range Native XRP APY Estimated XORA Value Displayed APY Value Daily Native XRP Yield per 1,000 XRP
Genesis 0-1,000 XRP 15.0% 7.0% 22.0% 0.3830 XRP
Growth 1,001-10,000 XRP 12.0% 7.0% 19.0% 0.3105 XRP
Scale 10,001-100,000 XRP 10.0% 7.0% 17.0% 0.2612 XRP
Institutional 100,001+ XRP 8.0% 7.0% 15.0% 0.2109 XRP

Daily Yield Computation

The yield distributor runs a daily batch process at 00:00 UTC. For each user $i$ with eligible unlocked balance $b_i > 0$, the daily native XRP credit $\delta_i^{\text{XRP}}$ uses the compound-correct daily rate so that daily compounding matches the disclosed annual rate:

$$ \delta_i^{\text{XRP}} = b_i \cdot \left((1 + r_{\text{XRP}}(b_i))^{1/365} - 1\right) $$
(6)

XORA token accrual is computed separately from native XRP yield. The emitted token quantity follows the token schedule in Section 5; the 7% figure is an estimated value contribution, not an additional 7% native XRP credit.

$$ \delta_i^{\text{XORA}} = b_i \cdot \left((1 + q_{\text{XORA}}(b_i))^{1/365} - 1\right) $$
(7)

Compounding Dynamics

Since native XRP yield is automatically credited to the user's principal balance, the protocol implements daily compounding. The projected XRP balance after $d$ days, assuming no deposits, withdrawals, tier changes, or rate changes, follows the compound growth formula:

$$ b_i(d) = b_i(0) \cdot \left(1 + (1 + r_{\text{XRP}}(b_i))^{1/365} - 1\right)^d $$
(8)

Equivalently, after 365 days of uninterrupted compounding at a constant tier rate, the model converges to the disclosed native XRP APY:

$$ \left(1 + (1 + r_{\text{XRP}})^{1/365} - 1\right)^{365} - 1 = r_{\text{XRP}} $$
(9)

For the Genesis tier, the native XRP component is 15%. The displayed 22% APY value includes the separate estimated XORA reward value and should not be read as 22% native XRP yield.

Bootstrap Yield Source Disclosure

During the bootstrap phase, the native XRP component is currently subsidised by the XORA treasury from a finite reserve. This subsidy is deliberate, temporary, and disclosed on the public yield source page. As TVL grows, the subsidy is expected to step down and transition toward observable on-chain sources: XRPL AMM liquidity provision and XRPL-native lending markets. Yield credits do not depend on new depositor inflows, and rates can change or pause if treasury controls require it.

Treasury Solvency Constraint

Proposition 1 (Solvency Invariant)

Let $B_T(t)$ denote the on-chain treasury balance at time $t$, and let $\mathcal{O}(t) = \sum_i (b_i(t) + y_i(t))$ denote total outstanding obligations. The protocol maintains the solvency invariant $B_T(t) \geq \mathcal{O}(t) + R_{\min}$ at all times, where $R_{\min} = 10 + 2n_T$ XRP is the XRPL reserve requirement for the treasury account with $n_T$ owned objects.

XORA Token Economics

The XORA token serves as the protocol's governance and value-accrual instrument. It is earned exclusively through XRP deposit farming and will be claimable upon the Token Generation Event (TGE).

Emission Schedule

The total supply of XORA is fixed at $\Sigma = 1{,}000{,}000{,}000$ tokens (1 billion). The emission follows a halving schedule inspired by Bitcoin's deflationary model, adapted for a 4-year distribution horizon:

$$ E(n) = E_0 \cdot 2^{-\lfloor n/P \rfloor} $$
(10)

where $E(n)$ is the daily emission rate at epoch $n$, $E_0$ is the initial daily emission, and $P = 365$ days is the halving period.

Year Daily Emission Annual Emission Cumulative %
Year 1 684,932 XORA 250,000,000 50.0%
Year 2 342,466 XORA 125,000,000 75.0%
Year 3 171,233 XORA 62,500,000 87.5%
Year 4 85,616 XORA 31,250,000 93.75%

Token Distribution

Allocation Percentage Tokens Vesting
Depositor Farming 50% 500,000,000 4-year emission
Treasury Reserve 20% 200,000,000 DAO-controlled
Team & Development 15% 150,000,000 24-month cliff, 36-month vest
Depositor Reserve Buffer 10% 100,000,000 Locked until DAO vote
Liquidity Provision 5% 50,000,000 TGE unlock

Per-User XORA Accrual

Each user's daily XORA token allocation is proportional to their share of the total deposited XRP:

$$ x_i(n) = E(n) \cdot \frac{b_i}{\sum_{j=1}^{N} b_j} $$
(11)

This pro-rata distribution ensures that larger depositors earn proportionally more XORA tokens, while the halving schedule creates early-mover advantage, a critical incentive mechanism during the bootstrap phase.

XORA Token Utility

Security & Risk Framework

Custody Architecture

The XORA treasury employs a multi-layered security model:

Treasury Controls

The treasury wallet is a segregated XRPL account with per-user destination tags, daily ledger reconciliation, restricted operational access, and circuit breakers for anomalous activity. A $k$-of-$n$ multi-signature migration with $k = 3$ and $n = 5$ is on the custody roadmap and should not be treated as live until the signer list is published on-chain.

Risk Taxonomy

Risk Category Description Severity Mitigation
Smart Contract Risk N/A: no smart contracts deployed None Native XRPL transactions only
Custody Risk Key compromise or loss Medium Segregated treasury, restricted access, circuit breakers, multisig roadmap
Liquidity Risk Mass withdrawal event Medium Reserve ratio ≥ 95%, circuit breakers
Market Risk XRP price volatility High Yield credited in native XRP; users retain XRP price exposure
Subsidy Sustainability Risk Bootstrap native XRP yield depends on a finite treasury subsidy until on-chain sources mature Medium Public yield-source disclosure, step-down controls, yield suspension, finite reserve limits
Regulatory Risk Jurisdictional compliance changes Medium Multi-jurisdiction legal counsel
Operational Risk Infrastructure failure Low Redundant nodes, automated failover

Depositor Reserve Buffer

The XORA depositor reserve buffer $\mathcal{F}$ is designed to be capitalized by protocol revenue and token reserve allocations:

$$ \mathcal{F}(t) = \mathcal{F}(0) + \int_0^t \left[ 0.05 \cdot \text{Rev}(s) + \Delta\mathcal{F}_{\text{token}}(s) \right] ds $$
(12)

where $\text{Rev}(s)$ is the protocol's gross revenue at time $s$, and $\Delta\mathcal{F}_{\text{token}}(s)$ represents XORA tokens allocated to the reserve pool. The reserve may target a capitalization ratio of at least 5% of total deposits, but it remains a finite buffer and is not insurance or a guarantee:

$$ \frac{\mathcal{F}(t)}{\sum_i b_i(t)} \geq 0.05 $$
(13)

VaR and Stress Testing

The protocol performs daily Value-at-Risk (VaR) calculations using a parametric model with a 99% confidence interval:

$$ \text{VaR}_{99\%} = B_T \cdot \sigma_{\text{XRP}} \cdot z_{0.99} \cdot \sqrt{\Delta t} $$
(14)

where $\sigma_{\text{XRP}}$ is the annualized volatility of XRP (historically ~85%), $z_{0.99} = 2.326$, and $\Delta t$ is the time horizon in years. Under extreme stress scenarios (3-sigma events), the maximum portfolio losses are handled through treasury controls, yield suspension, and the finite depositor reserve buffer. The reserve can reduce loss severity up to its available balance, but it does not guarantee full depositor recovery under all stress scenarios.

Governance & DAO Transition

XORA is designed to progressively decentralize governance through a three-phase transition model:

Phase Timeline Governance Model Key Changes
Phase 1: Genesis Q1-Q2 2026 Core team managed Launch, stability, parameter tuning
Phase 2: Council Q3-Q4 2026 Elected advisory council Community input on APY, fees, features
Phase 3: DAO 2027+ Full token-weighted voting Protocol parameters, treasury, upgrades

Governance proposals follow a structured lifecycle: Proposal → Discussion (7d) → Snapshot Vote (3d) → Timelock (48h) → Execution. A quorum of 5% of circulating XORA supply is required for any proposal to pass.

Roadmap

Milestone Target Status
Core Yield Engine Q1 2026 ✓ Complete
XORA Reward Engine Q1 2026 ✓ Complete
Beta Launch (Invite-Only) Q1 2026 ✓ Complete
Public Launch Q1 2026 In Progress
XORA Card (Virtual Debit) Q2 2026 Development
Mobile App (iOS + Android) Q2 2026 Design Phase
Fiat On/Off Ramp Q2 2026 Partner Integration
XORA Token TGE Q3 2026 Planned
DAO Transition Q3 2026 Planned
Cross-Chain Bridges Q3 2026 Research

Conclusion

XORA represents a novel approach to digital asset banking, purpose-built for the XRP ecosystem. By combining the settlement finality and throughput of the XRP Ledger with a disclosed APY value model and dual-stream incentive structure, XORA gives XRP holders a simple yield account without requiring them to manage a DeFi workflow directly.

The protocol's tiered APY value model separates native XRP yield from estimated XORA reward value. During bootstrap, the native XRP component is supported by a finite treasury subsidy; over time, the model is expected to transition toward observable XRPL AMM and on-chain lending sources as those markets mature. The depositor reserve buffer, capitalized by protocol revenue and token reserves, provides a finite risk buffer that can reduce loss severity without being represented as insurance or a guarantee.

Looking forward, the progressive decentralization roadmap (from core-team management through elected council to full DAO governance) ensures that XORA evolves from a managed protocol into a community-owned financial institution. The upcoming XORA Card and mobile applications will extend this infrastructure into everyday financial life, bridging the gap between digital asset yield and traditional spending.

End of Document

References

[1] Schwartz, D., Youngs, N., & Britto, A. (2014). "The Ripple Protocol Consensus Algorithm." Ripple Labs Inc.

[2] Chase, B. & MacBrough, E. (2018). "Analysis of the XRP Ledger Consensus Protocol." arXiv:1802.07242.

[3] Gudgeon, L., et al. (2020). "DeFi Protocols for Loanable Funds: Interest Rates, Liquidity and Market Efficiency." Proceedings of the 2nd ACM Conference on Advances in Financial Technologies.

[4] Xu, J., Paruch, K., Cousaert, S., & Feng, Y. (2021). "SoK: Decentralized Finance (DeFi)." arXiv:2101.08778.

[5] European Parliament and Council. (2023). "Markets in Crypto-Assets Regulation (MiCA)." Official Journal of the European Union, L 150/52.

[6] Armknecht, F., et al. (2015). "A Survey on Cryptographic Methods for Digital Currencies." IEEE Communications Surveys & Tutorials, 17(3).

[7] XRPL Foundation. (2025). "XRP Ledger Developer Documentation." xrpl.org.

[8] Markowitz, H. (1952). "Portfolio Selection." The Journal of Finance, 7(1), 77-91.

[9] Jorion, P. (2007). Value at Risk: The New Benchmark for Managing Financial Risk. McGraw-Hill, 3rd edition.

[10] Basel Committee on Banking Supervision. (2023). "Prudential Treatment of Cryptoasset Exposures." Bank for International Settlements.

XORA PROTOCOL · Technical Whitepaper v1.2 · June 2026

This document is for informational purposes only and does not constitute financial advice, an offer, or solicitation for the sale of securities. Projected yields are estimates and not guaranteed. Cryptocurrency investments carry inherent risks including the potential loss of principal. © 2026 XORA. All rights reserved.