White Paper v1.0

Keyper

Decentralized Platform for Secure IP Address Transactions

February 2026 β€’ πŸ‡¨πŸ‡­ Swiss Development

01 Vision & Mission

β€œMaking IP address trading as simple, fast, and secure as buying a product on a marketplace”

Keyper is the first decentralized platform for secure IPv4 address block transactions, leveraging blockchain technology and smart contracts to eliminate the need for intermediaries while ensuring guarantees for both parties.

Our mission is to transform the archaic IP address market, reducing transaction time from weeks to minutes, eliminating fraud risks, and cutting transaction costs by an order of magnitude.

02 Market Problem

IPv4 Address Scarcity

The IPv4 address pool has been officially exhausted since 2019. Yet demand continues to grow: cloud services, IoT devices, data centers β€” all require IP addresses. This has turned IPv4 addresses into a valuable digital asset.

Market Prices (2026)

  • β€’ 1 IP address: $30–60
  • β€’ /24 block (256 IPs): $7,000–15,000
  • β€’ /16 block (65,536 IPs): $1.5–3M

Market Size

  • β€’ Global market: $1.5B+ per year
  • β€’ Annual transactions: 10,000+
  • β€’ Broker fees: 5–15%

Pain Points of the Current Process

πŸ•

Slow Timelines

Deals take 2–8 weeks: negotiations, verifications, registry applications, waiting for WHOIS updates

πŸ”“

Trust Risks

Buyer pays upfront and waits weeks without guarantees. Seller risks not receiving payment

πŸ•΅οΈ

Fraud

Selling stolen blocks, forged ownership documents, double-selling the same block

πŸ’Έ

High Fees

Brokers charge 5–15% of deal value. On a /16 block sale β€” that's hundreds of thousands of dollars

03 Our Solution

Keyper β€” Smart Contract as Intermediary

We replace brokers and middlemen with a smart contract on the Polygon blockchain. Buyer's funds are locked in the contract and automatically transferred to the seller only after confirmed IP block transfer in the RIPE registry.

⚑

Speed

Deal closes automatically once Oracle confirms the transfer in RIPE

πŸ”’

Security

Funds in escrow until confirmation. Automatic refund on deadline expiry

πŸ’°

Savings

Platform fee of 1–2% instead of 5–15% from traditional brokers

Key Advantages

  • βœ“Trustless: No need to trust the counterparty β€” smart contract guarantees execution
  • βœ“Transparency: All deals are recorded on blockchain and publicly verifiable
  • βœ“Automation: Oracle checks RIPE API every minute and closes deals automatically
  • βœ“Fraud Protection: ASN ownership verification at deal creation
  • βœ“Global Access: Participants from any country, cryptocurrency settlements

04 Technology & Architecture

Technology Stack

Blockchain

  • β€’ Polygon (Matic) β€” low gas fees, high speed
  • β€’ Solidity 0.8.20 β€” smart contracts
  • β€’ OpenZeppelin β€” audited security libraries

Frontend

  • β€’ Next.js 15 β€” React framework
  • β€’ wagmi + viem β€” Web3 integration
  • β€’ Tailwind CSS β€” styling

Oracle

  • β€’ RIPE NCC API β€” IP ownership data source
  • β€’ Node.js β€” verification service
  • β€’ Snapshot-based verification β€” new prefix detection

Infrastructure

  • β€’ PM2 β€” process manager
  • β€’ nginx β€” reverse proxy, SSL
  • β€’ GitHub β€” version control

Smart Contract Architecture

contract IPEscrow v4.3 {
    struct Deal {
        address seller;       // Seller wallet
        address buyer;        // Buyer wallet
        string ipBlock;       // e.g. "195.20.115.0/24"
        string buyerASN;      // Buyer ASN (RIPE)
        uint256 price;        // Price in USDT (ERC-20)
        DealStatus status;    // Created β†’ Funded β†’ Completed
        uint256 deadline;     // Refund deadline (30 days)
    }
    
    // Multisig 2-of-3: Oracle + Buyer + Broker
    createDeal()      // Seller creates a deal
    fundDeal()        // Buyer pays USDT (funds in escrow)
    confirmTransfer() // 2 of 3 confirm β†’ 99% to seller, 1% platform fee
    refund()          // Buyer refund on deadline expiry

    // Contract: 0xb02b5075...5d92 (Polygon Mainnet, v4.3)
    // Audited by ChainGPT β€” all findings addressed
}

