Introduction

Introduction

Vestige is an Arc-native inheritance vault protocol for native USDC and ERC20-compatible assets. It gives an owner a self-custodial dead-man switch: keep checking in while active, or let a configured heir claim after the silence window matures.

Current deployment

The active public test deployment used by the frontend is on Arc Testnet. Use this address when testing the current dApp build or integrating manually. If this address changes, the frontend environment and this page must be updated together.

Network
Arc Testnet
Chain ID
5042002
Native asset
USDC
RPC
https://rpc.testnet.arc.network
Explorer
https://testnet.arcscan.app
Frontend env
NEXT_PUBLIC_VAULT_ADDRESS

What Vestige does

A user creates a vault, chooses an heir wallet, configures an inactivity period and a grace period, then optionally deposits native USDC and ERC20-compatible tokens. The owner can keep the vault alive by calling checkIn before the claim window matures.

If the owner stops checking in long enough, the heir can activate inheritance and claim assets. The contract does not contact users, resolve disputes, or infer real-world intent. It only enforces the configuration stored onchain.

  • One owner address maps to one active vault lifecycle.
  • The heir is fixed by the owner but can be updated before the vault becomes claimable.
  • Native USDC and ERC20 token balances are accounted separately.
  • ERC20 token claims are granular to avoid unbounded claim transactions.
  • A drained vault can be disabled so the owner can create a new lifecycle later.

Primary flows

Vestige has two user flows and one builder flow.

Owner flow
createVault -> depositUSDC/depositToken -> checkIn -> update settings or withdraw while active
Heir flow
watch owner address -> wait until claimableAt -> claimInheritance or claimUSDC/claimToken
Builder flow
read getVaultDetails/getTrackedTokens -> write validated transactions -> map custom errors to readable UI