EVM Sidechain Lending Opportunities
Learning Objectives
Explain the XRPL EVM sidechain architecture and its relationship to mainnet
Analyze the advantages of deploying Ethereum lending code on the sidechain
Evaluate bridging risks and their implications for cross-chain lending
Compare mainnet vs. sidechain approaches for lending protocol deployment
Assess realistic opportunities for EVM sidechain lending in the XRPL ecosystem
XRPL builders have two options for creating lending infrastructure:
TWO APPROACHES:
PATH 1: XRPL MAINNET + HOOKS
Build native lending using:
βββ XRPL's unique features (DEX, trust lines)
βββ Hooks for programmable logic
βββ Low fees, fast finality
βββ Native XRP and RLUSD
βββ Novel architecture, limited existing code
PATH 2: EVM SIDECHAIN
Deploy on Ethereum-compatible chain using:
βββ Existing Solidity code (Aave, Compound forks)
βββ Battle-tested smart contracts
βββ Familiar tooling (Hardhat, Foundry)
βββ EVM ecosystem compatibility
βββ Bridge to XRPL mainnet for assets
THEY'RE NOT MUTUALLY EXCLUSIVE:
Possible ecosystem:
βββ Mainnet for simple, native lending
βββ Sidechain for complex DeFi
βββ Bridges connecting both
βββ Users choose based on needs
βββ Complementary infrastructure
---
Technical overview:
EVM SIDECHAIN BASICS:
DEFINITION:
βββ Separate blockchain from XRPL mainnet
βββ Runs Ethereum Virtual Machine
βββ Executes Solidity smart contracts
βββ Has own consensus mechanism
βββ Connected to XRPL via bridge
βββ Part of broader XRPL ecosystem
KEY CHARACTERISTICS:
Ethereum Compatibility:
βββ Supports Solidity contracts
βββ Standard EVM opcodes
βββ Familiar development tools
βββ Can port Ethereum DeFi code
βββ Lower barrier for Ethereum devs
Connection to XRPL:
βββ Bridge enables asset transfer
βββ XRP available on sidechain (wrapped)
βββ RLUSD potentially available
βββ Not direct XRPL integration
βββ Separate but connected
TECHNICAL DIFFERENCES:
βββββββββββββββββββ¬ββββββββββββββββββββββ¬ββββββββββββββββββββββ
β Feature β XRPL Mainnet β EVM Sidechain β
βββββββββββββββββββΌββββββββββββββββββββββΌββββββββββββββββββββββ€
β Smart Contracts β Hooks β Solidity β
β Transaction Fee β ~$0.0002 β Varies (low) β
β Finality β 3-5 seconds β Varies by consensus β
β Native Asset β XRP β Wrapped XRP β
β DEX β Native (built-in) β Smart contract β
β Trust Lines β Yes β No (ERC-20 tokens) β
β Composability β Limited β Full EVM β
β Code Maturity β New (Hooks) β Mature (Solidity) β
βββββββββββββββββββ΄ββββββββββββββββββββββ΄ββββββββββββββββββββββ
```
How the sidechain operates:
CONSENSUS MECHANISM:
SIDECHAIN CONSENSUS:
βββ Separate from XRPL mainnet consensus
βββ Own validator set
βββ May use different algorithm
βββ Independent security model
βββ Not secured by XRPL validators
SECURITY IMPLICATIONS:
Separate Security:
βββ Sidechain security β XRPL security
βββ Different validator set
βββ Different trust assumptions
βββ Potentially different attack resistance
βββ Evaluate independently
Validator Considerations:
βββ Who runs sidechain validators?
βββ How decentralized?
βββ What's at stake?
βββ History of operation
βββ Compare to mainnet security
BRIDGE SECURITY:
The Critical Link:
βββ Bridge connects sidechain to mainnet
βββ Assets move through bridge
βββ Bridge is high-value target
βββ Bridge failure = Asset loss
βββ Most vulnerable component
Bridge Models:
βββ Federated (trusted parties)
βββ Smart contract based
βββ Multi-sig controlled
βββ Varying decentralization
βββ Each has trade-offs
RISK HIERARCHY:
Lower Risk:
βββ XRPL mainnet (proven, decentralized)
Medium Risk:
βββ EVM sidechain (newer, smaller validator set)
Higher Risk:
βββ Bridge (concentrated, high-value target)
IMPLICATION FOR LENDING:
Assets on sidechain:
βββ Already crossed bridge (bridge risk incurred)
βββ Subject to sidechain security
βββ Lending adds protocol risk on top
βββ Stack of risks compounds
βββ Size positions accordingly
```
What can be used on the sidechain:
ASSETS ON EVM SIDECHAIN:
XRP:
βββ Available as wrapped version (eXRP or similar)
βββ Bridged from mainnet
βββ ERC-20 compatible
βββ Can be used in DeFi
βββ Requires bridge transaction
RLUSD:
βββ Potentially available (deployment dependent)
βββ Would need bridging or native issuance
βββ Ripple may issue directly on sidechain
βββ Key stablecoin for lending
βββ Check current availability
OTHER ASSETS:
βββ Any ERC-20 can be deployed
βββ Wrapped versions of mainnet tokens
βββ Native sidechain tokens
βββ USDC/USDT if bridged from Ethereum
βββ Depends on ecosystem development
LIQUIDITY REALITY:
Current State (2025):
βββ Liquidity much lower than mainnet
βββ Much lower than Ethereum
βββ Bootstrapping phase
βββ Limited DeFi activity
βββ Growing but early
FOR LENDING:
Collateral Available:
βββ Wrapped XRP (primary)
βββ Any bridged assets
βββ Native sidechain tokens
βββ Limited selection initially
Borrowable:
βββ RLUSD (if available)
βββ Stablecoins (if bridged)
βββ Limited by supply
βββ Utilization may be high
---
The primary advantage:
FORK AND DEPLOY:
THE OPPORTUNITY:
Existing Code:
βββ Aave V3 is open source
βββ Compound V2/V3 is open source
βββ Hundreds of forks exist
βββ Battle-tested for years
βββ Known vulnerabilities documented
βββ Can deploy with modifications
DEPLOYMENT PROCESS:
Code Acquisition
Adaptation
Deployment
Audit
TIME/COST COMPARISON:
Build from Scratch (Hooks):
βββ 12-24+ months development
βββ Novel architecture
βββ Full audit required
βββ High technical risk
βββ $500K-$2M+ cost
Fork and Deploy (EVM):
βββ 3-6 months adaptation
βββ Proven architecture
βββ Modification audit only
βββ Lower technical risk
βββ $100K-$500K cost
(Estimates vary significantly based on team and scope)
```
What to change vs. keep:
FORK CONFIGURATION:
MUST CHANGE:
Asset Configuration:
βββ Add XRP (wrapped) as collateral
βββ Add RLUSD as borrowable
βββ Set appropriate LTVs
βββ Configure liquidation thresholds
βββ Remove irrelevant assets (ETH, etc.)
βββ Match available liquidity
Oracle Sources:
βββ Need sidechain-compatible oracles
βββ Chainlink may not be available
βββ Alternative oracle deployment
βββ Or build custom solution
βββ Critical dependency
Network Parameters:
βββ Gas settings for sidechain
βββ Block time assumptions
βββ Contract addresses
βββ RPC endpoints
βββ Standard network adaptation
CONSIDER CHANGING:
Interest Rate Models:
βββ May keep Aave curves initially
βββ Adjust based on observed behavior
βββ XRPL market may differ from Ethereum
βββ Conservative initial parameters
βββ Governance can adjust later
Feature Set:
βββ May disable features initially
βββ Flash loans require liquidity
βββ E-Mode requires correlated assets
βββ Start simple
βββ Add complexity with maturity
Governance:
βββ Decentralized governance takes time
βββ May start with multisig
βββ Progressive decentralization
βββ Don't over-engineer initially
βββ Build community first
KEEP AS-IS:
Core Lending Logic:
βββ Battle-tested
βββ Don't reinvent
βββ Known security properties
βββ Audited extensively
βββ Benefit of fork
Security Mechanisms:
βββ Liquidation logic
βββ Health factor calculations
βββ Pause mechanisms
βββ Emergency procedures
βββ Proven patterns
COMMON MISTAKES:
Over-Customization:
βββ Changing core logic introduces risk
βββ "Improvements" often break things
βββ Stay close to original
βββ Modifications need separate audit
Under-Testing:
βββ "It works on Ethereum" β "It works here"
βββ Different network conditions
βββ Different oracle behavior
βββ Thorough testing essential
βββ Mainnet fork testing before launch
```
Critical infrastructure:
ORACLE CHALLENGE:
THE PROBLEM:
EVM Sidechain Needs:
βββ XRP/USD price
βββ RLUSD/USD price (should be $1)
βββ Other collateral prices
βββ Real-time, manipulation-resistant
βββ Reliable source
Ethereum Solutions Don't Transfer:
βββ Chainlink may not be on sidechain
βββ Uniswap TWAP requires liquidity
βββ Band Protocol availability varies
βββ Must find or build alternatives
βββ Not plug-and-play
POTENTIAL SOLUTIONS:
Chainlink Cross-Chain (CCIP)
Bridge Oracle Data
Independent Oracle Network
Centralized Oracle (Temporary)
DEX-Based TWAP
RECOMMENDATION:
Best Path:
βββ Use Chainlink if available
βββ Or established oracle network
βββ DEX TWAP as backup
βββ Never rely solely on centralized
βββ Oracle is existential dependency
---
The elephant in the room:
BRIDGE RISK FUNDAMENTALS:
WHAT IS A BRIDGE:
Function:
βββ Locks assets on source chain
βββ Mints equivalent on destination
βββ Enables cross-chain asset movement
βββ Maintains supply equivalence
βββ Critical infrastructure
HISTORICAL BRIDGE EXPLOITS:
Major Incidents:
βββ Ronin Bridge (2022): $625M stolen
βββ Wormhole (2022): $320M stolen
βββ Nomad (2022): $190M stolen
βββ Harmony Horizon (2022): $100M stolen
βββ Pattern: Bridges are prime targets
WHY BRIDGES ARE VULNERABLE:
Concentrated Value:
βββ All bridged assets in one contract
βββ High reward for attackers
βββ Justifies significant effort
βββ $100M+ honeypots common
βββ Irresistible target
Complexity:
βββ Cross-chain logic is hard
βββ Multiple chains, multiple assumptions
βββ Race conditions possible
βββ Edge cases in message passing
βββ Larger attack surface
Validator Sets:
βββ Often smaller than main chains
βββ Different security model
βββ May be compromised
βββ 51% attacks on bridge validators
βββ Weaker than underlying chains
Smart Contract Risk:
βββ Bridge contracts have bugs
βββ Novel code, less battle-tested
βββ Upgrade mechanisms exploitable
βββ Standard smart contract risks
RISK FOR SIDECHAIN LENDING:
If Bridge Compromised:
βββ Wrapped assets become worthless
βββ XRP on sidechain β Real XRP
βββ Collateral values collapse
βββ Protocol may become insolvent
βββ Catastrophic loss
Example Scenario:
βββ User deposits 10,000 wrapped XRP
βββ Borrows 5,000 RLUSD
βββ Bridge exploited, wrapped XRP worthless
βββ User's collateral: $0
βββ Protocol has bad debt
βββ All depositors affected
βββ Even if lending protocol is perfect
```
How to manage bridge exposure:
MITIGATION APPROACHES:
FOR PROTOCOLS:
Position Limits
Conservative Parameters
Insurance/Reserves
Bridge Diversification
FOR USERS:
Position Sizing
Monitoring
Time Exposure
Diversification
REALISTIC ASSESSMENT:
Bridges Add Real Risk:
βββ Not theoreticalβexploits happen
βββ "Bridge risk" is meaningful
βββ Cannot be fully eliminated
βββ Only managed
βββ Factor into all decisions
```
How lending might work across mainnet and sidechain:
CROSS-CHAIN LENDING SCENARIOS:
SCENARIO 1: SIDECHAIN ONLY
Setup:
βββ All activity on EVM sidechain
βββ XRP bridged to sidechain
βββ RLUSD bridged or native on sidechain
βββ Lending protocol on sidechain
βββ No mainnet lending interaction
Flow:
βββ Bridge XRP to sidechain
βββ Deposit wrapped XRP as collateral
βββ Borrow RLUSD on sidechain
βββ Use RLUSD on sidechain
βββ Repay, withdraw, bridge back
βββ All in EVM environment
Risk: Bridge risk throughout, EVM security
SCENARIO 2: MAINNET COLLATERAL, SIDECHAIN LENDING
Hypothetical Setup:
βββ Collateral stays on mainnet
βββ Lending protocol on sidechain
βββ Cross-chain messages coordinate
βββ More complex architecture
Flow:
βββ Lock XRP on mainnet
βββ Sidechain acknowledges lock
βββ Borrow on sidechain
βββ Repay on sidechain
βββ Unlock on mainnet
βββ Requires robust message passing
Advantage: Collateral safer on mainnet
Risk: Cross-chain messaging adds complexity
SCENARIO 3: PARALLEL MARKETS
Setup:
βββ Lending on mainnet (Hooks-based)
βββ Lending on sidechain (EVM fork)
βββ Separate liquidity pools
βββ Users choose per needs
βββ No cross-chain lending
Flow:
βββ Choose mainnet OR sidechain
βββ Use that chain's protocol
βββ Assets stay on chosen chain
βββ Simple, isolated
βββ No cross-chain coordination needed
Advantage: Simpler, risks isolated
Disadvantage: Fragmented liquidity
MOST LIKELY INITIAL STATE:
Scenario 3 (Parallel Markets):
βββ Simplest to implement
βββ Risks isolated
βββ Markets develop independently
βββ Cross-chain later if needed
βββ Pragmatic starting point
---
Decision framework:
COMPREHENSIVE COMPARISON:
SECURITY:
XRPL Mainnet:
βββ Proven since 2012
βββ Large validator network
βββ No smart contract risk (for XRP)
βββ Hooks add some risk (new code)
βββ Score: 9/10 (established)
EVM Sidechain:
βββ Newer, less proven
βββ Smaller validator network
βββ Full smart contract risk
βββ Plus bridge risk
βββ Score: 6/10 (needs maturity)
DEVELOPMENT EFFORT:
XRPL Mainnet (Hooks):
βββ Novel environment
βββ Limited existing code
βββ Smaller developer community
βββ Custom tooling needed
βββ Score: 4/10 (harder)
EVM Sidechain:
βββ Familiar environment
βββ Extensive existing code
βββ Large developer community
βββ Mature tooling
βββ Score: 9/10 (easier)
FEATURES:
XRPL Mainnet:
βββ Native DEX integration
βββ Trust lines available
βββ Limited composability
βββ Unique XRPL features
βββ Score: 7/10 (unique strengths)
EVM Sidechain:
βββ Full EVM composability
βββ Standard DeFi primitives
βββ Flash loans, yield strategies
βββ Ethereum DeFi patterns
βββ Score: 9/10 (comprehensive)
TRANSACTION COSTS:
XRPL Mainnet:
βββ ~$0.0002 per transaction
βββ Predictable, low
βββ Scales well
βββ Score: 10/10
EVM Sidechain:
βββ Low (sidechain economics)
βββ Higher than mainnet
βββ But much lower than Ethereum
βββ Score: 8/10
LIQUIDITY ACCESS:
XRPL Mainnet:
βββ Native XRP liquidity
βββ RLUSD directly
βββ No bridge needed
βββ Score: 8/10
EVM Sidechain:
βββ Requires bridging
βββ Liquidity bootstrapping needed
βββ Fragmented from mainnet
βββ Score: 5/10 (early stage)
```
Decision guide:
CHOOSE XRPL MAINNET WHEN:
Technical Factors:
βββ Building something novel (not Aave clone)
βββ Want native DEX integration
βββ Need trust line functionality
βββ Want lowest possible fees
βββ Building XRPL-native experience
Strategic Factors:
βββ Target audience is XRPL-native users
βββ Want to differentiate from Ethereum DeFi
βββ Have Hooks development expertise
βββ Building for long-term XRPL commitment
βββ Value XRPL's security model
Risk Factors:
βββ Want to avoid bridge risk
βββ Targeting institutional/conservative users
βββ Security is primary concern
βββ Can accept limited feature set
CHOOSE EVM SIDECHAIN WHEN:
Technical Factors:
βββ Want to deploy existing code
βββ Need EVM composability
βββ Building complex DeFi strategies
βββ Team has Solidity expertise
βββ Want standard DeFi UX
Strategic Factors:
βββ Time-to-market is critical
βββ Want to attract Ethereum users
βββ Building familiar DeFi experience
βββ Testing concepts before mainnet
βββ Limited development resources
Risk Factors:
βββ Accept bridge risk for benefits
βββ Targeting DeFi-native users (understand risks)
βββ Position sizing accounts for risk
βββ Can mitigate through parameters
CHOOSE BOTH WHEN:
βββ Building comprehensive platform
βββ Want to serve all user types
βββ Have resources for parallel development
βββ Testing which works better
βββ Maximizing ecosystem coverage
```
What to expect:
DEVELOPMENT TIMELINES:
EVM SIDECHAIN DEPLOYMENT (Fork):
Month 1-2:
βββ Code acquisition and review
βββ Environment setup
βββ Initial modifications
βββ Internal testing
Month 3-4:
βββ Oracle integration
βββ Asset configuration
βββ Frontend adaptation
βββ Testnet deployment
Month 5-6:
βββ Security audit (modifications)
βββ Bug fixes
βββ Community testing
βββ Documentation
βββ Mainnet preparation
Month 7:
βββ Mainnet deployment
βββ Limited launch
βββ Monitoring
βββ Gradual scaling
Total: 6-9 months (team of 3-5)
XRPL MAINNET (Hooks):
Month 1-4:
βββ Architecture design
βββ Hooks development learning
βββ Core logic development
βββ Internal testing
Month 5-8:
βββ Integration development
βββ Oracle solutions
βββ Frontend development
βββ Testnet deployment
Month 9-12:
βββ Security audit (full)
βββ Bug fixes and iteration
βββ Performance optimization
βββ Community testing
Month 13-18:
βββ Mainnet preparation
βββ Limited launch
βββ Monitoring and adjustment
βββ Gradual scaling
Total: 12-24 months (team of 3-5)
COMPARISON:
EVM Fork: 6-9 months
Hooks Native: 12-24 months
Difference: 2-3x time for native development
Trade-off: Time vs. uniqueness/security
---
Strategic guidance:
BUILDER RECOMMENDATIONS:
IF YOU HAVE LIMITED RESOURCES:
Start with EVM Sidechain:
βββ Faster time to market
βββ Lower development cost
βββ Prove concept works
βββ Generate revenue/users
βββ Can port to mainnet later
βββ Pragmatic first step
IF YOU HAVE SIGNIFICANT RESOURCES:
Consider Parallel Development:
βββ EVM for quick launch
βββ Mainnet for differentiation
βββ Learn from EVM deployment
βββ Apply lessons to mainnet version
βββ Comprehensive strategy
IF YOU'RE BUILDING FOR INSTITUTIONS:
Prioritize Mainnet:
βββ Security concerns paramount
βββ Bridge risk unacceptable for some
βββ Regulatory considerations
βββ Conservative approach valued
βββ Worth longer development time
REGARDLESS OF CHOICE:
Security First:
βββ Audit before mainnet
βββ Bug bounty program
βββ Conservative initial parameters
βββ Incident response plan
βββ Never cut corners on security
Start Simple:
βββ Basic lending functionality first
βββ Add features with maturity
βββ Complexity is earned
βββ Users prefer working simple to broken complex
βββ Iterate based on demand
Plan for Both:
βββ Design with portability in mind
βββ Lessons on one chain apply to other
βββ Community across both
βββ Don't box yourself in
βββ Ecosystem will have both
```
Risk assessment guidance:
USER RECOMMENDATIONS:
ASSESSING SIDECHAIN LENDING:
Questions to Ask:
Bridge Security
Protocol Security
Liquidity Reality
Risk Stacking
POSITION SIZING:
Conservative Framework:
βββ Mainnet lending: Up to 5% of crypto portfolio
βββ Sidechain lending: Up to 2% of crypto portfolio
βββ Any single sidechain protocol: Up to 1%
βββ Account for bridge risk in ALL sidechain positions
Why Lower for Sidechain:
βββ Bridge risk is additive
βββ Less proven infrastructure
βββ Lower liquidity
βββ Smaller ecosystem
βββ Higher total risk
MONITORING:
Watch Closely:
βββ Bridge TVL and activity
βββ Sidechain validator status
βββ Protocol metrics (TVL, utilization)
βββ Security news
βββ Community sentiment
βββ Be ready to exit quickly
```
Where this is heading:
FUTURE SCENARIOS:
OPTIMISTIC (25% probability):
2025-2026:
βββ EVM sidechain lending launches
βββ Gains significant TVL ($50M+)
βββ Mainnet Hooks lending follows
βββ Bridge remains secure
βββ Ecosystem thrives
βββ Best case
2027+:
βββ Cross-chain composability
βββ Seamless mainnet-sidechain interaction
βββ Large combined TVL
βββ XRPL as multi-chain DeFi hub
βββ Full vision realized
BASE CASE (50% probability):
2025-2026:
βββ EVM sidechain lending launches (small)
βββ Modest TVL ($5-20M)
βββ Mainnet lending slower to develop
βββ Some friction/issues
βββ Gradual progress
2027+:
βββ Parallel development continues
βββ Neither dominates
βββ Niche but functional
βββ Steady growth
βββ Pragmatic outcome
PESSIMISTIC (25% probability):
2025-2026:
βββ Bridge incident damages confidence
βββ Sidechain lending struggles
βββ Mainnet lending delayed
βββ Users stay on Ethereum
βββ Setbacks
2027+:
βββ Recovery possible
βββ But trust takes time
βββ XRPL lending remains niche
βββ Opportunity missed or delayed
βββ Challenging path
KEY EVENTS TO WATCH:
Bridge Security:
βββ Any exploit is major setback
βββ Clean track record builds confidence
βββ Most important variable
TVL Growth:
βββ Indicates user adoption
βββ Validates concept
βββ Signals ecosystem health
Development Activity:
βββ Teams building indicates belief
βββ Multiple protocols indicate competition
βββ Health of ecosystem
---
β EVM forks work - Dozens of successful Aave/Compound forks operate on various chains. The technical approach is validated.
β Faster development - EVM deployment is genuinely faster than building native protocols from scratch.
β Tooling is mature - Solidity development tools are production-ready and well-documented.
β οΈ Bridge security long-term - Will XRPL bridges remain secure? History of bridge exploits elsewhere is concerning.
β οΈ Liquidity bootstrapping - Will sufficient liquidity flow to the sidechain to make lending viable?
β οΈ User preference - Will users prefer sidechain convenience or mainnet security? Market will decide.
π΄ Ignoring bridge risk - Treating sidechain as equivalent to mainnet ignores real risk. Many will learn this the hard way.
π΄ Over-customizing forks - "Improving" battle-tested code often introduces bugs. Stay close to original.
π΄ Under-capitalizing audits - Thinking "it's just a fork" and skipping security review. Modifications need auditing.
The EVM sidechain offers a faster path to XRPL lending through battle-tested code, but adds bridge risk that cannot be eliminated. It's not better or worse than mainnetβit's different. The best strategy is probably using both: sidechain for familiar DeFi experiences and faster iteration, mainnet for maximum security and unique XRPL features. Users should understand and price in bridge risk when using sidechain protocols.
Assignment: Evaluate the feasibility of deploying a lending protocol on the XRPL EVM sidechain, producing a comprehensive assessment.
Requirements:
Part 1: Technical Assessment (30%)
- Current sidechain status and features
- Bridge architecture and security model
- Oracle availability and options
- Development tooling and documentation
- Identify blockers or gaps
Part 2: Protocol Design (25%)
- Which codebase to fork (Aave V3, Compound III, other)
- Asset selection and parameters
- Oracle strategy
- Key modifications needed
- Risk parameters (LTV, liquidation, etc.)
Part 3: Risk Analysis (25%)
- Bridge risk quantification
- Smart contract risk
- Oracle risk
- Liquidity risk
- Competitive risk
- Mitigation strategies for each
Part 4: Go/No-Go Recommendation (20%)
Should a team build this today?
What conditions would change the answer?
If yes, what sequence of steps?
If no, what would need to change?
Technical accuracy (30%)
Risk awareness (25%)
Practical feasibility (25%)
Decision quality (20%)
Time investment: 3-4 hours
Value: Framework for evaluating any cross-chain DeFi opportunity.
Knowledge Check
Question 1 of 3(Tests Basic Understanding):
- XRPL EVM Sidechain Documentation
- "Understanding Blockchain Bridges" - Technical guides
- Bridge security research papers
- Aave V3 GitHub Repository
- Compound V2/V3 Documentation
- "How to Fork Aave" - Developer tutorials
- Chainalysis Bridge Exploit Reports
- Rekt.news bridge incident coverage
- Bridge security best practices
For Next Lesson:
Lesson 14 examines institutional lending on XRPLβhow regulated entities might participate in XRPL credit markets and what infrastructure they require.
End of Lesson 13
Total words: ~6,400
Estimated completion time: 55 minutes reading + 3-4 hours for deliverable exercise
Key Takeaways
Two valid paths exist
: EVM sidechain enables quick deployment of proven code; mainnet enables unique XRPL-native lending. Neither is universally superior.
Bridge risk is real and additive
: Every sidechain interaction carries bridge risk on top of other risks. Position sizing must account for this.
Development time differs significantly
: 6-9 months for EVM fork vs. 12-24 months for Hooks-native. Time-to-market matters for finding product-market fit.
Start with security assumptions
: Understand sidechain consensus, bridge security, and oracle availability before building or using.
Ecosystem likely has both
: Parallel development on mainnet and sidechain is probable, serving different user needs and risk preferences. ---