Oracle Mechanism

The Oracle is a service that bridges blockchain with the real world. Our Oracle:

  1. Seller specifies the exact IP block when creating a deal (e.g., 195.20.115.0/24)
  2. Upon deal funding, saves a snapshot of the buyer's current prefixes
  3. Every 60 seconds queries the RIPE API for current data
  4. Compares current prefixes with the snapshot
  5. If the buyer has acquired the specified IP block β€” calls confirmTransfer()
  6. Smart contract automatically transfers funds to the seller

05 How It Works

1

Seller Creates a Deal

Specifies the IP block (e.g., 195.20.115.0/24), their ASN, buyer's ASN, and price in POL. The system verifies block ownership via the RIPE API.

2

Buyer Funds the Escrow

Buyer connects MetaMask, reviews deal terms, and sends POL to the smart contract. Funds are locked until deal completion.

3

IP Transfer in Registry

Seller initiates the IP block transfer through the RIPE NCC portal. This is a standard procedure taking from several hours to several days.

4

Automatic Completion

Oracle detects that the IP block has appeared in the buyer's resource list in RIPE. Smart contract automatically transfers funds to the seller. Deal complete!

Party Protection

For the Buyer:

If the transfer doesn't occur within 30 days β€” automatic refund to the buyer's wallet

For the Seller:

Funds are guaranteed to be paid immediately after Oracle confirms the transfer

06 Security

Smart Contract Protection

βœ“ Reentrancy Guard

Protection against reentrancy attacks (OpenZeppelin)

βœ“ Overflow Protection

Solidity 0.8+ with built-in overflow checks

βœ“ Access Control

Only the verifier can confirm transfers

βœ“ Pausable

Ability to pause the contract in emergencies

βœ“ Min/Max Limits

Deal size limits for error protection

βœ“ CEI Pattern

Checks-Effects-Interactions for safe transfers

Security Enhancement Plans

  • β—―Multisig 2-of-3: For verifier keys (Gnosis Safe)
  • β—―Chainlink Oracle: Decentralized data source
  • β—―Professional Audit: CertiK or OpenZeppelin
  • β—―Bug Bounty: Vulnerability reward program

07 Business Model

Monetization

1–2%

Fee per successful deal

$50–200

Premium listing / verification

API

Integration for super users

Comparison with Alternatives

ParameterTraditional BrokersKeyper
Fee5–15%1–2%
Deal Timeline2–8 weeks1–3 days
TrustIn brokerIn code (trustless)
TransparencyLowFull (blockchain)
AvailabilityBusiness hours24/7

08 Roadmap

Q1 2026 β€” Production βœ“
  • βœ“ Smart contract v4.3 on Polygon Mainnet
  • βœ“ USDT payments (ERC-20)
  • βœ“ Multisig 2-of-3 (Oracle + Buyer + Broker)
  • βœ“ RIPE Oracle for automated BGP verification
  • βœ“ ChainGPT security audit β€” all findings addressed
  • βœ“ Platform fee 1% with dedicated Keyper wallet
  • βœ“ Web interface with MetaMask + wallet risk screening
  • βœ“ Real transactions completed on mainnet
Q2 2026 β€” Expansion
  • β—― ARIN integration (North America)
  • β—― APNIC integration (Asia-Pacific)
  • β—― Ethereum Mainnet deployment
  • β—― WalletConnect for mobile access
Q3 2026 β€” Expansion
  • β—― APNIC support (Asia-Pacific)
  • β—― Chainlink Oracle integration
  • β—― Mobile application
  • β—― Partner API
Q4 2026 β€” Scale
  • β—― All 5 Regional Internet Registries (RIRs)
  • β—― IP block marketplace
  • β—― Reputation system
  • β—― Dispute resolution via DAO

09 Conclusion

Keyper solves a real problem in a market worth over a billion dollars. We leverage proven blockchain technology to create a secure, transparent, and efficient platform for IP address trading.

The MVP is already working and demonstrates the viability of the concept. Next step β€” professional audit and mainnet launch.