OBELISK Documentation

Welcome to the Obelisk DEX documentation. Learn how to use the first post-quantum secure decentralized exchange for trading, swapping, and managing your crypto assets.

Introduction

Obelisk is a next-generation decentralized exchange (DEX) that combines the security of post-quantum cryptography with a comprehensive suite of DeFi tools. Unlike traditional centralized exchanges, Obelisk never holds your funds - you maintain complete control of your private keys at all times.

๐Ÿ” Self-Custody

Your keys, your crypto. We never store or have access to your private keys.

๐Ÿ›ก๏ธ Post-Quantum

Protected against quantum computer attacks with NIST-approved algorithms.

โšก Ultra-Fast

Sub-second execution with real-time price updates every millisecond.

๐Ÿ’ฐ Zero Fees

No platform fees on swaps. Only pay network gas fees.

Quick Start

Get started with Obelisk in 3 simple steps:

Step 1: Access the Platform

Navigate to app.obelisk-dex.pages.dev or click "Launch App" from the homepage.

Step 2: Connect Your Wallet

Click the "Connect Wallet" button in the top right corner. Obelisk supports:

  • MetaMask - Most popular browser wallet
  • WalletConnect - Connect any mobile wallet
  • Coinbase Wallet - Direct integration
  • Private Key - Import existing wallet (advanced)
โš ๏ธ
Security Notice

Never share your private key or seed phrase with anyone. Obelisk will never ask for your private key through email or support.

Step 3: Start Trading

Once connected, you can immediately access all features: trading, swapping, banking, and portfolio management.

Connect Wallet

Obelisk uses a non-custodial architecture, meaning your wallet connects directly to the blockchain without intermediaries.

Supported Networks

Network Chain ID Status
Arbitrum One 42161 โ— Active
Ethereum 1 โ— Active
Optimism 10 โ— Coming Soon
Base 8453 โ— Coming Soon

Perpetual Trading

Trade perpetual contracts on 100+ assets with up to 100x leverage. Obelisk aggregates liquidity from Hyperliquid for deep order books and tight spreads.

Order Types

  • Market Order - Execute immediately at best available price
  • Limit Order - Set your desired entry price
  • Stop Loss - Automatically close position at specified loss
  • Take Profit - Lock in gains at target price

Leverage

Adjust leverage from 1x to 100x using the slider. Higher leverage amplifies both gains and losses. We recommend starting with lower leverage (5-10x) until you're familiar with the platform.

๐Ÿ’ก
Pro Tip

Use the order book depth visualization to identify key support and resistance levels before placing trades.

Token Swap

Swap any token instantly with the best rates aggregated from multiple DEXs including Uniswap, SushiSwap, and Curve.

How It Works

  1. Select the token you want to swap from
  2. Select the token you want to receive
  3. Enter the amount
  4. Review the quote and slippage
  5. Confirm the transaction in your wallet

Slippage Protection

Default slippage tolerance is set to 0.5%. You can adjust this in settings. Higher slippage may be needed for low-liquidity tokens.

DeFi Banking

Obelisk Banking allows you to deposit crypto assets and earn interest, similar to a traditional savings account but fully decentralized.

Features

  • Flexible Deposits - Withdraw anytime with no lock-up
  • Competitive APY - Rates updated in real-time based on market conditions
  • Auto-Compound - Interest automatically reinvested
  • Multi-Asset - Support for ETH, USDC, USDT, and more

Crypto Bonds

Fixed-term investments with guaranteed returns. Lock your crypto for a specified period and earn predictable yields.

Term APY Min. Deposit
30 Days 5.2% $100
90 Days 8.5% $100
180 Days 12.0% $500
365 Days 15.0% $1,000

Pro Tools

Advanced tools for serious traders:

๐Ÿ“Š Arbitrage Scanner

Find price differences across DEXs in real-time.

๐Ÿค– AI Advisor

Get AI-powered trade recommendations based on market analysis.

๐Ÿ‹ Whale Tracker

Monitor large wallet movements and smart money flows.

๐Ÿ“ˆ Advanced Charts

TradingView integration with 100+ technical indicators.

Portfolio Manager

Track all your crypto assets in one place. The portfolio dashboard shows:

  • Total portfolio value in USD
  • Asset allocation breakdown
  • Profit/Loss tracking (daily, weekly, monthly, all-time)
  • Transaction history
  • Performance analytics

Post-Quantum Security

Obelisk implements NIST-approved post-quantum cryptographic algorithms to protect your assets against future quantum computer threats.

Algorithms Used

  • CRYSTALS-Kyber - Key encapsulation mechanism for secure key exchange
  • CRYSTALS-Dilithium - Digital signatures for transaction authentication
โœ“
Future-Proof Security

While quantum computers capable of breaking current encryption don't exist yet, Obelisk is already prepared for that future.

Self-Custody

Obelisk is 100% non-custodial. This means:

  • Your private keys never leave your device
  • We cannot freeze or seize your funds
  • No KYC or account registration required
  • You are in complete control at all times

Social Recovery

Obelisk supports social recovery to help you regain access to your wallet if you lose your private key.

How It Works

  1. Designate trusted "guardians" (friends, family, or hardware devices)
  2. If you lose access, initiate recovery
  3. Guardians approve the recovery request
  4. After threshold approvals, you regain access with a new key

API Overview

Obelisk provides a REST API for programmatic access to market data and trading.

Base URL

https://obelisk-api.obelisk-io.workers.dev

Authentication

Public endpoints (market data) require no authentication. Trading endpoints require a signed request using your wallet.

API Endpoints

Get Markets

GET /api/markets

Response:
{
  "markets": [
    {
      "symbol": "BTC-USD",
      "price": 97234.50,
      "change24h": 2.34,
      "volume24h": 1250000000
    }
  ]
}

Get Order Book

GET /api/orderbook/:symbol

Response:
{
  "bids": [[97200, 1.5], [97150, 2.3]],
  "asks": [[97250, 1.2], [97300, 1.8]],
  "spread": 50
}

Get Price Feed

GET /api/prices

Response:
{
  "BTC": 97234.50,
  "ETH": 3456.78,
  "SOL": 124.56,
  "timestamp": 1702847123456
}

ยฉ 2025 Obelisk DEX. Built for the post-quantum era.
Home ยท Launch App ยท GitHub (opens in new tab)

Launch App โ†’