PAPER
EPITAPH PROTOCOL — Technical Whitepaper v0.1.0 On-chain last will protocol · Non-custodial · Trustless · Immutable Base · Ethereum · Solana · Polygon EPITAPH PROTOCOL — Technical Whitepaper v0.1.0 On-chain last will protocol · Non-custodial · Trustless · Immutable
Technical Whitepaper · v0.1.0 · 2026
Epitaph Protocol
A trustless, non-custodial on-chain last will protocol for the permanent, automatic execution of final asset instructions.
Version
0.1.0 · Beta
Date
2026
Networks
Base · ETH · SOL
Contact
dev@epitaph-agent.xyz
// Table of Contents
  1. Abstract
  2. The Problem: $140B in Lost Crypto
  3. The Epitaph Solution
  4. Protocol Architecture
  5. Trigger Mechanism
  6. Execution Engine
  7. Security Model
  8. Protocol Fee & Sustainability
  9. Roadmap
  10. Conclusion
01

Abstract

Epitaph is a non-custodial, trustless protocol that enables blockchain wallet owners to create immutable on-chain wills — programmable final instructions that execute automatically when predefined trigger conditions are met.

Unlike traditional estate planning, Epitaph requires no lawyers, notaries, or intermediaries. A will is defined once, sealed on-chain, and executed by smart contracts with mathematical certainty — regardless of geographic jurisdiction, legal system, or the passage of time.

"The blockchain does not mourn. It does not forget. It only executes."

02

The Problem: $140B in Lost Crypto

An estimated $140 billion in Bitcoin alone is permanently inaccessible due to lost private keys — predominantly from holders who passed away without securely transferring access to their assets.

This problem compounds annually. As the global crypto holder base grows, so does the volume of assets that will be permanently orphaned upon their holders' deaths.

```

Root Causes

Asset ClassEstimated Permanently Lost
Bitcoin (BTC)~$140B+
Ethereum (ETH)~$20B+
All ERC-20 tokensUnknown — estimated $50B+
NFTsIncalculable
```
03

The Epitaph Solution

Epitaph introduces a primitive that has been missing from blockchain infrastructure since its inception: programmable, trustless last wills.

A user deploys a Will — a smart contract object defining trigger conditions, beneficiary distribution, and optional final message. The Will sits dormant on-chain, consuming no gas, until its trigger condition is met. At that point, execution is automatic, irreversible, and mathematically guaranteed.

```
┌─────────────────────────────────────────────────┐ ``` │ EPITAPH WILL LIFECYCLE │ │ │ │ [OWNER] │ │ │ │ │ ├─ deployWill() ──────────► [ACTIVE] │ │ │ │ │ │ ├─ pingActivity() ◄────────────┤ │ │ │ (resets timer) │ │ │ │ trigger met? │ │ ├─ revokeWill() ──► [REVOKED] │ │ │ │ ▼ │ │ │ [EXECUTED] │ │ │ │ │ │ │ assets distributed │ │ │ message delivered │ └─────────────────────────────────────────────────┘
04

Protocol Architecture

Epitaph consists of three core smart contracts deployed on Base (primary), with cross-chain execution planned via LayerZero and Wormhole.

```

EpitaphCore

The primary contract. Handles will creation, modification, activity pinging, revocation, and execution. All will state lives here.

EpitaphRegistry

An indexing contract that maps wallet addresses to their associated will IDs. Enables efficient lookups for automation networks and frontends.

EpitaphVault (planned)

An optional escrow module for users who wish to pre-deposit assets into a protocol-managed vault rather than relying on in-wallet distribution at execution time.

Automation Layer

Epitaph is designed to be execution-agnostic. The executeWill() function is public and permissionless — it can be called by:

```
05

Trigger Mechanism

A trigger is a boolean condition that, when satisfied, makes a will eligible for execution. Epitaph supports four trigger types:

```

Inactivity Trigger

The most common trigger. Fires if the owner wallet has had no on-chain transactions for a specified number of days (30–3,650).

triggered = block.timestamp lastActivityAt + inactivitySeconds

Date Trigger

Fires at a specific Unix timestamp. Useful for time-locked transfers, scheduled distributions to heirs on a particular date, or expiry-based wills.

Multi-Sig Trigger

Requires 2-of-3 designated guardian addresses to confirm before execution. Provides human verification as an additional safeguard against false inactivity triggers (e.g., owner is in a coma, not deceased).

Price Trigger (Planned)

Fires when an asset price crosses a threshold, verified via Chainlink price feeds. Enables conditional wills: "If ETH reaches $10,000, transfer to beneficiary."

```
06

Execution Engine

When a trigger condition is met, any party may call executeWill(). The execution engine:

```

Beneficiary Distribution

amount_i = (distributable × shareBps_i) / 10000
distributable = total (total × 50 / 10000)
```
07

Security Model

```

Non-Custodial Guarantee

Epitaph never holds user assets during the ACTIVE state. Assets remain in the owner's wallet until executeWill() is called. This eliminates custodial risk entirely.

Owner Sovereignty

Only the will owner can modify or revoke a will. The protocol enforces this via msg.sender checks. No admin key, no multisig, no upgrade path that could affect individual wills.

Reentrancy Protection

All state changes occur before external calls. The ReentrancyGuard modifier prevents nested execution attacks.

Known Limitations

```
08

Protocol Fee & Sustainability

Epitaph charges a flat 0.5% fee (50 basis points) on assets distributed at execution time. This fee accrues to the protocol treasury and funds ongoing development, audits, and automation network costs.

```
ActionFeeRationale
Deploy will0No barrier to entry
Ping activity0Encourage active use
Revoke will0Owner rights are free
Execute will0.5%Value-aligned — we earn only when you do

The fee model is intentionally aligned: Epitaph only earns revenue when a will executes successfully and assets are transferred. There is zero incentive to trigger wills prematurely.

```
09

Roadmap

PhaseMilestoneStatus
Phase 0Frontend terminal interface + wallet connect✓ Complete
Phase 1EpitaphCore on Base testnet⟳ In Progress
Phase 1Chainlink Automation integration⟳ In Progress
Phase 2Third-party security audit○ Scheduled Q3 2026
Phase 2Base mainnet deployment○ Post-audit
Phase 3Cross-chain execution (ETH, SOL, Polygon)○ Planned
Phase 3ZK identity for beneficiary auth○ Research
Phase 4Mobile app○ Planned
Phase 4DAO governance○ Planned
10

Conclusion

Epitaph addresses a fundamental gap in blockchain infrastructure: the absence of a native, trustless succession mechanism. As digital assets become a meaningful component of global wealth, the need for programmable, jurisdiction-independent inheritance will only grow.

By building on Base and leveraging the security of Ethereum's settlement layer, Epitaph provides a permanent, low-cost, and non-custodial solution to one of crypto's most underserved problems.

Your instructions. Immutable. Eternal.

"When you're gone, your crypto shouldn't be."


© 2026 Epitaph Protocol · epitaph-agent.xyz · @EpitaphAI · GitHub

This whitepaper is provided for informational purposes only and does not constitute financial or legal advice. Smart contracts involve risk. Use at your own discretion.